/* ==========================================================================
   SmileZone Dental — Luxury Dental Clinic Website
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root{
  --gold: #c9a24b;
  --gold-bright: #ecd08a;
  --gold-deep: #8a6a2f;
  --radius: 2px;
  --ease: cubic-bezier(.22,1,.36,1);
  --nav-h: 88px;

  /* Light theme (default) */
  --bg: #ffffff;
  --bg-alt: #f8f6f2;
  --bg-card: #ffffff;
  --text: #14120f;
  --text-soft: #5a564d;
  --line: rgba(20,18,15,.1);
  --overlay: rgba(255,255,255,.72);
  --nav-bg: rgba(255,255,255,.85);
  --shadow: 0 20px 60px rgba(20,18,15,.08);
}

html[data-theme="dark"]{
  --bg: #0a0908;
  --bg-alt: #121110;
  --bg-card: #151412;
  --text: #f3ede0;
  --text-soft: #b8ad96;
  --line: rgba(243,237,224,.1);
  --overlay: rgba(10,9,8,.72);
  --nav-bg: rgba(10,9,8,.8);
  --shadow: 0 20px 60px rgba(0,0,0,.5);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family:'Poppins',sans-serif;
  font-weight:300;
  overflow-x:hidden;
  transition: background .5s var(--ease), color .5s var(--ease);
}
h1,h2,h3,h4,.serif{
  font-family:'Cormorant Garamond',serif;
  font-weight:600;
  letter-spacing:.01em;
  margin:0;
}
p{ line-height:1.8; color:var(--text-soft); margin:0; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
img{ max-width:100%; display:block; }
button{ font-family:inherit; cursor:pointer; }
.container{ max-width:1240px; margin:0 auto; padding:0 32px; }
.eyebrow{
  display:inline-flex; align-items:center; gap:12px;
  font-family:'Poppins',sans-serif; font-size:.72rem; letter-spacing:.32em;
  text-transform:uppercase; color:var(--gold); font-weight:500; margin-bottom:22px;
}
.eyebrow::before{ content:''; width:34px; height:1px; background:var(--gold); }
.section{ position:relative; padding:150px 0; }
.section-alt{ background:var(--bg-alt); }
.section-head{ max-width:680px; margin-bottom:70px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(2.2rem,4.2vw,3.4rem); line-height:1.15; }
.section-head p{ margin-top:22px; font-size:1.05rem; }
.gold-text{ color:var(--gold); }
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:17px 38px; font-size:.78rem; letter-spacing:.18em; text-transform:uppercase;
  font-weight:500; border-radius:var(--radius); border:1px solid var(--gold);
  transition:.4s var(--ease); white-space:nowrap; position:relative; overflow:hidden;
}
.btn-gold{ background:var(--gold); color:#0a0908; }
.btn-gold:hover{ background:var(--gold-bright); border-color:var(--gold-bright); transform:translateY(-2px); box-shadow:0 12px 30px rgba(201,162,75,.35); }
.btn-outline{ background:transparent; color:var(--text); border-color:var(--line); }
.btn-outline:hover{ border-color:var(--gold); color:var(--gold); transform:translateY(-2px); }

/* ---------- Particles / grain ---------- */
#particle-canvas{
  position:fixed; inset:0; width:100%; height:100%;
  z-index:1; pointer-events:none; opacity:.55;
}

/* ---------- Preloader ---------- */
#preloader{
  position:fixed; inset:0; z-index:9999; background:#0a0908;
  display:flex; align-items:center; justify-content:center; flex-direction:column;
  transition:opacity .8s var(--ease), visibility .8s var(--ease);
}
#preloader.done{ opacity:0; visibility:hidden; }
.pre-logo{ width:110px; height:auto; opacity:0; animation:preFade 1.2s var(--ease) forwards; filter:drop-shadow(0 0 25px rgba(201,162,75,.4)); }
.pre-bar{ width:220px; height:1px; background:rgba(255,255,255,.12); margin-top:34px; position:relative; overflow:hidden; opacity:0; animation:preFade 1.2s var(--ease) .3s forwards; }
.pre-bar::after{
  content:''; position:absolute; left:0; top:0; bottom:0; width:0%;
  background:linear-gradient(90deg,var(--gold-deep),var(--gold-bright));
  animation:preLoad 2.2s var(--ease) .4s forwards;
}
.pre-word{ margin-top:20px; font-size:.68rem; letter-spacing:.4em; text-transform:uppercase; color:#8f8a7c; opacity:0; animation:preFade 1.2s var(--ease) .5s forwards; }
@keyframes preFade{ to{ opacity:1; } }
@keyframes preLoad{ to{ width:100%; } }

/* ---------- Navbar ---------- */
#navbar{
  position:fixed; top:0; left:0; right:0; z-index:900; height:var(--nav-h);
  display:flex; align-items:center; transition:.5s var(--ease);
}
#navbar.scrolled{ height:76px; background:var(--nav-bg); backdrop-filter:blur(16px); box-shadow:var(--shadow); border-bottom:1px solid var(--line); }
.nav-inner{ width:100%; display:flex; align-items:center; justify-content:space-between; }
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ height:52px; width:auto; transition:.4s; filter:drop-shadow(0 0 10px rgba(201,162,75,.25)); }
.brand span{ font-family:'Cormorant Garamond',serif; font-size:1.5rem; font-weight:600; letter-spacing:.04em; color:var(--text); }
.brand small{ display:block; font-family:'Poppins',sans-serif; font-size:.55rem; letter-spacing:.3em; color:var(--gold); text-transform:uppercase; margin-top:1px; }
.nav-links{ display:flex; align-items:center; gap:38px; }
.nav-links a{
  font-size:.76rem; letter-spacing:.14em; text-transform:uppercase; color:var(--text);
  position:relative; padding:6px 0; opacity:.85;
}
.nav-links a::after{ content:''; position:absolute; left:0; bottom:0; width:0; height:1px; background:var(--gold); transition:.35s var(--ease); }
.nav-links a:hover::after, .nav-links a.active::after{ width:100%; }
.nav-links a:hover{ opacity:1; }
.nav-actions{ display:flex; align-items:center; gap:14px; }
.icon-toggle{
  width:40px; height:40px; border-radius:50%; border:1px solid var(--line); background:transparent;
  display:flex; align-items:center; justify-content:center; color:var(--text); transition:.35s var(--ease);
}
.icon-toggle:hover{ border-color:var(--gold); color:var(--gold); }
.icon-toggle svg{ width:17px; height:17px; }
.lang-toggle{
  display:flex; align-items:center; border:1px solid var(--line); border-radius:20px; overflow:hidden; font-size:.68rem; letter-spacing:.1em;
}
.lang-toggle button{ background:transparent; border:none; color:var(--text-soft); padding:8px 13px; transition:.3s; }
.lang-toggle button.active{ background:var(--gold); color:#0a0908; font-weight:600; }
.burger{ display:none; width:40px; height:40px; border:1px solid var(--line); border-radius:50%; align-items:center; justify-content:center; background:transparent; color:var(--text); }
.burger span, .burger span::before, .burger span::after{ content:''; display:block; width:16px; height:1px; background:currentColor; position:relative; transition:.3s; }
.burger span::before{ position:absolute; top:-5px; } .burger span::after{ position:absolute; top:5px; }

/* Light theme + transparent (unscrolled) navbar sits over the dark hero video —
   force light text/borders so it stays legible until the solid scrolled background kicks in. */
html[data-theme="light"] #navbar:not(.scrolled) .brand span,
html[data-theme="light"] #navbar:not(.scrolled) .brand small,
html[data-theme="light"] #navbar:not(.scrolled) .nav-links:not(.open) a,
html[data-theme="light"] #navbar:not(.scrolled) .icon-toggle,
html[data-theme="light"] #navbar:not(.scrolled) .burger,
html[data-theme="light"] #navbar:not(.scrolled) .lang-toggle button{
  color:#fff;
}
html[data-theme="light"] #navbar:not(.scrolled) .icon-toggle,
html[data-theme="light"] #navbar:not(.scrolled) .burger,
html[data-theme="light"] #navbar:not(.scrolled) .lang-toggle{
  border-color:rgba(255,255,255,.35);
}
html[data-theme="light"] #navbar:not(.scrolled) .lang-toggle button.active{
  background:var(--gold); color:#0a0908;
}
html[data-theme="light"] #navbar:not(.scrolled) .nav-links:not(.open) a::after{ background:#fff; }
html[data-theme="light"] #hero .btn-outline{ color:#fff; border-color:rgba(255,255,255,.45); }
html[data-theme="light"] #hero .btn-outline:hover{ color:var(--gold); border-color:var(--gold); }

/* ---------- Hero ---------- */
#hero{
  position:relative; min-height:100vh; overflow:hidden;
  color:#f3ede0;
}
.hero-video-wrap{ position:absolute; inset:0; z-index:0; }
.hero-video-wrap video, .hero-video-wrap img{ width:100%; height:100%; object-fit:cover; position:absolute; inset:0; }
.hero-scrim{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(6,6,5,.55) 0%, rgba(6,6,5,.55) 40%, rgba(6,6,5,.85) 100%),
    linear-gradient(90deg, rgba(6,6,5,.75) 0%, rgba(6,6,5,.2) 55%, rgba(6,6,5,.55) 100%);
}
.hero-content{ position:relative; z-index:2; padding-top:calc(var(--nav-h) + 88px); padding-bottom:120px; width:100%; }
.hero-eyebrow{
  display:flex; align-items:center; gap:14px; font-size:.72rem; letter-spacing:.36em; text-transform:uppercase;
  color:var(--gold-bright); margin-bottom:26px;
}
.hero-eyebrow::before{ content:''; width:44px; height:1px; background:var(--gold-bright); }
#hero h1{
  font-size:clamp(2.6rem,6vw,5.2rem); line-height:1.05; max-width:900px; color:#fff;
  text-shadow:0 4px 30px rgba(0,0,0,.3);
}
#hero h1 em{ font-style:normal; color:var(--gold-bright); }
.hero-sub{ max-width:560px; margin-top:26px; font-size:1.08rem; color:#d9d2c2; }
.hero-cta{ display:flex; gap:20px; margin-top:46px; flex-wrap:wrap; }
.hero-stats{ display:flex; gap:56px; margin-top:80px; flex-wrap:wrap; }
.hero-stats div strong{ display:block; font-family:'Cormorant Garamond',serif; font-size:2.4rem; color:var(--gold-bright); font-weight:600; }
.hero-stats div span{ font-size:.7rem; letter-spacing:.14em; text-transform:uppercase; color:#c8c0ac; }
.scroll-cue{
  position:relative; z-index:2; margin:46px auto 40px;
  display:flex; flex-direction:column; align-items:center; gap:10px; color:#cfc7b4; font-size:.62rem;
  letter-spacing:.28em; text-transform:uppercase;
}
.scroll-cue .line{ width:1px; height:46px; background:linear-gradient(180deg,var(--gold-bright),transparent); position:relative; overflow:hidden; }
.scroll-cue .line::after{ content:''; position:absolute; top:-100%; left:0; width:100%; height:100%; background:#fff; animation:scrollDown 2s infinite var(--ease); }
@keyframes scrollDown{ to{ top:100%; } }

/* ---------- Hero coverflow (circular auto-rotating photo carousel) ---------- */
.hero-coverflow{
  position:relative; z-index:2; margin-top:64px; display:flex; flex-direction:column; align-items:center; gap:18px;
}
.coverflow-track{
  position:relative; width:100%; max-width:520px; height:230px;
}
.cf-slide{
  position:absolute; left:50%; top:50%; width:150px; height:190px;
  border-radius:6px; overflow:hidden; border:1px solid rgba(236,208,138,.4);
  box-shadow:0 20px 50px rgba(0,0,0,.45);
  transition:transform 1.1s var(--ease), filter 1.1s var(--ease), opacity 1.1s var(--ease);
  will-change:transform, filter, opacity;
}
.cf-slide img{ width:100%; height:100%; object-fit:cover; display:block; }
.coverflow-label{
  font-size:.66rem; letter-spacing:.28em; text-transform:uppercase; color:#cfc7b4;
}

/* ---------- Reveal animations ---------- */
[data-reveal]{ opacity:0; transform:translateY(46px); transition:opacity 1s var(--ease), transform 1s var(--ease); }
[data-reveal].in{ opacity:1; transform:translateY(0); }
[data-reveal="fade"]{ transform:none; }
[data-reveal="left"]{ transform:translateX(-60px); }
[data-reveal="left"].in{ transform:translateX(0); }
[data-reveal="right"]{ transform:translateX(60px); }
[data-reveal="right"].in{ transform:translateX(0); }
[data-reveal="scale"]{ transform:scale(.92); }
[data-reveal="scale"].in{ transform:scale(1); }
.stagger [data-reveal]:nth-child(1){ transition-delay:.05s; }
.stagger [data-reveal]:nth-child(2){ transition-delay:.15s; }
.stagger [data-reveal]:nth-child(3){ transition-delay:.25s; }
.stagger [data-reveal]:nth-child(4){ transition-delay:.35s; }
.stagger [data-reveal]:nth-child(5){ transition-delay:.45s; }
.stagger [data-reveal]:nth-child(6){ transition-delay:.55s; }

/* ---------- About / What-Where-How ---------- */
.about-grid{ display:grid; grid-template-columns:1fr 1fr; gap:90px; align-items:center; }
.about-media{ position:relative; }
.about-media .frame{
  position:relative; border:1px solid var(--gold); padding:22px; border-radius:var(--radius);
}
.about-media img{ border-radius:var(--radius); }
.about-media .badge{
  position:absolute; bottom:-30px; right:-30px; background:var(--gold); color:#0a0908;
  padding:26px 30px; text-align:center; box-shadow:var(--shadow);
}
.about-media .badge strong{ display:block; font-family:'Cormorant Garamond',serif; font-size:2.1rem; }
.about-media .badge span{ font-size:.62rem; letter-spacing:.14em; text-transform:uppercase; }
.wwh{ display:grid; gap:30px; margin-top:40px; }
.wwh-item{ display:flex; gap:22px; padding-bottom:30px; border-bottom:1px solid var(--line); }
.wwh-item:last-child{ border-bottom:none; }
.wwh-num{ font-family:'Cormorant Garamond',serif; font-size:2.4rem; color:var(--gold); min-width:60px; }
.wwh-item h4{ font-size:1.25rem; margin-bottom:8px; color:var(--text); }
.wwh-item p{ font-size:.95rem; }

/* ---------- Services ---------- */
.services-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:2px; background:var(--line); border:1px solid var(--line); }
.service-card{
  background:var(--bg-card); padding:52px 40px; position:relative; overflow:hidden; transition:.5s var(--ease);
}
.service-card::before{
  content:''; position:absolute; inset:0; background:linear-gradient(160deg,rgba(201,162,75,.08),transparent 60%);
  opacity:0; transition:.5s;
}
.service-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); z-index:2; }
.service-card:hover::before{ opacity:1; }
.service-icon{ width:56px; height:56px; margin-bottom:26px; color:var(--gold); }
.service-icon svg{ width:100%; height:100%; stroke-width:1; }
.service-card h3{ font-size:1.5rem; margin-bottom:14px; }
.service-card p{ font-size:.92rem; }
.service-num{ position:absolute; top:24px; right:30px; font-family:'Cormorant Garamond',serif; font-size:1rem; color:var(--line); }

/* ---------- Results / Checklist ---------- */
.result-list{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.result-item{ display:flex; gap:20px; align-items:flex-start; }
.result-check{ width:30px; height:30px; border-radius:50%; background:var(--gold); color:#0a0908; display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:2px; }
.result-check svg{ width:14px; height:14px; }
.result-item h4{ font-size:1.15rem; margin-bottom:6px; }
.result-item p{ font-size:.92rem; }

/* ---------- Video cards (reused across sections) ---------- */
.photo-card, .video-card{
  position:relative; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow);
  aspect-ratio:3/4; border:1px solid var(--line); background:#0a0908;
}
.photo-card img, .video-card video{ width:100%; height:100%; object-fit:cover; display:block; }
.video-card .play-badge{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  background:rgba(10,9,8,.25); transition:.4s;
}
.video-card.playing .play-badge{ opacity:0; pointer-events:none; }
.play-circle{
  width:60px; height:60px; border-radius:50%; border:1px solid var(--gold-bright); display:flex; align-items:center; justify-content:center;
  color:#fff; background:rgba(10,9,8,.4); backdrop-filter:blur(4px);
}
.play-circle svg{ width:18px; height:18px; margin-left:3px; }

/* ---------- Editorial story rows (video + text, alternating) ---------- */
.story-row{ display:flex; align-items:center; gap:70px; margin-bottom:100px; }
.story-row:last-child{ margin-bottom:0; }
.story-row.rev{ flex-direction:row-reverse; }
.story-media{ flex:0 0 300px; }
.story-media .video-card{ max-width:300px; }
.story-text{ flex:1; }
.story-tag{
  display:inline-block; font-family:'Cormorant Garamond',serif; font-size:1rem; color:var(--gold);
  border:1px solid var(--gold); width:44px; height:44px; line-height:42px; text-align:center; border-radius:50%; margin-bottom:22px;
}
.story-text h3{ font-size:1.8rem; margin-bottom:14px; }
.story-text p{ font-size:.98rem; max-width:440px; }

/* ---------- Inline video accent (small feature card) ---------- */
.inline-video-accent{ flex:0 0 220px; }
.inline-video-accent .video-card{ max-width:220px; aspect-ratio:3/4; }

/* ---------- Why us / Stats ---------- */
#why{ position:relative; color:#f3ede0; background:#0a0908; overflow:hidden; }
#why::before{
  content:''; position:absolute; inset:0; opacity:.5;
  background:radial-gradient(circle at 20% 20%,rgba(201,162,75,.18),transparent 45%),radial-gradient(circle at 85% 80%,rgba(201,162,75,.14),transparent 45%);
}
#why .container{ position:relative; z-index:1; }
#why p{ color:#b8ad96; }
.why-head-row{ display:flex; align-items:center; justify-content:space-between; gap:60px; }
.why-video-accent{ flex:0 0 180px; text-align:center; }
.why-video-accent .video-card{ width:180px; border-color:rgba(255,255,255,.15); }
.why-video-caption{ display:block; margin-top:16px; font-size:.66rem; letter-spacing:.2em; text-transform:uppercase; color:#a99d80; }
.why-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:2px; margin-top:60px; background:rgba(255,255,255,.08); }
.why-stat{ background:#0a0908; padding:50px 30px; text-align:center; }
.why-stat strong{ display:block; font-family:'Cormorant Garamond',serif; font-size:3.2rem; color:var(--gold-bright); }
.why-stat span{ font-size:.7rem; letter-spacing:.14em; text-transform:uppercase; color:#a99d80; }
.why-points{ display:grid; grid-template-columns:repeat(3,1fr); gap:40px; margin-top:90px; }
.why-point{ text-align:center; padding:0 10px; }
.why-point .n{ font-family:'Cormorant Garamond',serif; font-size:1.1rem; color:var(--gold); border:1px solid var(--gold); width:48px; height:48px; border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 20px; }
.why-point h4{ font-size:1.2rem; margin-bottom:10px; color:#f3ede0; }
.why-point p{ font-size:.9rem; }

/* ---------- Testimonials ---------- */
.video-testi{
  display:flex; align-items:center; gap:50px; margin-bottom:80px; padding:40px;
  background:var(--bg-card); border:1px solid var(--line); box-shadow:var(--shadow);
}
.video-testi .video-card{ flex:0 0 160px; width:160px; }
.video-testi-text h3{ font-size:1.5rem; margin:14px 0 12px; }
.video-testi-text p{ font-size:.95rem; max-width:480px; }
.testi-track{ display:grid; grid-template-columns:repeat(3,1fr); gap:36px; }
.testi-card{ background:var(--bg-card); border:1px solid var(--line); padding:44px 38px; position:relative; }
.testi-stars{ display:flex; gap:4px; color:var(--gold); margin-bottom:22px; }
.testi-stars svg{ width:15px; height:15px; }
.testi-card p{ font-family:'Cormorant Garamond',serif; font-size:1.2rem; color:var(--text); font-style:italic; line-height:1.6; }
.testi-name{ display:flex; align-items:center; gap:14px; margin-top:28px; }
.testi-avatar{ width:44px; height:44px; border-radius:50%; background:linear-gradient(160deg,var(--gold),var(--gold-deep)); display:flex; align-items:center; justify-content:center; color:#0a0908; font-family:'Cormorant Garamond',serif; font-weight:700; }
.testi-name strong{ display:block; font-size:.92rem; color:var(--text); font-family:'Poppins',sans-serif; }
.testi-name span{ font-size:.72rem; color:var(--text-soft); text-transform:uppercase; letter-spacing:.08em; }

/* ---------- Location ---------- */
.location-wrap{ display:grid; grid-template-columns:1fr 1fr; gap:0; box-shadow:var(--shadow); }
.location-info{ background:var(--gold); color:#0a0908; padding:70px 60px; display:flex; flex-direction:column; justify-content:center; }
.location-info h3{ font-size:2rem; margin-bottom:24px; }
.location-item{ display:flex; gap:16px; margin-bottom:22px; align-items:flex-start; }
.location-item svg{ width:20px; height:20px; flex-shrink:0; margin-top:3px; }
.location-item strong{ display:block; font-family:'Poppins',sans-serif; font-size:.95rem; }
.location-item span{ font-size:.85rem; opacity:.85; }
.location-map{ min-height:460px; filter:saturate(.2) contrast(1.05); }
html[data-theme="dark"] .location-map{ filter:invert(.92) grayscale(.4) contrast(1.1); }
.location-map iframe{ width:100%; height:100%; border:0; display:block; }

/* ---------- Contact ---------- */
.contact-wrap{ display:grid; grid-template-columns:1fr 1fr; gap:90px; }
.contact-form{ display:grid; gap:22px; }
.field{ position:relative; }
.field input, .field textarea, .field select{
  width:100%; background:transparent; border:none; border-bottom:1px solid var(--line);
  padding:14px 2px; color:var(--text); font-family:'Poppins',sans-serif; font-size:.95rem; outline:none; transition:.3s;
}
.field textarea{ resize:none; min-height:100px; }
.field input:focus, .field textarea:focus, .field select:focus{ border-color:var(--gold); }
.field label{ position:absolute; left:2px; top:14px; font-size:.95rem; color:var(--text-soft); pointer-events:none; transition:.25s var(--ease); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label{
  top:-14px; font-size:.66rem; letter-spacing:.1em; text-transform:uppercase; color:var(--gold);
}
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.contact-side{ display:grid; gap:30px; align-content:start; }
.contact-chip{ display:flex; gap:20px; align-items:flex-start; padding:26px 0; border-bottom:1px solid var(--line); }
.contact-chip .ic{ width:46px; height:46px; border-radius:50%; border:1px solid var(--gold); color:var(--gold); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-chip .ic svg{ width:19px; height:19px; }
.contact-chip strong{ display:block; font-size:1rem; margin-bottom:4px; }
.contact-chip span{ font-size:.85rem; color:var(--text-soft); }

/* ---------- CTA banner ---------- */
.cta-banner{
  position:relative; padding:130px 0; text-align:center; overflow:hidden;
  background:linear-gradient(160deg,#0a0908,#1a1710);
  color:#fff;
}
.cta-banner::before{ content:''; position:absolute; inset:0; background:radial-gradient(circle at 50% 0%,rgba(201,162,75,.22),transparent 60%); }
.cta-banner .container{ position:relative; z-index:1; }
.cta-banner h2{ font-size:clamp(2rem,4.5vw,3.4rem); max-width:760px; margin:0 auto 36px; color:#fff; }

/* ---------- Footer ---------- */
footer{ background:var(--bg-alt); border-top:1px solid var(--line); padding:80px 0 30px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:60px; padding-bottom:60px; border-bottom:1px solid var(--line); }
.footer-brand{ display:flex; align-items:center; gap:12px; margin-bottom:18px; }
.footer-brand img{ height:44px; }
.footer-brand span{ font-family:'Cormorant Garamond',serif; font-size:1.3rem; font-weight:600; }
footer h5{ font-size:.72rem; letter-spacing:.18em; text-transform:uppercase; color:var(--gold); margin-bottom:22px; font-weight:600; }
footer ul li{ margin-bottom:12px; }
footer ul li a{ font-size:.88rem; color:var(--text-soft); transition:.3s; }
footer ul li a:hover{ color:var(--gold); }
.socials{ display:flex; gap:12px; margin-top:20px; }
.socials a{ width:38px; height:38px; border-radius:50%; border:1px solid var(--line); display:flex; align-items:center; justify-content:center; transition:.3s; }
.socials a:hover{ border-color:var(--gold); color:var(--gold); }
.socials svg{ width:16px; height:16px; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:28px; font-size:.78rem; color:var(--text-soft); flex-wrap:wrap; gap:10px; }

/* ---------- Back to top ---------- */
#back-top{
  position:fixed; right:28px; bottom:28px; z-index:400; width:48px; height:48px; border-radius:50%;
  background:var(--gold); color:#0a0908; display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transform:translateY(10px); transition:.4s var(--ease); box-shadow:var(--shadow);
}
#back-top.show{ opacity:1; visibility:visible; transform:translateY(0); }
#back-top svg{ width:18px; height:18px; }

/* ---------- Responsive ---------- */
@media (max-width:1080px){
  .about-grid, .location-wrap, .contact-wrap{ grid-template-columns:1fr; }
  .services-grid{ grid-template-columns:repeat(2,1fr); }
  .story-row, .story-row.rev{ flex-direction:column; gap:34px; text-align:center; }
  .story-media, .story-media .video-card{ flex:none; width:min(300px,70vw); max-width:300px; }
  .story-text p{ margin-left:auto; margin-right:auto; }
  .why-head-row{ flex-direction:column; text-align:center; gap:34px; }
  .video-testi{ flex-direction:column; text-align:center; padding:32px; }
  .video-testi-text p{ margin-left:auto; margin-right:auto; }
  .why-grid{ grid-template-columns:repeat(2,1fr); }
  .why-points{ grid-template-columns:1fr; gap:50px; }
  .testi-track{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; gap:40px; }
  .result-list{ grid-template-columns:1fr 1fr; }
}
@media (max-width:640px){
  .result-list{ grid-template-columns:1fr; }
  .carousel-head{ flex-direction:column; align-items:flex-start; gap:16px; }
  .coverflow-track{ height:170px; max-width:340px; }
  .cf-slide{ width:110px; height:140px; }
  .hero-coverflow{ margin-top:44px; }
}
@media (max-width:860px){
  .nav-links{ position:fixed; top:0; right:0; height:100vh; width:min(78vw,320px); background:var(--bg); flex-direction:column; justify-content:center; align-items:flex-start; padding:40px; gap:26px; transform:translateX(100%); transition:.5s var(--ease); box-shadow:var(--shadow); border-left:1px solid var(--line); }
  .nav-links.open{ transform:translateX(0); }
  .burger{ display:flex; }
  .hero-stats{ gap:36px; }
  .section{ padding:100px 0; }
}
@media (max-width:640px){
  .container{ padding-left:22px; padding-right:22px; }
  .services-grid{ grid-template-columns:1fr; }
  .why-grid{ grid-template-columns:1fr 1fr; }
  .field-row{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; gap:36px; }
  .hero-cta{ flex-direction:column; align-items:stretch; }
  .location-info{ padding:50px 32px; }
  #hero h1{ font-size:2.4rem; }
}
@media (max-width:480px){
  .brand small{ display:none; }
  .brand span{ font-size:1.2rem; }
  .brand img{ height:40px; }
  .brand{ gap:8px; }
  .nav-actions{ gap:8px; }
  .lang-toggle button{ padding:7px 10px; }
  .icon-toggle{ width:36px; height:36px; }
  .burger{ width:36px; height:36px; }
}

.lock-scroll{ overflow:hidden; }
