:root{
  --bg: #f8f6f2;
  --bg2: #ffffff;
  --card: rgba(255,255,255,.94);
  --card2: rgba(255,255,255,.98);
  --stroke: rgba(32,24,12,.10);

  --text: #1d1a17;
  --muted: #62584d;
  --muted2: #8a7d70;

  --gold: #c6a96b;
  --gold2: #ead8b0;
  --shadow: 0 18px 40px rgba(56,40,18,.08);

  --radius: 18px;
  --radius2: 26px;

  --container: 1120px;
  --mobile-nav-top: 82px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  color:var(--text);
  font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1100px 650px at 15% 10%, rgba(198,169,107,.16), transparent 60%),
    radial-gradient(900px 520px at 90% 20%, rgba(234,216,176,.18), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2) 60%, #f6f2eb);
  min-height: 100vh;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
button{ font:inherit; }
::selection{ background: rgba(198,169,107,.28); }

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

/* ===== TOPBAR / NAV ===== */

.topbar{
  position: sticky;
  top:0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(248,246,242,.82);
  border-bottom: 1px solid rgba(32,24,12,.08);
}


.nav{
  height:72px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap: 28px;
  direction: ltr;
  position: relative;
}
.brand{
  display:flex;
  align-items:center;
  height: 100%;
  flex: 0 0 auto;
}

.brand-badge{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 30% 30%, rgba(234,216,176,.95), rgba(198,169,107,.78) 40%, rgba(198,169,107,.24) 75%),
    linear-gradient(180deg, rgba(255,255,255,.75), transparent);
  box-shadow: 0 10px 24px rgba(198,169,107,.16);
  border: 1px solid rgba(32,24,12,.08);
}

.nav-links{
  display:flex;
  align-items:center;
  gap: 18px;
  margin-left: auto;
  flex: 0 1 auto;
}
.nav-links a{
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 12px;
  transition: .2s ease;
  font-size: 14px;
}

.nav-links a:hover{
  color: var(--text);
  background: rgba(32,24,12,.05);
}

.nav-links a.active{
  color: var(--text);
  background: rgba(198,169,107,.16);
  border: 1px solid rgba(198,169,107,.28);
}

.nav-utility,
.header-actions{
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-left: 22px;
  flex: 0 0 auto;
  direction: ltr;
}

.lang-switcher{
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  width: 110px;
  min-width: 110px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(32,24,12,.1);
  background: rgba(255,255,255,.84);
  box-shadow: 0 10px 24px rgba(56,40,18,.07);
  flex: 0 0 auto;
}

.lang-switcher-btn{
  min-width: 0;
  min-height: 36px;
  padding: 0;
  flex: 1 1 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  cursor: pointer;
  transition: background .22s ease, color .22s ease, box-shadow .22s ease;
}

.lang-switcher-btn:hover,
.lang-switcher-btn:focus-visible{
  outline: none;
  color: var(--text);
  background: rgba(32,24,12,.06);
}

.lang-switcher-btn.is-active{
  color: #2b2116;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.52), transparent 55%),
    linear-gradient(135deg, rgba(234,216,176,.96), rgba(198,169,107,.92));
  box-shadow: 0 8px 18px rgba(198,169,107,.22);
}

@media (min-width: 769px){
  .nav{
    display: grid;
    grid-template-columns: minmax(208px, 1fr) auto minmax(208px, 1fr);
    align-items: center;
    column-gap: 34px;
    height: 78px;
  }

  .brand{
    width: 208px;
    justify-self: start;
    justify-content: flex-start;
  }

  .logo-img{
    height: 42px;
  }

  .nav-links{
    margin-left: 0;
    justify-self: center;
    justify-content: center;
    gap: 10px;
    padding: 6px 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
  }

  .nav-links a{
    min-height: 42px;
    padding: 10px 16px;
    font-size: 13px;
    letter-spacing: .01em;
  }

  .nav-utility,
  .header-actions{
    width: 208px;
    margin-left: 0;
    justify-self: end;
    justify-content: flex-end;
    gap: 0;
  }

  .lang-switcher{
    width: 112px;
    min-width: 112px;
    box-shadow: 0 14px 30px rgba(56,40,18,.08);
  }
}

@media (min-width: 1024px){
  .topbar > .container{
    width: min(1560px, calc(100% - 56px));
  }

  .nav{
    grid-template-columns: minmax(288px, 1fr) auto minmax(288px, 1fr);
    column-gap: 64px;
    height: 82px;
  }

  .brand{
    width: 288px;
    padding-left: 0;
  }

  .logo-img{
    height: 44px;
  }

  .nav-links{
    gap: 12px;
    padding: 6px 10px;
  }

  .nav-links a{
    min-height: 44px;
    padding: 10px 18px;
  }

  .nav-utility,
  .header-actions{
    width: 288px;
    padding-right: 0;
  }

  .lang-switcher{
    width: 116px;
    min-width: 116px;
  }
}

.nav-cta{
  display:flex;
  align-items:center;
  gap: 10px;
}

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

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(32,24,12,.10);
  background: rgba(255,255,255,.82);
  color: var(--text);
  transition:
    transform .3s cubic-bezier(.2,.8,.2,1),
    box-shadow .3s ease,
    background .3s ease,
    border-color .3s ease;
  box-shadow: 0 8px 22px rgba(56,40,18,.06);
  font-weight: 560;
  font-size: 14px;
}

.btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(198,169,107,.18);
  border-color: rgba(198,169,107,.28);
}

.btn-gold{
  border: 1px solid rgba(198,169,107,.34);
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.55), transparent 55%),
    linear-gradient(135deg, rgba(234,216,176,.95), rgba(198,169,107,.92));
  color: #2b2116;
}

.btn-ghost{
  background: rgba(255,255,255,.62);
}

/* ===== MOBILE NAV BUTTON ===== */

.hamburger{
  display:none;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(32,24,12,.10);
  background: rgba(255,255,255,.82);
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.hamburger span{
  width: 18px;
  height: 2px;
  background: rgba(29,26,23,.88);
  display:block;
  position: relative;
}
.hamburger span::before,
.hamburger span::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
  background: rgba(29,26,23,.88);
}
.hamburger span::before{ top:-6px; }
.hamburger span::after{ top:6px; }

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

.hero{
  position: relative;
  padding: 64px 0 22px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 26px;
  align-items: stretch;
}

.hero-card{
  border-radius: var(--radius2);
  border: 1px solid rgba(32,24,12,.08);
  background:
    radial-gradient(800px 400px at 12% 0%, rgba(198,169,107,.18), transparent 55%),
    rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  padding: 34px;
  overflow: hidden;
  position: relative;
}

.kicker{
  color: #a88645;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.h1{
  margin: 10px 0 12px;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
}

.lead{
  color: var(--muted);
  font-size: 16px;
  max-width: 58ch;
}

.hero-actions{
  display:flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.badges{
  display:flex;
  gap:10px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(32,24,12,.10);
  background: rgba(255,255,255,.74);
  color: var(--muted);
  font-size: 13px;
}

.badge i{
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(198,169,107,.16);
  display:inline-block;
}

.hero-media{
  border-radius: var(--radius2);
  border: 1px solid rgba(32,24,12,.08);
  background: rgba(255,255,255,.62);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
  min-height: 420px;
}

.hero-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
  transform: scale(1.02);
}

.hero-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 520px at 20% 10%, rgba(198,169,107,.14), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.06));
}

/* ===== SECTIONS ===== */

.section{
  padding: 44px 0;
}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.h2{
  margin:0;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--text);
}

.p-muted{
  color: var(--muted);
  margin: 6px 0 0;
  max-width: 70ch;
}

/* ===== GRIDS ===== */

.grid{
  display:grid;
  gap: 14px;
}

.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }

/* ===== CARDS ===== */

.card{
  border-radius: var(--radius);
  border: 1px solid rgba(32,24,12,.08);
  background: rgba(255,255,255,.84);
  box-shadow: 0 14px 32px rgba(56,40,18,.06);
  padding: 18px;
  overflow:hidden;
  position: relative;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, border-color .3s ease;
}

.card:hover{
  border-color: rgba(198,169,107,.26);
  background: rgba(255,255,255,.95);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px rgba(56,40,18,.09);
}

.card-title{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  margin: 0 0 6px;
  font-weight: 700;
  color: var(--text);
}

.card-title small{
  color: #a88645;
  font-weight: 650;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: 11px;
  opacity: .95;
}

.card p{
  margin:0;
  color: var(--muted);
  font-size: 14px;
}

.icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(198,169,107,.28);
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.80), transparent 60%),
    rgba(198,169,107,.12);
  display:grid;
  place-items:center;
  color: #a88645;
  box-shadow: 0 10px 24px rgba(198,169,107,.10);
}

/* ===== SPLIT ===== */

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
}

.photo{
  border-radius: var(--radius2);
  border: 1px solid rgba(32,24,12,.08);
  overflow:hidden;
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.68);
}

.photo img{
  width:100%;
  height: 420px;
  object-fit: cover;
}

/* ===== LIST ===== */

.list{
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display:grid;
  gap: 10px;
}

.list li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(32,24,12,.08);
  background: rgba(255,255,255,.80);
  color: var(--muted);
}

.list li b{
  color: var(--text);
  font-weight: 650;
}

.dot{
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(198,169,107,.15);
  margin-top: 7px;
  flex: 0 0 auto;
}

/* ===== FILTER / CHIPS ===== */

.filters{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 6px 0 16px;
}

.chip{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(32,24,12,.10);
  background: rgba(255,255,255,.76);
  color: var(--muted);
  cursor:pointer;
  font-size: 13px;
}

.chip.active{
  border-color: rgba(198,169,107,.32);
  background: rgba(198,169,107,.16);
  color: var(--text);
}

/* ===== GALLERY ===== */

.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.g-item{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(32,24,12,.08);
  background: rgba(255,255,255,.72);
  cursor:pointer;
  position: relative;
  min-height: 160px;
}

.g-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: .25s ease;
  filter: saturate(1.04) contrast(1.03);
}

.g-item:hover img{ transform: scale(1.06); }

.g-item::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, transparent 55%, rgba(29,26,23,.34));
  opacity:.9;
}

.g-cap{
  position:absolute;
  left: 12px;
  bottom: 10px;
  right: 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  z-index: 2;
  color: #fffdf9;
  font-size: 13px;
}

.g-cap span{
  color: #fff1cf;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* ===== CTA ===== */

.cta{
  border-radius: var(--radius2);
  border: 1px solid rgba(198,169,107,.24);
  background:
    radial-gradient(900px 520px at 15% 0%, rgba(198,169,107,.16), transparent 58%),
    rgba(255,255,255,.88);
  box-shadow: var(--shadow);
  padding: 26px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.cta h3{
  margin: 0;
  font-size: 20px;
  color: var(--text);
}

.cta p{
  margin: 6px 0 0;
  color: var(--muted);
  max-width: 60ch;
}

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

.footer{
  padding: 34px 0 42px;
  color: var(--muted2);
  border-top: 1px solid rgba(32,24,12,.08);
  margin-top: 34px;
  background: rgba(255,255,255,.38);
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr .9fr .9fr;
  gap: 18px;
}

.footer-grid > *{
  align-self: start;
}

.footer-brand{
  display: flex;
  align-items: flex-start;
}

.footer-block{
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-label{
  margin-bottom: 0;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-link-list{
  display: grid;
  gap: 8px;
}

.footer-link-list a{
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  line-height: 1.7;
  transition: color .22s ease, opacity .22s ease;
}

.footer a{ color: var(--muted); }
.footer a:hover{
  color: var(--text);
  opacity: .96;
}

.small{
  font-size: 13px;
  color: var(--muted2);
}

/* ===== FORMS ===== */

.form{
  display:grid;
  gap: 12px;
}

.field{
  display:grid;
  gap: 6px;
}

label{
  font-size: 13px;
  color: var(--muted);
}

input,
select,
textarea{
  width:100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(32,24,12,.10);
  background: rgba(255,255,255,.96);
  color: var(--text);
  outline: none;
  font-size: 14px;
  transition: all .2s ease;
}

input:focus,
select:focus,
textarea:focus{
  border-color: rgba(198,169,107,.55);
  box-shadow: 0 0 0 4px rgba(198,169,107,.14);
}

select option{
  background-color: #ffffff;
  color: #1d1a17;
}

select{
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

textarea{
  min-height: 120px;
  resize: vertical;
}

.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.notice{
  display:none;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(198,169,107,.30);
  background: rgba(198,169,107,.12);
  color: #4b3a1f;
}

.notice.show{ display:block; }

.map{
  border-radius: var(--radius2);
  overflow:hidden;
  border: 1px solid rgba(32,24,12,.08);
  background: rgba(255,255,255,.82);
  min-height: 360px;
}

/* ===== LIGHTBOX ===== */

.lightbox{
  position: fixed;
  inset:0;
  background: rgba(20,14,8,.55);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  z-index: 2000;
  padding: 18px;
}

.lightbox.show{
  opacity: 1;
  pointer-events: auto;
}

.lightbox-inner{
  width: min(980px, 100%);
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(32,24,12,.10);
  background: rgba(255,255,255,.98);
  box-shadow: 0 30px 90px rgba(56,40,18,.18);
}

.lightbox-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(32,24,12,.08);
  color: var(--muted);
}

.lightbox-top b{ color: var(--text); }

.lb-close{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(32,24,12,.10);
  background: rgba(255,255,255,.92);
  color: var(--text);
  cursor:pointer;
}

.lb-img{
  width:100%;
  height: min(72vh, 680px);
  object-fit: cover;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-media{ min-height: 320px; }
  .split{ grid-template-columns: 1fr; }
  .photo img{ height: 360px; }
  .grid-4{ grid-template-columns: repeat(2, 1fr); }
  .grid-3{ grid-template-columns: repeat(2, 1fr); }
  .gallery{ grid-template-columns: repeat(2, 1fr); }
  .footer-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 720px){
  .nav-links{
    display:none;
    position:absolute;
    left: 20px;
    right: 20px;
    top: 66px;
    border-radius: 18px;
    border: 1px solid rgba(32,24,12,.10);
    background: rgba(255,255,255,.96);
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
    z-index: 1200;
  }

  .nav-links.show{
    display:flex;
  }

  .nav-links a{
    padding: 10px 12px;
  }

  .hamburger{
    display:flex;
  }
}
  .form-row{ grid-template-columns: 1fr; }

  .hero{
    padding: 16px 0 14px;
  }

  .hero-card{
    padding: 20px 18px;
    border-radius: 22px;
  }

  .h1{
    font-size: 28px;
    line-height: 1.05;
    margin: 0 0 10px;
  }

  .lead{
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-actions{
    margin-top: 16px;
  }

  .hero-actions .btn{
    width: 100%;
  }

  .hero-actions .btn-ghost{
    display: none;
  }

  .badges{
    margin-top: 16px;
    gap: 8px;
  }

  .badge{
    font-size: 12px;
    padding: 8px 10px;
  }

  .hero-media{
    min-height: 180px;
    border-radius: 22px;
  }

  .hero-grid{
    gap: 14px;
  }
}

/* ===== LOGO ===== */

.brand{
  display:flex;
  align-items:center;
  height:72px;        /* matches header height */
}

.logo-img{
  height:40px;        /* clean size */
  width:auto;
  display:block;
}


@media (max-width: 768px){
  
}

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

.reveal{
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s cubic-bezier(.2,.8,.2,1),
    transform 0.9s cubic-bezier(.2,.8,.2,1);
  will-change: transform, opacity;
}

.reveal.show{
  opacity: 1;
  transform: translateY(0);
}

.stagger > *{
  opacity: 0;
  transform: translateY(30px);
}

.stagger.show > *{
  opacity: 1;
  transform: translateY(0);
}

/* ===== HERO IMAGE MOTION ===== */

.hero-media img{
  animation: heroZoom 14s ease-in-out infinite alternate;
}

@keyframes heroZoom{
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}

/* ===== SERVICES CARD ALIGNMENT FIX ===== */

.grid-3{
  align-items: stretch;
}

.service-card{
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}

.service-image{
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 14px;
}

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

.service-card p{
  margin-top: auto;
}

/* ===== HOME LUXURY UPGRADE ===== */

.hero{
  padding: 72px 0 28px;
}

.hero-card{
  padding: 42px 38px;
  background:
    radial-gradient(720px 360px at 10% 0%, rgba(198,169,107,.2), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,250,242,.84));
  box-shadow: 0 30px 80px rgba(49,35,16,.1);
}

.hero-card::after{
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198,169,107,.55), transparent);
}

.hero .lead{
  font-size: 17px;
  line-height: 1.8;
  max-width: 56ch;
}

.hero-media{
  min-height: 520px;
  box-shadow: 0 34px 90px rgba(38,26,12,.18);
}

.hero-media::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,10,7,.08), rgba(14,10,7,.28) 40%, rgba(14,10,7,.56)),
    linear-gradient(120deg, rgba(12,8,4,.14), transparent 55%);
  z-index: 1;
}

.hero-media::after{
  background:
    radial-gradient(900px 520px at 18% 10%, rgba(198,169,107,.16), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.22));
  z-index: 1;
}

.hero-media img{
  transition: transform .7s ease;
  will-change: transform;
}

.hero-media[data-parallax] img{
  animation: none;
  transform: scale(1.08);
}

.hero-media-copy{
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  color: #fff8ee;
}

.hero-media-copy span{
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,240,206,.88);
}

.hero-media-copy strong{
  display: block;
  font-size: 24px;
  line-height: 1.2;
  max-width: 12ch;
}

.btn{
  position: relative;
  overflow: hidden;
}

.btn::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.24), transparent);
  opacity: 0;
  transform: translateX(-40%);
  transition: opacity .28s ease, transform .45s ease;
}

.btn:hover::after{
  opacity: 1;
  transform: translateX(40%);
}

.btn-gold:hover{
  box-shadow: 0 20px 44px rgba(198,169,107,.28), 0 0 26px rgba(234,216,176,.22);
}

.service-feature-card{
  padding: 0 0 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,251,246,.9));
  box-shadow: 0 18px 38px rgba(56,40,18,.08);
}

.service-feature-link{
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.service-feature-card:hover{
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 26px 54px rgba(56,40,18,.12);
  border-color: rgba(198,169,107,.4);
}

.service-feature-link:hover .service-feature-card,
.service-feature-link:focus-visible .service-feature-card{
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 26px 54px rgba(56,40,18,.12);
  border-color: rgba(198,169,107,.4);
}

.service-feature-link:hover .service-feature-media img,
.service-feature-link:focus-visible .service-feature-media img{
  transform: scale(1.08);
  filter: saturate(1.05) brightness(1.01);
}

.service-feature-link:focus-visible{
  outline: none;
}

.service-feature-link:focus-visible .service-feature-card{
  box-shadow:
    0 0 0 2px rgba(198,169,107,.22),
    0 26px 54px rgba(56,40,18,.12);
}

.service-feature-card .card-title,
.service-feature-card p{
  padding-left: 22px;
  padding-right: 22px;
}

.service-feature-media{
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  margin-bottom: 18px;
}

.service-feature-media::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,7,4,0) 38%, rgba(10,7,4,.24));
}

.service-feature-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease, filter .4s ease;
  filter: saturate(1.03) contrast(1.02);
}

.service-feature-card:hover .service-feature-media img{
  transform: scale(1.08);
}

.service-feature-card .icon{
  box-shadow: 0 14px 28px rgba(198,169,107,.18);
}

.modern-section{
  position: relative;
}

.modern-shell{
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(198,169,107,.18);
  background:
    radial-gradient(700px 320px at 0% 0%, rgba(198,169,107,.12), transparent 58%),
    rgba(255,255,255,.72);
  box-shadow: 0 28px 70px rgba(56,40,18,.08);
}

.modern-copy .p-muted{
  max-width: 54ch;
}

.modern-list{
  margin-top: 20px;
  gap: 14px;
}

.modern-list li{
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
}

.modern-list li:hover{
  transform: translateX(6px);
  border-color: rgba(198,169,107,.34);
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 30px rgba(56,40,18,.08);
}

.list-icon{
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.8), transparent 58%),
    linear-gradient(135deg, rgba(234,216,176,.95), rgba(198,169,107,.9));
  color: #5b431e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  box-shadow: 0 14px 26px rgba(198,169,107,.18);
}

.modern-photo{
  background: rgba(255,255,255,.88);
}

.modern-photo img{
  transition: transform .7s ease;
}

.modern-photo:hover img{
  transform: scale(1.05);
}

.cta{
  padding: 34px;
  background:
    radial-gradient(900px 520px at 15% 0%, rgba(198,169,107,.2), transparent 58%),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,248,238,.9));
  box-shadow: 0 28px 72px rgba(56,40,18,.12);
}

.cta h3{
  font-size: 30px;
  line-height: 1.15;
  max-width: 14ch;
}

.cta p{
  font-size: 15px;
  line-height: 1.75;
}

.cta-trust{
  margin-top: 12px;
  color: #8e6b2d;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
}

.cta-actions{
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-cta-strong{
  min-width: 190px;
  min-height: 56px;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 20px 42px rgba(198,169,107,.26);
}

.reveal{
  opacity: 0;
  transform: translateY(46px);
  transition:
    opacity 0.95s cubic-bezier(.2,.8,.2,1),
    transform 0.95s cubic-bezier(.2,.8,.2,1);
}

.stagger > *{
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity .8s cubic-bezier(.2,.8,.2,1),
    transform .8s cubic-bezier(.2,.8,.2,1);
}

.stagger.show > *{
  opacity: 1;
  transform: translateY(0);
}

.stagger.show > *:nth-child(1){ transition-delay: .04s; }
.stagger.show > *:nth-child(2){ transition-delay: .12s; }
.stagger.show > *:nth-child(3){ transition-delay: .2s; }
.stagger.show > *:nth-child(4){ transition-delay: .28s; }

.photo img,
.service-image img,
.g-item img{
  transition: transform .6s ease, filter .35s ease;
}

.photo:hover img,
.service-card:hover .service-image img{
  transform: scale(1.06);
}

@media (max-width: 980px){
  .hero-card{
    padding: 30px 26px;
  }

  .hero-media{
    min-height: 380px;
  }

  .modern-shell{
    padding: 22px;
  }

  .cta h3{
    max-width: none;
    font-size: 26px;
  }
}

@media (max-width: 720px){
  .hero{
    padding: 20px 0 18px;
  }

  .hero-card{
    padding: 22px 18px;
  }

  .hero-media{
    min-height: 320px;
  }

  .hero-media-copy{
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .hero-media-copy strong{
    font-size: 20px;
  }

  .service-feature-card{
    padding-bottom: 18px;
  }

  .service-feature-card .card-title,
  .service-feature-card p{
    padding-left: 18px;
    padding-right: 18px;
  }

  .modern-shell{
    padding: 18px;
    border-radius: 22px;
  }

  .modern-list li{
    align-items: flex-start;
  }

  .cta{
    padding: 24px 20px;
  }

  .btn-cta-strong{
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce){
  .hero-media img,
  .chatbot-launcher,
  .back-to-top,
  .reveal,
  .stagger > *,
  .btn,
  .card,
  .photo img,
  .service-feature-media img{
    animation: none !important;
    transition: none !important;
  }
}

/* ===== SERVICES MINI GALLERY MODAL ===== */

.service-modal{
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  padding: 20px;
}

.service-modal.show{
  opacity: 1;
  pointer-events: auto;
}

.service-modal-overlay{
  position: absolute;
  inset: 0;
  background: rgba(20,14,8,.52);
  backdrop-filter: blur(8px);
}

.service-modal-card{
  position: relative;
  z-index: 2;
  width: min(1100px, 100%);
  max-height: 90vh;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(32,24,12,.10);
  background: #fffdfa;
  box-shadow: 0 30px 90px rgba(56,40,18,.18);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
}

.service-modal-media{
  position: relative;
  background: #f5efe4;
  min-height: 520px;
}

.service-modal-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-modal-content{
  padding: 28px;
  overflow-y: auto;
}

.service-modal-close{
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(32,24,12,.10);
  background: rgba(255,255,255,.92);
  color: var(--text);
  cursor: pointer;
}

.service-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(32,24,12,.10);
  background: rgba(255,255,255,.82);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 20px;
  backdrop-filter: blur(10px);
}

.service-arrow.left{ left: 16px; }
.service-arrow.right{ right: 16px; }

.service-arrow:hover,
.service-modal-close:hover{
  background: rgba(198,169,107,.18);
  border-color: rgba(198,169,107,.32);
}

@media (max-width: 900px){
  .service-modal-card{
    grid-template-columns: 1fr;
    max-height: 92vh;
  }

  .service-modal-media{
    min-height: 300px;
  }

  .service-modal-content{
    padding: 20px;
  }
}

/* ===== CONTACT PAGE LOCATION PREVIEW ===== */

.location-card{
  overflow: hidden;
}

.location-preview{
  margin-top: 16px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(32,24,12,.08);
  background: rgba(255,255,255,.82);
}

.location-preview iframe{
  display: block;
  width: 100%;
}

/* ===== CONTACT PAGE REFINEMENT ===== */

.contact-page main{
  position: relative;
}

.contact-page .contact-section{
  padding: clamp(72px, 8vw, 110px) 0 clamp(92px, 9vw, 132px);
}

.contact-page .contact-intro{
  margin-bottom: clamp(28px, 4vw, 44px);
}

.contact-page .contact-intro-copy{
  max-width: 760px;
}

.contact-page .contact-kicker{
  margin-bottom: 12px;
  color: #a88645;
  letter-spacing: .28em;
}

.contact-page .contact-micro{
  margin: 0 0 16px;
  color: rgba(98,88,77,.86);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  font-style: italic;
  line-height: 1.28;
}

.contact-page .contact-intro .h2{
  margin: 0 0 16px;
  max-width: 12ch;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(2.45rem, 5vw, 4.2rem);
  line-height: .96;
  letter-spacing: -.03em;
}

.contact-page .contact-intro .p-muted{
  max-width: 56ch;
  color: rgba(98,88,77,.92);
  font-size: 15px;
  line-height: 1.9;
}

.contact-page .contact-stack{
  display: grid;
  gap: clamp(24px, 3vw, 34px);
}

.contact-page .card{
  border-radius: 30px;
  border: 1px solid rgba(88,66,38,.09);
  background:
    radial-gradient(680px 240px at 0% 0%, rgba(255,255,255,.42), transparent 58%),
    linear-gradient(180deg, rgba(239,233,224,.96), rgba(229,220,209,.94));
  box-shadow:
    0 28px 62px rgba(48,35,18,.08),
    inset 0 1px 0 rgba(255,255,255,.54);
  padding: clamp(26px, 4vw, 40px);
}

.contact-page .card:hover{
  transform: translateY(-4px) scale(1);
  border-color: rgba(168,136,86,.18);
  box-shadow:
    0 34px 70px rgba(48,35,18,.1),
    inset 0 1px 0 rgba(255,255,255,.58);
}

.contact-page .contact-form-card,
.contact-page .contact-location-card{
  position: relative;
}

.contact-page .contact-form-card::before,
.contact-page .contact-location-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(460px 160px at 100% 0%, rgba(198,169,107,.1), transparent 62%),
    radial-gradient(300px 180px at 0% 100%, rgba(255,255,255,.24), transparent 68%);
  pointer-events: none;
}

.contact-page .contact-card-title{
  margin: 0;
}

.contact-page .contact-card-title > div{
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-page .contact-mark{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(170,136,69,.22);
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.78), transparent 58%),
    rgba(198,169,107,.14);
  color: #a88645;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  box-shadow: 0 12px 22px rgba(198,169,107,.12);
}

.contact-page .contact-card-title small{
  display: block;
  margin-bottom: 8px;
  color: #9c7f4b;
  letter-spacing: .24em;
  font-size: 12px;
  font-weight: 700;
}

.contact-page .contact-card-heading{
  color: #231a13;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.05;
}

.contact-page .contact-form-intro{
  position: relative;
  margin: 18px 0 0;
  max-width: 58ch;
  color: rgba(98,88,77,.9);
  font-size: 14px;
  line-height: 1.86;
}

.contact-page .contact-form{
  position: relative;
  margin-top: 28px;
  gap: 24px;
}

.contact-page .form-section{
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 18px;
}

.contact-page .form-section + .form-section{
  padding-top: 4px;
}

.contact-page .form-section legend{
  padding: 0;
  margin: 0 0 2px;
  color: #9a7d4b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
}

.contact-page .form-row{
  gap: 18px;
}

.contact-page .field{
  gap: 10px;
}

.contact-page label{
  color: rgba(78,66,54,.9);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-page input,
.contact-page select,
.contact-page textarea{
  min-height: 58px;
  padding: 17px 16px 14px;
  border-radius: 12px;
  border: 1px solid rgba(92,74,52,.12);
  background:
    linear-gradient(180deg, rgba(255,252,247,.8), rgba(249,244,237,.96));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
  color: #201a15;
  font-size: 15px;
  line-height: 1.55;
  transition:
    border-color .28s ease,
    box-shadow .28s ease,
    background .28s ease,
    transform .28s ease,
    color .28s ease;
}

.contact-page input::placeholder,
.contact-page select::placeholder,
.contact-page textarea::placeholder{
  color: rgba(114,102,88,.58);
}

.contact-page input:hover,
.contact-page select:hover,
.contact-page textarea:hover{
  border-color: rgba(168,136,86,.22);
  background: linear-gradient(180deg, rgba(255,253,249,.9), rgba(248,242,234,.98));
}

.contact-page input:focus,
.contact-page select:focus,
.contact-page textarea:focus{
  border-color: rgba(198,169,107,.48);
  box-shadow:
    0 0 0 4px rgba(198,169,107,.12),
    0 18px 28px rgba(48,35,18,.05);
  background: linear-gradient(180deg, rgba(255,255,253,.98), rgba(249,245,239,1));
  transform: translateY(-1px);
}

.contact-page select{
  padding-right: 48px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1.25L7 7.25L13 1.25' stroke='%23917A58' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px 9px;
}

.contact-page input[type="date"]{
  padding-right: 16px;
}

.contact-page input[type="date"]::-webkit-calendar-picker-indicator{
  opacity: .72;
  cursor: pointer;
  filter: sepia(16%) saturate(72%) brightness(.96);
}

.contact-page textarea{
  min-height: 180px;
  padding-top: 18px;
  resize: vertical;
}

.contact-page .form-helper{
  margin: 0;
  max-width: 60ch;
  color: rgba(98,88,77,.8);
  font-size: 13px;
  line-height: 1.85;
}

.contact-page .contact-submit{
  min-height: 58px;
  margin-top: 4px;
  padding: 16px 30px;
  border-radius: 14px;
  border-color: rgba(184,150,93,.28);
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.62), transparent 56%),
    linear-gradient(135deg, rgba(236,222,189,.98), rgba(191,161,109,.94));
  box-shadow: 0 18px 34px rgba(150,117,61,.14);
  color: #261b12;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.contact-page .contact-submit:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(150,117,61,.18);
  filter: brightness(1.02);
}

.contact-page .contact-submit:active{
  transform: translateY(0);
}

.contact-page .contact-location-grid{
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
  gap: clamp(22px, 3vw, 34px);
  align-items: stretch;
}

.contact-page .contact-location-copy{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-page .contact-location-lead{
  margin: 18px 0 0;
  max-width: 40ch;
  color: rgba(86,74,61,.9);
  font-size: 15px;
  line-height: 1.88;
}

.contact-page .location-address{
  margin-top: 22px;
  padding: 16px 20px;
  border-radius: 18px;
  border: 1px solid rgba(92,74,52,.08);
  background: rgba(255,250,244,.46);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}

.contact-page .location-address-label{
  display: inline-block;
  margin-bottom: 10px;
  color: #9c7f4b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.contact-page .location-address p{
  color: #2b2118;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.16rem;
  line-height: 1.6;
}

.contact-page .location-actions{
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-page .location-actions .btn{
  min-height: 54px;
  padding: 14px 20px;
  border-radius: 14px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-page .location-actions .btn-ghost{
  border-color: rgba(92,74,52,.1);
  background: rgba(255,252,247,.68);
  box-shadow: 0 12px 24px rgba(48,35,18,.05);
}

.contact-page .location-preview{
  margin-top: 0;
  min-height: 100%;
  border-radius: 24px;
  border: 1px solid rgba(92,74,52,.08);
  background:
    linear-gradient(180deg, rgba(245,239,231,.84), rgba(235,226,214,.9));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.56),
    0 16px 34px rgba(48,35,18,.06);
}

.contact-page .location-preview iframe{
  min-height: 320px;
  height: 100%;
  filter: saturate(.92) contrast(1.01);
}

.contact-page .footer{
  margin-top: 0;
  padding-top: 38px;
  border-top-color: rgba(88,66,38,.08);
  background: linear-gradient(180deg, rgba(248,245,240,.12), rgba(255,255,255,.42));
}

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

  .contact-page .contact-intro .h2{
    max-width: 14ch;
  }

  .contact-page .location-preview iframe{
    min-height: 300px;
  }
}

@media (max-width: 768px){
  .contact-page .contact-section{
    padding: 56px 0 76px;
  }

  .contact-page .contact-intro{
    margin-bottom: 24px;
  }

  .contact-page .card{
    border-radius: 24px;
    padding: 24px 22px;
  }

  .contact-page .contact-card-heading{
    font-size: 1.46rem;
  }

  .contact-page .contact-form{
    margin-top: 24px;
    gap: 22px;
  }

  .contact-page .contact-submit{
    width: 100%;
  }

  .contact-page .location-address{
    margin-top: 20px;
  }
}

@media (max-width: 480px){
  .contact-page .contact-section{
    padding: 46px 0 64px;
  }

  .contact-page .contact-intro .h2{
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .contact-page .contact-micro{
    font-size: 1rem;
  }

  .contact-page .card{
    padding: 20px 18px;
    border-radius: 20px;
  }

  .contact-page .contact-mark{
    width: 38px;
    height: 38px;
  }

  .contact-page .contact-card-title > div{
    gap: 12px;
  }

  .contact-page input,
  .contact-page select,
  .contact-page textarea{
    min-height: 54px;
    font-size: 14px;
  }

  .contact-page textarea{
    min-height: 160px;
  }

  .contact-page .location-preview{
    border-radius: 20px;
  }

  .contact-page .location-preview iframe{
    min-height: 240px;
  }
}

/* ===== FILE INPUT ===== */

input[type="file"]{
  padding: 10px 12px;
  cursor: pointer;
}

input[type="file"]::file-selector-button{
  margin-right: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(198,169,107,.30);
  background: rgba(198,169,107,.12);
  color: var(--text);
  cursor: pointer;
}

/* ===== ABOUT PAGE REFRESH ===== */

.about-hero{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
}

.about-hero-section{
  position: relative;
}

.about-hero-section::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(1120px, calc(100% - 40px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(198,169,107,.34), transparent);
}

.about-title{
  max-width: 11ch;
  margin-bottom: 16px;
  line-height: 1;
}

.about-lead{
  max-width: 50ch;
  font-size: 17px;
  line-height: 1.85;
}

.about-hero-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-hero-media{
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(32,24,12,.08);
  background: rgba(255,255,255,.84);
  box-shadow: 0 32px 80px rgba(56,40,18,.14);
  min-height: 520px;
  position: relative;
}

.about-hero-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .75s ease;
}

.about-hero-media::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16,12,8,.06), rgba(16,12,8,.18)),
    radial-gradient(900px 420px at 15% 0%, rgba(234,216,176,.18), transparent 58%);
}

.about-hero-media:hover img{
  transform: scale(1.05);
}

.about-stat-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 26px;
}

.about-stat{
  padding: 18px 18px 18px 72px;
  border-radius: 20px;
  border: 1px solid rgba(198,169,107,.18);
  background:
    radial-gradient(220px 120px at 0% 0%, rgba(198,169,107,.08), transparent 60%),
    rgba(255,255,255,.9);
  position: relative;
  box-shadow: 0 16px 34px rgba(56,40,18,.07);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.about-stat:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(56,40,18,.1);
  border-color: rgba(198,169,107,.34);
}

.about-stat-primary{
  background:
    radial-gradient(240px 140px at 0% 0%, rgba(198,169,107,.12), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,248,238,.9));
}

.about-stat-icon{
  position: absolute;
  left: 18px;
  top: 18px;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.8), transparent 58%),
    linear-gradient(135deg, rgba(234,216,176,.95), rgba(198,169,107,.9));
  color: #5b431e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  box-shadow: 0 14px 24px rgba(198,169,107,.18);
}

.about-stat b{
  display: block;
  color: var(--text);
  margin-bottom: 6px;
  font-size: 17px;
}

.about-stat span{
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.about-feature-card{
  height: 100%;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(56,40,18,.08);
}

.about-feature-card .icon{
  width: 48px;
  height: 48px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}

.about-feature-card-featured{
  transform: translateY(-10px);
  background:
    radial-gradient(360px 180px at 0% 0%, rgba(198,169,107,.12), transparent 60%),
    rgba(255,255,255,.94);
  box-shadow: 0 28px 58px rgba(56,40,18,.12);
}

.about-feature-card:hover{
  transform: translateY(-8px);
}

.about-feature-card-featured:hover{
  transform: translateY(-14px);
}

.about-feature-title{
  margin: 18px 0 10px;
  font-size: 22px;
  line-height: 1.2;
  color: var(--text);
}

.about-section-band{
  position: relative;
}

.about-section-band::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.36), rgba(255,255,255,.62)),
    radial-gradient(800px 240px at 10% 0%, rgba(198,169,107,.08), transparent 62%);
}

.about-section-band .container{
  position: relative;
}

.about-signature{
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 30px;
  align-items: center;
}

.about-signature-section{
  position: relative;
}

.about-signature-photo{
  min-height: 520px;
  box-shadow: 0 30px 72px rgba(56,40,18,.14);
}

.about-signature-content .p-muted{
  margin-top: 8px;
  max-width: 46ch;
  line-height: 1.8;
}

.about-signature-content .h2{
  font-size: 34px;
  line-height: 1.08;
  max-width: 12ch;
}

.about-signature-note{
  margin-top: 10px;
  max-width: 42ch;
}

.about-signature-list{
  margin-top: 22px;
  gap: 16px;
}

.about-signature-list li{
  align-items: center;
  border-left: 3px solid rgba(198,169,107,.34);
  box-shadow: 0 14px 30px rgba(56,40,18,.07);
}

.about-signature-list li:nth-child(2){
  margin-left: 12px;
}

.about-signature-list li:nth-child(3){
  margin-left: 24px;
}

.about-signature-list li:hover{
  transform: translateX(4px);
}

.about-cta-section{
  padding-top: 54px;
}

.about-cta{
  align-items: center;
}

.about-cta-copy{
  max-width: 56ch;
}

@media (max-width: 980px){
  .about-hero,
  .about-signature{
    grid-template-columns: 1fr;
  }

  .about-hero-media{
    min-height: 360px;
  }

  .about-signature-photo{
    min-height: 360px;
  }

  .about-stat-row{
    grid-template-columns: 1fr;
  }

  .about-title{
    max-width: none;
  }

  .about-feature-card-featured{
    transform: none;
  }

  .about-signature-content .h2{
    max-width: none;
  }

  .about-signature-list li:nth-child(2),
  .about-signature-list li:nth-child(3){
    margin-left: 0;
  }
}

@media (max-width: 720px){
  .about-stat{
    padding: 16px 16px 16px 68px;
  }

  .about-feature-card{
    padding: 20px;
  }

  .about-signature-photo{
    min-height: 320px;
  }

  .about-signature-content .h2{
    font-size: 28px;
  }
}

/* ===== AI CHATBOT WIDGET ===== */

body.chatbot-open{
  overflow: hidden;
}

.chatbot-widget{
  pointer-events: none;
}

.chatbot-launcher{
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 3200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  border: 1px solid rgba(198,169,107,.45);
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,.5), transparent 52%),
    linear-gradient(135deg, rgba(234,216,176,.98), rgba(198,169,107,.95));
  color: #2b2116;
  padding: 12px 17px;
  box-shadow:
    0 18px 34px rgba(56,40,18,.2),
    0 0 0 1px rgba(255,255,255,.28) inset;
  font-weight: 650;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  animation: chatbotFloat 3.2s ease-in-out infinite;
}

.chatbot-launcher:hover{
  transform: translateY(-4px);
  box-shadow:
    0 24px 42px rgba(56,40,18,.26),
    0 0 0 1px rgba(255,255,255,.32) inset;
}

.chatbot-overlay{
  position: fixed;
  inset: 0;
  background: rgba(18, 14, 8, .35);
  backdrop-filter: blur(1px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 3180;
}

.chatbot-drawer{
  position: fixed;
  right: 20px;
  bottom: 82px;
  width: min(500px, calc(100vw - 28px));
  height: min(760px, calc(100vh - 116px));
  border-radius: 22px;
  border: 1px solid rgba(32,24,12,.16);
  background: rgba(255,255,255,.99);
  box-shadow: 0 26px 54px rgba(32,24,12,.26);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  transform: translateY(16px) scale(.98);
  opacity: 0;
  pointer-events: none;
  transition: transform .24s ease, opacity .24s ease;
  z-index: 3190;
}

.chatbot-widget.show .chatbot-overlay{
  opacity: 1;
  pointer-events: auto;
}

.chatbot-widget.show .chatbot-launcher{
  animation: none;
}

.chatbot-widget.show .chatbot-drawer{
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.chatbot-drawer-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px 12px;
  border-bottom: 1px solid rgba(32,24,12,.10);
  background:
    radial-gradient(circle at 0% 0%, rgba(234,216,176,.54), transparent 55%),
    #fffdf8;
}

.chatbot-kicker{
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  color: #a88645;
  font-weight: 700;
}

.chatbot-drawer-head h3{
  margin: 4px 0 2px;
  font-size: 18px;
  line-height: 1.2;
  color: var(--text);
}

.chatbot-subtitle{
  margin: 0;
  font-size: 12px;
  color: var(--muted2);
}

.chatbot-close{
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(32,24,12,.12);
  background: rgba(255,255,255,.88);
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.chatbot-frame{
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff9ef;
}

/* ===== BACK TO TOP ===== */

.back-to-top{
  position: fixed;
  left: max(18px, env(safe-area-inset-left));
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 2990;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 16px 0 12px;
  border: 1px solid rgba(198,169,107,.22);
  border-radius: 999px;
  background:
    radial-gradient(circle at 25% 20%, rgba(255,255,255,.58), transparent 52%),
    linear-gradient(180deg, rgba(255,252,247,.92), rgba(244,237,227,.88));
  box-shadow:
    0 18px 40px rgba(38,27,14,.14),
    0 1px 0 rgba(255,255,255,.5) inset;
  color: #2d2116;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity .28s ease,
    transform .32s ease,
    box-shadow .32s ease,
    border-color .32s ease,
    background .32s ease;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.back-to-top.is-visible{
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.back-to-top:hover{
  transform: translate3d(0, -2px, 0);
  border-color: rgba(198,169,107,.34);
  box-shadow:
    0 24px 46px rgba(38,27,14,.18),
    0 1px 0 rgba(255,255,255,.56) inset;
}

.back-to-top:focus-visible{
  outline: none;
  border-color: rgba(177,144,86,.52);
  box-shadow:
    0 0 0 4px rgba(198,169,107,.16),
    0 20px 40px rgba(38,27,14,.16),
    0 1px 0 rgba(255,255,255,.56) inset;
}

.back-to-top:active{
  transform: translate3d(0, 0, 0) scale(.98);
}

.back-to-top-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(205,176,120,.28), rgba(205,176,120,.12));
  box-shadow: 0 1px 0 rgba(255,255,255,.38) inset;
  flex: 0 0 auto;
}

.back-to-top-icon svg{
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.back-to-top-label{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

body.chatbot-open .back-to-top{
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 18px, 0);
}

@keyframes chatbotFloat{
  0%, 100%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(-6px);
  }
}

@media (max-width: 720px){
  .chatbot-launcher{
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    padding: 10px 13px;
    font-size: 14px;
    min-height: 44px;
  }

  .chatbot-drawer{
    right: 8px;
    left: 8px;
    width: auto;
    bottom: 62px;
    height: min(730px, calc(100vh - 76px));
    border-radius: 16px;
  }

  .back-to-top{
    left: max(12px, env(safe-area-inset-left));
    bottom: max(12px, env(safe-area-inset-bottom));
    min-height: 46px;
    padding: 0 14px 0 10px;
    gap: 9px;
  }

  .back-to-top-label{
    font-size: 11px;
    letter-spacing: .12em;
  }
}

/* ===== HOME CINEMATIC REDESIGN ===== */

body{
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1,
h2,
h3,
.h1,
.h2{
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}

.home-page{
  background:
    radial-gradient(1200px 760px at 10% 0%, rgba(198,169,107,.16), transparent 60%),
    radial-gradient(980px 680px at 100% 12%, rgba(234,216,176,.2), transparent 56%),
    linear-gradient(180deg, #f6f2ec 0%, #fbf8f3 52%, #f4efe7 100%);
}

.home-page .topbar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background:
    linear-gradient(180deg, rgba(21,15,10,.34), rgba(21,15,10,.08));
  border-bottom: 1px solid rgba(255,255,255,.1);
  box-shadow: none;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.home-page .topbar.is-scrolled{
  background: rgba(248,244,237,.84);
  border-bottom-color: rgba(32,24,12,.08);
  box-shadow: 0 14px 34px rgba(34,24,11,.06);
}

.home-page .brand{
  position: relative;
  z-index: 2;
}

.home-page .logo-img{
  height: 44px;
  filter: brightness(0) invert(1);
  transition: filter .35s ease;
}

.home-page .topbar.is-scrolled .logo-img{
  filter: none;
}

.home-page .nav-links a{
  color: rgba(255,249,241,.84);
  border: 1px solid transparent;
  font-weight: 500;
}

.home-page .nav-links a:hover{
  color: #ffffff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.08);
}

.home-page .nav-links a.active{
  color: #fffaf2;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.16);
}

.home-page .topbar.is-scrolled .nav-links a{
  color: var(--muted);
}

.home-page .topbar.is-scrolled .nav-links a:hover{
  color: var(--text);
  background: rgba(32,24,12,.05);
  border-color: transparent;
}

.home-page .topbar.is-scrolled .nav-links a.active{
  color: var(--text);
  background: rgba(198,169,107,.14);
  border-color: rgba(198,169,107,.2);
}

.home-page .hamburger{
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.12);
}

.home-page .hamburger span,
.home-page .hamburger span::before,
.home-page .hamburger span::after{
  background: rgba(255,249,241,.92);
}

.home-page .topbar.is-scrolled .hamburger{
  background: rgba(255,255,255,.86);
  border-color: rgba(32,24,12,.1);
}

.home-page .topbar.is-scrolled .hamburger span,
.home-page .topbar.is-scrolled .hamburger span::before,
.home-page .topbar.is-scrolled .hamburger span::after{
  background: rgba(29,26,23,.88);
}

.home-page .section{
  padding: 96px 0;
}

.home-page .hero{
  position: relative;
  min-height: 100svh;
  padding: 148px 0 112px;
  display: flex;
  align-items: flex-end;
  overflow: clip;
  width: 100%;
  isolation: isolate;
}

.home-page .hero-backdrop,
.home-page .hero-overlay{
  position: absolute;
  inset: 0;
}

.home-page .hero-backdrop{
  background-color: #b7a489;
  background-image:
    linear-gradient(180deg, rgba(10,6,3,.04), rgba(10,6,3,.02)),
    url("../assets/img/PHOTO/background1.jpg");
  background-position: center, 22% center;
  background-size: auto, 116% auto;
  background-repeat: no-repeat, no-repeat;
  transform: scale(1.03);
}

.home-page .hero-overlay{
  background:
    radial-gradient(1020px 560px at 20% 24%, rgba(226,200,150,.16), transparent 58%),
    linear-gradient(180deg, rgba(18,13,9,.18) 0%, rgba(18,13,9,.08) 36%, rgba(18,13,9,.22) 100%),
    linear-gradient(90deg, rgba(18,13,9,.2) 0%, rgba(18,13,9,.06) 50%, rgba(18,13,9,.16) 100%);
}

.home-page .hero::after{
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(246,242,236,0), #f6f2ec 100%);
}

.home-page .hero-shell{
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(260px, .6fr);
  gap: 22px;
  align-items: end;
  transform: translateY(-18px);
}

.home-page .hero-content{
  max-width: 598px;
  align-self: start;
}

.home-page .hero-card{
  max-width: 560px;
  padding: 30px 32px 28px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(180deg, rgba(255,252,247,.16), rgba(255,248,239,.07)),
    rgba(255,248,240,.03);
  box-shadow:
    0 18px 42px rgba(15,10,7,.1),
    inset 0 1px 0 rgba(255,255,255,.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.home-page .kicker{
  color: #ecd7ac;
  letter-spacing: .3em;
  font-size: 11px;
}

.home-page .video-section-head .kicker{
  font-size: 13px;
  letter-spacing: .28em;
  color: #7f6240;
}

.home-page .services-editorial-section .kicker,
.home-page .modern-copy .kicker,
.home-page .cta-copy .kicker{
  font-size: 12px;
  letter-spacing: .3em;
}

.home-page .services-editorial-section .kicker,
.home-page .cta-copy .kicker{
  color: #7f6240;
}

.home-page .services-editorial-section .h2,
.home-page .modern-copy .h2,
.home-page .cta h3{
  margin-top: 6px;
}

.home-page .h1{
  margin: 12px 0 18px;
  color: #fff8ef;
  font-size: clamp(3.1rem, 5vw, 5.45rem);
  line-height: .88;
  letter-spacing: -.04em;
  max-width: 7.8ch;
  text-wrap: balance;
}

.home-page .hero .lead{
  font-size: 15px;
  line-height: 1.78;
  color: rgba(255,244,229,.84);
  max-width: 37ch;
}

.home-page .hero-actions{
  margin-top: 24px;
  gap: 12px;
}

.home-page .hero .btn{
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.home-page .hero .btn-gold{
  border-color: rgba(224,191,121,.38);
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.42), transparent 55%),
    linear-gradient(135deg, rgba(239,226,196,.98), rgba(199,166,107,.94) 74%);
  box-shadow: 0 18px 34px rgba(31,21,10,.14);
}

.home-page .hero .btn-gold:hover{
  box-shadow: 0 22px 38px rgba(31,21,10,.16);
  filter: brightness(1.02);
}

.home-page .hero .btn-ghost{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  color: #fffaf2;
  box-shadow: none;
}

.home-page .hero .btn-ghost:hover{
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.16);
}

.home-page .hero .badges{
  margin-top: 22px;
  gap: 10px;
}

.home-page .hero .badge{
  padding: 8px 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  border-color: rgba(255,255,255,.08);
  color: rgba(255,244,229,.76);
  backdrop-filter: blur(4px);
  font-size: 10.5px;
  letter-spacing: .04em;
}

.home-page .hero .badge i{
  background: #e3c990;
  box-shadow: 0 0 0 3px rgba(227,201,144,.12);
}

.home-page .hero-notes{
  display: grid;
  gap: 12px;
  align-self: start;
  justify-self: end;
  max-width: 292px;
  margin-top: 18px;
}

.home-page .hero-note{
  max-width: 292px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(180deg, rgba(255,252,247,.14), rgba(255,248,239,.08)),
    rgba(14,10,7,.16);
  color: #fff8ef;
  box-shadow: 0 20px 54px rgba(14,10,7,.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.home-page .hero-note span{
  display: inline-block;
  margin-bottom: 8px;
  color: rgba(227,201,144,.92);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
}

.home-page .hero-note strong{
  display: block;
  font-size: 16px;
  line-height: 1.45;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}

.home-page .hero-card > *,
.home-page .hero-note{
  opacity: 0;
  transform: translateY(24px);
  animation: heroLift .85s cubic-bezier(.2,.8,.2,1) forwards;
}

.home-page .hero-card > :nth-child(1){ animation-delay: .12s; }
.home-page .hero-card > :nth-child(2){ animation-delay: .24s; }
.home-page .hero-card > :nth-child(3){ animation-delay: .34s; }
.home-page .hero-card > :nth-child(4){ animation-delay: .44s; }
.home-page .hero-card > :nth-child(5){ animation-delay: .54s; }
.home-page .hero-note:nth-child(1){ animation-delay: .38s; }
.home-page .hero-note:nth-child(2){ animation-delay: .5s; }

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

.home-page .cinematic-video-section{
  position: relative;
  margin-top: -58px;
  padding-top: 0;
  z-index: 2;
}

.home-page .section-head-centered{
  justify-content: center;
  text-align: center;
}

.home-page .video-section-head > div{
  max-width: 840px;
}

.home-page .video-section-head .h2{
  max-width: 11ch;
  margin: 12px auto 0;
  font-size: clamp(2.5rem, 4.6vw, 4rem);
  line-height: .93;
  color: #241a12;
}

.home-page .video-section-head .p-muted{
  margin: 16px auto 0;
  max-width: 48ch;
  line-height: 1.9;
}

.home-page .video-frame{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(198,169,107,.14);
  background:
    linear-gradient(180deg, rgba(249,245,239,.94), rgba(242,235,226,.84));
  box-shadow:
    0 26px 50px rgba(54,37,18,.08),
    0 0 0 1px rgba(255,255,255,.42) inset;
  padding: clamp(10px, 1.8vw, 18px);
}

.home-page .video-link{
  cursor: pointer;
  transition: transform .45s ease, box-shadow .45s ease, border-color .45s ease;
}

.home-page .video-link:hover{
  transform: translateY(-2px);
  box-shadow:
    0 30px 54px rgba(54,37,18,.1),
    0 0 0 1px rgba(255,255,255,.42) inset;
  border-color: rgba(198,169,107,.18);
}

.home-page .video-link:focus-visible{
  outline: none;
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(198,169,107,.18),
    0 30px 54px rgba(54,37,18,.1),
    0 0 0 1px rgba(255,255,255,.42) inset;
}

.home-page .video-frame::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(245,241,234,.6),
      rgba(245,241,234,.2),
      rgba(245,241,234,.6)
    );
  pointer-events: none;
  z-index: 1;
}

.home-page .video-frame::after{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0) 42%, rgba(74,53,24,.04) 100%);
  pointer-events: none;
  z-index: 1;
}

.home-page .video-stage{
  position: relative;
  z-index: 2;
  width: min(100%, 780px);
  min-height: min(74vh, 860px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 1.8vw, 16px);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04)),
    rgba(245,237,226,.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.28),
    inset 0 0 0 1px rgba(255,255,255,.12);
}

.home-page .luxury-video-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(40px);
  opacity: .42;
  transform: scale(1.18);
  border-radius: inherit;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: opacity;
}

.home-page .luxury-video{
  display: block;
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 100%;
  max-height: 70vh;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  background: rgba(248,242,235,.66);
  box-shadow: 0 18px 38px rgba(52,37,19,.12);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .8s ease, transform .8s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: opacity, transform;
}

.home-page .luxury-video.is-loaded{
  opacity: 1;
  transform: translateY(0);
}

.home-page .video-frame-overlay{
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.home-page .video-frame-overlay .video-frame-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(198,169,107,.18);
  background: rgba(255,252,247,.72);
  color: #17120d;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 8px 18px rgba(56,40,18,.05);
}

.home-page .video-frame-overlay svg{
  display: block;
  width: 13px;
  height: 13px;
  fill: currentColor;
  flex: 0 0 auto;
}

.home-page .video-frame-overlay .video-frame-handle{
  display: block;
  line-height: 1;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.home-page .services-editorial-section .section-head{
  margin-bottom: 38px;
}

.home-page .services-editorial-section .section-head > div{
  max-width: 640px;
}

.home-page .services-editorial-section .grid.grid-4{
  gap: 20px;
  align-items: stretch;
}

.home-page .services-editorial-section .kicker{
  font-size: 11px;
  letter-spacing: .32em;
}

.home-page .services-editorial-section .h2,
.home-page .modern-section .h2{
  font-size: clamp(2.3rem, 4vw, 3.45rem);
  line-height: .95;
  margin-top: 10px;
}

.home-page .services-editorial-section .p-muted{
  max-width: 42ch;
  line-height: 1.9;
}

.home-page .service-feature-card{
  border-radius: 18px;
  padding: 0 0 22px;
  background:
    linear-gradient(180deg, rgba(255,253,249,.92), rgba(252,247,240,.84));
  border-color: rgba(198,169,107,.1);
  box-shadow: 0 10px 24px rgba(48,34,16,.04);
  transition:
    transform .55s cubic-bezier(.19,1,.22,1),
    box-shadow .55s ease,
    border-color .55s ease,
    background .55s ease;
}

.home-page .service-feature-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 16px 30px rgba(48,34,16,.06);
  border-color: rgba(198,169,107,.16);
}

.home-page .service-feature-link:focus-visible .service-feature-card{
  transform: translateY(-5px);
  box-shadow:
    0 0 0 1px rgba(198,169,107,.14),
    0 16px 30px rgba(48,34,16,.06);
  border-color: rgba(198,169,107,.18);
}

.home-page .service-feature-media{
  aspect-ratio: 4 / 3.45;
  border-radius: 18px 18px 0 0;
  margin-bottom: 18px;
}

.home-page .service-feature-media::after{
  background:
    linear-gradient(180deg, rgba(10,7,4,0) 42%, rgba(10,7,4,.16) 100%);
}

.home-page .service-feature-media img{
  filter: saturate(.95) contrast(1.02) brightness(.98);
}

.home-page .service-feature-link:hover .service-feature-media img,
.home-page .service-feature-link:focus-visible .service-feature-media img{
  transform: scale(1.04);
  filter: saturate(.98) contrast(1.03) brightness(1);
}

.home-page .service-feature-title-row{
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.home-page .service-feature-card .card-title{
  margin-bottom: 0;
}

.home-page .service-feature-card .card-title,
.home-page .service-feature-card p{
  padding-left: 22px;
  padding-right: 22px;
}

.home-page .service-feature-title-row > div:last-child{
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.62rem, 1.85vw, 1.95rem);
  line-height: .94;
  letter-spacing: .01em;
  font-weight: 600;
  color: #2f2218;
  text-wrap: balance;
}

.home-page .service-feature-card p{
  font-size: 15px;
  line-height: 1.75;
}

.home-page .services-editorial-section .btn{
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 14px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.home-page .modern-section{
  padding-top: 108px;
}

.home-page .modern-shell{
  position: relative;
  max-width: min(1080px, calc(100% - 40px));
  padding: 78px 34px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(180deg, rgba(248,242,232,.18), rgba(248,242,232,.12)),
    url("../assets/img/PHOTO/DANCE FLOOR/dancefloor1.JPG") center center / cover no-repeat;
  box-shadow: 0 28px 60px rgba(56,40,18,.1);
  overflow: hidden;
  min-height: 700px;
  display: grid;
  place-items: center;
  text-align: center;
}

.home-page .modern-shell::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(820px 320px at 50% 18%, rgba(244,232,207,.16), transparent 60%),
    linear-gradient(180deg, rgba(34,23,12,.14), rgba(34,23,12,.22) 42%, rgba(34,23,12,.14));
  pointer-events: none;
}

.home-page .modern-shell::after{
  content: "";
  position: absolute;
  inset: auto -8% -120px auto;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(234,216,176,.3), rgba(234,216,176,0) 68%);
  pointer-events: none;
}

.home-page .modern-copy{
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding: 34px 34px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(180deg, rgba(255,252,247,.12), rgba(255,248,239,.06)),
    rgba(24,17,10,.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow:
    0 18px 40px rgba(24,17,10,.1),
    inset 0 1px 0 rgba(255,255,255,.16);
}

.home-page .modern-copy .h2{
  color: #fff8ef;
  max-width: 13ch;
  margin-left: auto;
  margin-right: auto;
}

.home-page .modern-copy .p-muted{
  max-width: 44ch;
  font-size: 14.5px;
  line-height: 1.9;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255,245,230,.82);
}

.home-page .modern-list{
  margin-top: 32px;
  width: min(580px, 100%);
  margin-left: auto;
  margin-right: auto;
  gap: 14px;
}

.home-page .modern-list li{
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 10px 20px rgba(24,17,10,.05);
  color: rgba(255,245,230,.84);
  text-align: left;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.home-page .modern-list li:hover{
  transform: translateX(3px);
  border-color: rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.08));
  box-shadow: 0 14px 24px rgba(24,17,10,.08);
}

.home-page .modern-list li b{
  color: #fffaf3;
}

.home-page .list-icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(198,169,107,.14);
}

.home-page .cta{
  position: relative;
  padding: 48px 46px;
  border-radius: 28px;
  border: 1px solid rgba(198,169,107,.16);
  background:
    radial-gradient(760px 300px at 0% 0%, rgba(198,169,107,.16), transparent 58%),
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(249,242,232,.9));
  box-shadow: 0 24px 54px rgba(56,40,18,.08);
  overflow: hidden;
}

.home-page .cta::after{
  content: "";
  position: absolute;
  inset: auto -60px -110px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234,216,176,.42), rgba(234,216,176,0) 70%);
  pointer-events: none;
}

.home-page .cta-copy{
  position: relative;
  z-index: 1;
  max-width: 58ch;
}

.home-page .cta h3{
  margin-top: 12px;
  max-width: 11ch;
  font-size: clamp(2.35rem, 4.2vw, 3.8rem);
  line-height: .93;
}

.home-page .cta p{
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.9;
}

.home-page .cta-trust{
  margin-top: 18px;
  color: #8b6d3d;
  font-size: 11px;
  letter-spacing: .16em;
}

.home-page .cta-actions{
  position: relative;
  z-index: 1;
  gap: 14px;
  flex-wrap: wrap;
}

.home-page .cta-actions .btn{
  min-height: 54px;
  border-radius: 14px;
  padding: 15px 22px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.home-page .btn-cta-strong{
  min-width: 214px;
}

.home-page .btn-cta-secondary{
  min-width: 190px;
  background: rgba(255,255,255,.78);
  border-color: rgba(32,24,12,.08);
  box-shadow: none;
}

.home-page .footer{
  background: rgba(255,255,255,.42);
}

.home-page .chatbot-launcher{
  padding: 11px 16px;
  border-color: rgba(198,169,107,.24);
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(245,237,226,.88));
  box-shadow:
    0 12px 26px rgba(56,40,18,.1),
    0 0 0 1px rgba(255,255,255,.45) inset;
  color: #3a2d1f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  animation: none;
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease, border-color .35s ease;
}

.home-page .chatbot-launcher:hover{
  transform: translateY(-2px);
  box-shadow:
    0 16px 28px rgba(56,40,18,.12),
    0 0 0 1px rgba(255,255,255,.52) inset;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(245,237,226,.9));
}

@media (max-width: 1120px){
  .home-page .hero-shell{
    grid-template-columns: 1fr;
    transform: none;
  }

  .home-page .hero-content{
    max-width: 620px;
  }

  .home-page .hero-notes{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    margin-top: 6px;
    justify-self: stretch;
  }

  .home-page .hero-note{
    max-width: none;
  }
}

@media (max-width: 980px){
  .home-page .section{
    padding: 78px 0;
  }

  .home-page .hero{
    min-height: 92vh;
    padding: 128px 0 94px;
  }

  .home-page .hero-backdrop{
    background-position: center, 24% center;
    background-size: auto, 128% auto;
    transform: scale(1.025);
  }

  .home-page .hero-overlay{
    background:
      radial-gradient(760px 420px at 28% 24%, rgba(214,186,127,.14), transparent 58%),
      linear-gradient(180deg, rgba(18,13,9,.16) 0%, rgba(18,13,9,.08) 34%, rgba(18,13,9,.22) 100%),
      linear-gradient(90deg, rgba(18,13,9,.18) 0%, rgba(18,13,9,.06) 48%, rgba(18,13,9,.14) 100%);
  }

  .home-page .hero-shell{
    min-height: 68vh;
    align-items: end;
  }

  .home-page .hero-card{
    max-width: 520px;
    padding: 24px 24px 22px;
    background:
      linear-gradient(180deg, rgba(255,252,247,.14), rgba(255,248,239,.06)),
      rgba(255,248,240,.028);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .home-page .h1{
    max-width: 12ch;
  }

  .home-page .cinematic-video-section{
    margin-top: -42px;
  }

  .home-page .modern-shell{
    min-height: 660px;
    padding: 58px 24px;
    background-position: 58% 50%;
  }

  .home-page .modern-shell::before{
    background:
      radial-gradient(720px 300px at 50% 20%, rgba(244,232,207,.16), transparent 60%),
      linear-gradient(180deg, rgba(34,23,12,.14), rgba(34,23,12,.22) 42%, rgba(34,23,12,.16));
  }

  .home-page .modern-copy{
    width: min(680px, 100%);
    padding: 26px 24px;
    background:
      linear-gradient(180deg, rgba(255,252,247,.12), rgba(255,248,239,.05)),
      rgba(24,17,10,.07);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }

  .home-page .modern-list li{
    background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.06));
    border-color: rgba(255,255,255,.09);
  }
}

@media (max-width: 720px){
  .home-page .topbar{
    background: rgba(22,15,8,.28);
  }

  .home-page .nav-links{
    background: rgba(255,252,247,.96);
    border-color: rgba(32,24,12,.08);
    box-shadow: 0 20px 40px rgba(34,24,11,.12);
  }

  .home-page .nav-links a,
  .home-page .nav-links a.active{
    color: var(--text);
  }

  .home-page .hero{
    min-height: 100svh;
    padding: 110px 0 84px;
  }

  .home-page .hero-backdrop{
    background-position: center, 30% center;
    background-size: auto, cover;
    transform: scale(1.01);
  }

  .home-page .hero-overlay{
    background:
      radial-gradient(520px 300px at 40% 24%, rgba(214,186,127,.12), transparent 58%),
      linear-gradient(180deg, rgba(18,13,9,.13) 0%, rgba(18,13,9,.05) 34%, rgba(18,13,9,.18) 100%),
      linear-gradient(90deg, rgba(18,13,9,.12) 0%, rgba(18,13,9,.04) 52%, rgba(18,13,9,.1) 100%);
  }

  .home-page .hero-shell{
    min-height: 72svh;
    align-items: end;
    transform: translateY(-10px);
  }

  .home-page .hero-content{
    max-width: 440px;
  }

  .home-page .hero-card{
    max-width: 400px;
    padding: 20px 20px 18px;
    border-radius: 20px;
    border-color: rgba(255,255,255,.16);
    background:
      linear-gradient(180deg, rgba(255,252,247,.12), rgba(255,248,239,.04)),
      rgba(255,248,240,.024);
    box-shadow:
      0 14px 30px rgba(15,10,7,.08),
      inset 0 1px 0 rgba(255,255,255,.14);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }

  .home-page .h1{
    font-size: clamp(2.55rem, 12vw, 4.1rem);
    max-width: 7.4ch;
  }

  .home-page .hero .lead{
    font-size: 13.5px;
    line-height: 1.74;
    max-width: 29ch;
  }

  .home-page .hero-actions{
    margin-top: 14px;
    gap: 8px;
  }

  .home-page .hero .badges{
    margin-top: 14px;
    gap: 8px;
  }

  .home-page .hero .badge{
    padding: 7px 10px;
    font-size: 10px;
    background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
    color: rgba(255,244,229,.7);
  }

  .home-page .hero .btn{
    width: 100%;
  }

  .home-page .hero-notes{
    grid-template-columns: 1fr;
    margin-top: 10px;
    gap: 10px;
  }

  .home-page .hero-note{
    padding: 18px 20px;
    border-radius: 20px;
  }

  .home-page .cinematic-video-section{
    margin-top: -36px;
  }

  .home-page .video-frame{
    padding: 10px;
    border-radius: 22px;
  }

  .home-page .video-stage{
    width: 100%;
    min-height: auto;
    padding: 8px;
    border-radius: 18px;
  }

  .home-page .luxury-video-bg{
    transform: scale(1.14);
    opacity: .4;
  }

  .home-page .luxury-video{
    border-radius: 16px;
    max-height: 68vh;
  }

  .home-page .video-frame-overlay{
    right: 14px;
    bottom: 14px;
  }

  .home-page .video-frame-overlay .video-frame-badge{
    gap: 7px;
    padding: 7px 11px;
    font-size: 9px;
    letter-spacing: .12em;
  }

  .home-page .services-editorial-section .section-head{
    align-items: flex-start;
  }

  .home-page .service-feature-card .card-title,
  .home-page .service-feature-card p{
    padding-left: 20px;
    padding-right: 20px;
  }

  .home-page .service-feature-card .card-title{
    flex-direction: column;
    align-items: flex-start;
  }

  .home-page .modern-shell{
    min-height: 640px;
    padding: 44px 18px;
    border-radius: 22px;
    background-position: 62% 52%;
  }

  .home-page .modern-shell::before{
    background:
      radial-gradient(520px 240px at 50% 18%, rgba(244,232,207,.14), transparent 60%),
      linear-gradient(180deg, rgba(34,23,12,.12), rgba(34,23,12,.18) 42%, rgba(34,23,12,.12));
  }

  .home-page .modern-copy{
    width: min(100%, 390px);
    padding: 20px 18px;
    border-radius: 20px;
    background:
      linear-gradient(180deg, rgba(255,252,247,.1), rgba(255,248,239,.04)),
      rgba(24,17,10,.05);
    box-shadow:
      0 14px 28px rgba(24,17,10,.08),
      inset 0 1px 0 rgba(255,255,255,.14);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .home-page .modern-copy .p-muted{
    max-width: 31ch;
    line-height: 1.72;
  }

  .home-page .modern-list li{
    padding: 12px 13px;
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
    border-color: rgba(255,255,255,.08);
    box-shadow: 0 8px 16px rgba(24,17,10,.05);
  }

  .home-page .cta{
    padding: 30px 24px;
    border-radius: 22px;
  }

  .home-page .cta h3{
    max-width: none;
  }

  .home-page .btn-cta-strong,
  .home-page .btn-cta-secondary{
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce){
  .home-page .hero-card > *,
  .home-page .hero-note{
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===== ABOUT LUXURY REDESIGN ===== */

.about-page{
  background:
    radial-gradient(1000px 640px at 10% 0%, rgba(198,169,107,.12), transparent 62%),
    radial-gradient(920px 560px at 100% 16%, rgba(234,216,176,.16), transparent 58%),
    linear-gradient(180deg, #f7f2ea 0%, #fcfaf6 46%, #f3ede4 100%);
}

.about-page .topbar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(21,15,10,.34), rgba(21,15,10,.08));
  border-bottom: 1px solid rgba(255,255,255,.1);
  box-shadow: none;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.about-page .topbar.is-scrolled{
  background: rgba(248,244,237,.86);
  border-bottom-color: rgba(32,24,12,.08);
  box-shadow: 0 14px 34px rgba(34,24,11,.06);
}

.about-page .logo-img{
  height: 44px;
  filter: brightness(0) invert(1);
  transition: filter .35s ease;
}

.about-page .topbar.is-scrolled .logo-img{
  filter: none;
}

.about-page .nav-links a{
  color: rgba(255,249,241,.84);
  border: 1px solid transparent;
  font-weight: 500;
}

.about-page .nav-links a:hover{
  color: #ffffff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.08);
}

.about-page .nav-links a.active{
  color: #fffaf2;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.16);
}

.about-page .topbar.is-scrolled .nav-links a{
  color: var(--muted);
}

.about-page .topbar.is-scrolled .nav-links a:hover{
  color: var(--text);
  background: rgba(32,24,12,.05);
}

.about-page .topbar.is-scrolled .nav-links a.active{
  color: var(--text);
  background: rgba(198,169,107,.14);
  border-color: rgba(198,169,107,.2);
}

.about-page .hamburger{
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.12);
}

.about-page .hamburger span,
.about-page .hamburger span::before,
.about-page .hamburger span::after{
  background: rgba(255,249,241,.92);
}

.about-page .topbar.is-scrolled .hamburger{
  background: rgba(255,255,255,.86);
  border-color: rgba(32,24,12,.1);
}

.about-page .topbar.is-scrolled .hamburger span,
.about-page .topbar.is-scrolled .hamburger span::before,
.about-page .topbar.is-scrolled .hamburger span::after{
  background: rgba(29,26,23,.88);
}

.about-page .about-hero-section{
  position: relative;
  min-height: 97vh;
  padding: 146px 0 104px;
  display: flex;
  align-items: center;
  overflow: clip;
}

.about-page .about-hero-section::after{
  display: none;
}

.about-page .about-hero-backdrop,
.about-page .about-hero-overlay{
  position: absolute;
  inset: 0;
}

.about-page .about-hero-backdrop{
  background:
    linear-gradient(180deg, rgba(14,9,6,.1), rgba(14,9,6,.04)),
    url("../assets/img/PHOTO/CATWALK/catwalk5.JPG") center 38% / cover no-repeat;
  transform: scale(1.03);
}

.about-page .about-hero-overlay{
  background:
    radial-gradient(920px 440px at 18% 22%, rgba(224,194,141,.18), transparent 58%),
    linear-gradient(180deg, rgba(18,13,9,.22) 0%, rgba(18,13,9,.08) 38%, rgba(18,13,9,.24) 100%),
    linear-gradient(90deg, rgba(18,13,9,.26) 0%, rgba(18,13,9,.06) 52%, rgba(18,13,9,.16) 100%);
}

.about-page .about-hero{
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(260px, .42fr);
  gap: 34px;
  align-items: end;
}

.about-page .about-hero-content{
  max-width: 700px;
  padding: 34px 36px 32px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(180deg, rgba(255,252,247,.16), rgba(255,248,239,.07)),
    rgba(28,20,12,.08);
  box-shadow:
    0 22px 54px rgba(15,10,7,.12),
    inset 0 1px 0 rgba(255,255,255,.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.about-page .about-hero-content .kicker,
.about-page .about-section-head .kicker,
.about-page .about-signature-content .kicker,
.about-page .about-cta-copy .kicker{
  color: #8a6941;
  letter-spacing: .3em;
  font-size: 11px;
}

.about-page .about-hero-content .kicker{
  color: #ecd7ac;
  font-size: 12px;
  letter-spacing: .32em;
}

.about-page .about-title{
  max-width: 9ch;
  margin: 14px 0 18px;
  color: #fff8ef;
  font-size: clamp(3.35rem, 5.8vw, 5.75rem);
  line-height: .9;
  letter-spacing: -.035em;
}

.about-page .about-lead{
  max-width: 39ch;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,244,229,.82);
}

.about-page .about-stat-row{
  margin-top: 32px;
  gap: 14px;
}

.about-page .about-stat{
  padding: 20px 20px 20px 62px;
  border-radius: 18px;
  border-color: rgba(255,255,255,.1);
  background:
    linear-gradient(180deg, rgba(255,252,247,.08), rgba(255,248,239,.04)),
    rgba(255,255,255,.06);
  box-shadow: 0 12px 28px rgba(15,10,7,.06);
}

.about-page .about-stat-primary{
  background:
    radial-gradient(240px 140px at 0% 0%, rgba(198,169,107,.12), transparent 60%),
    rgba(255,255,255,.08);
}

.about-page .about-stat b{
  color: #fff8ef;
  margin-bottom: 4px;
  font-size: 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}

.about-page .about-stat span{
  color: rgba(255,244,229,.74);
  font-size: 13px;
  line-height: 1.7;
}

.about-page .about-stat-icon{
  left: 16px;
  top: 18px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  font-size: 10px;
  letter-spacing: .16em;
  box-shadow: 0 10px 18px rgba(198,169,107,.14);
}

.about-page .about-hero-note{
  align-self: end;
  justify-self: end;
  max-width: 320px;
  padding: 24px 24px 22px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(180deg, rgba(255,252,247,.14), rgba(255,248,239,.08)),
    rgba(20,14,8,.18);
  color: #fff8ef;
  box-shadow: 0 26px 62px rgba(15,10,7,.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.about-page .about-hero-note span{
  display: block;
  margin-bottom: 10px;
  color: rgba(227,201,144,.94);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
}

.about-page .about-hero-note strong{
  display: block;
  font-size: 20px;
  line-height: 1.5;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}

.about-page .about-section-band{
  position: relative;
}

.about-page .about-section-band::before{
  background:
    linear-gradient(180deg, rgba(255,255,255,.34), rgba(255,255,255,.62)),
    radial-gradient(900px 260px at 14% 0%, rgba(198,169,107,.1), transparent 62%);
}

.about-page .about-section-head{
  justify-content: center;
  text-align: center;
  margin-bottom: 40px;
}

.about-page .about-section-head > div{
  max-width: 700px;
}

.about-page .about-section-head .kicker{
  font-size: 12px;
  letter-spacing: .32em;
}

.about-page .about-section-head .h2{
  margin-top: 10px;
  font-size: clamp(2.35rem, 4vw, 3.55rem);
  line-height: .95;
}

.about-page .about-section-head .p-muted{
  max-width: 40ch;
  margin: 14px auto 0;
  line-height: 1.9;
}

.about-page .about-feature-card{
  padding: 32px 30px;
  border-radius: 18px;
  border: 1px solid rgba(198,169,107,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,250,244,.86));
  box-shadow: 0 12px 28px rgba(56,40,18,.05);
}

.about-page .about-feature-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(56,40,18,.06);
}

.about-page .about-feature-card-featured{
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(56,40,18,.06);
}

.about-page .about-feature-card .icon{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  font-size: 10px;
  letter-spacing: .16em;
  box-shadow: 0 10px 20px rgba(198,169,107,.12);
}

.about-page .about-feature-title{
  margin: 18px 0 10px;
  font-size: 26px;
  line-height: 1.04;
}

.about-page .about-feature-card p{
  margin: 0;
  line-height: 1.85;
}

.about-page .about-signature-section{
  position: relative;
  padding-top: 108px;
}

.about-page .about-signature-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,0)),
    radial-gradient(820px 260px at 90% 18%, rgba(234,216,176,.12), transparent 62%);
  pointer-events: none;
}

.about-page .about-signature{
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .88fr);
  gap: 46px;
  align-items: center;
}

.about-page .about-signature-content .h2{
  margin-top: 10px;
  font-size: clamp(2.55rem, 4.1vw, 3.85rem);
  line-height: .94;
  max-width: 11ch;
}

.about-page .about-signature-content .p-muted{
  max-width: 43ch;
  line-height: 1.92;
}

.about-page .about-signature-note{
  margin-top: 12px;
}

.about-page .about-signature-list{
  margin-top: 30px;
  gap: 12px;
}

.about-page .about-signature-list li{
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  border-left: 0;
  border: 1px solid rgba(198,169,107,.12);
  background: rgba(255,255,255,.8);
  box-shadow: 0 10px 24px rgba(56,40,18,.04);
}

.about-page .about-signature-list li:hover{
  transform: translateX(3px);
  box-shadow: 0 14px 26px rgba(56,40,18,.05);
}

.about-page .about-signature-list li:nth-child(2),
.about-page .about-signature-list li:nth-child(3){
  margin-left: 0;
}

.about-page .about-signature-list li b{
  color: #241a12;
}

.about-page .about-video-shell{
  position: relative;
  align-self: start;
}

.about-page .about-video-label{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(198,169,107,.18);
  background: rgba(255,255,255,.72);
  color: #8a6941;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(56,40,18,.04);
}

.about-page .about-video-frame{
  position: relative;
  display: block;
  padding: 12px;
  border-radius: 26px;
  border: 1px solid rgba(198,169,107,.16);
  background:
    radial-gradient(520px 180px at 0% 0%, rgba(198,169,107,.1), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,249,241,.88));
  box-shadow: 0 22px 46px rgba(56,40,18,.08);
}

.about-page .about-video-link{
  cursor: pointer;
  transition: transform .45s ease, box-shadow .45s ease, border-color .45s ease;
}

.about-page .about-video-link:hover{
  transform: translateY(-3px);
  border-color: rgba(198,169,107,.22);
  box-shadow: 0 26px 52px rgba(56,40,18,.1);
}

.about-page .about-video-link:focus-visible{
  outline: none;
  transform: translateY(-3px);
  border-color: rgba(198,169,107,.24);
  box-shadow:
    0 0 0 1px rgba(198,169,107,.16),
    0 26px 52px rgba(56,40,18,.1);
}

.about-page .about-video-frame::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.12), transparent 42%);
  pointer-events: none;
}

.about-page .about-video{
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
  background: #f4ecdf;
  filter: brightness(1.08) saturate(.95) contrast(1.01);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.about-page .about-video-overlay{
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.about-page .about-video-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(198,169,107,.18);
  background: rgba(255,252,247,.72);
  color: #17120d;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 8px 18px rgba(56,40,18,.05);
}

.about-page .about-video-badge svg{
  display: block;
  width: 13px;
  height: 13px;
  fill: currentColor;
  flex: 0 0 auto;
}

.about-page .about-video-handle{
  display: block;
  line-height: 1;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.about-page .about-cta-section{
  padding-top: 76px;
}

.about-page .about-cta{
  position: relative;
  padding: 50px 46px;
  border-radius: 28px;
  border: 1px solid rgba(198,169,107,.18);
  background:
    radial-gradient(760px 280px at 0% 0%, rgba(198,169,107,.16), transparent 58%),
    linear-gradient(135deg, rgba(255,255,255,.95), rgba(249,242,232,.9));
  box-shadow: 0 24px 54px rgba(56,40,18,.08);
  overflow: hidden;
}

.about-page .about-cta::after{
  content: "";
  position: absolute;
  inset: auto -70px -120px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234,216,176,.4), rgba(234,216,176,0) 70%);
  pointer-events: none;
}

.about-page .about-cta-copy{
  position: relative;
  z-index: 1;
  max-width: 58ch;
}

.about-page .about-cta h3{
  margin-top: 12px;
  font-size: clamp(2.45rem, 4.2vw, 3.85rem);
  line-height: .93;
  max-width: 11ch;
}

.about-page .about-cta p{
  margin-top: 16px;
  line-height: 1.9;
}

.about-page .about-cta .cta-trust{
  margin-top: 18px;
  color: #8b6d3d;
  font-size: 11px;
  letter-spacing: .16em;
}

.about-page .about-cta .cta-actions{
  position: relative;
  z-index: 1;
  gap: 14px;
  flex-wrap: wrap;
}

.about-page .about-cta .btn{
  min-height: 54px;
  border-radius: 14px;
  padding: 15px 22px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.about-page .chatbot-launcher{
  padding: 11px 16px;
  border-color: rgba(198,169,107,.24);
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(245,237,226,.88));
  box-shadow:
    0 12px 26px rgba(56,40,18,.1),
    0 0 0 1px rgba(255,255,255,.45) inset;
  color: #3a2d1f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  animation: none;
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease, border-color .35s ease;
}

.about-page .chatbot-launcher:hover{
  transform: translateY(-2px);
  box-shadow:
    0 16px 28px rgba(56,40,18,.12),
    0 0 0 1px rgba(255,255,255,.52) inset;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(245,237,226,.9));
}

@media (max-width: 1120px){
  .about-page .about-hero{
    grid-template-columns: 1fr;
  }

  .about-page .about-hero-note{
    justify-self: start;
    max-width: 420px;
  }
}

@media (max-width: 980px){
  .about-page .about-hero-section{
    min-height: 92vh;
    padding: 128px 0 88px;
  }

  .about-page .about-hero-backdrop{
    background-position: 56% 40%;
  }

  .about-page .about-hero{
    gap: 20px;
  }

  .about-page .about-hero-content{
    max-width: 640px;
    padding: 28px 28px 26px;
  }

  .about-page .about-signature{
    grid-template-columns: 1fr;
  }

  .about-page .about-video-shell{
    max-width: 620px;
    width: 100%;
    justify-self: center;
  }

  .about-page .about-video{
    aspect-ratio: 16 / 10;
  }

  .about-page .about-cta{
    padding: 36px 30px;
  }
}

@media (max-width: 720px){
  .about-page .topbar{
    background: rgba(22,15,8,.28);
  }

  .about-page .nav-links{
    background: rgba(255,252,247,.96);
    border-color: rgba(32,24,12,.08);
    box-shadow: 0 20px 40px rgba(34,24,11,.12);
  }

  .about-page .nav-links a,
  .about-page .nav-links a.active{
    color: var(--text);
  }

  .about-page .about-hero-section{
    min-height: 100svh;
    padding: 110px 0 74px;
  }

  .about-page .about-hero-backdrop{
    background-position: 62% 36%;
    transform: scale(1.01);
  }

  .about-page .about-hero-overlay{
    background:
      radial-gradient(540px 280px at 42% 22%, rgba(214,186,127,.12), transparent 58%),
      linear-gradient(180deg, rgba(18,13,9,.18) 0%, rgba(18,13,9,.08) 38%, rgba(18,13,9,.26) 100%),
      linear-gradient(90deg, rgba(18,13,9,.18) 0%, rgba(18,13,9,.06) 52%, rgba(18,13,9,.12) 100%);
  }

  .about-page .about-hero-content{
    padding: 22px 20px 20px;
    border-radius: 20px;
    background:
      linear-gradient(180deg, rgba(255,252,247,.12), rgba(255,248,239,.05)),
      rgba(28,20,12,.08);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .about-page .about-title{
    font-size: clamp(2.8rem, 13vw, 4.2rem);
    max-width: 8ch;
  }

  .about-page .about-lead{
    max-width: 29ch;
    font-size: 14px;
    line-height: 1.78;
  }

  .about-page .about-hero-note{
    max-width: none;
    padding: 18px 18px 16px;
    border-radius: 22px;
  }

  .about-page .about-hero-note strong{
    font-size: 18px;
  }

  .about-page .about-feature-card,
  .about-page .about-feature-card-featured{
    transform: none;
  }

  .about-page .about-video-frame{
    padding: 10px;
    border-radius: 22px;
  }

  .about-page .about-video{
    border-radius: 16px;
    aspect-ratio: 4 / 5;
  }

  .about-page .about-video-overlay{
    right: 14px;
    bottom: 14px;
  }

  .about-page .about-video-badge{
    gap: 7px;
    padding: 7px 11px;
    font-size: 9px;
  }

  .about-page .about-cta{
    padding: 30px 24px;
    border-radius: 22px;
  }

  .about-page .about-cta h3{
    max-width: none;
  }

  .about-page .about-cta .cta-actions .btn{
    width: 100%;
  }
}

/* ===== SERVICES LUXURY REDESIGN ===== */

.services-page{
  background:
    linear-gradient(180deg, rgba(247,243,236,.08), rgba(247,243,236,.03)),
    url("../assets/img/PHOTO/CEILING/ceiling2.JPG") center center / cover no-repeat fixed;
  min-height: 100vh;
  position: relative;
}

.services-page::before{
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(980px 560px at 12% 0%, rgba(234,216,176,.12), transparent 56%),
    linear-gradient(180deg, rgba(17,12,8,.72), rgba(20,14,9,.58) 28%, rgba(25,18,12,.64) 100%),
    linear-gradient(90deg, rgba(20,14,9,.24), rgba(20,14,9,.08));
  pointer-events: none;
  z-index: 0;
}

.services-page::after{
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(247,243,236,.04), transparent 20%, rgba(247,243,236,.12) 100%);
  pointer-events: none;
  z-index: 0;
}

.services-page .topbar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(14,10,7,.72), rgba(14,10,7,.18));
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: none;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.services-page .topbar.is-scrolled{
  background: rgba(246,241,233,.9);
  border-bottom-color: rgba(32,24,12,.08);
  box-shadow: 0 16px 42px rgba(34,24,11,.08);
}

.services-page .logo-img{
  height: 44px;
  filter: brightness(0) invert(1);
  transition: filter .35s ease;
}

.services-page .topbar.is-scrolled .logo-img{
  filter: none;
}

.services-page .nav-links a{
  color: rgba(255,249,241,.84);
  border: 1px solid transparent;
  font-weight: 500;
}

.services-page .nav-links a:hover{
  color: #ffffff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.08);
}

.services-page .nav-links a.active{
  color: #fffaf2;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.16);
}

.services-page .topbar.is-scrolled .nav-links a{
  color: var(--muted);
}

.services-page .topbar.is-scrolled .nav-links a:hover{
  color: var(--text);
  background: rgba(32,24,12,.05);
}

.services-page .topbar.is-scrolled .nav-links a.active{
  color: var(--text);
  background: rgba(198,169,107,.14);
  border-color: rgba(198,169,107,.2);
}

.services-page .hamburger{
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.12);
}

.services-page .hamburger span,
.services-page .hamburger span::before,
.services-page .hamburger span::after{
  background: rgba(255,249,241,.92);
}

.services-page .topbar.is-scrolled .hamburger{
  background: rgba(255,255,255,.86);
  border-color: rgba(32,24,12,.1);
}

.services-page .topbar.is-scrolled .hamburger span,
.services-page .topbar.is-scrolled .hamburger span::before,
.services-page .topbar.is-scrolled .hamburger span::after{
  background: rgba(29,26,23,.88);
}

.services-page .services-main,
.services-page .services-footer{
  position: relative;
  z-index: 1;
}

.services-page .services-page-section{
  padding: 148px 0 110px;
  min-height: 100vh;
}

.services-page .services-shell{
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.services-page .services-intro{
  max-width: 760px;
  padding-top: clamp(20px, 4vw, 44px);
  margin-bottom: clamp(60px, 7vw, 96px);
}

.services-page .services-intro .kicker{
  color: #e8d4ab;
  letter-spacing: .34em;
  font-size: 11px;
}

.services-page .services-intro .h1{
  margin: 18px 0 22px;
  color: #fff8ef;
  font-size: clamp(3.4rem, 6vw, 5.8rem) !important;
  line-height: .92;
  letter-spacing: -.035em;
  max-width: 9ch;
  text-shadow: 0 14px 32px rgba(8,6,4,.16);
}

.services-page .services-intro .p-muted{
  color: rgba(255,244,230,.82);
  max-width: 34ch;
  line-height: 1.95;
  font-size: 15px;
}

.services-page .services-storyline{
  margin: 26px 0 0;
  max-width: 20ch;
  color: rgba(244,226,195,.92);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.28rem, 2.2vw, 1.8rem);
  font-style: italic;
  line-height: 1.14;
}

.services-page .grid.grid-4{
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 2.8vw, 42px);
  align-items: stretch;
}

.services-page .service-card{
  border-radius: 18px;
  border: 1px solid rgba(96,75,49,.14);
  background: linear-gradient(180deg, rgba(232,227,220,.98), rgba(214,207,198,.95));
  box-shadow: 0 18px 34px rgba(16,12,8,.06);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    transform 1s cubic-bezier(.19,1,.22,1),
    border-color .55s ease,
    box-shadow .55s ease,
    background .55s ease;
}

.services-page .service-card:hover{
  transform: translateY(-6px);
  border-color: rgba(170,136,69,.24);
  box-shadow: 0 26px 44px rgba(16,12,8,.08);
  background: linear-gradient(180deg, rgba(237,232,225,.99), rgba(220,213,204,.96));
}

.services-page .service-card:focus-visible{
  outline: none;
  transform: translateY(-4px);
  border-color: rgba(170,136,69,.28);
  box-shadow:
    0 0 0 1px rgba(170,136,69,.24),
    0 20px 38px rgba(16,12,8,.08);
}

.services-page .service-image{
  position: relative;
  height: clamp(290px, 24vw, 390px);
  aspect-ratio: auto;
  border-radius: 0;
  margin-bottom: 0;
  background: #d2cbc2;
}

.services-page .service-image::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22,15,10,.02), rgba(22,15,10,.18));
  pointer-events: none;
}

.services-page .service-image img{
  transform: scale(1.02);
  transition: transform 1.6s cubic-bezier(.19,1,.22,1), filter .9s ease;
  filter: saturate(.92) contrast(1.03) brightness(.97);
}

.services-page .service-card[data-service-slug="catwalk"] .service-image img{
  object-position: center 42%;
}

.services-page .service-card[data-service-slug="flowers"] .service-image img{
  object-position: center 28%;
}

.services-page .service-card[data-service-slug="stage"] .service-image img{
  object-position: center 24%;
}

.services-page .service-card:hover .service-image img,
.services-page .service-card:focus-visible .service-image img{
  transform: scale(1.08);
  filter: saturate(.96) contrast(1.04) brightness(.99);
}

.services-page .service-card-copy{
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 28px 26px 30px;
}

.services-page .service-card .card-title{
  display: block;
  margin: 0;
  color: #201710;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.48rem, 1.9vw, 1.76rem);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.02;
}

.services-page .service-card p{
  margin: 0;
  max-width: 31ch;
  color: rgba(58,45,29,.76);
  line-height: 1.92;
  font-size: 14px;
}

.services-page .service-card .icon{
  display: none;
}

.services-page .service-modal{
  padding: clamp(16px, 3vw, 30px);
  scroll-behavior: smooth;
}

.services-page .service-modal-overlay{
  background: linear-gradient(180deg, rgba(20,14,10,.78), rgba(20,14,10,.64));
  backdrop-filter: blur(10px);
}

.services-page .service-modal-card{
  width: min(1280px, 100%);
  max-height: 90vh;
  border-radius: 24px;
  border: 1px solid rgba(92,71,45,.18);
  background: linear-gradient(180deg, rgba(223,212,198,.99), rgba(209,197,184,.98));
  box-shadow:
    0 20px 60px rgba(0,0,0,.25),
    0 1px 0 rgba(255,255,255,.08) inset;
  grid-template-columns: 1.72fr .98fr;
  transform: translateY(24px) scale(.975);
  opacity: 0;
  transition:
    transform .7s cubic-bezier(.19,1,.22,1),
    opacity .45s ease,
    box-shadow .45s ease;
}

.services-page .service-modal.show .service-modal-card{
  transform: translateY(0) scale(1);
  opacity: 1;
}

.services-page .service-modal-media{
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  max-height: 90vh;
  background:
    radial-gradient(520px 220px at 0% 0%, rgba(198,169,107,.12), transparent 58%),
    #d8cebf;
  min-height: 620px;
}

.services-page .service-modal-img{
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: min(90vh, 620px);
  object-fit: cover;
  filter: saturate(.96) contrast(1.02) brightness(.96);
}

.services-page .service-modal-content{
  padding: clamp(34px, 4vw, 50px) clamp(26px, 3.6vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow-y: auto;
  max-height: 90vh;
  scroll-behavior: smooth;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background:
    linear-gradient(180deg, rgba(216,205,191,.98), rgba(203,191,177,.98));
}

.services-page .service-modal-label{
  color: #8e7650;
  letter-spacing: .34em;
  font-size: 11px;
  margin-bottom: 24px;
}

.services-page .service-modal-content .h2{
  margin: 0 0 24px;
  max-width: 8ch;
  color: #201710;
  font-size: clamp(2.35rem, 4vw, 3.7rem);
  line-height: .92;
}

.services-page .service-modal-content .p-muted{
  margin: 0;
  max-width: 30ch;
  color: rgba(52,39,25,.8);
  font-size: 15px;
  line-height: 1.95;
}

.services-page .service-modal-footer{
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.services-page .service-modal-counter{
  color: rgba(90,71,47,.72);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 11px;
}

.services-page .service-modal-actions{
  margin: 0;
  gap: 14px;
}

.services-page .service-modal-actions .btn{
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 16px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.services-page .service-modal-actions .btn-gold{
  border-color: rgba(191,161,109,.36);
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.58), transparent 55%),
    linear-gradient(135deg, rgba(237,223,190,.98), rgba(191,161,109,.94));
  color: #21160f;
  box-shadow: 0 14px 30px rgba(150,117,61,.15);
}

.services-page .service-modal-actions .btn-gold:hover{
  box-shadow: 0 20px 36px rgba(130,99,52,.18);
}

.services-page .service-modal-actions .btn-ghost{
  background: rgba(255,255,255,.68);
  border-color: rgba(104,82,52,.12);
  color: #36281b;
  box-shadow: none;
}

.services-page .service-modal-close{
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(36,25,14,.22);
  color: #fff8ef;
  backdrop-filter: blur(8px);
  transition: background .35s ease, border-color .35s ease, transform .35s ease;
}

.services-page .service-modal-close:hover{
  background: rgba(36,25,14,.38);
  border-color: rgba(255,255,255,.26);
  transform: translateY(-1px);
}

.services-page .service-arrow{
  border-color: rgba(255,255,255,.18);
  background: rgba(36,25,14,.22);
  color: #fff8ef;
  transition: background .35s ease, border-color .35s ease, transform .35s ease;
}

.services-page .service-arrow:hover{
  background: rgba(36,25,14,.38);
  border-color: rgba(255,255,255,.28);
  transform: translateY(-50%) scale(1.02);
}

.services-page .services-footer{
  padding: 0 0 38px;
  background: transparent;
  border-top: 0;
  margin-top: 0;
}

.services-page .services-footer-shell{
  padding: 24px 28px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(180deg, rgba(255,252,247,.12), rgba(255,248,239,.05)),
    rgba(28,20,12,.08);
  box-shadow:
    0 18px 44px rgba(15,10,7,.12),
    inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.services-page .services-footer .small,
.services-page .services-footer a{
  color: rgba(255,245,230,.82);
}

.services-page .services-footer a:hover{
  color: #ffffff;
}

@media (max-width: 980px){
  .services-page{
    background-position: 54% center;
  }

  .services-page .services-page-section{
    min-height: auto;
    padding: 126px 0 82px;
  }

  .services-page .services-intro{
    max-width: 680px;
    margin-bottom: 56px;
  }

  .services-page .grid.grid-4{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .services-page .service-modal-card{
    grid-template-columns: 1.32fr .92fr;
  }

  .services-page .service-modal-content .h2{
    max-width: 9ch;
  }
}

@media (max-width: 900px){
  .services-page .service-modal-card{
    grid-template-columns: 1fr;
    max-height: 92vh;
  }

  .services-page .service-modal-media{
    min-height: 360px;
    max-height: 52vh;
  }

  .services-page .service-modal-content .h2,
  .services-page .service-modal-content .p-muted{
    max-width: none;
  }
}

@media (max-width: 720px){
  .services-page{
    background-attachment: scroll;
    background-position: 62% center;
  }

  .services-page::before{
    background:
      radial-gradient(620px 360px at 26% 6%, rgba(234,216,176,.1), transparent 58%),
      linear-gradient(180deg, rgba(16,11,7,.76), rgba(18,13,8,.62) 32%, rgba(21,15,10,.68) 100%),
      linear-gradient(90deg, rgba(20,14,9,.18), rgba(20,14,9,.06));
  }

  .services-page .topbar{
    background: rgba(14,10,7,.72);
  }

  .services-page .nav-links{
    background: rgba(255,252,247,.96);
    border-color: rgba(32,24,12,.08);
    box-shadow: 0 20px 40px rgba(34,24,11,.12);
  }

  .services-page .nav-links a,
  .services-page .nav-links a.active{
    color: var(--text);
  }

  .services-page .services-page-section{
    padding: 108px 0 68px;
    min-height: 100svh;
  }

  .services-page .services-intro{
    margin-bottom: 44px;
    padding-top: 0;
  }

  .services-page .services-intro .h1{
    max-width: 9ch;
    font-size: clamp(2.8rem, 13vw, 4.2rem) !important;
  }

  .services-page .services-intro .p-muted{
    font-size: 14px;
    line-height: 1.86;
    max-width: 28ch;
  }

  .services-page .services-storyline{
    max-width: 17ch;
    font-size: 1.22rem;
  }

  .services-page .grid.grid-4{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .services-page .service-card{
    border-radius: 16px;
  }

  .services-page .service-image{
    height: clamp(250px, 76vw, 360px);
  }

  .services-page .service-card-copy{
    padding: 22px 20px 24px;
  }

  .services-page .service-card .card-title{
    font-size: 1.42rem;
  }

  .services-page .service-card p{
    max-width: 100%;
  }

  .services-page .service-modal{
    padding: 12px;
  }

  .services-page .service-modal-card{
    grid-template-columns: 1fr;
    max-height: 92vh;
  }

  .services-page .service-modal-media{
    min-height: 42vh;
    max-height: 42vh;
  }

  .services-page .service-modal-content{
    padding: 26px 20px 24px;
  }

  .services-page .service-modal-label{
    margin-bottom: 16px;
  }

  .services-page .service-modal-content .h2{
    max-width: none;
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .services-page .service-modal-content .p-muted{
    max-width: none;
    font-size: 14px;
  }

  .services-page .service-modal-footer{
    margin-top: 30px;
    gap: 20px;
  }

  .services-page .service-modal-actions{
    flex-direction: column;
  }

  .services-page .service-modal-actions .btn{
    width: 100%;
    justify-content: center;
  }

  .services-page .service-modal-close{
    top: 14px;
    right: 14px;
  }

  .services-page .service-arrow{
    width: 44px;
    height: 44px;
  }

  .services-page .services-footer{
    padding-bottom: 24px;
  }

  .services-page .services-footer-shell{
    padding: 18px 16px;
    border-radius: 22px;
  }
}

/* ===== RESPONSIVE STABILITY LAYER ===== */

@media (max-width: 1024px){
  html,
  body{
    overflow-x: clip;
  }

  body.nav-open{
    overflow: hidden;
  }

  .container{
    width: min(var(--container), calc(100% - 48px));
  }

  .nav{
    position: relative;
    height: 70px;
  }

  .brand{
    height: 70px;
    flex: 0 0 auto;
  }

  .logo-img{
    height: 38px;
  }

  .section{
    padding: 64px 0;
  }

  .section-head{
    align-items: flex-start;
    gap: 16px;
  }

  .section-head > .btn{
    align-self: flex-start;
  }

  .h1{
    font-size: clamp(2.85rem, 6vw, 4.2rem);
    line-height: 1.02;
  }

  .h2{
    font-size: clamp(2rem, 4vw, 2.6rem);
    line-height: 1.08;
  }

  .lead,
  .p-muted{
    line-height: 1.78;
  }

  .hero-shell,
  .hero-content,
  .hero-card,
  .video-frame,
  .modern-copy,
  .cta-copy,
  .about-page .about-hero-content,
  .about-page .about-signature-content,
  .about-page .about-cta-copy,
  .services-page .services-intro,
  .services-page .service-card-copy,
  .services-page .service-modal-content,
  .contact-page .card,
  .contact-page .field{
    min-width: 0;
  }

  .footer{
    margin-top: 28px;
    padding: 30px 0 36px;
  }

  .footer-grid{
    gap: 16px;
  }

  .location-preview iframe{
    min-height: 260px;
  }
}

@media (max-width: 768px){
  .container{
    width: min(var(--container), calc(100% - 32px));
  }

  .nav{
    justify-content: space-between;
    gap: 10px;
  }

  .nav-utility,
  .header-actions{
    margin-left: auto;
    gap: 10px;
    flex-shrink: 0;
  }

  .lang-switcher-btn{
    min-width: 40px;
    min-height: 34px;
    padding: 0 10px;
    letter-spacing: .1em;
  }

  .footer{
    padding: 24px 0 28px;
  }

  .footer-grid{
    grid-template-columns: minmax(76px, .82fr) minmax(0, 1.5fr) minmax(64px, .76fr);
    align-items: start;
    column-gap: 14px;
    row-gap: 0;
  }

  .footer-brand{
    justify-content: flex-start;
  }

  .footer-grid > .footer-brand img{
    height: 38px !important;
  }

  .footer-block{
    min-width: 0;
    gap: 6px;
  }

  .footer-grid > .footer-block:last-child{
    justify-self: start;
  }

  .footer-label{
    font-size: 11px;
    letter-spacing: .12em;
  }

  .footer-link-list{
    gap: 6px;
  }

  .footer-link-list a{
    width: 100%;
    font-size: 12px;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .nav{
    height: 64px;
  }

  .brand{
    height: 64px;
  }

  .logo-img{
    height: 34px;
  }

  .nav-utility,
  .header-actions{
    margin-left: auto;
  }

  .hamburger{
    display: flex;
    width: 46px;
    height: 46px;
    min-height: 46px;
    flex: 0 0 auto;
  }

  .topbar.nav-open{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1090;
  }

  .nav-links{
    display: flex;
    position: fixed;
    left: 24px;
    right: 24px;
    top: var(--mobile-nav-top);
    margin: 0;
    padding: 14px;
    gap: 8px;
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(.985);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    max-height: min(calc(100svh - var(--mobile-nav-top) - 16px), 420px);
    overflow: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    z-index: 1080;
  }

  .nav-links.show{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-links a{
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 14px;
  }

  .home-page .nav-links,
  .about-page .nav-links,
  .services-page .nav-links{
    background: rgba(255,252,247,.96);
    border-color: rgba(32,24,12,.08);
    box-shadow: 0 20px 40px rgba(34,24,11,.12);
  }

  .home-page .nav-links a,
  .home-page .nav-links a.active,
  .about-page .nav-links a,
  .about-page .nav-links a.active,
  .services-page .nav-links a,
  .services-page .nav-links a.active{
    color: var(--text);
  }

  .section{
    padding: 56px 0;
  }

  .split,
  .grid-3,
  .grid-4,
  .gallery,
  .form-row{
    grid-template-columns: 1fr;
  }

  .card{
    padding: 20px;
    border-radius: 20px;
  }

  .hero-actions,
  .cta-actions,
  .contact-page .location-actions{
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .hero-actions .btn,
  .cta-actions .btn,
  .contact-page .location-actions .btn{
    min-height: 50px;
    padding: 14px 18px;
  }

  .cta-actions .btn,
  .contact-page form .btn,
  .contact-page .location-actions .btn{
    width: 100%;
  }

  .chip{
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .lightbox{
    padding: 12px;
  }

  .lightbox-inner{
    border-radius: 18px;
  }

  .lb-img{
    height: min(58svh, 460px);
  }

  .service-modal{
    padding: 12px;
    align-items: flex-end;
  }

  .service-modal-card{
    width: 100%;
    max-height: calc(100svh - 24px);
  }

  .service-modal-content{
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .service-modal-actions .btn,
  .services-page .service-modal-actions .btn{
    width: 100%;
  }

  .service-modal-close,
  .service-arrow{
    width: 44px;
    height: 44px;
  }

  .chatbot-launcher{
    min-height: 48px;
    padding: 11px 14px;
    animation: none;
  }

  .chatbot-drawer{
    left: 12px;
    right: 12px;
    width: auto;
    bottom: 72px;
    height: min(78vh, calc(100svh - 96px));
    border-radius: 18px;
  }

  .chatbot-frame{
    min-height: 420px;
  }

  .back-to-top{
    min-height: 48px;
  }

  .reveal{
    transform: translateY(24px);
  }

  .stagger > *{
    transform: translateY(18px);
  }

  .hero-media img{
    animation: none;
  }

  .home-page .section-head,
  .home-page .services-editorial-section .section-head,
  .about-page .about-section-head{
    align-items: flex-start;
  }

  .home-page .video-section-head > div,
  .home-page .modern-copy,
  .contact-page .section-head > div{
    max-width: 100%;
  }

  .about-page .about-stat-row{
    grid-template-columns: 1fr;
  }

  .about-page .about-stat{
    padding-left: 70px;
  }

  .contact-page .contact-stack{
    gap: 16px !important;
  }

  .contact-page .card-title{
    align-items: flex-start;
  }

  .contact-page .card-title > div{
    flex-wrap: wrap;
  }

  .contact-page .location-preview iframe{
    height: 260px;
  }

  .contact-page .small{
    overflow-wrap: anywhere;
  }

  .services-page .reveal,
  .services-page .stagger > *{
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 480px){
  .home-page .hero-backdrop{
    background-position: center, 34% center;
    background-size: auto, cover;
    transform: scale(1.015);
  }

  .home-page .hero-overlay{
    background:
      radial-gradient(460px 260px at 42% 22%, rgba(214,186,127,.12), transparent 58%),
      linear-gradient(180deg, rgba(18,13,9,.12) 0%, rgba(18,13,9,.05) 34%, rgba(18,13,9,.17) 100%),
      linear-gradient(90deg, rgba(18,13,9,.1) 0%, rgba(18,13,9,.04) 52%, rgba(18,13,9,.09) 100%);
  }

  .container{
    width: min(var(--container), calc(100% - 24px));
  }

  .footer{
    padding: 20px 0 24px;
  }

  .footer-grid{
    grid-template-columns: minmax(68px, .78fr) minmax(0, 1.55fr) minmax(58px, .72fr);
    column-gap: 10px;
    row-gap: 0;
  }

  .footer-grid > .footer-brand img{
    height: 34px !important;
  }

  .footer-link-list a{
    font-size: 11px;
    line-height: 1.4;
  }

  .nav{
    height: 62px;
    gap: 8px;
  }

  .brand{
    height: 62px;
  }

  .logo-img{
    height: 30px;
  }

  .lang-switcher{
    padding: 3px;
    width: 104px;
    min-width: 104px;
  }

  .lang-switcher-btn{
    min-width: 0;
    min-height: 32px;
    padding: 0 9px;
    font-size: 11px;
  }

  .nav-utility,
  .header-actions{
    margin-left: 10px;
    gap: 8px;
  }

  .nav-links{
    left: 12px;
    right: 12px;
    padding: 12px;
    border-radius: 18px;
    max-height: calc(100svh - var(--mobile-nav-top) - 12px);
  }

  .section{
    padding: 46px 0;
  }

  .h1{
    font-size: clamp(2.25rem, 10vw, 3.15rem);
  }

  .h2{
    font-size: clamp(1.72rem, 8vw, 2.2rem);
  }

  .kicker{
    font-size: 11px;
    letter-spacing: .14em;
  }

  .lead,
  .p-muted,
  .card p,
  .small{
    font-size: 14px;
  }

  .lead,
  .p-muted{
    max-width: 100%;
    line-height: 1.75;
  }

  .btn{
    width: 100%;
  }

  .chip{
    justify-content: flex-start;
  }

  .card{
    padding: 18px;
    border-radius: 18px;
  }

  .cta{
    padding: 22px 18px;
    border-radius: 22px;
  }

  .hero-actions,
  .cta-actions{
    gap: 10px;
  }

  .lightbox{
    padding: 10px;
  }

  .lb-img{
    height: min(50svh, 360px);
  }

  .chatbot-launcher{
    right: max(10px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
  }

  .chatbot-drawer{
    left: 8px;
    right: 8px;
    bottom: 64px;
    height: calc(100svh - 80px);
    border-radius: 16px;
  }

  .back-to-top{
    left: max(10px, env(safe-area-inset-left));
    bottom: max(10px, env(safe-area-inset-bottom));
    padding: 0 13px 0 10px;
  }

  .chatbot-drawer-head{
    padding: 12px 14px 10px;
  }

  .contact-page .location-preview iframe{
    height: 220px;
  }

  .services-page .service-image{
    height: clamp(220px, 70vw, 320px);
  }

  .services-page .service-modal{
    padding: 10px;
  }

  .services-page .service-modal-card{
    max-height: calc(100svh - 20px);
  }

  .services-page .service-modal-media{
    min-height: 34svh;
    max-height: 34svh;
  }

  .services-page .service-modal-content{
    padding: 22px 18px 18px;
  }

  .services-page .service-modal-close{
    top: 12px;
    right: 12px;
  }

  .services-page .service-arrow.left{
    left: 12px;
  }

  .services-page .service-arrow.right{
    right: 12px;
  }

  .home-page .hero-card,
  .home-page .modern-copy,
  .about-page .about-hero-content,
  .about-page .about-cta{
    border-radius: 20px;
  }
}

@media (hover: none){
  .btn:hover,
  .card:hover,
  .service-feature-card:hover,
  .modern-list li:hover,
  .about-page .about-feature-card:hover,
  .about-page .about-signature-list li:hover,
  .services-page .service-card:hover,
  .services-page .service-arrow:hover,
  .services-page .service-modal-close:hover{
    transform: none;
  }
}

body[dir="rtl"]{
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  text-align: right;
}

body[dir="rtl"] .nav{
  direction: ltr;
}

body[dir="rtl"] .nav-links{
  margin-left: auto;
  margin-right: 0;
}

body[dir="rtl"] .nav-utility,
body[dir="rtl"] .header-actions{
  direction: ltr;
}

body[dir="rtl"] .nav-links a{
  direction: rtl;
}

body[dir="rtl"] .h1,
body[dir="rtl"] .h2,
body[dir="rtl"] .cta h3,
body[dir="rtl"] .contact-card-heading,
body[dir="rtl"] .services-page .service-card .card-title,
body[dir="rtl"] .services-page .service-modal-content .h2{
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  letter-spacing: 0;
}

body[dir="rtl"] .kicker,
body[dir="rtl"] .footer-label,
body[dir="rtl"] .contact-page label,
body[dir="rtl"] .contact-page .form-section legend,
body[dir="rtl"] .contact-page .contact-card-title small{
  letter-spacing: .04em;
  text-transform: none;
}

body[dir="rtl"] .section-head,
body[dir="rtl"] .hero-card,
body[dir="rtl"] .modern-copy,
body[dir="rtl"] .cta,
body[dir="rtl"] .about-page .about-hero-content,
body[dir="rtl"] .about-page .about-signature-content,
body[dir="rtl"] .services-page .services-intro,
body[dir="rtl"] .services-page .service-card-copy,
body[dir="rtl"] .services-page .service-modal-content,
body[dir="rtl"] .contact-page .contact-intro-copy,
body[dir="rtl"] .contact-page .contact-card-title,
body[dir="rtl"] .contact-page .contact-location-copy,
body[dir="rtl"] .footer,
body[dir="rtl"] .chatbot-drawer-head{
  text-align: right;
}

body[dir="rtl"] .hero-actions,
body[dir="rtl"] .cta-actions,
body[dir="rtl"] .badges,
body[dir="rtl"] .footer-link-list,
body[dir="rtl"] .contact-page .location-actions,
body[dir="rtl"] .contact-page .contact-card-title > div{
  direction: rtl;
}

body[dir="rtl"] .list li,
body[dir="rtl"] .badge,
body[dir="rtl"] .card-title,
body[dir="rtl"] .about-page .about-stat,
body[dir="rtl"] .contact-page .contact-location-grid{
  direction: rtl;
}

body[dir="rtl"] .contact-page input,
body[dir="rtl"] .contact-page select,
body[dir="rtl"] .contact-page textarea{
  text-align: right;
}

body[dir="rtl"] .contact-page input[type="email"],
body[dir="rtl"] .contact-page input[type="tel"],
body[dir="rtl"] .contact-page input[type="date"],
body[dir="rtl"] .contact-page input[inputmode="numeric"]{
  direction: ltr;
  text-align: left;
}

body[dir="rtl"] .service-arrow.left{
  left: auto;
  right: 18px;
}

body[dir="rtl"] .service-arrow.right{
  right: auto;
  left: 18px;
}

@media (max-width: 768px){
  body[dir="rtl"] .nav-links{
    direction: rtl;
  }

  body[dir="rtl"] .nav-links a{
    justify-content: flex-end;
    text-align: right;
  }
}
