
:root{
  --bg:#f4efe8;
  --paper:#fffdf9;
  --ink:#171512;
  --muted:#6f685f;
  --line:rgba(42,32,23,.13);
  --accent:#8a6644;
  --accent-soft:#e7d9c8;
  --dark:#24201c;
  --max:1320px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:Arial,Helvetica,sans-serif;
  line-height:1.55;
}
a{text-decoration:none;color:inherit}
img{display:block;width:100%;height:100%;object-fit:cover}
button{font:inherit}
.shell{width:min(calc(100% - 44px),var(--max));margin-inline:auto}
.top-line{
  height:6px;
  background:linear-gradient(90deg,var(--dark) 0 34%,var(--accent) 34% 63%,#c9ad88 63%);
}
.site-header{
  position:sticky;top:0;z-index:30;
  background:rgba(244,239,232,.94);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.header-grid{
  min-height:82px;
  display:grid;
  grid-template-columns:220px 1fr auto;
  align-items:center;
  gap:28px;
}
.brand{font-size:1.2rem;font-weight:800;letter-spacing:.18em}
.brand small{display:block;font-size:.56rem;letter-spacing:.18em;color:var(--muted);margin-top:3px}
.nav{display:flex;justify-content:center;gap:30px;font-size:.92rem}
.nav a{position:relative}
.nav a:after{content:"";position:absolute;left:0;right:0;bottom:-9px;height:1px;background:var(--ink);transform:scaleX(0);transition:.25s}
.nav a:hover:after{transform:scaleX(1)}
.actions{display:flex;align-items:center;gap:10px}
.lang{
  width:42px;height:42px;border:1px solid var(--line);border-radius:50%;
  display:grid;place-items:center;font-size:.78rem;
}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:46px;padding:10px 18px;border-radius:999px;
  border:1px solid var(--line);font-weight:800;transition:.2s;
}
.btn:hover{transform:translateY(-2px)}
.btn-dark{background:var(--dark);color:white;border-color:var(--dark)}
.menu{display:none;border:0;background:none;font-size:1.7rem}

.hero{
  padding:58px 0 34px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:22px;
}
.hero-copy{
  min-height:520px;
  background:var(--paper);
  border:1px solid var(--line);
  padding:58px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
h1,h2,h3{margin:0 0 16px;line-height:1.05}
h1{font-size:clamp(3rem,5.4vw,6.2rem);letter-spacing:-.055em;max-width:850px}
h2{font-size:clamp(2rem,3.5vw,3.8rem);letter-spacing:-.045em}
h3{font-size:1.25rem}
.hero-copy p{font-size:1.12rem;color:var(--muted);max-width:650px}
.hero-bottom{display:flex;align-items:end;justify-content:space-between;gap:24px}
.hero-number{font-size:5.2rem;line-height:.8;font-weight:800;color:rgba(138,102,68,.14);letter-spacing:-.07em}
.hero-aside{
  display:grid;
  grid-template-rows:1fr auto;
  gap:22px;
}
.material-card{
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:370px;
  background:var(--dark);
  color:white;
  overflow:hidden;
}
.material-card .copy{padding:34px;display:flex;flex-direction:column;justify-content:space-between}
.material-card .copy p{color:rgba(255,255,255,.7)}
.material-card .image{min-height:370px}
.quick-links{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border:1px solid var(--line);
  background:var(--paper);
}
.quick-links a{
  padding:18px;
  border-right:1px solid var(--line);
  font-size:.82rem;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:800;
}
.quick-links a:last-child{border-right:0}
.quick-links span{display:block;color:var(--muted);font-size:.72rem;letter-spacing:0;text-transform:none;margin-top:6px}

.section{padding:86px 0}
.section-title{
  display:grid;
  grid-template-columns:180px 1fr;
  gap:40px;
  margin-bottom:34px;
  align-items:start;
}
.section-title p{color:var(--muted);max-width:620px}

.product-matrix{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  grid-template-rows:300px 230px;
  gap:16px;
}
.tile{
  position:relative;
  overflow:hidden;
  background:#ddd;
  border:1px solid var(--line);
}
.tile-main{grid-row:1/3}
.tile-wide{grid-column:2/4}
.tile:after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 42%,rgba(17,14,12,.65));
}
.tile img{transition:transform .8s ease}
.tile:hover img{transform:scale(1.04)}
.tile-copy{
  position:absolute;left:22px;right:22px;bottom:18px;z-index:2;color:white;
}
.tile-copy p{margin:4px 0 0;color:rgba(255,255,255,.75);font-size:.92rem}

.statement{
  background:var(--dark);
  color:white;
}
.statement-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:70px;
  align-items:center;
}
.statement-mark{
  font-size:clamp(7rem,14vw,14rem);
  line-height:.78;
  font-weight:800;
  letter-spacing:-.09em;
  color:rgba(255,255,255,.07);
}
.statement-copy p{color:rgba(255,255,255,.68);font-size:1.12rem}
.statement-list{
  margin-top:30px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.statement-list div{
  padding:16px 0;
  border-top:1px solid rgba(255,255,255,.15);
}

.project-strip{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:18px;
}
.project-image{min-height:520px;border:1px solid var(--line)}
.project-info{
  background:var(--paper);
  border:1px solid var(--line);
  padding:42px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.project-meta{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.project-meta div{
  border-top:1px solid var(--line);
  padding-top:12px;
}
.project-meta small{display:block;color:var(--muted);text-transform:uppercase;letter-spacing:.12em;font-size:.68rem}
.project-meta strong{display:block;margin-top:5px}

.process{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  border:1px solid var(--line);
  background:var(--paper);
}
.process-item{
  padding:32px;
  border-right:1px solid var(--line);
  min-height:260px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.process-item:last-child{border-right:0}
.process-num{font-size:.78rem;letter-spacing:.16em;color:var(--accent);font-weight:800}
.process-item p{color:var(--muted)}

.footer{
  border-top:1px solid var(--line);
  padding:42px 0 26px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.5fr repeat(3,1fr);
  gap:30px;
}
.footer a{display:block;color:var(--muted);margin:7px 0}
.footer-bottom{margin-top:28px;padding-top:16px;border-top:1px solid var(--line);font-size:.84rem;color:var(--muted)}

.reveal{opacity:0;transform:translateY(22px);transition:.75s ease}
.reveal.visible{opacity:1;transform:none}

@media(max-width:1000px){
  .header-grid{grid-template-columns:1fr auto}
  .nav{display:none;position:absolute;top:82px;left:22px;right:22px;background:var(--paper);padding:20px;border:1px solid var(--line);flex-direction:column;align-items:flex-start}
  .nav.open{display:flex}
  .menu{display:block}
  .actions .btn{display:none}
  .hero-grid,.statement-grid,.project-strip{grid-template-columns:1fr}
  .product-matrix{grid-template-columns:1fr 1fr;grid-template-rows:360px 260px 260px}
  .tile-main{grid-column:1/3;grid-row:auto}
  .tile-wide{grid-column:auto}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:650px){
  .shell{width:min(calc(100% - 24px),var(--max))}
  .hero-copy{padding:34px;min-height:500px}
  h1{font-size:3.5rem}
  .material-card{grid-template-columns:1fr}
  .material-card .image{min-height:260px}
  .quick-links{grid-template-columns:1fr}
  .quick-links a{border-right:0;border-bottom:1px solid var(--line)}
  .section-title{grid-template-columns:1fr;gap:8px}
  .product-matrix{display:grid;grid-template-columns:1fr;grid-template-rows:none}
  .tile,.tile-main,.tile-wide{grid-column:auto;grid-row:auto;min-height:330px}
  .statement-list,.project-meta{grid-template-columns:1fr}
  .process{grid-template-columns:1fr}
  .process-item{border-right:0;border-bottom:1px solid var(--line)}
  .process-item:last-child{border-bottom:0}
  .footer-grid{grid-template-columns:1fr}
}
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{transition-duration:.01ms!important}
  .reveal{opacity:1;transform:none}
}


/* Admin-managed logo */
.brand-logo{display:flex;align-items:center;max-width:230px;min-height:42px}
.brand-logo img{display:block;max-width:100%;width:auto;height:auto;max-height:58px;object-fit:contain}
.footer .brand-logo{max-width:220px}
.footer .brand-logo img{max-height:64px;filter:none}
@media(max-width:650px){.brand-logo{max-width:180px}.brand-logo img{max-height:48px}}


.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.admin-key-link{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border:1px solid var(--line);
  border-radius:50%;
  font-size:14px;
  opacity:.46;
  transition:opacity .2s ease, transform .2s ease, background .2s ease;
}
.admin-key-link:hover{
  opacity:1;
  transform:translateY(-2px);
  background:rgba(255,255,255,.5);
}
@media(max-width:650px){
  .footer-bottom{
    align-items:flex-start;
  }
}


/* ---- V18 luxury header ---- */
.site-header{
  position:sticky;
  top:0;
  z-index:30;
  padding:18px 0 16px;
  background:linear-gradient(180deg,rgba(244,239,232,.92),rgba(244,239,232,.74));
  backdrop-filter:blur(18px);
  border-bottom:0;
}
.header-shell{
  position:relative;
}
.header-grid{
  min-height:auto;
  display:grid;
  grid-template-columns:minmax(170px,240px) 1fr auto;
  align-items:center;
  gap:28px;
  padding:16px 18px;
  background:rgba(255,253,249,.94);
  border:1px solid rgba(42,32,23,.09);
  border-radius:28px;
  box-shadow:0 16px 40px rgba(43,31,19,.08), inset 0 1px 0 rgba(255,255,255,.6);
}
.brand{
  font-size:1.55rem;
  font-weight:900;
  letter-spacing:.24em;
  line-height:1;
}
.brand-logo{
  display:flex;
  align-items:center;
  min-height:52px;
}
.brand-logo img{
  width:auto;
  height:auto;
  max-width:220px;
  max-height:52px;
  object-fit:contain;
}
.nav{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:6px;
  padding:6px;
  border:1px solid rgba(42,32,23,.08);
  border-radius:20px;
  background:linear-gradient(180deg,rgba(255,255,255,.62),rgba(245,239,232,.78));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.8);
  font-size:.95rem;
}
.nav a{
  position:relative;
  padding:12px 16px;
  border-radius:14px;
  font-weight:700;
  color:#2a241e;
  white-space:nowrap;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.nav a:after{display:none}
.nav a:hover{
  background:#fff;
  color:#16120f;
  transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(43,31,19,.08);
}
.actions{
  display:flex;
  align-items:center;
  gap:12px;
}
.lang{
  width:54px;
  height:54px;
  border:1px solid rgba(42,32,23,.09);
  border-radius:18px;
  display:grid;
  place-items:center;
  font-size:.9rem;
  font-weight:800;
  background:linear-gradient(180deg,rgba(255,255,255,.8),rgba(243,238,231,.9));
  box-shadow:0 12px 24px rgba(43,31,19,.05);
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:12px 22px;
  border-radius:18px;
  border:1px solid rgba(42,32,23,.09);
  font-weight:800;
  letter-spacing:.01em;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-dark{
  color:#fff;
  border-color:#1e1915;
  background:linear-gradient(135deg,#2c251e 0%,#1a1612 100%);
  box-shadow:0 16px 32px rgba(29,24,19,.18);
}
.btn-quote{
  padding-inline:24px;
}
.menu{
  display:none;
  width:54px;
  height:54px;
  border:1px solid rgba(42,32,23,.09);
  border-radius:18px;
  background:linear-gradient(180deg,rgba(255,255,255,.8),rgba(243,238,231,.9));
  box-shadow:0 12px 24px rgba(43,31,19,.05);
  font-size:1.3rem;
}
@media(max-width:1120px){
  .header-grid{
    grid-template-columns:1fr auto;
  }
  .nav{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    margin-top:14px;
    padding:18px;
    border-radius:24px;
    background:rgba(255,253,249,.98);
    box-shadow:0 20px 40px rgba(43,31,19,.12);
    flex-direction:column;
    align-items:stretch;
    gap:8px;
  }
  .nav a{
    padding:14px 16px;
  }
  .nav.open{display:flex}
  .menu{display:block}
}
@media(max-width:780px){
  .actions .btn{
    display:none;
  }
  .header-grid{
    gap:14px;
    padding:14px;
  }
  .brand{
    font-size:1.2rem;
    letter-spacing:.18em;
  }
  .brand-logo img{
    max-width:180px;
    max-height:44px;
  }
}
/* ---- /V18 luxury header ---- */


/* ---- V19 full-width animated luxury header ---- */
.site-header{
  position:sticky;
  top:0;
  z-index:30;
  padding:0;
  min-height:112px;
  overflow:hidden;
  background:
    linear-gradient(90deg,#2a241e 0%,#5a4838 44%,#8f7152 100%);
  border-bottom:1px solid rgba(255,255,255,.16);
  box-shadow:0 16px 38px rgba(31,23,16,.13);
  isolation:isolate;
}
.site-header .header-background{
  position:absolute;
  inset:-18px -80px;
  z-index:-3;
  background-image:var(--header-bg-image);
  background-size:cover;
  background-position:center;
  opacity:.72;
  transform:scale(1.08);
  animation:headerImageSlide 22s ease-in-out infinite alternate;
}
.site-header .header-overlay{
  position:absolute;
  inset:0;
  z-index:-2;
  background:
    linear-gradient(90deg,rgba(20,16,13,.80) 0%,rgba(20,16,13,.58) 38%,rgba(20,16,13,.42) 72%,rgba(20,16,13,.62) 100%),
    linear-gradient(180deg,rgba(255,255,255,.04),rgba(0,0,0,.20));
}
.site-header::after{
  content:"";
  position:absolute;
  left:-18%;
  top:-170%;
  width:28%;
  height:450%;
  z-index:-1;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.13),transparent);
  transform:rotate(16deg);
  animation:headerLightSweep 11s ease-in-out infinite;
}
.header-shell{
  width:100%;
  max-width:none;
  padding:0 38px;
}
.header-grid{
  min-height:112px;
  display:grid;
  grid-template-columns:minmax(190px,260px) 1fr auto;
  align-items:center;
  gap:32px;
  padding:0;
  background:transparent;
  border:0;
  border-radius:0;
  box-shadow:none;
}
.brand{
  color:#fff;
  font-size:1.55rem;
  font-weight:900;
  letter-spacing:.25em;
  text-shadow:0 2px 16px rgba(0,0,0,.22);
}
.brand-logo{
  min-height:72px;
}
.brand-logo img{
  max-width:250px;
  max-height:70px;
  filter:drop-shadow(0 8px 22px rgba(0,0,0,.22));
}
.nav{
  justify-self:center;
  gap:3px;
  padding:5px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:18px;
  background:rgba(255,255,255,.09);
  backdrop-filter:blur(14px);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}
.nav a{
  color:#fff;
  padding:12px 15px;
  font-weight:700;
}
.nav a:hover{
  color:#1b1713;
  background:rgba(255,255,255,.92);
  box-shadow:0 10px 24px rgba(0,0,0,.16);
}
.actions{
  justify-self:end;
}
.lang{
  color:#fff;
  border-color:rgba(255,255,255,.22);
  background:rgba(255,255,255,.10);
  backdrop-filter:blur(12px);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}
.btn-quote{
  color:#17130f;
  border-color:rgba(255,255,255,.78);
  background:linear-gradient(135deg,rgba(255,255,255,.98),rgba(241,229,214,.96));
  box-shadow:0 16px 34px rgba(0,0,0,.18);
}
.btn-quote:hover{
  background:#fff;
}
.menu{
  color:#fff;
  border-color:rgba(255,255,255,.22);
  background:rgba(255,255,255,.10);
  backdrop-filter:blur(12px);
}
@keyframes headerImageSlide{
  0%{transform:scale(1.08) translate3d(-2.5%,0,0)}
  50%{transform:scale(1.12) translate3d(1.5%,-1%,0)}
  100%{transform:scale(1.08) translate3d(3%,0,0)}
}
@keyframes headerLightSweep{
  0%,70%,100%{left:-18%}
  84%{left:115%}
}
@media(max-width:1180px){
  .header-grid{
    grid-template-columns:1fr auto;
    gap:16px;
  }
  .nav{
    position:absolute;
    top:calc(100% - 8px);
    left:24px;
    right:24px;
    margin-top:14px;
    padding:16px;
    background:rgba(33,27,22,.96);
    border:1px solid rgba(255,255,255,.15);
    box-shadow:0 24px 48px rgba(0,0,0,.24);
  }
}
@media(max-width:780px){
  .site-header{
    min-height:92px;
  }
  .header-shell{
    padding:0 16px;
  }
  .header-grid{
    min-height:92px;
  }
  .brand{
    font-size:1.15rem;
    letter-spacing:.18em;
  }
  .brand-logo{
    min-height:58px;
  }
  .brand-logo img{
    max-width:175px;
    max-height:52px;
  }
}
/* ---- /V19 full-width animated luxury header ---- */


/* ---- V20 logo-safe animated header ---- */
.site-header .header-background{
  left:250px;
  right:-90px;
  width:auto;
  -webkit-mask-image:linear-gradient(90deg,transparent 0%,rgba(0,0,0,.22) 7%,#000 18%,#000 100%);
  mask-image:linear-gradient(90deg,transparent 0%,rgba(0,0,0,.22) 7%,#000 18%,#000 100%);
}
.site-header .header-overlay{
  background:
    linear-gradient(90deg,
      rgba(27,22,18,.96) 0,
      rgba(27,22,18,.96) 250px,
      rgba(27,22,18,.72) 390px,
      rgba(20,16,13,.43) 58%,
      rgba(20,16,13,.62) 100%),
    linear-gradient(180deg,rgba(255,255,255,.04),rgba(0,0,0,.20));
}
.brand,
.brand-logo{
  position:relative;
  z-index:4;
  min-width:210px;
  min-height:72px;
  padding:10px 20px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:18px;
  background:linear-gradient(135deg,rgba(255,253,249,.97),rgba(239,229,216,.94));
  box-shadow:
    0 18px 34px rgba(0,0,0,.20),
    inset 0 1px 0 rgba(255,255,255,.85);
  color:#1c1814;
  text-shadow:none;
  display:flex;
  align-items:center;
  justify-content:center;
}
.brand-logo img{
  max-width:225px;
  max-height:52px;
  filter:none;
}
@keyframes headerImageSlide{
  0%{transform:scale(1.08) translate3d(-1.2%,0,0)}
  50%{transform:scale(1.11) translate3d(1.2%,-.6%,0)}
  100%{transform:scale(1.08) translate3d(2.4%,0,0)}
}
@media(max-width:1180px){
  .site-header .header-background{
    left:210px;
  }
  .site-header .header-overlay{
    background:
      linear-gradient(90deg,
        rgba(27,22,18,.96) 0,
        rgba(27,22,18,.96) 210px,
        rgba(27,22,18,.70) 340px,
        rgba(20,16,13,.48) 70%,
        rgba(20,16,13,.62) 100%);
  }
}
@media(max-width:780px){
  .site-header .header-background{
    left:155px;
    -webkit-mask-image:linear-gradient(90deg,transparent 0%,rgba(0,0,0,.28) 12%,#000 28%,#000 100%);
    mask-image:linear-gradient(90deg,transparent 0%,rgba(0,0,0,.28) 12%,#000 28%,#000 100%);
  }
  .site-header .header-overlay{
    background:
      linear-gradient(90deg,
        rgba(27,22,18,.96) 0,
        rgba(27,22,18,.96) 155px,
        rgba(27,22,18,.68) 255px,
        rgba(20,16,13,.54) 100%);
  }
  .brand,
  .brand-logo{
    min-width:145px;
    min-height:58px;
    padding:8px 12px;
    border-radius:14px;
  }
  .brand-logo img{
    max-width:145px;
    max-height:40px;
  }
}
/* ---- /V20 logo-safe animated header ---- */


/* ---- V21 flowing luxury header ---- */
.site-header{
  min-height:112px;
  background:
    linear-gradient(90deg,rgba(20,16,13,.90) 0%,rgba(20,16,13,.52) 34%,rgba(20,16,13,.34) 70%,rgba(20,16,13,.54) 100%),
    linear-gradient(180deg,rgba(255,255,255,.03),rgba(0,0,0,.16));
  box-shadow:0 14px 34px rgba(31,23,16,.10);
}
.site-header .header-background{
  left:0;
  right:-100px;
  inset-block:-18px;
  width:auto;
  -webkit-mask-image:none;
  mask-image:none;
  opacity:.80;
  animation:headerImageSlide 24s ease-in-out infinite alternate;
}
.site-header .header-overlay{
  background:
    linear-gradient(90deg,
      rgba(20,16,13,.86) 0%,
      rgba(20,16,13,.64) 18%,
      rgba(20,16,13,.30) 46%,
      rgba(20,16,13,.28) 76%,
      rgba(20,16,13,.48) 100%),
    linear-gradient(180deg,rgba(255,255,255,.03),rgba(0,0,0,.18));
}
.header-shell{
  padding:0 44px;
}
.header-grid{
  min-height:112px;
  grid-template-columns:minmax(180px,250px) 1fr auto;
  gap:34px;
}
.brand,
.brand-logo{
  min-width:0;
  min-height:auto;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  color:#fff;
  justify-content:flex-start;
}
.brand{
  font-size:1.45rem;
  letter-spacing:.24em;
  text-shadow:0 4px 18px rgba(0,0,0,.28);
}
.brand-logo img{
  max-width:230px;
  max-height:58px;
  filter:drop-shadow(0 6px 20px rgba(0,0,0,.30));
}
.nav{
  justify-self:center;
  gap:28px;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  backdrop-filter:none;
  box-shadow:none;
}
.nav a{
  padding:10px 0;
  border-radius:0;
  color:rgba(255,255,255,.94);
  font-weight:700;
  background:transparent;
  box-shadow:none;
  position:relative;
}
.nav a::after{
  content:"";
  display:block;
  position:absolute;
  left:0;
  right:0;
  bottom:2px;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.9),transparent);
  transform:scaleX(0);
  transition:transform .28s ease;
}
.nav a:hover{
  color:#fff;
  background:transparent;
  transform:translateY(-1px);
  box-shadow:none;
}
.nav a:hover::after{
  transform:scaleX(1);
}
.actions{
  gap:16px;
}
.lang{
  width:auto;
  height:auto;
  padding:10px 4px;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  color:#fff;
  font-weight:800;
  position:relative;
}
.lang::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:3px;
  height:1px;
  background:rgba(255,255,255,.72);
  transform:scaleX(0);
  transition:transform .25s ease;
}
.lang:hover::after{
  transform:scaleX(1);
}
.btn-quote{
  min-height:52px;
  padding:12px 26px;
  border-radius:999px;
  color:#17130f;
  border:1px solid rgba(255,255,255,.72);
  background:linear-gradient(135deg,rgba(255,255,255,.96),rgba(237,225,210,.94));
  box-shadow:0 14px 30px rgba(0,0,0,.16);
}
.btn-quote:hover{
  transform:translateY(-2px) scale(1.01);
  box-shadow:0 18px 36px rgba(0,0,0,.20);
}
.menu{
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}
@keyframes headerImageSlide{
  0%{transform:scale(1.07) translate3d(-1.5%,0,0)}
  50%{transform:scale(1.10) translate3d(1%,-.5%,0)}
  100%{transform:scale(1.07) translate3d(2.5%,0,0)}
}
@media(max-width:1180px){
  .header-shell{
    padding:0 24px;
  }
  .nav{
    top:100%;
    left:16px;
    right:16px;
    padding:18px 20px;
    border:1px solid rgba(255,255,255,.13);
    border-radius:22px;
    background:rgba(25,20,16,.96);
    box-shadow:0 24px 48px rgba(0,0,0,.24);
    backdrop-filter:blur(16px);
  }
  .nav a{
    padding:13px 14px;
  }
}
@media(max-width:780px){
  .site-header{
    min-height:90px;
  }
  .header-grid{
    min-height:90px;
    gap:16px;
  }
  .brand-logo img{
    max-width:160px;
    max-height:44px;
  }
  .btn-quote{
    display:none;
  }
}
/* ---- /V21 flowing luxury header ---- */


/* ---- V22 diagonal logo transition ---- */
.site-header{
  overflow:hidden;
}
.site-header .header-background{
  left:0;
  right:-110px;
  inset-block:-18px;
  width:auto;
  opacity:.82;
  animation:headerImageSlide 24s ease-in-out infinite alternate;
}
.site-header .header-overlay{
  background:
    linear-gradient(90deg,
      rgba(18,15,12,.90) 0%,
      rgba(18,15,12,.82) 10%,
      rgba(18,15,12,.62) 20%,
      rgba(18,15,12,.34) 38%,
      rgba(18,15,12,.28) 70%,
      rgba(18,15,12,.48) 100%),
    linear-gradient(180deg,rgba(255,255,255,.03),rgba(0,0,0,.18));
}
.site-header::before{
  content:"";
  position:absolute;
  left:-2%;
  top:-8%;
  width:420px;
  height:116%;
  z-index:-1;
  pointer-events:none;
  background:
    linear-gradient(90deg,
      rgba(19,15,12,.96) 0%,
      rgba(19,15,12,.94) 52%,
      rgba(19,15,12,.68) 74%,
      rgba(19,15,12,0) 100%);
  clip-path:polygon(0 0, 68% 0, 100% 18%, 86% 48%, 100% 82%, 70% 100%, 0 100%);
  filter:drop-shadow(0 18px 22px rgba(0,0,0,.10));
}
.header-grid{
  position:relative;
}
.brand,
.brand-logo{
  position:relative;
  z-index:2;
  padding-right:24px;
}
.brand-logo img{
  max-width:235px;
  max-height:60px;
}
@media(max-width:1180px){
  .site-header::before{
    width:350px;
    clip-path:polygon(0 0, 68% 0, 100% 20%, 85% 50%, 100% 80%, 70% 100%, 0 100%);
  }
}
@media(max-width:780px){
  .site-header::before{
    width:240px;
    top:-4%;
    height:108%;
    clip-path:polygon(0 0, 72% 0, 100% 20%, 84% 50%, 100% 80%, 72% 100%, 0 100%);
  }
  .brand,
  .brand-logo{
    padding-right:10px;
  }
  .brand-logo img{
    max-width:165px;
    max-height:44px;
  }
}
/* ---- /V22 diagonal logo transition ---- */


/* ---- V23 organic wave logo transition ---- */
.site-header{
  overflow:hidden;
}
.site-header .header-background{
  left:0;
  right:-120px;
  inset-block:-22px;
  width:auto;
  opacity:.84;
  animation:headerImageSlide 26s ease-in-out infinite alternate;
}
.site-header .header-overlay{
  background:
    linear-gradient(90deg,
      rgba(18,15,12,.94) 0%,
      rgba(18,15,12,.84) 12%,
      rgba(18,15,12,.66) 22%,
      rgba(18,15,12,.42) 40%,
      rgba(18,15,12,.28) 70%,
      rgba(18,15,12,.50) 100%),
    linear-gradient(180deg,rgba(255,255,255,.03),rgba(0,0,0,.18));
}
.site-header::before{
  content:"";
  position:absolute;
  left:-40px;
  top:-10px;
  bottom:-10px;
  width:470px;
  z-index:-1;
  pointer-events:none;
  background:
    linear-gradient(90deg,
      rgba(17,14,11,.98) 0%,
      rgba(17,14,11,.96) 56%,
      rgba(17,14,11,.82) 74%,
      rgba(17,14,11,.34) 92%,
      rgba(17,14,11,0) 100%);
  clip-path: polygon(
    0% 0%,
    72% 0%,
    81% 8%,
    88% 18%,
    84% 29%,
    92% 40%,
    85% 52%,
    94% 64%,
    86% 77%,
    92% 89%,
    77% 100%,
    0% 100%
  );
  filter: drop-shadow(0 16px 24px rgba(0,0,0,.12));
}
.site-header::after{
  content:"";
  position:absolute;
  left:220px;
  top:-14px;
  bottom:-14px;
  width:240px;
  z-index:-1;
  pointer-events:none;
  background:radial-gradient(circle at 0 50%, rgba(255,255,255,.09), rgba(255,255,255,0) 70%);
  opacity:.8;
}
.header-grid{
  position:relative;
}
.brand,
.brand-logo{
  position:relative;
  z-index:2;
  padding-right:28px;
  justify-content:flex-start;
}
.brand{
  color:#fff;
  text-shadow:0 4px 16px rgba(0,0,0,.34);
}
.brand-logo img{
  max-width:235px;
  max-height:60px;
  filter:drop-shadow(0 10px 22px rgba(0,0,0,.30));
}
@media(max-width:1180px){
  .site-header::before{
    width:380px;
    clip-path: polygon(
      0% 0%,
      72% 0%,
      82% 10%,
      88% 22%,
      84% 32%,
      91% 44%,
      84% 56%,
      92% 68%,
      84% 80%,
      90% 90%,
      77% 100%,
      0% 100%
    );
  }
  .site-header::after{
    left:175px;
    width:190px;
  }
}
@media(max-width:780px){
  .site-header::before{
    left:-22px;
    width:250px;
    clip-path: polygon(
      0% 0%,
      70% 0%,
      82% 10%,
      88% 24%,
      82% 36%,
      90% 50%,
      82% 64%,
      90% 78%,
      78% 100%,
      0% 100%
    );
  }
  .site-header::after{
    left:118px;
    width:120px;
    opacity:.65;
  }
  .brand,
  .brand-logo{
    padding-right:12px;
  }
  .brand-logo img{
    max-width:165px;
    max-height:44px;
  }
}
/* ---- /V23 organic wave logo transition ---- */


/* ---- V24 luxury light wave transition ---- */
.site-header .header-background{
  opacity:.88;
  animation:headerImageSlide 28s ease-in-out infinite alternate;
}
.site-header .header-overlay{
  background:
    linear-gradient(90deg,
      rgba(15,12,10,.90) 0%,
      rgba(15,12,10,.82) 10%,
      rgba(15,12,10,.64) 18%,
      rgba(27,22,18,.34) 33%,
      rgba(255,246,234,.16) 49%,
      rgba(22,18,15,.20) 72%,
      rgba(22,18,15,.36) 100%),
    linear-gradient(180deg,rgba(255,255,255,.05),rgba(0,0,0,.14));
}
.site-header::before{
  left:-44px;
  top:-14px;
  bottom:-14px;
  width:520px;
  background:
    linear-gradient(90deg,
      rgba(16,13,11,.98) 0%,
      rgba(16,13,11,.97) 47%,
      rgba(245,234,216,.90) 74%,
      rgba(240,223,197,.62) 86%,
      rgba(255,246,232,0) 100%);
  clip-path: polygon(
    0% 0%,
    72% 0%,
    81% 8%,
    88% 18%,
    84% 30%,
    92% 42%,
    85% 54%,
    94% 66%,
    86% 78%,
    92% 90%,
    77% 100%,
    0% 100%
  );
  filter: drop-shadow(0 16px 26px rgba(0,0,0,.10));
}
.site-header::after{
  left:245px;
  top:-18px;
  bottom:-18px;
  width:300px;
  background:
    radial-gradient(circle at 0 50%, rgba(255,249,240,.70), rgba(248,234,208,.38) 35%, rgba(255,255,255,0) 72%);
  opacity:.95;
}
.brand,
.brand-logo{
  position:relative;
}
.brand::after,
.brand-logo::after{
  content:"";
  position:absolute;
  left:-14px;
  right:-10px;
  top:-10px;
  bottom:-10px;
  z-index:-1;
  border-radius:999px;
  background:linear-gradient(135deg,rgba(255,255,255,.10),rgba(255,244,225,.03));
  filter:blur(8px);
  opacity:.45;
}
.brand-logo img{
  filter:drop-shadow(0 8px 22px rgba(0,0,0,.34));
}
@media(max-width:1180px){
  .site-header::before{
    width:420px;
    background:
      linear-gradient(90deg,
        rgba(16,13,11,.98) 0%,
        rgba(16,13,11,.97) 48%,
        rgba(245,234,216,.88) 76%,
        rgba(240,223,197,.56) 88%,
        rgba(255,246,232,0) 100%);
  }
  .site-header::after{
    left:185px;
    width:235px;
  }
}
@media(max-width:780px){
  .site-header::before{
    left:-28px;
    width:280px;
    background:
      linear-gradient(90deg,
        rgba(16,13,11,.98) 0%,
        rgba(16,13,11,.97) 52%,
        rgba(245,234,216,.82) 78%,
        rgba(240,223,197,.44) 90%,
        rgba(255,246,232,0) 100%);
  }
  .site-header::after{
    left:112px;
    width:150px;
    opacity:.88;
  }
}
/* ---- /V24 luxury light wave transition ---- */


/* ---- V25 elegant lighter logo zone ---- */
.site-header .header-overlay{
  background:
    linear-gradient(90deg,
      rgba(52,41,31,.84) 0%,
      rgba(61,49,37,.72) 10%,
      rgba(80,64,47,.48) 20%,
      rgba(155,133,107,.18) 34%,
      rgba(245,236,223,.14) 49%,
      rgba(64,52,41,.18) 72%,
      rgba(31,25,20,.34) 100%),
    linear-gradient(180deg,rgba(255,255,255,.06),rgba(0,0,0,.12));
}
.site-header::before{
  left:-46px;
  top:-14px;
  bottom:-14px;
  width:540px;
  background:
    linear-gradient(90deg,
      rgba(93,73,54,.96) 0%,
      rgba(108,86,64,.95) 34%,
      rgba(153,126,95,.90) 56%,
      rgba(223,205,179,.82) 74%,
      rgba(244,232,214,.60) 86%,
      rgba(255,248,237,0) 100%);
  filter: drop-shadow(0 16px 28px rgba(54,39,24,.10));
}
.site-header::after{
  left:238px;
  top:-20px;
  bottom:-20px;
  width:320px;
  background:
    radial-gradient(circle at 0 50%, rgba(255,248,238,.88), rgba(245,228,200,.44) 35%, rgba(255,255,255,0) 74%);
  opacity:.92;
}
.brand,
.brand-logo{
  color:#fff7ec;
}
.brand::after,
.brand-logo::after{
  left:-18px;
  right:-12px;
  top:-12px;
  bottom:-12px;
  background:linear-gradient(135deg,rgba(255,252,246,.14),rgba(248,232,206,.06));
  filter:blur(10px);
  opacity:.7;
}
.brand-logo img{
  filter:drop-shadow(0 10px 24px rgba(40,27,15,.24));
}
@media(max-width:1180px){
  .site-header::before{
    width:430px;
    background:
      linear-gradient(90deg,
        rgba(93,73,54,.96) 0%,
        rgba(108,86,64,.95) 36%,
        rgba(153,126,95,.88) 58%,
        rgba(223,205,179,.78) 76%,
        rgba(244,232,214,.54) 88%,
        rgba(255,248,237,0) 100%);
  }
  .site-header::after{
    left:180px;
    width:245px;
  }
}
@media(max-width:780px){
  .site-header::before{
    left:-28px;
    width:285px;
    background:
      linear-gradient(90deg,
        rgba(93,73,54,.96) 0%,
        rgba(108,86,64,.95) 40%,
        rgba(153,126,95,.84) 62%,
        rgba(223,205,179,.72) 80%,
        rgba(244,232,214,.42) 90%,
        rgba(255,248,237,0) 100%);
  }
  .site-header::after{
    left:112px;
    width:150px;
    opacity:.82;
  }
}
/* ---- /V25 elegant lighter logo zone ---- */


/* ---- V26 larger logo ---- */
.brand-logo{
  min-width:280px;
}
.brand-logo img{
  max-width:320px;
  max-height:82px;
}
@media(max-width:1180px){
  .brand-logo{
    min-width:230px;
  }
  .brand-logo img{
    max-width:260px;
    max-height:70px;
  }
}
@media(max-width:780px){
  .brand-logo{
    min-width:170px;
  }
  .brand-logo img{
    max-width:195px;
    max-height:54px;
  }
}
/* ---- /V26 larger logo ---- */


/* ---- V27 premium wave transition + larger logo ---- */
.site-header .header-overlay{
  background:
    linear-gradient(90deg,
      rgba(76,59,43,.66) 0%,
      rgba(94,73,53,.54) 12%,
      rgba(133,106,78,.36) 24%,
      rgba(205,184,157,.18) 40%,
      rgba(244,236,226,.10) 52%,
      rgba(83,66,49,.14) 72%,
      rgba(29,23,18,.28) 100%),
    linear-gradient(180deg,rgba(255,255,255,.07),rgba(0,0,0,.08));
}
.site-header::before{
  left:-50px;
  top:-14px;
  bottom:-14px;
  width:620px;
  background:
    linear-gradient(90deg,
      rgba(128,102,76,.97) 0%,
      rgba(150,122,92,.95) 28%,
      rgba(184,154,121,.90) 50%,
      rgba(223,203,178,.82) 70%,
      rgba(244,234,220,.58) 84%,
      rgba(255,248,240,0) 100%);
  clip-path: polygon(
      0% 0%,
      76% 0%,
      81% 5%,
      85% 11%,
      83% 19%,
      89% 28%,
      84% 38%,
      90% 49%,
      85% 61%,
      91% 73%,
      86% 84%,
      90% 93%,
      80% 100%,
      0% 100%
  );
  filter: drop-shadow(0 18px 28px rgba(74,54,33,.10));
}
.site-header::after{
  left:280px;
  top:-22px;
  bottom:-22px;
  width:360px;
  background:
    radial-gradient(circle at 0 50%, rgba(255,251,245,.82), rgba(247,232,207,.34) 35%, rgba(255,255,255,0) 72%);
  opacity:.76;
}
.brand,
.brand-logo{
  color:#fff8f0;
}
.brand::after,
.brand-logo::after{
  left:-22px;
  right:-18px;
  top:-14px;
  bottom:-14px;
  background:linear-gradient(135deg,rgba(255,252,248,.16),rgba(252,241,224,.08));
  filter:blur(12px);
  opacity:.72;
}
.brand-logo{
  min-width:330px;
}
.brand-logo img{
  max-width:390px;
  max-height:98px;
  filter:drop-shadow(0 12px 26px rgba(46,31,16,.18));
}
@media(max-width:1180px){
  .site-header::before{
    width:500px;
    background:
      linear-gradient(90deg,
        rgba(128,102,76,.97) 0%,
        rgba(150,122,92,.95) 30%,
        rgba(184,154,121,.88) 54%,
        rgba(223,203,178,.76) 72%,
        rgba(244,234,220,.46) 86%,
        rgba(255,248,240,0) 100%);
  }
  .site-header::after{
    left:220px;
    width:280px;
  }
  .brand-logo{
    min-width:270px;
  }
  .brand-logo img{
    max-width:310px;
    max-height:82px;
  }
}
@media(max-width:780px){
  .site-header::before{
    left:-26px;
    width:320px;
  }
  .site-header::after{
    left:138px;
    width:165px;
    opacity:.68;
  }
  .brand-logo{
    min-width:190px;
  }
  .brand-logo img{
    max-width:225px;
    max-height:62px;
  }
}
/* ---- /V27 premium wave transition + larger logo ---- */


/* ---- V28 smooth premium wave from logo ---- */
.site-header .header-overlay{
  background:
    linear-gradient(90deg,
      rgba(86,66,48,.58) 0%,
      rgba(108,84,61,.44) 14%,
      rgba(164,135,103,.24) 28%,
      rgba(226,211,190,.14) 40%,
      rgba(248,242,234,.08) 54%,
      rgba(91,71,52,.12) 72%,
      rgba(30,24,18,.24) 100%),
    linear-gradient(180deg,rgba(255,255,255,.08),rgba(0,0,0,.06));
}
.site-header::before{
  left:-34px;
  top:-14px;
  bottom:-14px;
  width:560px;
  background:
    radial-gradient(120px 120px at 78% 22%, rgba(255,248,240,.22), rgba(255,248,240,0) 72%),
    radial-gradient(160px 160px at 82% 52%, rgba(244,232,214,.36), rgba(244,232,214,0) 72%),
    radial-gradient(120px 120px at 78% 82%, rgba(255,248,240,.20), rgba(255,248,240,0) 72%),
    linear-gradient(90deg,
      rgba(138,110,82,.97) 0%,
      rgba(164,133,100,.95) 26%,
      rgba(198,168,132,.88) 48%,
      rgba(228,211,187,.72) 70%,
      rgba(247,240,231,.34) 88%,
      rgba(255,250,245,0) 100%);
  clip-path:none;
  border-top-right-radius:220px 130px;
  border-bottom-right-radius:240px 145px;
  filter:drop-shadow(0 18px 28px rgba(74,54,33,.10));
}
.site-header::after{
  left:250px;
  top:-20px;
  bottom:-20px;
  width:320px;
  background:
    radial-gradient(circle at 0 50%, rgba(255,252,248,.65), rgba(247,232,207,.24) 36%, rgba(255,255,255,0) 72%);
  opacity:.72;
}
.brand::after,
.brand-logo::after{
  background:linear-gradient(135deg,rgba(255,252,248,.18),rgba(252,241,224,.09));
  filter:blur(12px);
  opacity:.76;
}
@media(max-width:1180px){
  .site-header::before{
    width:470px;
    border-top-right-radius:180px 110px;
    border-bottom-right-radius:200px 120px;
  }
  .site-header::after{
    left:205px;
    width:255px;
  }
}
@media(max-width:780px){
  .site-header::before{
    left:-18px;
    width:280px;
    border-top-right-radius:120px 82px;
    border-bottom-right-radius:130px 88px;
    background:
      radial-gradient(70px 74px at 80% 22%, rgba(255,248,240,.18), rgba(255,248,240,0) 72%),
      radial-gradient(92px 96px at 82% 52%, rgba(244,232,214,.26), rgba(244,232,214,0) 72%),
      radial-gradient(70px 74px at 80% 82%, rgba(255,248,240,.18), rgba(255,248,240,0) 72%),
      linear-gradient(90deg,
        rgba(138,110,82,.97) 0%,
        rgba(164,133,100,.95) 30%,
        rgba(198,168,132,.84) 54%,
        rgba(228,211,187,.60) 76%,
        rgba(247,240,231,.24) 92%,
        rgba(255,250,245,0) 100%);
  }
  .site-header::after{
    left:126px;
    width:150px;
    opacity:.62;
  }
}
/* ---- /V28 smooth premium wave from logo ---- */


/* ---- V29 remove top edge line ---- */
.top-line{display:none !important;}
.site-header{border-top:0 !important;}
/* ---- /V29 remove top edge line ---- */


/* ---- V34 clearer header navigation ---- */
.nav{
  padding:8px 14px;
  border-radius:999px;
  background:rgba(24,19,15,.42);
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  box-shadow:0 12px 28px rgba(0,0,0,.16), inset 0 1px 0 rgba(255,255,255,.08);
}
.nav a{
  color:#fff !important;
  font-weight:800;
  text-shadow:0 2px 8px rgba(0,0,0,.72);
}
.nav a:hover{
  color:#17130f !important;
  text-shadow:none;
  background:rgba(255,255,255,.94);
  border-radius:999px;
}
@media(max-width:1180px){
  .nav{
    border-radius:22px;
    padding:16px;
    background:rgba(24,19,15,.94);
  }
}
/* ---- /V34 clearer header navigation ---- */


/* ---- V35 premium compact international header ---- */
.site-header{
  min-height:96px;
  box-shadow:0 18px 44px rgba(28,20,14,.16);
}
.header-shell{
  padding:0 30px;
}
.header-grid{
  min-height:96px;
  grid-template-columns:minmax(190px,250px) 1fr auto;
  gap:20px;
}
.brand-logo{
  min-width:250px;
  min-height:64px;
}
.brand-logo img{
  max-width:300px;
  max-height:82px;
  filter:drop-shadow(0 12px 24px rgba(46,31,16,.14));
}

.nav{
  position:relative;
  justify-self:center;
  gap:2px;
  padding:6px 8px;
  border-radius:20px;
  background:
    linear-gradient(180deg,rgba(68,57,46,.56),rgba(28,23,18,.48));
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(18px) saturate(130%);
  -webkit-backdrop-filter:blur(18px) saturate(130%);
  box-shadow:
    0 18px 42px rgba(18,13,10,.20),
    inset 0 1px 0 rgba(255,255,255,.13),
    inset 0 -1px 0 rgba(255,255,255,.04);
}
.nav::before{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:19px;
  pointer-events:none;
  background:linear-gradient(180deg,rgba(255,255,255,.12),rgba(255,255,255,0) 45%);
  opacity:.9;
}
.nav a{
  position:relative;
  z-index:1;
  padding:11px 16px;
  border-radius:14px;
  color:#fff !important;
  font-size:.82rem;
  font-weight:800;
  letter-spacing:.01em;
  text-shadow:0 2px 10px rgba(0,0,0,.36);
  transition:transform .22s ease, background .22s ease, box-shadow .22s ease, color .22s ease;
}
.nav a:hover{
  transform:translateY(-1px);
  color:#17130f !important;
  background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(243,232,219,.96));
  box-shadow:0 10px 24px rgba(20,14,11,.20);
  text-shadow:none;
}

.actions{
  gap:10px;
}
.lang,
.btn-quote,
.menu{
  position:relative;
  overflow:hidden;
}
.lang::before,
.btn-quote::before,
.menu::before{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:inherit;
  pointer-events:none;
  background:linear-gradient(180deg,rgba(255,255,255,.16),rgba(255,255,255,0));
  opacity:.85;
}
.lang{
  width:48px;
  height:48px;
  border-radius:16px;
  color:#fff;
  font-size:.86rem;
  border:1px solid rgba(255,255,255,.2);
  background:linear-gradient(180deg,rgba(55,45,36,.64),rgba(31,25,20,.56));
  box-shadow:0 16px 30px rgba(18,13,10,.16), inset 0 1px 0 rgba(255,255,255,.08);
}
.btn-quote{
  min-height:48px;
  padding:0 28px;
  border-radius:18px;
  color:#17130f;
  font-size:.92rem;
  border:1px solid rgba(255,255,255,.8);
  background:linear-gradient(135deg,#fffdf9 0%,#efe2cf 50%,#fff8ef 100%);
  box-shadow:0 18px 32px rgba(17,12,9,.16), inset 0 1px 0 rgba(255,255,255,.82);
}
.btn-quote:hover{
  transform:translateY(-2px) scale(1.01);
  background:linear-gradient(135deg,#ffffff 0%,#f4e8d7 48%,#fffdf8 100%);
}
.menu{
  width:48px;
  height:48px;
  border-radius:16px;
}

@media(max-width:1320px){
  .header-shell{padding:0 22px;}
  .header-grid{gap:16px;}
  .nav a{padding:10px 13px;font-size:.79rem;}
  .btn-quote{padding:0 22px;}
}
@media(max-width:1180px){
  .site-header{min-height:88px;}
  .header-grid{min-height:88px;grid-template-columns:1fr auto;}
  .brand-logo{min-width:220px;}
  .nav{
    border-radius:24px;
    padding:14px;
    background:linear-gradient(180deg,rgba(30,24,18,.94),rgba(40,32,25,.96));
    box-shadow:0 24px 44px rgba(18,13,10,.24), inset 0 1px 0 rgba(255,255,255,.06);
  }
  .nav::before{border-radius:23px;}
  .nav a{font-size:.92rem;padding:13px 16px;}
}
@media(max-width:780px){
  .header-shell{padding:0 14px;}
  .header-grid{min-height:80px;gap:12px;}
  .brand-logo{min-width:170px;min-height:54px;}
  .brand-logo img{max-width:210px;max-height:58px;}
  .lang,.menu{width:44px;height:44px;border-radius:14px;}
}
/* ---- /V35 premium compact international header ---- */


/* ---- V36 refined luxury navigation ---- */
.nav{
  gap:4px;
  padding:5px;
  border-radius:18px;
  background:linear-gradient(180deg,rgba(43,36,30,.62),rgba(24,20,17,.54));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:
    0 18px 38px rgba(18,13,10,.17),
    inset 0 1px 0 rgba(255,255,255,.10),
    inset 0 -1px 0 rgba(255,255,255,.03);
}
.nav::before{
  inset:1px;
  border-radius:17px;
  background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,0) 55%);
}
.nav a{
  min-height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 18px;
  border-radius:13px;
  font-size:.80rem;
  font-weight:700;
  letter-spacing:.045em;
  text-transform:none;
  color:rgba(255,255,255,.94)!important;
  text-shadow:0 2px 8px rgba(0,0,0,.28);
  transition:
    color .25s ease,
    background .25s ease,
    box-shadow .25s ease,
    transform .25s ease;
}
.nav a::before{
  content:"";
  position:absolute;
  left:18px;
  right:18px;
  bottom:7px;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(232,207,174,.95),transparent);
  transform:scaleX(0);
  transition:transform .25s ease;
}
.nav a:hover{
  color:#2a2119!important;
  background:linear-gradient(180deg,rgba(255,253,249,.98),rgba(238,226,210,.96));
  box-shadow:
    0 10px 24px rgba(18,13,10,.16),
    inset 0 1px 0 rgba(255,255,255,.86);
  transform:translateY(-1px);
  text-shadow:none;
}
.nav a:hover::before{
  transform:scaleX(1);
}
.nav a + a::after{
  content:"";
  position:absolute;
  left:-2px;
  top:11px;
  bottom:11px;
  width:1px;
  background:linear-gradient(180deg,transparent,rgba(255,255,255,.12),transparent);
}
.nav a:hover + a::after,
.nav a:hover::after{
  opacity:.25;
}
@media(max-width:1320px){
  .nav a{padding:0 14px;font-size:.77rem;letter-spacing:.035em;}
}
@media(max-width:1180px){
  .nav{gap:7px;padding:14px;}
  .nav a{width:100%;justify-content:flex-start;padding:0 16px;font-size:.92rem;}
  .nav a + a::after{display:none;}
}
/* ---- /V36 refined luxury navigation ---- */


/* ---- V37 lighter luxury frame + calligraphy-inspired nav ---- */
.nav{
  gap:4px;
  padding:6px;
  border-radius:22px;
  background:linear-gradient(180deg,rgba(208,198,184,.60),rgba(161,149,136,.42));
  border:1px solid rgba(255,255,255,.36);
  backdrop-filter:blur(18px) saturate(130%);
  -webkit-backdrop-filter:blur(18px) saturate(130%);
  box-shadow:
    0 14px 34px rgba(35,26,19,.14),
    inset 0 1px 0 rgba(255,255,255,.34),
    inset 0 -1px 0 rgba(124,104,82,.14);
}
.nav::before{
  inset:1px;
  border-radius:21px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.20),rgba(255,255,255,.04) 42%,rgba(255,255,255,0) 75%),
    linear-gradient(90deg,rgba(246,238,228,.16),rgba(214,195,168,.08),rgba(255,255,255,.12));
  opacity:1;
}
.nav a{
  min-height:44px;
  padding:0 20px;
  border-radius:16px;
  font-family:'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  font-style:italic;
  font-size:1.02rem;
  font-weight:700;
  letter-spacing:.01em;
  color:rgba(255,252,248,.98)!important;
  text-shadow:0 2px 10px rgba(0,0,0,.22);
}
.nav a::before{
  left:16px;
  right:16px;
  bottom:8px;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(255,244,226,.95),transparent);
}
.nav a + a::after{
  left:-1px;
  top:12px;
  bottom:12px;
  background:linear-gradient(180deg,transparent,rgba(255,255,255,.15),transparent);
}
.nav a:hover{
  color:#3d2b18!important;
  background:linear-gradient(180deg,rgba(255,251,246,.95),rgba(241,228,209,.88));
  box-shadow:0 10px 24px rgba(35,24,15,.14), inset 0 1px 0 rgba(255,255,255,.72);
  transform:translateY(-1px);
}
.nav a:hover::before{transform:scaleX(1)}
.nav a.active,
.nav a[aria-current='page']{
  color:#2e1f13!important;
  background:linear-gradient(180deg,rgba(255,250,244,.92),rgba(236,220,199,.86));
  box-shadow:0 8px 18px rgba(35,24,15,.10), inset 0 1px 0 rgba(255,255,255,.66);
  text-shadow:none;
}
@media(max-width:1320px){
  .nav a{font-size:.96rem;padding:0 16px;}
}
@media(max-width:1180px){
  .nav{
    background:linear-gradient(180deg,rgba(203,192,177,.94),rgba(151,139,125,.94));
    box-shadow:0 18px 34px rgba(26,19,14,.16), inset 0 1px 0 rgba(255,255,255,.30);
  }
  .nav a{
    font-size:1.08rem;
    justify-content:flex-start;
    padding:0 18px;
  }
}
/* ---- /V37 lighter luxury frame + calligraphy-inspired nav ---- */


/* ---- V38 premium background + mobile calligraphy consistency ---- */
.site-header{
  background:
    radial-gradient(1200px 320px at 14% 50%, rgba(255,247,235,.42), transparent 48%),
    radial-gradient(900px 280px at 72% 8%, rgba(255,244,220,.18), transparent 50%),
    linear-gradient(90deg, #6e5845 0%, #b99874 34%, #d8c7b1 58%, #c2aa86 78%, #8f7358 100%);
  border-bottom:1px solid rgba(255,255,255,.24);
  box-shadow:0 18px 42px rgba(36,27,18,.16);
}
.site-header .header-background{
  opacity:.88;
  background-position:center center;
  filter:saturate(.92) brightness(1.03) contrast(1.04);
}
.site-header .header-overlay{
  background:
    linear-gradient(90deg,
      rgba(99,76,55,.54) 0%,
      rgba(179,148,112,.26) 24%,
      rgba(240,228,210,.10) 49%,
      rgba(154,127,99,.18) 71%,
      rgba(67,50,36,.42) 100%),
    linear-gradient(180deg,
      rgba(255,255,255,.22) 0%,
      rgba(255,255,255,.06) 22%,
      rgba(92,71,52,.08) 58%,
      rgba(20,14,10,.12) 100%);
}
.site-header::after{
  width:24%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.22), rgba(246,226,193,.16), transparent);
  opacity:.9;
}

.nav{
  background:linear-gradient(180deg,rgba(223,214,200,.56),rgba(175,163,149,.34));
  border:1px solid rgba(255,255,255,.44);
  box-shadow:
    0 18px 36px rgba(38,28,18,.12),
    inset 0 1px 0 rgba(255,255,255,.44),
    inset 0 -1px 0 rgba(140,117,91,.12);
}
.nav::before{
  background:
    linear-gradient(180deg,rgba(255,255,255,.25),rgba(255,255,255,.05) 42%,rgba(255,255,255,0) 78%),
    linear-gradient(90deg,rgba(255,255,255,.10),rgba(230,215,192,.10),rgba(255,255,255,.08));
}
.nav a{
  font-family:'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  font-style:italic;
  font-weight:700;
  letter-spacing:.012em;
}

@media(max-width:1180px){
  .nav{
    background:linear-gradient(180deg,rgba(223,214,201,.97),rgba(185,171,154,.94));
    border:1px solid rgba(255,255,255,.56);
    box-shadow:
      0 26px 52px rgba(36,26,18,.18),
      inset 0 1px 0 rgba(255,255,255,.55),
      inset 0 -1px 0 rgba(142,118,90,.10);
    backdrop-filter:blur(18px) saturate(130%);
    -webkit-backdrop-filter:blur(18px) saturate(130%);
  }
  .nav::before{
    border-radius:inherit;
    opacity:1;
  }
  .nav a{
    font-family:'Cormorant Garamond', 'Times New Roman', Georgia, serif;
    font-style:italic;
    font-size:1.12rem;
    font-weight:700;
    letter-spacing:.012em;
    color:rgba(52,37,24,.95)!important;
    text-shadow:none;
  }
  .nav a::before{
    background:linear-gradient(90deg,transparent,rgba(165,123,79,.70),transparent);
  }
  .nav a:hover,
  .nav a.active,
  .nav a[aria-current='page']{
    color:#2f2116!important;
    background:linear-gradient(180deg,rgba(255,250,243,.96),rgba(240,227,208,.90));
    box-shadow:0 10px 24px rgba(35,24,15,.12), inset 0 1px 0 rgba(255,255,255,.72);
  }
  .lang,
  .menu{
    background:linear-gradient(180deg,rgba(221,210,196,.70),rgba(171,157,141,.55));
    border-color:rgba(255,255,255,.34);
    color:#fff;
    box-shadow:0 12px 24px rgba(22,16,11,.12), inset 0 1px 0 rgba(255,255,255,.22);
  }
}

@media(max-width:780px){
  .site-header{
    background:
      radial-gradient(540px 180px at 12% 48%, rgba(255,247,235,.38), transparent 45%),
      linear-gradient(90deg, #7d6651 0%, #b59674 36%, #d7c7b2 58%, #bea685 78%, #8c6f54 100%);
  }
  .site-header .header-background{
    opacity:.90;
    filter:saturate(.88) brightness(1.04) contrast(1.02);
  }
  .site-header .header-overlay{
    background:
      linear-gradient(90deg,
        rgba(120,94,69,.46) 0%,
        rgba(212,189,159,.18) 26%,
        rgba(243,234,220,.08) 53%,
        rgba(91,70,51,.28) 100%),
      linear-gradient(180deg,rgba(255,255,255,.18),rgba(20,14,10,.08));
  }
  .nav a{
    font-size:1.18rem;
  }
}
/* ---- /V38 premium background + mobile calligraphy consistency ---- */


/* ---- V39 professional mobile header refinement ---- */
@media (max-width: 900px){
  .site-header{
    min-height:92px;
    overflow:visible;
    border-bottom:1px solid rgba(255,255,255,.22);
    box-shadow:0 14px 28px rgba(33,24,16,.12);
  }
  .site-header .header-background{
    inset:0;
    left:0;
    right:0;
    opacity:.88;
    transform:scale(1.03);
    animation:headerImageSlide 26s ease-in-out infinite alternate;
    -webkit-mask-image:none;
    mask-image:none;
  }
  .site-header .header-overlay{
    background:
      linear-gradient(90deg,
        rgba(116,92,67,.42) 0%,
        rgba(214,198,174,.24) 22%,
        rgba(243,236,226,.08) 49%,
        rgba(114,91,69,.18) 100%),
      linear-gradient(180deg,
        rgba(255,255,255,.12) 0%,
        rgba(255,255,255,.03) 28%,
        rgba(18,13,9,.08) 100%);
  }
  .site-header::after{
    display:none;
  }
  .header-shell{
    padding:0 12px;
  }
  .header-grid{
    position:relative;
    min-height:92px;
    grid-template-columns:minmax(124px,1fr) auto;
    gap:10px;
    align-items:center;
  }
  .brand,
  .brand-logo{
    min-width:0;
    min-height:60px;
    padding:8px 12px;
    border-radius:16px;
    background:linear-gradient(135deg,rgba(252,247,241,.18),rgba(226,212,192,.08));
    border:1px solid rgba(255,255,255,.18);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.18);
    backdrop-filter:blur(2px);
    -webkit-backdrop-filter:blur(2px);
    justify-content:flex-start;
  }
  .brand-logo img{
    width:auto;
    max-width:138px;
    max-height:42px;
    filter:drop-shadow(0 3px 10px rgba(0,0,0,.16));
  }
  .actions{
    gap:8px;
    justify-self:end;
  }
  .actions .btn-quote{
    display:none;
  }
  .lang,
  .menu{
    width:40px;
    height:40px;
    border-radius:14px;
    display:grid;
    place-items:center;
    background:linear-gradient(180deg,rgba(246,240,233,.60),rgba(206,190,168,.42));
    border:1px solid rgba(255,255,255,.34);
    box-shadow:
      0 8px 18px rgba(27,19,12,.10),
      inset 0 1px 0 rgba(255,255,255,.36);
    color:#fff;
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
  }
  .lang{font-size:.92rem;font-weight:700;}
  .menu{
    display:grid;
    font-size:1.2rem;
    line-height:1;
    padding:0;
    cursor:pointer;
  }
  .nav{
    display:none;
    position:absolute;
    left:0;
    right:0;
    top:calc(100% + 10px);
    z-index:50;
    margin:0 0 0 0;
    padding:14px;
    flex-direction:column;
    gap:8px;
    align-items:stretch;
    border-radius:22px;
    background:
      linear-gradient(180deg,rgba(250,246,240,.96),rgba(235,226,213,.94));
    border:1px solid rgba(214,196,174,.72);
    box-shadow:
      0 22px 48px rgba(34,24,16,.18),
      inset 0 1px 0 rgba(255,255,255,.68);
    backdrop-filter:blur(18px) saturate(115%);
    -webkit-backdrop-filter:blur(18px) saturate(115%);
  }
  .nav.open{display:flex;}
  .nav::before{display:none;}
  .nav a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:50px;
    padding:12px 16px;
    border-radius:16px;
    color:#362518 !important;
    background:rgba(255,255,255,.42);
    border:1px solid rgba(209,190,168,.50);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.36);
    font-family:'Cormorant Garamond','Times New Roman',Georgia,serif;
    font-style:italic;
    font-weight:700;
    font-size:1.14rem;
    letter-spacing:.01em;
    text-shadow:none;
  }
  .nav a::after,
  .nav a::before{display:none !important;}
  .nav a:hover,
  .nav a:focus{
    background:linear-gradient(180deg,rgba(255,252,247,.98),rgba(243,232,216,.94));
    color:#24170e !important;
    transform:translateY(-1px);
    box-shadow:0 12px 24px rgba(36,25,15,.10), inset 0 1px 0 rgba(255,255,255,.70);
  }
  .nav a::marker{display:none;}
  .nav a span,
  .nav a strong{pointer-events:none;}
  .nav a:last-child{margin-bottom:0;}
}

@media (max-width: 600px){
  .site-header{
    min-height:86px;
  }
  .header-grid{
    min-height:86px;
  }
  .brand,
  .brand-logo{
    min-height:54px;
    padding:6px 10px;
    border-radius:14px;
  }
  .brand-logo img{
    max-width:124px;
    max-height:38px;
  }
  .lang,
  .menu{
    width:38px;
    height:38px;
    border-radius:12px;
  }
  .nav{
    top:calc(100% + 8px);
    padding:12px;
    border-radius:20px;
  }
  .nav a{
    min-height:48px;
    padding:11px 14px;
    font-size:1.08rem;
  }
  .hero{
    padding-top:34px;
  }
  .hero-copy{
    min-height:auto;
    padding:22px;
  }
  .hero-copy p{
    font-size:1rem;
  }
  h1{
    font-size:clamp(2.45rem, 11vw, 3.5rem);
    line-height:1.02;
  }
  .hero-bottom{
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
  }
  .hero-bottom .btn{
    width:100%;
    justify-content:center;
  }
  .hero-bottom > div:first-child{
    width:100%;
    display:grid;
    gap:10px;
  }
  .hero-number{
    align-self:flex-end;
    font-size:3.6rem;
  }
  .material-card .copy,
  .quick-links a,
  .tile-copy,
  .process-item,
  .project-text,
  .statement-text,
  .contact-panel,
  .footer{
    font-size:inherit;
  }
}
/* ---- /V39 professional mobile header refinement ---- */


/* ---- V40 elegant side mobile menu ---- */
@media (max-width: 900px){
  .nav{
    position:fixed;
    top:0;
    right:0;
    bottom:0;
    left:auto;
    width:min(82vw,320px);
    margin:0;
    padding:92px 18px 24px;
    border-radius:28px 0 0 28px;
    background:
      linear-gradient(180deg,rgba(251,247,241,.98),rgba(235,225,211,.97));
    border:1px solid rgba(210,190,167,.68);
    border-right:0;
    box-shadow:-24px 0 54px rgba(34,24,16,.22), inset 0 1px 0 rgba(255,255,255,.72);
    backdrop-filter:blur(22px) saturate(118%);
    -webkit-backdrop-filter:blur(22px) saturate(118%);
    display:flex;
    flex-direction:column;
    gap:10px;
    align-items:stretch;
    transform:translateX(110%);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:transform .42s cubic-bezier(.22,.8,.24,1), opacity .28s ease, visibility 0s linear .42s;
    z-index:999;
  }
  .nav.open{
    transform:translateX(0);
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transition:transform .42s cubic-bezier(.22,.8,.24,1), opacity .28s ease;
  }
  .nav::after{
    content:"Menu";
    position:absolute;
    top:28px;
    left:24px;
    font-family:'Cormorant Garamond','Times New Roman',Georgia,serif;
    font-style:italic;
    font-size:1.35rem;
    font-weight:700;
    color:#4b3422;
  }
  .nav a{
    min-height:52px;
    padding:12px 16px;
    border-radius:16px;
    opacity:0;
    transform:translateX(18px);
    transition:opacity .24s ease, transform .36s cubic-bezier(.22,.8,.24,1), background .22s ease, box-shadow .22s ease;
  }
  .nav.open a{
    opacity:1;
    transform:translateX(0);
  }
  .nav.open a:nth-child(1){transition-delay:.08s}
  .nav.open a:nth-child(2){transition-delay:.12s}
  .nav.open a:nth-child(3){transition-delay:.16s}
  .nav.open a:nth-child(4){transition-delay:.20s}
  .nav.open a:nth-child(5){transition-delay:.24s}
  body.menu-open::before{
    content:"";
    position:fixed;
    inset:0;
    z-index:998;
    background:rgba(28,20,14,.34);
    backdrop-filter:blur(4px);
    -webkit-backdrop-filter:blur(4px);
    animation:menuBackdropIn .28s ease both;
  }
  .menu{
    z-index:1001;
    transition:transform .3s ease, background .3s ease, color .3s ease;
  }
  body.menu-open .menu{
    position:fixed;
    top:18px;
    right:18px;
    transform:rotate(90deg);
    background:linear-gradient(180deg,rgba(255,250,244,.98),rgba(236,221,202,.96));
    color:#3a281a;
    border-color:rgba(176,145,111,.38);
    box-shadow:0 12px 28px rgba(30,20,13,.16);
  }
}
@keyframes menuBackdropIn{
  from{opacity:0}
  to{opacity:1}
}
@media (max-width: 600px){
  .nav{
    width:min(84vw,300px);
    padding:84px 14px 20px;
    border-radius:24px 0 0 24px;
  }
  .nav::after{
    top:24px;
    left:20px;
    font-size:1.25rem;
  }
  .nav a{
    min-height:50px;
    font-size:1.08rem;
  }
}
/* ---- /V40 elegant side mobile menu ---- */


/* ---- V41 remove page blur behind mobile menu ---- */
@media (max-width: 900px){
  body.menu-open::before{
    background:rgba(28,20,14,.16);
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
  }
}
/* ---- /V41 remove page blur behind mobile menu ---- */


/* ---- V42 readable mobile side menu ---- */
@media (max-width: 900px){
  .nav{
    width:min(88vw,340px);
    padding:88px 18px 24px;
    border-radius:26px 0 0 26px;
    background:
      linear-gradient(180deg,#fbf7f1 0%,#f1e7da 58%,#e9dccb 100%) !important;
    border:1px solid rgba(168,139,105,.38);
    border-right:0;
    box-shadow:
      -26px 0 58px rgba(34,24,16,.24),
      inset 0 1px 0 rgba(255,255,255,.92);
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
  }
  .nav::after{
    color:#3a281a;
    text-shadow:none;
  }
  .nav a{
    color:#2c1d12 !important;
    background:linear-gradient(180deg,rgba(255,255,255,.96),rgba(246,237,226,.96));
    border:1px solid rgba(181,151,116,.34);
    box-shadow:
      0 8px 18px rgba(45,31,20,.06),
      inset 0 1px 0 rgba(255,255,255,.92);
    text-shadow:none !important;
    font-family:'Cormorant Garamond','Times New Roman',Georgia,serif;
    font-style:italic;
    font-weight:700;
    font-size:1.18rem;
    line-height:1.1;
  }
  .nav a:hover,
  .nav a:focus{
    color:#1f140c !important;
    background:linear-gradient(180deg,#fffdf9,#ead7bf);
    border-color:rgba(148,112,76,.42);
    box-shadow:0 12px 24px rgba(44,29,17,.10), inset 0 1px 0 rgba(255,255,255,.95);
  }
  body.menu-open::before{
    background:rgba(31,22,15,.34) !important;
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
  }
}
@media (max-width: 600px){
  .nav{
    width:min(90vw,320px);
    padding:82px 14px 18px;
  }
  .nav a{
    min-height:52px;
    font-size:1.14rem;
    padding:12px 15px;
  }
}
/* ---- /V42 readable mobile side menu ---- */


/* ---- V43 mobile menu below header, all items visible ---- */
@media (max-width: 900px){
  .nav{
    top:82px !important;
    right:10px !important;
    bottom:auto !important;
    width:min(86vw,330px) !important;
    max-height:calc(100dvh - 94px) !important;
    padding:18px 14px 16px !important;
    border-radius:22px !important;
    border-right:1px solid rgba(168,139,105,.38) !important;
    overflow-y:auto !important;
    overscroll-behavior:contain;
    scrollbar-width:thin;
    scrollbar-color:rgba(141,107,74,.45) transparent;
  }
  .nav::after{
    display:none !important;
  }
  .nav a{
    min-height:46px !important;
    padding:10px 14px !important;
    flex:0 0 auto;
  }
  .nav::-webkit-scrollbar{width:5px;}
  .nav::-webkit-scrollbar-track{background:transparent;}
  .nav::-webkit-scrollbar-thumb{
    background:rgba(141,107,74,.38);
    border-radius:999px;
  }
  body.menu-open .menu{
    top:22px !important;
    right:18px !important;
  }
}
@media (max-width: 600px){
  .nav{
    top:74px !important;
    right:8px !important;
    width:min(90vw,315px) !important;
    max-height:calc(100dvh - 84px) !important;
    padding:14px 12px !important;
    gap:7px !important;
    border-radius:20px !important;
  }
  .nav a{
    min-height:44px !important;
    padding:9px 13px !important;
    font-size:1.08rem !important;
  }
  body.menu-open .menu{
    top:18px !important;
    right:14px !important;
  }
}
/* ---- /V43 mobile menu below header, all items visible ---- */


/* ---- V45 premium compact logo medallion ---- */
.site-header .brand-logo{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  width:94px;
  min-width:94px;
  height:94px;
  min-height:94px;
  padding:10px;
  border-radius:50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255,255,255,.995) 0%, rgba(253,250,246,.99) 46%, rgba(245,238,229,.985) 74%, rgba(232,221,205,.98) 100%);
  border:1px solid rgba(255,255,255,.98);
  box-shadow:
    0 16px 36px rgba(39,28,18,.16),
    0 2px 0 rgba(255,255,255,.92) inset,
    0 -10px 18px rgba(194,169,136,.11) inset,
    0 0 0 1px rgba(201,176,145,.22),
    0 0 0 6px rgba(255,255,255,.08);
  overflow:hidden;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
  transition:transform .28s ease, box-shadow .28s ease;
}
.site-header .brand-logo::before{
  content:"";
  position:absolute;
  inset:6px;
  border-radius:50%;
  border:1px solid rgba(193,164,127,.28);
  box-shadow:0 1px 0 rgba(255,255,255,.66) inset;
  pointer-events:none;
}
.site-header .brand-logo::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:50%;
  background:linear-gradient(145deg, rgba(255,255,255,.34), rgba(255,255,255,0) 36%, rgba(204,177,140,.08) 76%, rgba(255,255,255,0) 100%);
  pointer-events:none;
}
.site-header .brand-logo:hover{
  transform:translateY(-2px) scale(1.01);
  box-shadow:
    0 20px 42px rgba(39,28,18,.19),
    0 2px 0 rgba(255,255,255,.94) inset,
    0 -10px 18px rgba(194,169,136,.13) inset,
    0 0 0 1px rgba(201,176,145,.24),
    0 0 0 6px rgba(255,255,255,.10);
}
.site-header .brand-logo img{
  position:relative;
  z-index:1;
  max-width:92px;
  max-height:66px;
  width:auto;
  height:auto;
  object-fit:contain;
  filter:drop-shadow(0 3px 8px rgba(44,31,18,.12));
}
@media(max-width:1180px){
  .site-header .brand-logo{
    width:90px;
    min-width:90px;
    height:90px;
    min-height:90px;
    padding:9px;
  }
  .site-header .brand-logo img{
    max-width:86px;
    max-height:62px;
  }
}
@media(max-width:900px){
  .site-header .brand-logo{
    width:72px;
    min-width:72px;
    height:72px;
    min-height:72px;
    padding:8px;
    box-shadow:
      0 10px 22px rgba(34,24,16,.13),
      0 1px 0 rgba(255,255,255,.94) inset,
      0 -8px 14px rgba(194,169,136,.10) inset,
      0 0 0 1px rgba(201,176,145,.18),
      0 0 0 4px rgba(255,255,255,.08);
  }
  .site-header .brand-logo::before{inset:5px;}
  .site-header .brand-logo img{
    max-width:70px;
    max-height:48px;
    filter:drop-shadow(0 2px 6px rgba(44,31,18,.09));
  }
}
@media(max-width:600px){
  .site-header .header-grid{
    grid-template-columns:minmax(92px,1fr) auto;
  }
  .site-header .brand-logo{
    width:66px;
    min-width:66px;
    height:66px;
    min-height:66px;
    padding:7px;
  }
  .site-header .brand-logo::before{inset:4px;}
  .site-header .brand-logo img{
    max-width:64px;
    max-height:44px;
  }
}
/* ---- /V45 premium compact logo medallion ---- */


/* ---- V46 remove header tint so uploaded image is fully visible ---- */
.site-header{
  background:transparent !important;
  border-bottom:0 !important;
  box-shadow:none !important;
}
.site-header .header-background{
  opacity:1 !important;
  filter:none !important;
  background-position:center center !important;
}
.site-header .header-overlay{
  display:none !important;
  background:none !important;
}
.site-header::before,
.site-header::after{
  display:none !important;
  background:none !important;
}
@media(max-width:900px){
  .site-header{
    background:transparent !important;
    border-bottom:0 !important;
    box-shadow:none !important;
  }
  .site-header .header-background{
    opacity:1 !important;
    filter:none !important;
    transform:none !important;
  }
  .site-header .header-overlay,
  .site-header::before,
  .site-header::after{
    display:none !important;
    background:none !important;
  }
}
/* ---- /V46 remove header tint so uploaded image is fully visible ---- */


/* ---- V47 light luxury navigation background ---- */
.nav{
  background:
    linear-gradient(180deg, rgba(255,253,249,.92) 0%, rgba(244,236,225,.88) 52%, rgba(229,216,199,.84) 100%) !important;
  border:1px solid rgba(255,255,255,.86) !important;
  box-shadow:
    0 18px 38px rgba(54,39,24,.16),
    inset 0 1px 0 rgba(255,255,255,.95),
    inset 0 -1px 0 rgba(182,155,122,.16) !important;
  backdrop-filter:blur(16px) saturate(118%);
  -webkit-backdrop-filter:blur(16px) saturate(118%);
}
.nav::before{
  background:
    linear-gradient(180deg, rgba(255,255,255,.45), rgba(255,255,255,.12) 46%, rgba(255,255,255,0) 82%),
    linear-gradient(90deg, rgba(255,255,255,.18), rgba(221,199,169,.10), rgba(255,255,255,.16)) !important;
}
.nav a{
  color:#4a3523 !important;
  text-shadow:none !important;
}
.nav a::before{
  background:linear-gradient(90deg,transparent,rgba(156,116,73,.62),transparent) !important;
}
.nav a + a::after{
  background:linear-gradient(180deg,transparent,rgba(132,102,72,.14),transparent) !important;
}
.nav a:hover,
.nav a:focus,
.nav a.active,
.nav a[aria-current='page']{
  color:#2b1c12 !important;
  background:linear-gradient(180deg,rgba(255,255,255,.99),rgba(238,224,205,.96)) !important;
  box-shadow:
    0 12px 26px rgba(51,35,21,.12),
    inset 0 1px 0 rgba(255,255,255,.96) !important;
}
@media(max-width:900px){
  .nav{
    background:linear-gradient(180deg,#fffdf9 0%,#f3e8da 58%,#eadbc8 100%) !important;
    border:1px solid rgba(190,159,123,.34) !important;
    box-shadow:
      0 24px 48px rgba(40,27,17,.18),
      inset 0 1px 0 rgba(255,255,255,.96) !important;
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
  }
  .nav a{
    color:#3b281a !important;
    background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(247,239,228,.96)) !important;
    border:1px solid rgba(185,153,116,.28) !important;
  }
}
/* ---- /V47 light luxury navigation background ---- */


/* ---- V49 two-language flag switcher ---- */
.actions{
  gap:10px;
}
.language-switcher{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  gap:7px;
  padding:5px;
  border-radius:999px;
  background:linear-gradient(180deg,rgba(255,255,255,.68),rgba(226,214,198,.52));
  border:1px solid rgba(255,255,255,.62);
  box-shadow:0 14px 30px rgba(31,22,15,.13), inset 0 1px 0 rgba(255,255,255,.72);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}
.language-option{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  overflow:hidden;
  border-radius:50%;
  border:1px solid rgba(168,139,105,.30);
  background:rgba(255,255,255,.72);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.86);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.language-option img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.language-option span{
  color:#3b2a1c;
  font-size:.76rem;
  font-weight:900;
  letter-spacing:.04em;
}
.language-option:hover{
  transform:translateY(-2px);
  border-color:rgba(135,98,61,.50);
  box-shadow:0 9px 18px rgba(35,24,15,.14), inset 0 1px 0 rgba(255,255,255,.92);
}
.language-option.is-active{
  border-color:rgba(129,92,55,.66);
  box-shadow:0 0 0 2px rgba(255,255,255,.86), 0 9px 20px rgba(35,24,15,.16);
}
@media(max-width:900px){
  .language-switcher{
    gap:5px;
    padding:4px;
  }
  .language-option{
    width:36px;
    height:36px;
  }
  .language-option span{font-size:.68rem;}
}
@media(max-width:600px){
  .language-option{
    width:34px;
    height:34px;
  }
}
/* ---- /V49 two-language flag switcher ---- */


/* ---- V50 elegant slim language switcher ---- */
.language-switcher{
  gap:3px;
  padding:3px;
  border-radius:999px;
  background:linear-gradient(180deg,rgba(255,255,255,.78),rgba(228,216,200,.62));
  border:1px solid rgba(255,255,255,.76);
  box-shadow:
    0 10px 24px rgba(31,22,15,.11),
    inset 0 1px 0 rgba(255,255,255,.90),
    inset 0 -1px 0 rgba(174,146,112,.10);
  backdrop-filter:blur(12px) saturate(120%);
  -webkit-backdrop-filter:blur(12px) saturate(120%);
}
.language-option{
  width:34px;
  height:34px;
  border-radius:50%;
  border:1px solid rgba(158,126,91,.22);
  background:rgba(255,255,255,.84);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    0 3px 8px rgba(48,33,20,.07);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease, opacity .2s ease;
}
.language-option img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
  transform:scale(.88);
  box-shadow:0 0 0 1px rgba(126,92,57,.10);
}
.language-option span{
  color:#3a291c;
  font-size:.66rem;
  font-weight:800;
  letter-spacing:.03em;
}
.language-option:hover{
  transform:translateY(-1px);
  border-color:rgba(131,94,57,.40);
  box-shadow:
    0 7px 14px rgba(35,24,15,.11),
    inset 0 1px 0 rgba(255,255,255,.96);
}
.language-option.is-active{
  border-color:rgba(128,91,55,.48);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.90),
    0 6px 14px rgba(35,24,15,.11),
    inset 0 1px 0 rgba(255,255,255,.96);
}
.language-option:not(.is-active){
  opacity:.88;
}
@media(max-width:900px){
  .language-switcher{
    gap:2px;
    padding:3px;
  }
  .language-option{
    width:31px;
    height:31px;
  }
  .language-option span{font-size:.62rem;}
}
@media(max-width:600px){
  .language-switcher{
    padding:2px;
  }
  .language-option{
    width:29px;
    height:29px;
  }
}
/* ---- /V50 elegant slim language switcher ---- */


/* ---- V51 language flags next to logo, smaller and cleaner ---- */
.header-left{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.header-left .brand-logo{margin-right:0 !important;}
.header-left .language-switcher{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:4px 6px;
  border-radius:999px;
  background:rgba(255,248,239,.72);
  border:1px solid rgba(219,203,181,.7);
  box-shadow:0 10px 24px rgba(88,62,34,.10);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}
.header-left .language-option{
  width:28px;
  height:28px;
  padding:0;
  min-width:28px;
  border-radius:50%;
  background:rgba(255,255,255,.8);
  border:1px solid rgba(205,188,166,.9);
  box-shadow:0 4px 10px rgba(60,43,22,.08);
}
.header-left .language-option img{
  width:18px;
  height:18px;
  border-radius:50%;
  object-fit:cover;
}
.header-left .language-option span{
  font-size:.52rem;
  font-weight:700;
  letter-spacing:.08em;
}
.header-left .language-option.is-active{
  transform:none;
  border-color:rgba(174,140,92,.95);
  box-shadow:0 0 0 2px rgba(255,255,255,.72), 0 6px 14px rgba(86,60,33,.12);
}
.actions .language-switcher{display:none !important;}
@media (max-width: 900px){
  .header-left{gap:8px;}
  .header-left .language-switcher{padding:3px 5px;gap:5px;}
  .header-left .language-option{width:24px;height:24px;min-width:24px;}
  .header-left .language-option img{width:15px;height:15px;}
  .header-left .language-option span{font-size:.46rem;}
}
/* ---- /V51 language flags next to logo, smaller and cleaner ---- */


/* ---- V53 separate luxury navigation sections ---- */
@media (min-width: 901px){
  .nav{
    gap:10px !important;
    padding:0 !important;
    border:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    box-shadow:none !important;
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
  }
  .nav::before{
    display:none !important;
  }
  .nav a{
    min-height:48px !important;
    padding:0 22px !important;
    border-radius:18px !important;
    color:#4a3424 !important;
    background:
      linear-gradient(180deg,rgba(255,253,249,.94),rgba(236,226,212,.90)) !important;
    border:1px solid rgba(255,255,255,.82) !important;
    box-shadow:
      0 12px 28px rgba(42,29,18,.11),
      inset 0 1px 0 rgba(255,255,255,.94),
      inset 0 -1px 0 rgba(178,151,117,.10) !important;
    text-shadow:none !important;
    backdrop-filter:blur(12px) saturate(115%);
    -webkit-backdrop-filter:blur(12px) saturate(115%);
    transition:transform .22s ease,box-shadow .22s ease,background .22s ease,color .22s ease !important;
  }
  .nav a::before,
  .nav a::after{
    display:none !important;
  }
  .nav a:hover,
  .nav a:focus{
    transform:translateY(-3px) !important;
    color:#2b1c12 !important;
    background:
      linear-gradient(180deg,#ffffff 0%,#f1e5d4 100%) !important;
    border-color:rgba(210,184,150,.72) !important;
    box-shadow:
      0 18px 34px rgba(42,29,18,.16),
      inset 0 1px 0 #fff,
      inset 0 -1px 0 rgba(178,151,117,.12) !important;
  }
}
@media (min-width: 901px) and (max-width: 1180px){
  .nav{gap:7px !important;}
  .nav a{
    min-height:44px !important;
    padding:0 16px !important;
    border-radius:15px !important;
    font-size:.92rem !important;
  }
}
/* ---- /V53 separate luxury navigation sections ---- */

.footer-bottom{flex-wrap:wrap}
.footer-legal-links{display:flex;flex-wrap:wrap;gap:10px 18px;margin-top:16px;padding-top:14px;border-top:1px solid rgba(68,52,38,.16);width:100%}
.footer-legal-links a{color:inherit;font-size:12px;line-height:1.4;text-decoration:none;border-bottom:1px solid rgba(68,52,38,.28);padding-bottom:3px;opacity:.78;transition:opacity .2s ease,border-color .2s ease}
.footer-legal-links a:hover{opacity:1;border-color:currentColor}
.legal-page{padding:72px 0 96px}
.legal-document{max-width:920px;margin:0 auto;background:rgba(255,255,255,.62);padding:clamp(28px,5vw,64px);border:1px solid rgba(68,52,38,.12)}
.legal-document h1{margin:0 0 28px;font-size:clamp(34px,5vw,64px);line-height:1.05}
.legal-document-content{font-size:17px;line-height:1.8;white-space:pre-wrap;color:#4b4138}
@media(max-width:680px){.footer-legal-links{gap:9px 14px}.footer-legal-links a{font-size:11px}.legal-page{padding:36px 0 60px}.legal-document{padding:26px 20px}}
