      /* =========================
   PAGE SWITCH TRANSITION
   Cross-document view transition (Chrome/Edge 126+): every page links
   this same stylesheet, so this one opt-in gives every internal link
   a soft cross-fade instead of an instant page swap, with zero JS and
   a silent no-op fallback everywhere else (Safari/Firefox navigate
   exactly as before). See MDN "Cross-document view transitions".
========================= */
@view-transition{
    navigation:auto;
}

/* The navbar (and footer, where present) are identical/near-identical
   on every page — naming them lets the browser treat them as the same
   persistent element across a page switch instead of cross-fading
   them along with the content, so only the page body actually
   transitions. Every page shares this stylesheet, so both the
   outgoing and incoming document agree on the name automatically. */
.navbar{
    view-transition-name:site-navbar;
}

.footer{
    view-transition-name:site-footer;
}

@media (prefers-reduced-motion: reduce){
    ::view-transition-group(*),
    ::view-transition-old(*),
    ::view-transition-new(*){
        animation:none !important;
    }
}

      /* =========================
   GLOBAL RESET & BASE
========================= */
      *{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    body{
    background:#111;
    color:#1a1a1a;
    font-family:'Inter', sans-serif;
    overflow-x:hidden;
    scroll-behavior:smooth;
    cursor:default;
}

/* =========================
   HOME HERO
========================= */

    .hero{
    height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;

    background:
    linear-gradient(rgba(0,0,0,0.35),
  rgba(0,0,0,0.35)),
    url('../images/hero.jpg');

    background-size:cover;
    background-position:center;
    color:white;
  }
    .logo{
    width:380px;
    max-width:90%;
    margin-bottom:20px;
    }

    h1{
      font-family:'Cormorant Garamond', serif;
      font-size:6rem;
      font-weight:300;
      letter-spacing:14px;
    }

    .subtitle{
      margin-top:10px;
      letter-spacing:8px;
      font-size:0.9rem;
      text-transform:uppercase;
    }

    .description{
      margin-top:40px;
      max-width:550px;
      line-height:2;
      font-size:1.1rem;
      color:rgba(255,255,255,0.85);
      backdrop-filter: blur(3px);
    }

    .button{
      margin-top:50px;
      padding:16px 40px;
      border:1px solid white;
      text-decoration:none;
      color:white;
      transition:background 220ms cubic-bezier(.4,0,.2,1), color 220ms cubic-bezier(.4,0,.2,1), transform 220ms cubic-bezier(.4,0,.2,1);
      letter-spacing:2px;
      text-transform:uppercase;
      font-size:0.9rem;
    }

    .button:hover{
      background:#1a1a1a;
      color:white;
      transform:translateY(-2px);
    }

/* =========================
   HOME CONCEPTS
========================= */

     .concepts{
    background:#111;
    padding:120px 8%;
    }

    .section-title{
    color:white;
    text-align:center;
    letter-spacing:8px;
    font-size:0.9rem;
    margin-bottom:70px;
    }

    .concept-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    }

    /* Auto-adjusts to a single centered column when only one
       concept-card is present (e.g. Kitchen hidden for now) — reverts
       to the 2-column layout automatically once a second card is
       restored, no CSS change needed either way. */
    .concept-grid:has(> .concept-card:only-of-type){
    grid-template-columns:1fr;
    max-width:600px;
    margin:0 auto;
    }

    .concept-card{
    position:relative;
    overflow:hidden;
    height:600px;
    cursor:pointer;
    }

    .concept-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform 700ms cubic-bezier(.16,1,.3,1);
    }

    .concept-card:hover img{
    transform:scale(1.05);
    }

    .overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
    transparent,
    rgba(0,0,0,0.75)
    );

    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:40px;
    color:white;
    }

    .overlay h2,
    .overlay p{
    transition:transform 320ms cubic-bezier(.4,0,.2,1);
    }

    .concept-card:hover .overlay h2{
    transform:translateY(-4px);
    }

    .concept-card:hover .overlay p{
    transform:translateY(-4px);
    transition-delay:40ms;
    }

    .overlay h2{
    font-family:'Cormorant Garamond', serif;
    font-size:2.5rem;
    margin-bottom:10px;
    }

    .overlay p{
    color:rgba(255,255,255,0.8);
    }

/* =========================
   STORY SECTION
========================= */

   .story{
    display:flex;
    height:100vh;
    background:#d8cec1; 
    overflow:hidden;
}

.story-content{
    width:50%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:100px;
    background:#d8cec1;
}

.mini-title{
    letter-spacing:6px;
    font-size:0.8rem;
    margin-bottom:30px;
    color:#777;
}

.story-content h2{
    font-family:'Cormorant Garamond', serif;
    font-size:4rem;
    line-height:1.1;
    margin-bottom:40px;
    font-weight:400;
    color:#111;
}

.story-content p{
    color:#555;
    line-height:2;
    max-width:500px;
    margin-bottom:50px;
}

.story-button{
    text-decoration:none;
    color:#111;
    border-bottom:1px solid #111;
    width:fit-content;
    padding-bottom:8px;
    letter-spacing:2px;
    display:inline-block;
    transition:transform 220ms cubic-bezier(.4,0,.2,1), border-bottom-width 220ms cubic-bezier(.4,0,.2,1);
}

.story-button:hover{
    transform:translateX(4px);
    border-bottom-width:2px;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:22px 5%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    z-index: 1000;

    backdrop-filter:blur(10px);
    background:rgba(0,0,0,0.15);
    transition:0.4s ease;
}

.nav-logo{
    color:white;
    font-family:'Cormorant Garamond', serif;
    font-size:2rem;
    letter-spacing:6px;
}

.nav-logo-image{
    width:140px;
    height:auto;
    display:block;
}

.nav-links{
    display:flex;
    align-items:center; 
    gap:40px;
}

.nav-links a{
    position:relative;
    color:white;
    text-decoration:none;
    letter-spacing:2px;
    font-size:0.9rem;
    transition:opacity 220ms cubic-bezier(.4,0,.2,1);
}

.nav-links a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-4px;
    width:100%;
    height:1px;
    background:currentColor;
    transform:scaleX(0);
    transform-origin:right;
    transition:transform 280ms cubic-bezier(.4,0,.2,1);
}

.nav-links a:hover{
    opacity:0.85;
}

.nav-links a:hover::after{
    transform:scaleX(1);
    transform-origin:left;
}

/* =========================
   LANGUAGE SWITCHER
   Injected by js/i18n.js into .nav-links (desktop) and #mobileMenu
   (mobile) — no markup needed per page. Desktop uses the same
   frosted-glass popover language as .dropdown-content; mobile is a
   flat row of buttons matching the mobile menu's own centered-column
   style.
========================= */

.lang-switcher{
    position:relative;
}

.lang-switcher-toggle{
    background:none;
    border:1px solid rgba(255,255,255,0.35);
    border-radius:999px;
    color:#fff;
    font-family:'Inter', sans-serif;
    font-size:0.78rem;
    letter-spacing:1.5px;
    padding:6px 14px;
    cursor:pointer;
    transition:border-color 220ms cubic-bezier(.4,0,.2,1), opacity 220ms cubic-bezier(.4,0,.2,1);
}

.lang-switcher-toggle:hover{
    border-color:#d6bd86;
    opacity:0.9;
}

.lang-switcher-list{
    position:absolute;
    top:100%;
    right:0;
    margin-top:10px;
    width:150px;
    padding:8px 0;
    list-style:none;

    background:rgba(20,20,20,0.55);
    backdrop-filter:blur(35px) brightness(0.75);
    -webkit-backdrop-filter:blur(35px) brightness(0.75);
    border:1px solid rgba(255,255,255,0.10);
    box-shadow:0 24px 70px rgba(0,0,0,0.22);

    z-index:1200;
}

.lang-switcher-list[hidden]{
    display:none;
}

.lang-switcher-option{
    display:block;
    width:100%;
    padding:9px 20px;
    background:none;
    border:none;
    color:#fff;
    text-align:left;
    font-family:'Inter', sans-serif;
    font-size:0.85rem;
    letter-spacing:0.5px;
    cursor:pointer;
    transition:background 220ms cubic-bezier(.4,0,.2,1), color 220ms cubic-bezier(.4,0,.2,1);
}

.lang-switcher-option:hover{
    color:#d6bd86;
    background:rgba(0,0,0,0.18);
}

.lang-switcher-option.active{
    color:#d6bd86;
    font-weight:500;
}

/* Mobile menu variant — flat, no popover, matches the mobile menu's
   own centered stack of links. */
.lang-switcher-mobile{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:12px;
}

.lang-switcher-mobile .lang-switcher-toggle{
    display:none;
}

.lang-switcher-mobile .lang-switcher-list{
    display:flex !important;
    flex-direction:row;
    flex-wrap:wrap;
    justify-content:center;
    position:static;
    width:auto;
    margin-top:0;
    padding:0;
    background:none;
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
    border:none;
    box-shadow:none;
    gap:10px;
}

.lang-switcher-mobile .lang-switcher-option{
    width:auto;
    padding:6px 14px;
    border:1px solid rgba(255,255,255,0.25);
    border-radius:999px;
    text-align:center;
    font-size:0.78rem;
    letter-spacing:1.5px;
}

.lang-switcher-mobile .lang-switcher-option.active{
    border-color:#d6bd86;
}

/* =========================
   REVEAL ANIMATIONS
========================= */

.reveal{
    opacity:1;
    transform:none;
}

.reveal > *{
    opacity:0;
    transform:translateY(60px);

    transition:
    opacity 900ms cubic-bezier(.16,1,.3,1),
    transform 900ms cubic-bezier(.16,1,.3,1);
}

.reveal.active > *{
    opacity:1;
    transform:translateY(0);
}

.reveal.active > *:nth-child(1){
    transition-delay:0.1s;
}

.reveal.active > *:nth-child(2){
    transition-delay:0.25s;
}

.reveal.active > *:nth-child(3){
    transition-delay:0.4s;
}

/* =========================
   PROCESS SECTION
========================= */

.process{
    background:#111;
    color:white;
    padding:140px 8%;
}

.process-title{
    text-align:center;
    letter-spacing:8px;
    font-size:0.9rem;
    margin-bottom:90px;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.process-card{
    border:1px solid rgba(255,255,255,0.1);
    padding:60px 40px;
    transition:transform 320ms cubic-bezier(.4,0,.2,1), border-color 320ms cubic-bezier(.4,0,.2,1);
    background:rgba(255,255,255,0.02);
}

.process-card:hover{
    transform:translateY(-10px);
    border-color:rgba(255,255,255,0.3);
}

.process-card span{
    font-size:4rem;
    font-family:'Cormorant Garamond', serif;
    color:rgba(255,255,255,0.2);
    transition:color 320ms cubic-bezier(.4,0,.2,1);
}

.process-card:hover span{
    color:rgba(255,255,255,0.4);
}

.process-card h3{
    margin:30px 0 20px;
    font-size:1.5rem;
    font-weight:400;
}

.process-card p{
    line-height:2;
    color:rgba(255,255,255,0.7);
}
/* =========================
   STORY IMAGE
========================= */
.story-image{
    width:50%;
    height:100vh;
    position:relative;
    overflow:hidden;
}

.slider{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

.slides{
    width:100%;
    height:100%;
    position:relative;
}

.slide{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

    opacity:0;

    transition:opacity 1.2s ease;
}

.slide.active{
    opacity:1;
}

.prev,
.next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);

    background:rgba(255,255,255,0.1);
    border:none;

    color:white;

    width:50px;
    height:50px;

    cursor:pointer;

    z-index:10;

    backdrop-filter:blur(10px);

    transition:background 220ms cubic-bezier(.4,0,.2,1), transform 220ms cubic-bezier(.4,0,.2,1);
}

.prev:hover,
.next:hover{
    background:rgba(255,255,255,0.2);
    transform:translateY(-50%) scale(1.08);
}

.prev{
    left:20px;
}

.next{
    right:20px;
}

@keyframes scrollGallery{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

/* =========================
   PAGE LOADER
========================= */

.loader{
    position:fixed;
    inset:0;

    background:#111;

    display:flex;
    justify-content:center;
    align-items:center;

    z-index:99999;

    transition:opacity 1s ease,
    visibility 1s ease;
}

.loader.hidden{
    opacity:0;
    visibility:hidden;
}

.loader-logo{
    width:260px;
    animation:pulse 2s ease infinite;
}

@keyframes pulse{

    0%{
        opacity:0.7;
        transform:scale(0.98);
    }

    50%{
        opacity:1;
        transform:scale(1);
    }

    100%{
        opacity:0.7;
        transform:scale(0.98);
    }

}
/* =========================
   RESPONSIVE BASE
========================= */

@media(max-width:1100px){

    .story{
        flex-direction:column;
        height:auto;
    }

    .story-image,
    .story-content{
        width:100%;
    }

    .story-image{
        height:70vh;
    }

    .story-content{
        padding:70px 8%;
    }

    .concept-grid{
        grid-template-columns:1fr;
    }

    .process-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .navbar{
        padding:18px 6%;
    }

    .nav-links{
        gap:20px;
    }

    .nav-links a{
        font-size:0.7rem;
        letter-spacing:1px;
    }

    .nav-logo-image{
        width:100px;
    }

    .logo{
        width:260px;
    }

    .subtitle{
        font-size:0.7rem;
        letter-spacing:4px;
    }

    .description{
        font-size:0.95rem;
        line-height:1.8;
        padding:0 10px;
    }

    .button{
        padding:14px 28px;
        font-size:0.75rem;
    }

    .concept-card{
        height:420px;
    }

    .overlay h2{
        font-size:2rem;
    }

    .story-content h2{
        font-size:2.7rem;
    }

    .story-content{
        padding:60px 8%;
    }

    .process-card{
        padding:40px 30px;
    }

    .loader-logo{
        width:220px;
    }

}

/* =========================
   CONCEPT PAGE
========================= */

.concept-hero{
    position:relative;
    height:100vh;
    overflow:hidden;

    display:flex;
    align-items:center;
    justify-content:center;
}

.concept-hero-image{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
}

.concept-overlay{
    position:absolute;
    inset:0;

    background:rgba(0,0,0,0.45);

    z-index:1;
}

.concept-hero-content{
    position:relative;
    z-index:2;

    text-align:center;
    color:white;

    max-width:700px;
    padding:20px;
}

.concept-hero-content h1{
    font-size:7rem;
    font-family:'Cormorant Garamond', serif;
    font-weight:300;
    margin:20px 0;
    letter-spacing:12px;
}

.concept-hero-content p{
    line-height:2;
    color:rgba(255,255,255,0.85);
}

.concept-details{
    display:flex;
    min-height:100vh;
}

.concept-text{
    width:50%;
    padding:120px 8%;

    display:flex;
    flex-direction:column;
    justify-content:center;

    background:#f5f1eb;
}

.concept-text h2{
    font-size:4rem;
    font-family:'Cormorant Garamond', serif;
    font-weight:400;
    line-height:1.1;

    margin:30px 0;
}

.concept-text p{
    line-height:2;
    color:#555;
}

.concept-image{
    width:50%;
}

.concept-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.materials{
    background:#111;
    padding:140px 8%;
}

.materials-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.material-card{
    color:white;
}

.material-card img{
    width:100%;
    height:450px;
    object-fit:cover;

    margin-bottom:20px;
}

.material-card h3{
    font-family:'Cormorant Garamond', serif;
    font-size:2rem;
    font-weight:400;
}
/* =========================
   MOODBOARD
========================= */

.moodboard{
    padding:140px 8%;
    background:#f5f1eb;
}

.section-title.dark{
    color:#111;
}


.mood-item{
    position:relative;
    overflow:hidden;

    aspect-ratio:1/1;

    cursor:pointer;
}

.mood-item img{
    width:100%;
    height:100%;
    object-fit:cover;

    transition:0.5s ease;
}

.mood-item:hover img{
    transform:scale(1.05);
}

.mood-info{
    position:absolute;
    bottom:20px;
    left:20px;

    background:rgba(0,0,0,0.7);

    color:white;

    padding:12px 18px;

    font-size:0.8rem;
    letter-spacing:2px;

    opacity:0;

    transform:translateY(20px);

    transition:0.4s ease;

    backdrop-filter:blur(10px);
}

.mood-item:hover .mood-info{
    opacity:1;
    transform:translateY(0);
}

.color-swatch{
    display:flex;
    align-items:center;
    justify-content:center;
}

.warm-beige{
    background:#cbbba3;
}

.dark-stone{
    background:#3b3b3b;
}
.mood-category{
    margin-bottom:120px;
}

.mood-category h2{
    font-family:'Cormorant Garamond', serif;
    font-size:3rem;
    font-weight:400;

    margin-bottom:50px;

    color:#111;
}

.color-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.color-card{
    height:220px;

    position:relative;

    display:flex;
    align-items:flex-end;

    padding:25px;

    overflow:hidden;
}

.color-card span{
    background:rgba(0,0,0,0.7);

    color:white;

    padding:10px 16px;

    font-size:0.8rem;

    letter-spacing:2px;

    opacity:0;

    transform:translateY(20px);

    transition:0.4s ease;
}

.color-card:hover span{
    opacity:1;
    transform:translateY(0);
}

.soft-ivory{
    background:#e8e1d7;
}
.tile-grid{
    columns:2;
    column-gap:30px;
}

.tile-grid .mood-item{
    margin-bottom:30px;
    break-inside:avoid;
}

.tile-grid .mood-item img{
    width:100%;
    display:block;
}
.faucet-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:60px;
}

.faucet-grid .mood-item{
    background:white;
    padding:40px;

    box-shadow:
    0 10px 40px rgba(0,0,0,0.06);
}

.faucet-grid img{
    height:500px;
    object-fit:contain;
}
.shower-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:40px;
}

.shower-grid .mood-item{
    height:650px;
}

.shower-grid img{
    width:100%;
    height:100%;
    object-fit:cover;
}
/* =========================
   CONCEPT BOARD
========================= */

.concept-board{
    display:flex;
    gap:40px;

    padding:140px 8%;

    background:#f5f1eb;
}

.board-left{
    width:50%;
}

.board-right{
    width:50%;

    display:flex;
    flex-direction:column;
    gap:40px;
}

.board-tile{
    position:relative;
    overflow:hidden;
}

.board-tile img{
    width:100%;
    height:100%;
    object-fit:cover;

    transition:0.5s ease;
}

.board-tile:hover img{
    transform:scale(1.03);
}

.large{
    height:900px;
}

.faucet-row{
    display:flex;
    gap:30px;
}

.small{
    flex:1;
    height:420px;

    background:white;
    padding:30px;

    box-shadow:
    0 10px 40px rgba(0,0,0,0.06);
}

.small img{
    object-fit:contain;
}

.palette-row{
    display:flex;
    gap:30px;
    align-items:stretch;
}

.color-sample{
    flex:1;

    position:relative;

    min-height:260px;

    display:flex;
    align-items:flex-end;

    padding:25px;
}

.color-sample span{
    background:rgba(0,0,0,0.7);

    color:white;

    padding:10px 16px;

    font-size:0.75rem;

    letter-spacing:2px;
}

.mini-material{
    width:220px;

    position:relative;
}

.mini-material img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.board-label{
    position:absolute;

    bottom:20px;
    left:20px;

    background:rgba(0,0,0,0.75);

    color:white;

    padding:12px 18px;

    font-size:0.75rem;

    letter-spacing:2px;

    backdrop-filter:blur(10px);
}
/* =========================
   EDITORIAL BOARD
========================= */

.editorial-board{
    position:relative;

    min-height:180vh;

    background:#f5f1eb;

    overflow:hidden;

    padding:200px 8%;
}

.floating-image{
    position:absolute;

    overflow:hidden;

    box-shadow:
    0 30px 80px rgba(0,0,0,0.12);

    transition:
    transform 1.2s ease,
    opacity 1.2s ease;
}

.floating-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.img-1{
    width:420px;
    height:520px;

    top:180px;
    left:8%;
}

.img-2{
    width:320px;
    height:380px;

    top:260px;
    right:10%;
}

.img-3{
    width:520px;
    height:620px;

    top:760px;
    left:18%;
}

.img-4{
    width:280px;
    height:340px;

    top:1050px;
    right:14%;
}

.floating-color{
    position:absolute;

    display:flex;
    align-items:flex-end;

    padding:20px;

    box-shadow:
    0 20px 60px rgba(0,0,0,0.08);
}

.floating-color span{
    background:rgba(0,0,0,0.75);

    color:white;

    padding:10px 16px;

    font-size:0.7rem;

    letter-spacing:2px;
}

.color-1{
    width:220px;
    height:220px;

    background:#cbbba3;

    top:720px;
    right:22%;
}

.color-2{
    width:180px;
    height:180px;

    background:#62615d;

    top:980px;
    left:8%;
}

.floating-text{
    position:absolute;

    max-width:500px;

    top:1350px;
    right:10%;
}

.floating-text h2{
    font-family:'Cormorant Garamond', serif;

    font-size:4rem;

    line-height:1.1;

    margin:30px 0;

    font-weight:400;
}

.floating-text p{
    line-height:2;

    color:#555;
}

/* REVEAL */

.editorial-board .floating-image,
.editorial-board .floating-color,
.editorial-board .floating-text{

    opacity:0;

    transform:translateY(100px);
}

.editorial-board.active .floating-image,
.editorial-board.active .floating-color,
.editorial-board.active .floating-text{

    opacity:1;

    transform:translateY(0);
}

/* DELAYS */

.img-1{
    transition-delay:0.1s;
}

.img-2{
    transition-delay:0.3s;
}

.img-3{
    transition-delay:0.5s;
}

.img-4{
    transition-delay:0.7s;
}

.color-1{
    transition-delay:0.9s;
}

.color-2{
    transition-delay:1.1s;
}

.floating-text{
    transition-delay:1.3s;
}
/* =========================
   COLORS
========================= */

.colors-scene{
    padding:180px 8%;
    background:#d8cec1;
}

.scene-text{
    max-width:700px;
    margin-bottom:100px;
}

.scene-text h2{
    font-family:'Cormorant Garamond', serif;
    font-size:4rem;
    line-height:1.1;
    font-weight:400;
    color:#2b2622;
}

.color-composition{
    display:flex;
    gap:40px;
}

.paint{
    flex:1;
    height:420px;

    display:flex;
    align-items:flex-end;

    padding:30px;
}

.paint span{
    background:rgba(0,0,0,0.75);
    color:white;

    padding:12px 18px;

    font-size:0.7rem;
    letter-spacing:2px;
}

.beige{
    background:#cbbba3;
}

.stone{
    background:#62615d;
}

.ivory{
    background:#e5ddd2;
}

/* =========================
   TILES
========================= */

.tiles-scene{
    background:#b8aa98;

    padding:140px 8%;

    display:grid;
    grid-template-columns:minmax(280px, 480px) 1fr;
    column-gap:60px;
    row-gap:50px;
}

.tile-large{
    grid-column:1;
    grid-row:1 / 3;
    align-self:start;
    width:100%;
    height:700px;
}

.tile-large img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.tile-stack{
    grid-column:2;
    grid-row:1;
    align-self:end;
    justify-self:end;

    display:flex;
    flex-direction:column;

    gap:30px;
}

.tile-stack img{
    width:320px;
    height:260px;

    object-fit:cover;
}

.tile-text{
    grid-column:2;
    grid-row:2;
    align-self:start;
    color:rgba(255,255,255,0.75);
    line-height:2;
    max-width:500px;
}

@media(max-width:900px){
    .tiles-scene{
        grid-template-columns:1fr;
        padding:100px 8%;
        row-gap:40px;
    }

    .tile-large{
        grid-column:1;
        grid-row:auto;
        height:auto;
        aspect-ratio:480/700;
    }

    .tile-stack{
        grid-column:1;
        grid-row:auto;
        justify-self:stretch;
        width:100%;
        flex-direction:row;
        flex-wrap:wrap;
    }

    .tile-stack img{
        flex:1 1 calc(50% - 15px);
        height:220px;
    }

    .tile-text{
        grid-column:1;
        grid-row:auto;
    }
}

.tile-text h2{
    font-family:'Cormorant Garamond', serif;
    font-size:4rem;
    margin-bottom:30px;
    color:#f5f1eb;
}

/* =========================
   FAUCETS
========================= */

.faucets-scene{
    display:flex;
    gap:60px;

    padding:180px 8%;

    background:#1b1815;
}

.faucet-card{
    flex:1;

    background:#2a2622;

    padding:60px;

    box-shadow:
    0 30px 80px rgba(0,0,0,0.08);
}

.faucet-card img{
    width:100%;
    height:600px;

    object-fit:contain;
}

.faucet-info{
    margin-top:30px;
    color:white;
    letter-spacing:3px;
}

/* =========================
   SHOWERS
========================= */

.showers-scene{
    padding:0;
}

.shower-full{
    position:relative;
    height:100vh;
}

.shower-full img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.shower-overlay{
    position:absolute;
    inset:0;

    background:rgba(0,0,0,0.35);

    display:flex;
    align-items:center;
    justify-content:center;
}

.shower-overlay h2{
    color:white;

    font-family:'Cormorant Garamond', serif;

    font-size:5rem;

    font-weight:300;
}
/* =========================
   BATHROOM CONCEPTS
========================= */

.bathroom-concepts{
    padding:180px 8%;

    background:#181512;
}

.concepts-header{
    margin-bottom:80px;

    color:white;

    max-width:700px;
}

.concepts-header h2{
    font-family:'Cormorant Garamond', serif;

    font-size:4rem;

    font-weight:400;

    line-height:1.1;

    margin-top:25px;
}

.bathroom-slider{
    position:relative;

    width:100%;
    height:850px;
    background:#111;
    overflow:hidden;
}

.bath-slide{
    position:absolute;

    inset:0;

    opacity:0;

    visibility:hidden;

    transition:
    opacity 1.8s ease;

    will-change:opacity;
}

.bath-slide.active{
    opacity:1;
    visibility:visible;
    z-index:2;
}

.bath-slide img{
    width:100%;
    height:100%;

    object-fit:cover;
    display:block;
}

.bath-slide::after{
    content:'';

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.15)
    );
}

.bath-info{
    position:absolute;

    bottom:80px;
    left:80px;

    color:white;

    z-index:2;
}

.bath-info h3{
    font-family:'Cormorant Garamond', serif;

    font-size:5rem;

    font-weight:300;
    text-shadow:0 10px 30px rgba(0,0,0,0.35);
    letter-spacing:8px;
}

.bath-info p{
    margin-top:20px;

    letter-spacing:2px;

    color:rgba(255,255,255,0.8);
}

.bath-prev,
.bath-next{
    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:70px;
    height:70px;

    border:none;

    background:rgba(255,255,255,0.1);

    color:white;

    font-size:1.5rem;

    cursor:pointer;

    z-index:10;

    backdrop-filter:blur(10px);

    transition:background 220ms cubic-bezier(.4,0,.2,1), transform 220ms cubic-bezier(.4,0,.2,1);
}

.bath-prev:hover,
.bath-next:hover{
    background:rgba(255,255,255,0.2);
    transform:translateY(-50%) scale(1.08);
}

.bath-prev{
    left:30px;
}

.bath-next{
    right:30px;
}

/* =========================
   KITCHEN CONCEPTS
========================= */

.kitchen-intro{
    padding:120px 8%;
    background:#f4efe7;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.kitchen-intro h2{
    font-family:'Cormorant Garamond', serif;
    font-size:64px;
    font-weight:300;
    color:#1b1b1b;
    line-height:1;
}

.kitchen-intro-right p{
    font-size:17px;
    line-height:1.9;
    color:#4a4038;
}

.kitchen-feature-strip{
    background:#111;
    color:#f4efe7;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border-top:1px solid rgba(255,255,255,0.12);
    border-bottom:1px solid rgba(255,255,255,0.12);
}

.kitchen-feature-strip div{
    padding:36px;
    border-right:1px solid rgba(255,255,255,0.12);
}

.kitchen-feature-strip span{
    font-family:'Cormorant Garamond', serif;
    font-size:28px;
    color:#b99b63;
}

.kitchen-feature-strip p{
    margin-top:12px;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:2px;
}

.kitchen-atmospheres{
    padding:90px 8% 110px;
    background:#ebe2d7;
}

.kitchen-atmosphere-grid{
    margin-top:50px;
    display:grid;
    grid-template-columns:1.15fr 1fr;
    grid-template-rows:260px 260px;
    gap:26px;
    align-items:stretch;
}

.kitchen-atmosphere-card{
    position:relative;
    overflow:hidden;
    background:#111;
    height:100%;
    min-height:0;
}

.kitchen-atmosphere-card.large{
    grid-row:1 / span 2;
    height:546px;
    max-height:546px;
}

.kitchen-atmosphere-card img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0.82;
    transition:transform 0.8s ease, opacity 0.8s ease;
}

.kitchen-atmosphere-card:hover img{
    transform:scale(1.04);
    opacity:0.65;
}

.kitchen-atmosphere-card div{
    position:absolute;
    left:30px;
    bottom:28px;
    color:#fff;
}

.kitchen-atmosphere-card h3{
    font-family:'Cormorant Garamond', serif;
    font-size:34px;
    font-weight:300;
    margin-bottom:8px;
}

.kitchen-atmosphere-card p{
    font-size:13px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.kitchen-package{
    position:relative;
    z-index:1;
    clear:both;
    margin-top:0;
    padding:130px 8%;
    background:#111;
    color:#f4efe7;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:start;
}

.kitchen-package h2{
    font-family:'Cormorant Garamond', serif;
    font-size:58px;
    font-weight:300;
    line-height:1;
    margin-bottom:28px;
}

.kitchen-package-text p{
    font-size:16px;
    line-height:1.9;
    color:rgba(244,239,231,0.75);
}

.kitchen-package-list{
    border-top:1px solid rgba(255,255,255,0.18);
}

.kitchen-package-list p{
    padding:22px 0;
    border-bottom:1px solid rgba(255,255,255,0.18);
    font-family:'Cormorant Garamond', serif;
    font-size:28px;
    font-weight:300;
}

@media(max-width:900px){

    .kitchen-intro,
    .kitchen-package{
        grid-template-columns:1fr;
    }

    .kitchen-feature-strip{
        grid-template-columns:1fr 1fr;
    }

    .kitchen-atmosphere-grid{
        grid-template-columns:1fr;
        grid-template-rows:auto;
    }

    .kitchen-atmosphere-card,
    .kitchen-atmosphere-card.large{
        height:360px;
        grid-row:auto;
    }

    .kitchen-intro h2,
    .kitchen-package h2{
        font-size:46px;
    }
}

body:has(.kitchen-intro) .concept-hero{
    height:72vh;
}

body:has(.kitchen-intro) .concept-hero-image{
    height:100%;
    object-fit:cover;
    object-position:center 58%;
}

.kitchen-atmospheres .concepts-header h2{
    color:#1b1b1b;
}

.kitchen-atmospheres .mini-title{
    color:#7b7168;
}

/* =========================
   FOOTER
========================= */

.footer{
    background:#0f0f0f;
    color:#f4efe7;
    padding:70px 8% 30px;
    border-top:1px solid rgba(255,255,255,0.12);
}

.footer-brand img{
    width:120px;
    margin-bottom:22px;
}

.footer-brand p{
    font-family:'Cormorant Garamond', serif;
    font-size:28px;
    font-weight:300;
    color:#f4efe7;
}

.footer-links{
    margin-top:45px;
    display:flex;
    flex-wrap:wrap;
    gap:28px;
}

.footer-links a{
    color:rgba(244,239,231,0.75);
    text-decoration:none;
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
    transition:color 220ms cubic-bezier(.4,0,.2,1);
}

.footer-links a:hover{
    color:#b99b63;
}

.footer-bottom{
    margin-top:55px;
    padding-top:22px;
    border-top:1px solid rgba(255,255,255,0.12);
}

.footer-bottom p{
    font-size:12px;
    color:rgba(244,239,231,0.45);
}

/* Legal/company identity (trade name, registration, contact) — compact,
   muted lines above the copyright notice. Same info appears fuller on
   contact.html's own "Company Details" section. */
.footer-legal{
    display:flex;
    flex-direction:column;
    gap:5px;
    margin-bottom:16px;
}

.footer-legal p{
    font-size:11.5px;
    line-height:1.6;
    color:rgba(244,239,231,0.5);
}

.footer-legal a{
    color:rgba(244,239,231,0.5);
    text-decoration:none;
    transition:color 220ms cubic-bezier(.4,0,.2,1);
}

.footer-legal a:hover{
    color:#b99b63;
}

@media(max-width:700px){
    .footer-links{
        flex-direction:column;
        gap:16px;
    }
}

/* =========================
   MOBILE MENU
========================= */

.hamburger{
    display:none;
    width:34px;
    height:24px;
    background:none;
    border:none;
    cursor:pointer;
    flex-direction:column;
    justify-content:space-between;
    z-index:10001;
}

.hamburger span{
    display:block;
    height:2px;
    width:100%;
    background:#f4efe7;
    transition:0.3s ease;
}

.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:100%;
    height:100vh;
    background:#0f0f0f;
    z-index:10000;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:34px;
    transition:right 0.45s ease;
}

.mobile-menu.active{
    right:0;
}

.mobile-menu a{
    color:#f4efe7;
    text-decoration:none;
    font-family:'Cormorant Garamond', serif;
    font-size:42px;
    font-weight:300;
}

.hamburger.active span:nth-child(1){
    transform:rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2){
    opacity:0;
}

.hamburger.active span:nth-child(3){
    transform:rotate(-45deg) translate(8px, -8px);
}

@media(max-width:800px){

    .nav-links{
        display:none;
    }

    .hamburger{
        display:flex;
    }
}

/* =========================
    DROPDOWN MENU
========================= */

.dropdown{
    position:relative;
}

.dropdown > a{
    cursor:default;
}

.dropdown-content{
    position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-50%) translateY(10px);

    width:250px;
    padding:16px 0;

    background:rgba(20,20,20,0.18);
    backdrop-filter:blur(35px) brightness(0.75);
    -webkit-backdrop-filter:blur(35px) brightness(0.75);

    border:1px solid rgba(255,255,255,0.10);
    box-shadow:0 24px 70px rgba(0,0,0,0.22);

    opacity:0;
    visibility:hidden;
    pointer-events:none;

    transition:
        opacity 220ms cubic-bezier(.4,0,.2,1),
        transform 220ms cubic-bezier(.4,0,.2,1),
        visibility 220ms cubic-bezier(.4,0,.2,1);
}

.dropdown-content a{
    display:block;
    padding:12px 24px;

    color:#fff;
    text-decoration:none;

    font-family:'Inter', sans-serif;
    font-size:0.9rem;
    font-weight:400;
    letter-spacing:2px;
    text-transform:none;

    text-shadow:0 2px 12px rgba(0,0,0,0.55);

    transition:background 220ms cubic-bezier(.4,0,.2,1), color 220ms cubic-bezier(.4,0,.2,1), padding-left 220ms cubic-bezier(.4,0,.2,1);
}

.dropdown-content a:hover{
    color:#d6bd86;
    background:rgba(0,0,0,0.18);
    padding-left:30px;
}

.dropdown:hover .dropdown-content{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateX(-50%) translateY(0);
}

.simple-page{
    min-height:80vh;
    padding:180px 8% 120px;
    background:#f4efe7;
    color:#111;

    display:flex;
    flex-direction:column;
    justify-content:center;
}

.simple-page h1{
    font-family:'Cormorant Garamond', serif;
    font-size:5.5rem;
    font-weight:300;
    letter-spacing:4px;
    margin-bottom:30px;
}

.simple-page p{
    max-width:650px;
    line-height:2;
    font-size:1.05rem;
    color:#4a4038;
}

/* =========================
   LEGAL CONTENT PAGES
   For a page with real multi-section body copy (delivery-returns.html)
   rather than a single centered blurb — .simple-page's vertical-centering
   flex layout works for a one-paragraph placeholder (terms.html,
   privacy-policy.html today) but not for a long document.
========================= */

.legal-page-header{
    padding:170px 8% 50px;
    background:#f4efe7;
}

.legal-page-header h1{
    font-family:'Cormorant Garamond', serif;
    font-size:clamp(2.6rem, 6vw, 4.2rem);
    font-weight:300;
    letter-spacing:2px;
    color:#1b1b1b;
    margin:16px 0;
}

.legal-page-header p{
    max-width:640px;
    line-height:1.8;
    font-size:1.05rem;
    color:#4a4038;
}

.legal-content{
    background:#f4efe7;
    padding:0 8% 140px;
}

.legal-content-inner{
    max-width:720px;
    margin:0 auto;
}

.legal-content h2{
    font-family:'Cormorant Garamond', serif;
    font-size:1.7rem;
    font-weight:400;
    color:#1b1b1b;
    margin:48px 0 16px;
}

.legal-content h2:first-child{
    margin-top:0;
}

.legal-content p{
    font-size:1rem;
    line-height:1.9;
    color:#4a4038;
    margin-bottom:16px;
}

.legal-content a{
    color:#9b7a4a;
    text-decoration:underline;
    text-underline-offset:2px;
    transition:color 220ms cubic-bezier(.4,0,.2,1);
}

.legal-content a:hover{
    color:#7d5a24;
}

.legal-form-block{
    margin-top:20px;
    padding:28px 30px;
    border-radius:20px;
    border:1px solid rgba(80,60,40,0.18);
    background:#fffaf4;
}

.legal-form-block p{
    margin-bottom:10px;
    font-size:0.95rem;
}

.legal-form-block .legal-form-note{
    font-size:0.82rem;
    color:#8a7f73;
    margin-top:16px;
    margin-bottom:0;
}

@media(max-width:700px){
    .legal-page-header{
        padding:150px 6% 40px;
    }

    .legal-content{
        padding:0 6% 100px;
    }

    .legal-form-block{
        padding:22px 20px;
    }
}

/* =========================
   CONTACT PAGE — FORM
   No backend yet (static site, see ROADMAP.md) — submit builds a
   mailto: link to info@loriva.nl so the message goes somewhere real
   today; swap for a real endpoint once Phase 2 backend work lands.
========================= */
.contact-page-form{
    max-width:560px;
    margin-top:50px;
}

.contact-page-field{
    margin-bottom:18px;
}

.contact-page-label{
    display:block;
    font-size:0.85rem;
    color:#4a4038;
    margin-bottom:8px;
    letter-spacing:0.5px;
}

.contact-page-input,
.contact-page-textarea{
    width:100%;
    padding:14px 18px;
    border-radius:16px;
    border:1px solid rgba(80,60,40,0.18);
    background:#fffaf4;
    color:#111;
    font-family:inherit;
    font-size:0.95rem;
    transition:border-color 220ms cubic-bezier(.4,0,.2,1);
}

select.contact-page-input{
    cursor:pointer;
}

.contact-page-input:focus,
.contact-page-textarea:focus{
    outline:none;
    border-color:#9b7a4a;
}

.contact-page-textarea{
    min-height:140px;
    resize:vertical;
}

.contact-page-submit{
    border:1px solid #111;
    background:transparent;
    color:#111;
    padding:16px 40px;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:0.9rem;
    cursor:pointer;
    transition:background 220ms cubic-bezier(.4,0,.2,1), color 220ms cubic-bezier(.4,0,.2,1), transform 220ms cubic-bezier(.4,0,.2,1);
}

.contact-page-submit:hover{
    background:#111;
    color:#fff;
    transform:translateY(-2px);
}

.contact-form-hint{
    margin-top:14px;
    font-size:0.8rem;
    color:#8a7f73;
}

.contact-form-error{
    margin-top:14px;
    padding:14px 16px;
    border-radius:16px;
    border:1px solid rgba(190,70,50,0.3);
    background:rgba(190,70,50,0.06);
    color:#7a3226;
    font-size:0.85rem;
    line-height:1.6;
}

.contact-form-success{
    margin-top:14px;
    padding:14px 16px;
    border-radius:16px;
    border:1px solid rgba(80,60,40,0.18);
    background:#fffaf4;
    color:#3a332c;
    font-size:0.9rem;
}

.contact-page-direct{
    margin-top:40px;
    font-size:0.95rem;
    color:#4a4038;
}

.contact-page-direct a{
    color:#9b7a4a;
    text-decoration:none;
    border-bottom:1px solid currentColor;
    transition:color 220ms cubic-bezier(.4,0,.2,1);
}

.contact-page-direct a:hover{
    color:#7d5a24;
}

/* =========================
   CONTACT PAGE — DEPARTMENTS + FAQ
========================= */
.contact-departments{
    background:#181512;
    color:#f4efe7;
    padding:120px 8%;
}

.contact-department-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
    max-width:1100px;
    margin:50px auto 0;
}

.contact-department-card{
    border:1px solid rgba(255,255,255,0.14);
    border-radius:20px;
    padding:26px 24px;
    transition:border-color 220ms cubic-bezier(.4,0,.2,1);
}

.contact-department-card:hover{
    border-color:#9b7a4a;
}

.contact-department-card h3{
    font-family:'Cormorant Garamond', serif;
    font-size:1.3rem;
    font-weight:400;
    margin-bottom:8px;
}

.contact-department-card p{
    color:rgba(244,239,231,0.65);
    font-size:0.85rem;
    line-height:1.6;
    margin-bottom:14px;
}

.contact-department-card a{
    color:#d6bd86;
    text-decoration:none;
    font-size:0.85rem;
    letter-spacing:0.5px;
    border-bottom:1px solid rgba(214,189,134,0.4);
    transition:color 220ms cubic-bezier(.4,0,.2,1), border-color 220ms cubic-bezier(.4,0,.2,1);
}

.contact-department-card a:hover{
    color:#f4efe7;
    border-color:#f4efe7;
}

@media(max-width:900px){
    .contact-department-grid{
        grid-template-columns:1fr;
    }
}

.contact-faq{
    background:#f4efe7;
    padding:120px 8%;
}

.contact-faq-list{
    max-width:760px;
    margin:50px auto 0;
}

.contact-faq-item{
    border-bottom:1px solid rgba(80,60,40,0.18);
    padding:22px 0;
}

.contact-faq-item summary{
    font-family:'Cormorant Garamond', serif;
    font-size:1.3rem;
    cursor:pointer;
    list-style:none;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    color:#1b1b1b;
}

.contact-faq-item summary::-webkit-details-marker{
    display:none;
}

.contact-faq-item summary::after{
    content:'+';
    font-family:'Inter', sans-serif;
    font-size:1.4rem;
    color:#9b7a4a;
    transition:transform 220ms cubic-bezier(.4,0,.2,1);
    flex:none;
}

.contact-faq-item[open] summary::after{
    transform:rotate(45deg);
}

.contact-faq-item p{
    margin-top:14px;
    color:#4a4038;
    line-height:1.8;
    max-width:640px;
}

/* Fuller version of the footer's compact legal block — the same trade
   name/registration/contact details, laid out to actually be read. */
.contact-company{
    background:#f4efe7;
    padding:100px 8% 120px;
    border-top:1px solid rgba(80,60,40,0.12);
}

.contact-company-card{
    max-width:600px;
    margin:50px auto 0;
    text-align:center;
}

.contact-company-tradename{
    font-family:'Cormorant Garamond', serif;
    font-size:1.3rem;
    font-weight:400;
    color:#1b1b1b;
    margin-bottom:28px;
}

.contact-company-list{
    display:grid;
    grid-template-columns:auto 1fr;
    gap:10px 18px;
    text-align:left;
    font-size:0.9rem;
    color:#4a4038;
}

.contact-company-list dt{
    font-weight:500;
    color:#8a7f73;
    letter-spacing:0.5px;
    text-transform:uppercase;
    font-size:0.72rem;
    align-self:start;
    padding-top:2px;
}

.contact-company-list dd{
    margin:0;
    line-height:1.6;
}

.contact-company-list a{
    color:#9b7a4a;
    text-decoration:none;
    border-bottom:1px solid rgba(155,122,74,0.4);
    transition:color 220ms cubic-bezier(.4,0,.2,1), border-color 220ms cubic-bezier(.4,0,.2,1);
}

.contact-company-list a:hover{
    color:#7d5a24;
    border-color:#7d5a24;
}

@media(max-width:600px){
    .contact-company-list{
        grid-template-columns:1fr;
        gap:4px 0;
        text-align:center;
    }

    .contact-company-list dt{
        margin-top:14px;
        padding-top:0;
    }
}

/* =========================
   PROCESS PAGE
========================= */

.process-overview{
    padding:150px 8% 120px;
    background:#f4efe7;
}

.process-overview-content{
    max-width:760px;
    margin:0 auto;
}

.process-overview h2{
    font-family:'Cormorant Garamond', serif;
    font-size:5rem;
    font-weight:300;
    line-height:1;
    color:#1b1b1b;
    margin:25px 0;
}

.process-overview p{
    font-size:1.05rem;
    line-height:2;
    color:#5a524b;
}

.process-card-section{
    min-height:75vh;
    padding:110px 8%;
    display:grid;
    grid-template-columns:0.35fr 1fr;
    gap:80px;
    align-items:center;

    background:#ebe2d7;
    border-top:1px solid rgba(0,0,0,0.08);
}

.process-card-section:nth-of-type(odd){
    background:#f4efe7;
}

.process-card-number{
    font-family:'Cormorant Garamond', serif;
    font-size:9rem;
    font-weight:300;
    color:#b99b63;
    line-height:1;
}

.process-card-content{
    max-width:820px;
}

.process-card-content h2{
    font-family:'Cormorant Garamond', serif;
    font-size:4.5rem;
    font-weight:300;
    line-height:1;
    color:#1b1b1b;
    margin:22px 0 28px;
}

.process-card-content p{
    max-width:680px;
    font-size:1.05rem;
    line-height:2;
    color:#5a524b;
}

.process-card-content p a{
    color:#9b7a4a;
    text-decoration:underline;
    text-underline-offset:2px;
    transition:color 220ms cubic-bezier(.4,0,.2,1);
}

.process-card-content p a:hover{
    color:#7d5a24;
}

@media(max-width:850px){
    .process-card-section{
        grid-template-columns:1fr;
        gap:30px;
        min-height:auto;
        padding:90px 8%;
    }

    .process-card-number{
        font-size:5rem;
    }

    .process-overview h2,
    .process-card-content h2{
        font-size:3.2rem;
    }
}

/* =========================
   BATHROOM CONFIGURATOR
========================= */

.configurator-page{
    min-height:100vh;
    background:#f4efe8;
    padding:140px 6vw 80px;
    color:#1d1a17;
}

.configurator-header{
    max-width:850px;
    margin:0 auto 60px;
    text-align:center;
}

.configurator-header .eyebrow{
    font-size:0.78rem;
    letter-spacing:0.24em;
    text-transform:uppercase;
    color:#9b7a4a;
    margin-bottom:18px;
}

.configurator-header h1{
    font-family:'Cormorant Garamond', Georgia, serif;
    font-size:clamp(2.4rem, 5vw, 5rem);
    font-weight:400;
    margin-bottom:20px;
}

.configurator-header p{
    max-width:620px;
    margin:0 auto;
    color:#6f665c;
    line-height:1.7;
}

.configurator-layout{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:40px;
    align-items:start;
}

.configurator-panel{
    background:rgba(255,255,255,0.72);
    border:1px solid rgba(80,60,40,0.18);
    border-radius:28px;
    padding:28px;
    position:sticky;
    top:110px;
    max-height:calc(100vh - 140px);
    overflow-y:auto;
    animation:panel-in 400ms cubic-bezier(.4,0,.2,1);
}

@keyframes panel-in{
    from{ opacity:0; transform:translateY(8px); }
    to{ opacity:1; transform:translateY(0); }
}

@media (prefers-reduced-motion: reduce){
    .configurator-panel{ animation:none; }
}

.config-group{
    padding-bottom:26px;
    margin-bottom:26px;
    border-bottom:1px solid rgba(80,60,40,0.12);
}

.config-group:last-child{
    border-bottom:none;
    margin-bottom:0;
    padding-bottom:0;
}

.config-group h3{
    font-family:'Cormorant Garamond', Georgia, serif;
    font-size:1.3rem;
    font-weight:400;
    margin-bottom:14px;
}

.config-hint{
    font-size:0.82rem;
    color:#8a7f73;
    line-height:1.5;
    margin:-6px 0 14px;
}

.config-option{
    width:100%;
    display:block;
    padding:14px 16px;
    margin-bottom:10px;
    border-radius:999px;
    border:1px solid rgba(80,60,40,0.18);
    background:#fffaf4;
    color:#2a241f;
    text-align:left;
    cursor:pointer;
    transition:border-color 220ms cubic-bezier(.4,0,.2,1), color 220ms cubic-bezier(.4,0,.2,1), transform 150ms cubic-bezier(.4,0,.2,1);
}

.config-option:hover{
    transform:translateX(2px);
    border-color:#a9824f;
}

.config-option.active{
    background:transparent;
    color:#1f1a16;
    border-color:#1f1a16;
    border-width:1.5px;
    font-weight:500;
}

/* Service-level buttons carry a label + (for the not-yet-selectable
   ones) a "Coming soon" badge side by side, so they need flex instead of
   the plain block/text layout every other .config-option uses. */
.config-option.service-option{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
}

/* Package + Installation at launch: visible, on-brand, but a real
   disabled button underneath — not just a visual treatment — so it
   can't be reached by mouse or keyboard. */
.config-option.service-option.coming-soon,
.config-option.service-option.coming-soon:hover{
    cursor:not-allowed;
    background:#f4efe8;
    color:#a89a89;
    border-color:rgba(80,60,40,0.12);
    transform:none;
}

.coming-soon-badge{
    flex:none;
    padding:4px 11px;
    border-radius:999px;
    border:1px solid #a9824f;
    color:#9b7a4a;
    font-size:0.64rem;
    letter-spacing:0.09em;
    text-transform:uppercase;
    background:transparent;
    white-space:nowrap;
}

/* Suggested-pick card — the concept's default for this line, shown
   instead of the full option list until the shopper opts to customise
   (see renderSuggestedCard in configurator.js). */
.suggested-card{
    display:flex;
    align-items:center;
    gap:14px;
    padding:14px;
    margin-bottom:14px;
    border-radius:20px;
    border:1px solid rgba(80,60,40,0.18);
    transition:border-color 220ms cubic-bezier(.4,0,.2,1);
    background:transparent;
}

.suggested-card:hover{
    border-color:#9b7a4a;
}

.suggested-card[hidden]{
    display:none;
}

.suggested-card-media{
    flex:none;
    width:56px;
    height:56px;
    border-radius:14px;
    background:#f4efe8;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.suggested-card-media img{
    max-width:100%;
    max-height:100%;
    object-fit:contain;
}

.suggested-card-swatch{
    width:28px;
    height:28px;
    border-radius:50%;
    border:1px solid rgba(80,60,40,0.18);
}

.suggested-card-body{
    flex:1;
    min-width:0;
}

.suggested-tag{
    display:block;
    font-size:0.68rem;
    letter-spacing:0.08em;
    text-transform:uppercase;
    color:#9b7a4a;
    margin-bottom:3px;
}

.suggested-name{
    font-family:'Cormorant Garamond', Georgia, serif;
    font-size:1.1rem;
    font-weight:400;
    color:#2a241f;
    line-height:1.2;
}

.suggested-desc{
    font-size:0.78rem;
    color:#8a7f73;
    margin-top:2px;
}

.suggested-change-btn{
    flex:none;
    background:none;
    border:none;
    font-size:0.76rem;
    color:#8a7f73;
    text-decoration:underline;
    text-underline-offset:2px;
    cursor:pointer;
    padding:4px;
    transition:0.25s ease;
}

.suggested-change-btn:hover{
    color:#1f1a16;
}

@media(max-width:420px){
    .suggested-card{
        flex-wrap:wrap;
    }

    .suggested-change-btn{
        width:100%;
        text-align:left;
        padding-left:70px;
    }

    .config-option.service-option{
        flex-wrap:wrap;
    }
}

.config-checkbox{
    display:flex;
    align-items:center;
    gap:10px;
    margin:12px 0;
    color:#3a332c;
    cursor:pointer;
}

.config-checkbox input{
    accent-color:#1f1a16;
}

.config-textarea{
    width:100%;
    min-height:95px;
    margin-top:14px;
    padding:14px;
    border-radius:16px;
    border:1px solid rgba(80,60,40,0.18);
    background:#fffaf4;
    resize:vertical;
    font-family:inherit;
}

/* Tile surface inputs (floor / wall m²) */

.surface-hint{
    margin:16px 0 12px;
}

.surface-inputs{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
}

.surface-field{
    display:block;
}

.surface-label{
    display:block;
    font-size:0.78rem;
    letter-spacing:0.04em;
    color:#8a7f73;
    margin-bottom:6px;
}

.surface-input-wrap{
    display:flex;
    align-items:center;
    gap:8px;
    padding:12px 18px;
    border-radius:999px;
    border:1px solid rgba(80,60,40,0.18);
    background:#fffaf4;
    transition:0.25s ease;
}

.surface-input-wrap:focus-within{
    border-color:#a9824f;
}

.surface-input-wrap input{
    width:100%;
    border:none;
    background:transparent;
    font-family:inherit;
    font-size:0.95rem;
    color:#2a241f;
    outline:none;
}

.surface-input-wrap input::-webkit-outer-spin-button,
.surface-input-wrap input::-webkit-inner-spin-button{
    -webkit-appearance:none;
    margin:0;
}

.surface-input-wrap input[type=number]{
    -moz-appearance:textfield;
    appearance:textfield;
}

.surface-unit{
    color:#8a7f73;
    font-size:0.85rem;
}

/* Drawings & photos upload */

.upload-area{
    position:relative;
    display:block;
    text-align:center;
    padding:28px 18px;
    border:1px dashed rgba(80,60,40,0.35);
    border-radius:22px;
    background:#fffaf4;
    cursor:pointer;
    transition:0.25s ease;
}

.upload-area:hover,
.upload-area:focus-within,
.upload-area.dragover{
    border-color:#a9824f;
    background:#fff6ea;
}

/* visually hidden but still keyboard-focusable */
.upload-area input{
    position:absolute;
    width:1px;
    height:1px;
    opacity:0;
    overflow:hidden;
}

.upload-title{
    display:block;
    font-family:'Cormorant Garamond', Georgia, serif;
    font-size:1.15rem;
    color:#2a241f;
}

.upload-sub{
    display:block;
    margin-top:6px;
    font-size:0.78rem;
    color:#8a7f73;
}

.attachment-list{
    list-style:none;
    margin-top:14px;
    padding:0;
}

.attachment-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    padding:10px 18px;
    margin-bottom:8px;
    border-radius:999px;
    border:1px solid rgba(80,60,40,0.18);
    background:#fffaf4;
    font-size:0.82rem;
    color:#3a332c;
}

.attachment-name{
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.attachment-remove{
    border:none;
    background:none;
    color:#8a7f73;
    font-size:1.15rem;
    line-height:1;
    padding:2px 6px;
    cursor:pointer;
    transition:0.25s ease;
}

.attachment-remove:hover{
    color:#1f1a16;
}

.attachment-hint{
    margin:10px 0 0;
}

/* Contact details (dark summary panel — matches .customer-notes) */

.contact-fields{
    margin:0 0 18px;
}

.contact-input{
    width:100%;
    margin-bottom:10px;
    padding:13px 18px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,0.18);
    background:rgba(255,255,255,0.06);
    color:#fff;
    font-family:inherit;
    font-size:0.9rem;
}

.contact-input::placeholder{
    color:rgba(255,255,255,0.45);
}

.contact-input:focus{
    outline:none;
    border-color:rgba(233,201,138,0.6);
}

.customer-notes-label{
    display:block;
    font-size:0.85rem;
    color:rgba(232,222,210,0.8);
    margin-bottom:8px;
}

.customer-notes{
    width:100%;
    min-height:80px;
    margin:0 0 20px;
    padding:14px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,0.18);
    background:rgba(255,255,255,0.06);
    color:#fff;
    resize:vertical;
    font-family:inherit;
}

.customer-notes::placeholder{
    color:rgba(255,255,255,0.45);
}

/* Sizes step — last thing before Save Impression / Request Offer.
   Matches .contact-fields' dark-panel treatment above. */
.sizes-block{
    margin:0 0 20px;
}

.sizes-hint{
    font-size:0.8rem;
    line-height:1.5;
    color:rgba(232,222,210,0.65);
    margin:-4px 0 14px;
}

.size-field{
    margin-bottom:14px;
}

.size-field-label{
    display:block;
    font-size:0.8rem;
    color:rgba(232,222,210,0.8);
    margin-bottom:6px;
}

.size-select{
    width:100%;
    padding:13px 18px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,0.18);
    background:rgba(255,255,255,0.06);
    color:#fff;
    font-family:inherit;
    font-size:0.9rem;
    cursor:pointer;
}

.size-select:focus{
    outline:none;
    border-color:rgba(233,201,138,0.6);
}

/* The <select>'s own options render with the OS/browser's native popup
   styling, not this dark theme — force a light background there so the
   text (dark by default in most browsers) stays legible. */
.size-select option{
    background:#2a241f;
    color:#fff;
}

.configurator-preview-wrap{
    display:grid;
    gap:24px;
}

.bathroom-preview{
    position:relative;
    width:100%;
    /* fixed aspect ratio (matches the 3:2 tile scenes) keeps every
       percentage-positioned product layer stable on all screen sizes */
    aspect-ratio:3/2;
    background:linear-gradient(135deg,#e7ddd1,#f8f3ec);
    border-radius:34px;
    overflow:hidden;
    box-shadow:0 35px 90px rgba(0,0,0,0.12);
    border:1px solid rgba(80,60,40,0.12);
}

.preview-layer{
    position:absolute;
    pointer-events:none;
    height:auto;
    transition:opacity 260ms ease;
}

/* Ghost overlay created by setLayerImage()/crossfadeLayerImage() in
   configurator.js during a layer swap — see the PREVIEW LAYERS
   section there. */
.preview-layer-ghost{
    pointer-events:none;
}

@media (prefers-reduced-motion: reduce){
    .preview-layer{ transition:none; }
}

.base-layer{
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
    opacity:0;
}

#tilesLayer{
    inset:0;
    width:100%;
    height:100%;
    z-index:2;
    object-fit:cover;
    object-position:center;
}

/* Budget 1's tile renders have a transparent gap that doesn't reach the
   frame edges (see ROADMAP.md) — this crop/stretch hides it. Other
   concepts (e.g. Budget 2) use full-bleed 3:2 renders that need no
   correction, so this override is scoped to Budget 1 only. */
body[data-concept="budget1"] #tilesLayer{
    top:-25%;
    left:-37.7%;
    width:175.4%;
    height:125%;
    object-fit:fill;
}

.selection-summary{
    background:#1f1a16;
    color:#fff;
    border-radius:28px;
    padding:30px;
}

.selection-summary h3{
    font-family:'Cormorant Garamond', Georgia, serif;
    font-size:1.4rem;
    font-weight:400;
    margin-bottom:18px;
}

.selection-summary ul{
    list-style:none;
    padding:0;
    margin:0 0 26px;
}

.selection-summary li{
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,0.12);
    color:#e8ded2;
    line-height:1.5;
}

.primary-action,
.secondary-action{
    width:100%;
    padding:15px 18px;
    border-radius:999px;
    cursor:pointer;
    font-size:0.95rem;
    transition:0.25s ease;
}

.primary-action{
    background:transparent;
    color:#fff;
    border:1px solid #fff;
    margin-bottom:12px;
    transition:background 220ms cubic-bezier(.4,0,.2,1), color 220ms cubic-bezier(.4,0,.2,1);
}

.primary-action:hover{
    background:#fff;
    color:#1f1a16;
}

.secondary-action{
    background:transparent;
    color:#fff;
    border:1px solid rgba(255,255,255,0.35);
}

.primary-action:hover,
.secondary-action:hover{
    transform:translateY(-2px);
}

.non-binding-notice{
    margin-top:14px;
    font-size:0.78rem;
    line-height:1.6;
    color:#8a7f73;
}

/* Same notice also appears on the (light) contact page — .selection-summary
   is the one dark-background context it's used in. */
.selection-summary .non-binding-notice{
    color:rgba(255,255,255,0.55);
}

@media(max-width:1000px){
    .configurator-layout{
        grid-template-columns:1fr;
    }

    .configurator-panel{
        position:relative;
        top:auto;
        max-height:none;
    }

    /* show the preview first on small screens so choices are
       immediately visible while scrolling the option list */
    .configurator-preview-wrap{
        order:-1;
    }
}

@media(max-width:600px){
    .configurator-page{
        padding:120px 18px 60px;
    }

    .configurator-panel{
        padding:22px;
        border-radius:22px;
    }

    .bathroom-preview{
        border-radius:24px;
    }

    .selection-summary{
        border-radius:22px;
        padding:24px;
    }
}

/* =========================
   CONFIGURATOR CONCEPT SELECTOR
========================= */

.concept-selector{
    max-width:1280px;
    margin:0 auto 38px;
    background:rgba(255,255,255,0.55);
    border:1px solid rgba(80,60,40,0.12);
    border-radius:30px;
    padding:30px;
    box-shadow:0 20px 55px rgba(0,0,0,0.06);
}

.concept-selector-header{
    text-align:center;
    margin-bottom:24px;
}

.concept-selector-header .eyebrow{
    font-size:0.72rem;
    letter-spacing:0.24em;
    text-transform:uppercase;
    color:#9b7a4a;
    margin-bottom:10px;
}

.concept-selector-header h2{
    font-family:'Cormorant Garamond', Georgia, serif;
    font-size:2rem;
    font-weight:400;
}

.concept-choice-grid{
    display:grid;
    grid-template-columns:repeat(6, 1fr);
    gap:14px;
}

.concept-choice{
    border:1px solid rgba(80,60,40,0.14);
    background:#fffaf4;
    border-radius:22px;
    padding:20px 16px;
    min-height:120px;
    text-align:left;
    cursor:pointer;
    transition:transform 220ms cubic-bezier(.4,0,.2,1), border-color 220ms cubic-bezier(.4,0,.2,1);
}

.concept-choice span{
    display:block;
    font-family:'Cormorant Garamond', Georgia, serif;
    font-size:1.15rem;
    margin-bottom:10px;
}

.concept-choice small{
    display:block;
    color:#70665d;
    line-height:1.45;
}

.concept-choice:hover{
    transform:translateY(-3px);
    border-color:#9b7a4a;
}

.concept-choice.active{
    background:#fffaf4;
    border-color:#9b7a4a;
    border-width:1.5px;
    color:#2a241f;
    position:relative;
    animation:package-sweep 400ms cubic-bezier(.4,0,.2,1);
}

.concept-choice.active::after{
    content:'';
    position:absolute;
    left:20px; right:20px; bottom:0;
    height:2px;
    background:#9b7a4a;
}

.concept-choice.active small{
    color:#70665d;
}

@media (prefers-reduced-motion: reduce){
    .concept-choice.active{ animation:none; }
}

.concept-info{
    display:flex;
    flex-direction:column;
    gap:4px;

    margin-top:12px;
    padding-top:12px;

    border-top:1px solid rgba(80,60,40,0.14);
}

.concept-price{
    font-family:'Cormorant Garamond', Georgia, serif;
    font-size:1.05rem;
    color:#9b7a4a;
}

.concept-tiles{
    font-size:0.72rem;
    letter-spacing:0.03em;
    color:#8a8079;
}

.concept-choice.active .concept-info{
    border-top-color:rgba(80,60,40,0.14);
}

.concept-choice.active .concept-price{
    color:#9b7a4a;
}

.concept-choice.active .concept-tiles{
    color:#8a8079;
}

.concept-choice.disabled{
    opacity:0.45;
    cursor:not-allowed;
}

.concept-choice.disabled:hover{
    transform:none;
    border-color:rgba(80,60,40,0.14);
}

@media(max-width:1100px){
    .concept-choice-grid{
        grid-template-columns:repeat(3, 1fr);
    }
}

@media(max-width:650px){
    .concept-selector{
        padding:22px;
        border-radius:24px;
    }

    .concept-choice-grid{
        grid-template-columns:1fr;
    }
}

/* =========================
   PACKAGE PICKER
   The default state after choosing a concept: 3 named packages, each a
   complete ready-to-go combination. The full line-by-line editor
   (.configurator-panel) stays hidden until "Configure on my own" is
   used. See configurator.js — setConfigMode / applyPackage.
========================= */

.package-mode-banner{
    max-width:1280px;
    margin:0 auto 38px;
    background:#fdf6ea;
    border:1px solid rgba(80,60,40,0.18);
    border-radius:30px;
    padding:34px 36px;
}

.package-mode-header{
    text-align:center;
    margin-bottom:26px;
}

.package-mode-header .eyebrow{
    font-size:0.72rem;
    letter-spacing:0.24em;
    text-transform:uppercase;
    color:#9b7a4a;
    margin-bottom:10px;
}

.package-mode-header h2{
    font-family:'Cormorant Garamond', Georgia, serif;
    font-size:1.7rem;
    font-weight:400;
    margin-bottom:10px;
}

.package-mode-header p:not(.eyebrow){
    color:#70665d;
    line-height:1.6;
    max-width:560px;
    margin:0 auto;
}

.package-card-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:16px;
    margin-bottom:26px;
}

.package-card{
    border:1px solid rgba(80,60,40,0.14);
    background:#fffaf4;
    border-radius:22px;
    padding:22px 20px;
    text-align:left;
    cursor:pointer;
    transition:0.25s ease;
}

.package-card:hover{
    transform:translateY(-3px);
    border-color:#9b7a4a;
}

.package-card-name{
    display:block;
    font-family:'Cormorant Garamond', Georgia, serif;
    font-size:1.25rem;
    margin-bottom:8px;
}

.package-card-desc{
    display:block;
    color:#70665d;
    line-height:1.5;
    font-size:0.85rem;
}

.package-card.active{
    background:#fffaf4;
    border-color:#9b7a4a;
    border-width:1.5px;
    position:relative;
    animation:package-sweep 400ms cubic-bezier(.4,0,.2,1);
}

.package-card.active::after{
    content:'';
    position:absolute;
    left:22px; right:22px; bottom:0;
    height:2px;
    background:#9b7a4a;
}

.package-card.active .package-card-name,
.package-card.active .package-card-desc{
    color:#1f1a16;
}

@keyframes package-sweep{
    0%{ box-shadow:inset 0 0 0 0 rgba(155,122,74,0.35); }
    40%{ box-shadow:inset 0 0 0 999px rgba(155,122,74,0.12); }
    100%{ box-shadow:inset 0 0 0 999px rgba(155,122,74,0); }
}

@media (prefers-reduced-motion: reduce){
    .package-card.active{ animation:none; }
}

.package-mode-btn{
    display:block;
    margin:0 auto;
    padding:14px 28px;
    border-radius:999px;
    border:1px solid #1f1a16;
    background:transparent;
    color:#1f1a16;
    font-size:0.85rem;
    letter-spacing:0.02em;
    cursor:pointer;
    transition:0.25s ease;
}

.package-mode-btn:hover{
    transform:translateY(-2px);
}

/* Custom mode: the CTA becomes the way back, so give it a touch more
   presence than the plain outline it has as a secondary "way in". */
body[data-config-mode="custom"] .package-mode-btn{
    background:#1f1a16;
    color:#fff;
}

/* When the panel is hidden (package mode), let the preview take the
   full width instead of leaving an empty 380px column. */
.configurator-layout:has(.configurator-panel[hidden]){
    grid-template-columns:1fr;
}

.configurator-panel[hidden]{
    display:none;
}

@media(max-width:800px){
    .package-mode-banner{
        padding:26px;
    }

    .package-card-grid{
        grid-template-columns:1fr;
    }
}

/* =========================
   CONFIGURATOR OBJECT LAYERS
   Each product category has a fixed box (percentages of the 3:2
   scene). Variants share identical image canvases, so swapping a
   finish never moves or resizes the product.
========================= */

#drainLayer{
    z-index:3;
    left:48%;
    top:62.9%;
    width:13%;
    filter:drop-shadow(0 3px 4px rgba(0,0,0,.22));
    transform:rotate(-9deg)
}

#radiatorLayer{
    z-index:4;
    left:85%;
    top:34.6%;
    width:14%;
    filter:drop-shadow(0 10px 14px rgba(0,0,0,.16)) drop-shadow(0 6px 10px rgba(20,15,10,.18));
}

#vanityLayer{
    z-index:5;
    left:65%;
    top:42.6%;
    width:16%;
    filter:drop-shadow(0 10px 14px rgba(0,0,0,.14)) drop-shadow(0 6px 10px rgba(20,15,10,.18));
}

#mirrorLayer{
    z-index:6;
    left:64.5%;
    top:12.5%;
    width:16%;

}

#toiletLayer{
    z-index:7;
    left:10%;
    top:58.5%;
    width:18%;
    filter:drop-shadow(0 5px 6px rgba(0,0,0,.16)) drop-shadow(0 6px 10px rgba(20,15,10,.18));
}

#showerLayer{
    z-index:8;
    left:49%;
    top:7.9%;
    width:10%;
    filter:drop-shadow(0 8px 12px rgba(0,0,0,.14));
}

#sinkLayer{
    z-index:10;
    left:67%;
    top:38.4%;
    width:11%;
    filter:drop-shadow(0 10px 10px rgba(0,0,0,.10));
}

#faucetLayer{
    z-index:9;
    left:71%;
    top:33.8%;
    width:3.6%;
    filter:drop-shadow(0 6px 8px rgba(0,0,0,.12));
}

/* =========================
   PER-CONCEPT LAYER OVERRIDES
   The rules above assume every concept's product photos share the same
   canvas proportions as Budget 1's — true for vanity/basin/toilet/drain
   (Budget 2 reuses those exact Budget 1 renders) and for the radiator
   (byte-identical source photo), but NOT for shower/mirror: Budget 2's
   renders went through their own crop and come out a different shape
   (shower: 0.301 vs 0.233 width/height; mirror: 1.201 vs 0.884 — a
   round-ish mirror vs a wide rectangular one). Using the base width on
   those two would render them at the wrong height for this concept's
   photos, even though left/top/everything else about the scene matches.
   Fix: keep the base rule's right edge (so spacing to neighbouring
   items — e.g. the radiator — is undisturbed) and widen leftward by
   exactly the amount that keeps the rendered height identical to
   Budget 1's (width% = baseHeight% * imageAspect / 1.5).

   Any future concept whose own renders don't match Budget 1's crop
   should get the same treatment: a body[data-concept="<id>"] block
   here with only the categories that actually need correcting — see
   body[data-concept="budget1"] #tilesLayer above for the same pattern
   applied to the background scene.
========================= */
body[data-concept="budget2"] #showerLayer{
    left:46.1%;
    width:12.9%;
}

body[data-concept="budget2"] #mirrorLayer{
    left:58.8%;
    width:21.7%;
}

/* =========================
   HERO BUTTONS
========================= */

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    justify-content:center;
}

.hero-buttons .button{
    margin-top:50px;
}

.button-secondary{
    background:rgba(255,255,255,0.12);
    backdrop-filter:blur(6px);
}

/* =========================
   CONFIGURATOR CTA (bathroom page)
========================= */

.configurator-cta{
    background:#181512;
    color:#f4efe7;
    text-align:center;
    padding:120px 8%;
}

.configurator-cta .section-title{
    margin-bottom:40px;
}

.configurator-cta h2{
    font-family:'Cormorant Garamond', serif;
    font-size:3rem;
    font-weight:300;
    margin-bottom:24px;
}

.configurator-cta p{
    max-width:560px;
    margin:0 auto;
    line-height:2;
    color:rgba(244,239,231,0.75);
}

.configurator-cta .button{
    display:inline-block;
}

/* =========================
   ACCESSIBILITY & POLISH
========================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible{
    outline:2px solid #b99b63;
    outline-offset:3px;
}

/* keyboard access for the nav dropdowns */
.dropdown:focus-within .dropdown-content{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateX(-50%) translateY(0);
}

/* keep large display headings on-screen for small devices */
@media(max-width:768px){

    h1{
        font-size:clamp(2.6rem, 12vw, 4rem);
        letter-spacing:6px;
    }

    .concept-hero-content h1{
        font-size:clamp(2.8rem, 13vw, 4.5rem);
        letter-spacing:6px;
    }

    .simple-page h1{
        font-size:clamp(2.6rem, 11vw, 3.6rem);
    }
}

/* =========================
   QUOTATION REQUEST — SUBMIT / SUCCESS / ERROR
   "Request Offer" posts to /api/quotation-request (see configurator.js).
   The success modal only ever appears after that endpoint has confirmed
   the email to Loriva actually sent — never optimistically. Native
   <dialog>/showModal() supplies focus containment and Escape-to-close.
========================= */

.quotation-modal{
    max-width:480px;
    width:calc(100% - 48px);
    border:none;
    border-radius:24px;
    padding:34px 30px 28px;
    background:#fffaf4;
    color:#2a241f;
    box-shadow:0 30px 70px rgba(20,15,10,0.35);
}

.quotation-modal::backdrop{
    background:rgba(15,12,10,0.55);
    backdrop-filter:blur(2px);
}

.quotation-modal[open]{
    animation:quotationModalIn 220ms cubic-bezier(.4,0,.2,1);
}

@keyframes quotationModalIn{
    from{ opacity:0; transform:translateY(8px); }
    to{ opacity:1; transform:translateY(0); }
}

#quotationModalTitle{
    font-family:'Cormorant Garamond', Georgia, serif;
    font-size:1.5rem;
    font-weight:400;
    line-height:1.3;
    margin-bottom:18px;
}

.quotation-modal-details{
    display:grid;
    grid-template-columns:auto 1fr;
    gap:6px 14px;
    margin-bottom:20px;
    padding:14px 16px;
    border-radius:16px;
    border:1px solid rgba(80,60,40,0.18);
    background:#fff;
    font-size:0.88rem;
}

.quotation-modal-details dt{
    font-weight:500;
    color:#8a7f73;
    letter-spacing:0.3px;
    text-transform:uppercase;
    font-size:0.68rem;
    align-self:center;
}

.quotation-modal-details dd{
    margin:0;
    color:#2a241f;
    word-break:break-word;
}

.quotation-modal-notice{
    font-size:0.88rem;
    line-height:1.7;
    color:#4a4038;
    margin-bottom:16px;
}

.quotation-modal-btn{
    width:100%;
    padding:15px 18px;
    border-radius:999px;
    font-size:0.95rem;
    cursor:pointer;
    margin-top:6px;
    transition:background 220ms cubic-bezier(.4,0,.2,1), color 220ms cubic-bezier(.4,0,.2,1), transform 220ms cubic-bezier(.4,0,.2,1), border-color 220ms cubic-bezier(.4,0,.2,1);
}

.quotation-modal-btn-primary{
    background:#1f1a16;
    color:#fff;
    border:1px solid #1f1a16;
}

.quotation-modal-btn-primary:hover{
    background:#3a2e22;
    transform:translateY(-2px);
}

@media(max-width:480px){
    .quotation-modal{
        padding:28px 22px 24px;
        border-radius:20px;
    }
}

/* Inline error banner near "Request Offer" — shown on a failed
   submission instead of the success modal (see configurator.js). Kept
   in the flow (not a dialog) so the customer's selections stay visible
   and editable while they decide what to do next. */
.request-offer-error{
    margin-top:14px;
    padding:14px 16px;
    border-radius:16px;
    border:1px solid rgba(190,70,50,0.35);
    background:rgba(190,70,50,0.08);
    color:#f4efe7;
    font-size:0.85rem;
    line-height:1.6;
}

.request-offer-error a{
    color:inherit;
    text-decoration:underline;
    text-underline-offset:2px;
}

.request-offer-error[hidden]{
    display:none;
}

/* "Sending your request…" state — a real disabled button, not just a
   visual treatment, so a slow connection can't produce a double submit. */
.secondary-action[aria-busy="true"]{
    cursor:progress;
    opacity:0.7;
}

/* Honeypot — invisible to sighted users and screen readers, unreachable
   by keyboard, but present enough in the DOM for a simple bot's
   autofill to catch (display:none is sometimes skipped by such bots,
   this off-screen-but-rendered approach is not). */
.honeypot-field{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
}

@media (prefers-reduced-motion: reduce){
    *,
    *::before,
    *::after{
        transition-duration:0.01ms !important;
        animation-duration:0.01ms !important;
        animation-iteration-count:1 !important;
    }
}

/* =========================
   WITHDRAWAL NOTICE ("Overeenkomst herroepen")
   The statutory online-cancellation button on delivery-returns.html.
   Posts to /api/withdrawal-request; reuses the .contact-page-* field
   styling and the .quotation-modal <dialog> shell so it stays visually
   consistent with the rest of the site's forms/modals.
========================= */

.withdrawal-trigger-wrap{
    margin-top:24px;
}

.withdrawal-trigger-btn{
    border:1px solid #111;
    background:transparent;
    color:#111;
    padding:16px 40px;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:0.9rem;
    font-family:inherit;
    cursor:pointer;
    border-radius:999px;
    transition:background 220ms cubic-bezier(.4,0,.2,1), color 220ms cubic-bezier(.4,0,.2,1), transform 220ms cubic-bezier(.4,0,.2,1);
}

.withdrawal-trigger-btn:hover{
    background:#111;
    color:#fff;
    transform:translateY(-2px);
}

.withdrawal-modal{
    max-width:560px;
    width:calc(100% - 48px);
    max-height:calc(100vh - 80px);
    overflow-y:auto;
    border:none;
    border-radius:24px;
    padding:34px 30px 28px;
    background:#fffaf4;
    color:#2a241f;
    box-shadow:0 30px 70px rgba(20,15,10,0.35);
}

.withdrawal-modal::backdrop{
    background:rgba(15,12,10,0.55);
    backdrop-filter:blur(2px);
}

.withdrawal-modal[open]{
    animation:quotationModalIn 220ms cubic-bezier(.4,0,.2,1);
}

.withdrawal-modal h2{
    font-family:'Cormorant Garamond', Georgia, serif;
    font-size:1.5rem;
    font-weight:400;
    line-height:1.3;
    margin:0 0 10px;
}

.withdrawal-modal-intro{
    font-size:0.9rem;
    line-height:1.7;
    color:#4a4038;
    margin-bottom:22px;
}

.withdrawal-modal-close{
    position:absolute;
    top:20px;
    right:20px;
    width:34px;
    height:34px;
    border-radius:50%;
    border:1px solid rgba(80,60,40,0.25);
    background:#fff;
    color:#2a241f;
    font-size:1rem;
    line-height:1;
    cursor:pointer;
    transition:background 220ms cubic-bezier(.4,0,.2,1), transform 220ms cubic-bezier(.4,0,.2,1);
}

.withdrawal-modal-close:hover{
    background:#f0e8dc;
    transform:rotate(90deg);
}

.withdrawal-modal-form{
    position:relative;
}

@media(max-width:480px){
    .withdrawal-modal{
        padding:28px 22px 24px;
        border-radius:20px;
    }
}

/* =========================
   COOKIE CONSENT BANNER
   Injected on every page by js/cookie-consent.js. Accept/Reject are
   deliberately styled identically (same size, weight, prominence) —
   the GDPR "equally easy" requirement is a visual one, not just a
   functional one. Frosted-glass palette matches .lang-switcher-list.
========================= */

.cookie-banner{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:2000;
    padding:18px 24px;

    background:rgba(20,20,20,0.72);
    backdrop-filter:blur(35px) brightness(0.75);
    -webkit-backdrop-filter:blur(35px) brightness(0.75);
    border-top:1px solid rgba(255,255,255,0.10);
    box-shadow:0 -12px 40px rgba(0,0,0,0.25);

    transform:translateY(0);
    transition:transform 320ms cubic-bezier(.4,0,.2,1), opacity 320ms cubic-bezier(.4,0,.2,1);
}

.cookie-banner[hidden]{
    display:flex;
    pointer-events:none;
    opacity:0;
    transform:translateY(100%);
}

.cookie-banner-inner{
    max-width:1100px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    flex-wrap:wrap;
}

.cookie-banner-text{
    flex:1 1 420px;
    color:#e8ded2;
    font-size:0.85rem;
    line-height:1.7;
    margin:0;
}

.cookie-banner-text a{
    color:#d6bd86;
    text-decoration:underline;
    text-underline-offset:2px;
}

.cookie-banner-actions{
    display:flex;
    gap:12px;
    flex:0 0 auto;
}

.cookie-banner-btn{
    padding:11px 26px;
    border-radius:999px;
    font-family:inherit;
    font-size:0.82rem;
    letter-spacing:1px;
    text-transform:uppercase;
    cursor:pointer;
    transition:background 220ms cubic-bezier(.4,0,.2,1), color 220ms cubic-bezier(.4,0,.2,1), border-color 220ms cubic-bezier(.4,0,.2,1);
}

.cookie-banner-btn-accept,
.cookie-banner-btn-reject{
    background:transparent;
    color:#fff;
    border:1px solid rgba(255,255,255,0.4);
}

.cookie-banner-btn-accept:hover,
.cookie-banner-btn-reject:hover{
    border-color:#d6bd86;
    color:#d6bd86;
}

@media(max-width:700px){
    .cookie-banner{
        padding:16px 18px;
    }

    .cookie-banner-inner{
        flex-direction:column;
        align-items:stretch;
        gap:16px;
    }

    .cookie-banner-actions{
        justify-content:stretch;
    }

    .cookie-banner-btn{
        flex:1;
    }
}



