/* ═══════════════════════════════════════════════════════════
   LAKHDATAR VISUALS — styles.css
   Main site + Gallery + GEM Studio styles
   ═══════════════════════════════════════════════════════════ */

:root {
  --gold:        #C8A84B;
  --gold-light:  #E8C96A;
  --gold-pale:   #F5E6B8;
  --gold-dim:    #7A6128;
  --gold-glow:   rgba(200,168,75,0.18);
  --dark:        #060607;
  --dark2:       #0C0C0E;
  --dark3:       #131316;
  --dark4:       #1A1A1E;
  --dark5:       #222228;
  --cream:       #F0EAD8;
  --cream-dim:   #C8BFAD;
  --cream-faint: #8A8478;
  --blue-deep:   #0D1F5C;
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0 }
html { scroll-behavior:smooth; font-size:16px }
body {
  background:var(--dark);
  color:var(--cream);
  font-family:'Jost',sans-serif;
  font-weight:300;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

/* ── KEYFRAMES ── */
@keyframes shimmer {
  0%  { background-position:200% center }
  100%{ background-position:-200% center }
}
@keyframes floatY {
  0%,100%{ transform:translateY(0px) }
  50%    { transform:translateY(-12px) }
}
@keyframes rotateSlow {
  from{ transform:rotate(0deg) }
  to  { transform:rotate(360deg) }
}
@keyframes fadeUp {
  from{ opacity:0; transform:translateY(28px) }
  to  { opacity:1; transform:translateY(0) }
}
@keyframes drawLine {
  from{ width:0 }
  to  { width:100% }
}
@keyframes pulseGold {
  0%,100%{ opacity:0.5 }
  50%    { opacity:1 }
}
@keyframes scrollTrack {
  0%  { transform:translateY(-100%); opacity:1 }
  100%{ transform:translateY(300%); opacity:0 }
}

/* ═══════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════ */
nav {
  position:fixed; top:0; left:0; right:0; z-index:200;
  display:flex; align-items:center; justify-content:space-between;
  padding:1.1rem 4rem;
  background:rgba(6,6,7,0.88);
  border-bottom:1px solid rgba(200,168,75,0.12);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
}
.nav-logo img { height:44px; width:auto; filter:drop-shadow(0 0 12px rgba(200,168,75,0.25)) }
.nav-links { display:flex; gap:3rem; list-style:none }
.nav-links a {
  color:#B8B0A0;
  text-decoration:none;
  font-family:'Jost',sans-serif;
  font-size:0.7rem; font-weight:400;
  letter-spacing:0.22em; text-transform:uppercase;
  transition:color 0.35s;
  position:relative;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0; right:0;
  height:1px; background:var(--gold);
  transform:scaleX(0); transform-origin:left;
  transition:transform 0.35s ease;
}
.nav-links a:hover { color:var(--gold) }
.nav-links a:hover::after { transform:scaleX(1) }
.nav-cta {
  font-family:'Jost',sans-serif;
  font-size:0.68rem; font-weight:400;
  letter-spacing:0.22em; text-transform:uppercase;
  color:var(--gold);
  border:1px solid rgba(200,168,75,0.5);
  padding:0.55rem 1.6rem;
  text-decoration:none;
  transition:all 0.35s;
  position:relative; overflow:hidden;
}
.nav-cta::before {
  content:''; position:absolute; inset:0;
  background:var(--gold);
  transform:translateX(-101%); transition:transform 0.35s ease;
}
.nav-cta span { position:relative; z-index:1 }
.nav-cta:hover { color:var(--dark) }
.nav-cta:hover::before { transform:translateX(0) }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
#hero {
  min-height:100vh;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  text-align:center;
  position:relative;
  padding:8rem 3rem 5rem;
  overflow:visible;
}

/* ── HERO VIDEO BACKGROUND ── */
.hero-video {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  z-index:0;
  pointer-events:none;
}
.hero-video-overlay {
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(to bottom,
      rgba(6,6,7,0.55) 0%,
      rgba(6,6,7,0.35) 40%,
      rgba(6,6,7,0.55) 70%,
      rgba(6,6,7,0.85) 100%
    ),
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(13,31,92,0.22) 0%, transparent 70%);
  pointer-events:none;
}
.hero-orb { position:absolute; border-radius:50%; pointer-events:none; z-index:2 }
.hero-orb-1 {
  width:700px; height:700px;
  top:50%; left:50%; transform:translate(-50%,-50%);
  background:radial-gradient(circle,rgba(13,31,92,0.18) 0%,transparent 70%);
}
.hero-orb-2 {
  width:400px; height:400px;
  top:30%; left:50%; transform:translate(-50%,-50%);
  background:radial-gradient(circle,rgba(200,168,75,0.06) 0%,transparent 65%);
}
.hero-grid {
  position:absolute; inset:0;
  z-index:2;
  background-image:
    linear-gradient(rgba(200,168,75,0.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(200,168,75,0.03) 1px,transparent 1px);
  background-size:80px 80px;
  -webkit-mask-image:radial-gradient(ellipse 75% 65% at 50% 50%,black,transparent);
  mask-image:radial-gradient(ellipse 75% 65% at 50% 50%,black,transparent);
}
.hero-corner { position:absolute; opacity:0.2; z-index:3 }
.hero-corner.tl { top:5rem; left:3rem }
.hero-corner.tr { top:5rem; right:3rem; transform:scaleX(-1) }
.hero-corner.bl { bottom:3rem; left:3rem; transform:scaleY(-1) }
.hero-corner.br { bottom:3rem; right:3rem; transform:scale(-1,-1) }

.hero-logo {
  width:200px; height:auto;
  position:relative; z-index:2;
  margin-bottom:2.5rem;
  animation:floatY 5s ease-in-out infinite;
  filter:drop-shadow(0 0 40px rgba(200,168,75,0.28)) drop-shadow(0 0 80px rgba(200,168,75,0.1));
}
.hero-eyebrow {
  font-family:'Jost',sans-serif;
  font-size:0.62rem; font-weight:400;
  letter-spacing:0.45em; text-transform:uppercase;
  color:var(--gold);
  position:relative; z-index:2;
  margin-bottom:1rem;
  display:flex; align-items:center; justify-content:center; gap:1.2rem;
}
.hero-eyebrow::before,.hero-eyebrow::after {
  content:''; display:block;
  width:40px; height:1px;
  background:linear-gradient(90deg,transparent,var(--gold));
}
.hero-eyebrow::after { background:linear-gradient(90deg,var(--gold),transparent) }

.hero-title {
  font-family:'Cinzel Decorative',serif;
  font-size:clamp(1.7rem,3.8vw,3.6rem);
  font-weight:700; line-height:1.12; letter-spacing:0.06em;
  padding:0 0.5em; position:relative; z-index:2; margin-bottom:0.1em; overflow:visible;
}
.hero-title span { display:block; overflow:visible }
.hero-title .line1 {
  display:block; padding-right:0.4em;
  background:linear-gradient(135deg,#fff 0%,var(--cream) 40%,var(--gold-pale) 60%,var(--gold) 80%,var(--gold-light) 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  background-size:200% auto; animation:shimmer 6s linear infinite;
}
.hero-title .line2 {
  display:block;
  background:linear-gradient(135deg,var(--gold) 0%,var(--gold-light) 40%,#fff 70%,var(--gold-pale) 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  background-size:200% auto; animation:shimmer 6s linear infinite reverse;
}
.hero-rule {
  display:flex; align-items:center; justify-content:center;
  gap:1rem; margin:0.9rem auto 0.8rem; position:relative; z-index:2;
}
.hero-rule-line { width:80px; height:1px; background:linear-gradient(90deg,transparent,var(--gold)) }
.hero-rule-line.r { background:linear-gradient(90deg,var(--gold),transparent) }
.hero-rule-diamond { width:7px; height:7px; border:1px solid var(--gold); transform:rotate(45deg); background:var(--gold) }

.hero-services {
  font-family:'Cinzel',serif;
  font-size:clamp(0.6rem,1.1vw,0.78rem); font-weight:400;
  letter-spacing:0.38em; color:#A08840;
  margin-bottom:0.8rem; position:relative; z-index:2;
}
.hero-tagline {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(1.1rem,2vw,1.5rem); font-weight:300; font-style:italic;
  color:#C0B8A8; margin-bottom:2.5rem; position:relative; z-index:2;
}
.hero-btns { display:flex; gap:1.4rem; justify-content:center; flex-wrap:wrap; position:relative; z-index:2 }

.btn-gold {
  display:inline-flex; align-items:center; gap:0.8rem;
  background:linear-gradient(135deg,var(--gold-dim) 0%,var(--gold) 50%,var(--gold-light) 100%);
  background-size:200% auto; color:var(--dark);
  font-family:'Jost',sans-serif; font-size:0.68rem; font-weight:500;
  letter-spacing:0.22em; text-transform:uppercase;
  padding:1rem 2.6rem; text-decoration:none;
  transition:background-position 0.4s ease,transform 0.3s ease,box-shadow 0.3s ease;
  border:none; cursor:pointer;
}
.btn-gold:hover { background-position:right center; transform:translateY(-3px); box-shadow:0 12px 40px rgba(200,168,75,0.35) }
.btn-outline {
  display:inline-flex; align-items:center; gap:0.8rem;
  background:transparent; color:var(--cream);
  font-family:'Jost',sans-serif; font-size:0.68rem; font-weight:400;
  letter-spacing:0.22em; text-transform:uppercase;
  padding:1rem 2.6rem; text-decoration:none;
  border:1px solid rgba(200,168,75,0.3); transition:all 0.35s;
}
.btn-outline:hover { border-color:var(--gold); color:var(--gold); transform:translateY(-3px) }

.scroll-indicator {
  position:absolute; bottom:3rem; left:50%; transform:translateX(-50%); z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:10px;
}
.scroll-indicator span { font-size:0.56rem; letter-spacing:0.35em; text-transform:uppercase; color:#7A7870; writing-mode:vertical-lr }
.scroll-track { width:1px; height:56px; background:rgba(200,168,75,0.15); position:relative; overflow:hidden }
.scroll-track::after {
  content:''; position:absolute; top:0; left:0; right:0; height:40%; background:var(--gold);
  animation:scrollTrack 1.8s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════
   SECTION CHROME
   ═══════════════════════════════════════════════════════════ */
section { position:relative; z-index:1 }
.s-inner { max-width:1200px; margin:0 auto; padding:7rem 3rem }

.s-eyebrow {
  font-family:'Jost',sans-serif;
  font-size:0.58rem; font-weight:400; letter-spacing:0.4em; text-transform:uppercase;
  color:var(--gold); margin-bottom:1.2rem;
  display:flex; align-items:center; gap:1rem;
}
.s-eyebrow::before { content:''; display:block; width:28px; height:1px; background:var(--gold) }

.s-title {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2rem,4vw,3.4rem); font-weight:600; line-height:1.12;
  color:#fff; margin-bottom:0.4em;
}
.s-title em { font-style:italic; color:var(--gold) }

.s-rule { display:flex; align-items:center; gap:0.6rem; margin:1.8rem 0 2.6rem }
.s-rule-line  { width:48px; height:1px; background:var(--gold) }
.s-rule-dot   { width:5px; height:5px; border-radius:50%; background:var(--gold) }
.s-rule-line2 { width:16px; height:1px; background:var(--gold-dim) }

.s-body { font-family:'Jost',sans-serif; font-size:0.96rem; font-weight:300; line-height:1.9; color:#B0A898; max-width:560px; margin-bottom:1rem }

/* ═══════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════ */
#services { background:var(--dark2) }
#services::before {
  content:''; display:block; height:1px;
  background:linear-gradient(90deg,transparent 0%,var(--gold-dim) 20%,var(--gold) 50%,var(--gold-dim) 80%,transparent 100%);
}
.svc-grid {
  display:grid; grid-template-columns:repeat(2,1fr);
  gap:1px; margin-top:4.5rem;
  background:rgba(200,168,75,0.1); border:1px solid rgba(200,168,75,0.1);
}
.svc-card {
  background:var(--dark2); padding:3.5rem 3rem;
  position:relative; overflow:hidden; transition:background 0.4s;
}
.svc-card::after {
  content:''; position:absolute; top:0; left:0;
  width:3px; height:0;
  background:linear-gradient(to bottom,var(--gold),transparent);
  transition:height 0.5s ease;
}
.svc-card:hover { background:var(--dark3) }
.svc-card:hover::after { height:100% }
.svc-card.hero-svc { background:var(--dark3) }
.svc-card.hero-svc::after { height:100% }

.svc-badge {
    position:absolute; top:1.8rem; left:3rem;
  display:inline-block; font-family:'Jost',sans-serif;
  font-size:0.58rem; font-weight:500; letter-spacing:0.25em; text-transform:uppercase;
  color:var(--dark); background:var(--gold); padding:4px 14px; margin-bottom:2rem;
}
.svc-numeral {
  font-family:'Cormorant Garamond',serif; font-size:5rem; font-weight:300;
  color:rgba(200,168,75,0.07); line-height:1; margin-bottom:0.6rem;
  transition:color 0.4s; font-style:italic;
}
.svc-card:hover .svc-numeral { color:rgba(200,168,75,0.13) }
.svc-icon-wrap {
  width:52px; height:52px; margin-bottom:1.8rem;
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(200,168,75,0.2); position:relative;
}
.svc-icon-wrap::before {
  content:''; position:absolute; top:-1px; left:-1px; width:10px; height:10px;
  border-top:2px solid var(--gold); border-left:2px solid var(--gold);
}
.svc-icon-wrap::after {
  content:''; position:absolute; bottom:-1px; right:-1px; width:10px; height:10px;
  border-bottom:2px solid var(--gold); border-right:2px solid var(--gold);
}
.svc-icon-wrap svg { width:26px; height:26px; stroke:var(--gold); fill:none; stroke-width:1.4; stroke-linecap:round; stroke-linejoin:round }
.svc-sep { width:32px; height:1px; background:var(--gold); margin:1.4rem 0; transition:width 0.4s }
.svc-card:hover .svc-sep { width:64px }
.svc-name { font-family:'Cinzel',serif; font-size:1.05rem; font-weight:600; color:#fff; margin-bottom:1rem; letter-spacing:0.06em }
.svc-desc { font-family:'Jost',sans-serif; font-size:0.87rem; font-weight:300; color:#B0A898; line-height:1.85 }

/* ═══════════════════════════════════════════════════════════
   WHY / STATS
   ═══════════════════════════════════════════════════════════ */
#why { background:var(--dark) }
.why-grid { display:grid; grid-template-columns:1fr 1fr; gap:7rem; align-items:center }
.why-pts { margin-top:3rem; display:flex; flex-direction:column; gap:2.4rem }
.why-pt { display:flex; gap:1.8rem; align-items:flex-start }
.why-pt-num {
  font-family:'Cormorant Garamond',serif; font-size:2.2rem; font-weight:300; font-style:italic;
  color:rgba(200,168,75,0.25); line-height:1; flex-shrink:0; min-width:2rem; transition:color 0.4s;
}
.why-pt:hover .why-pt-num { color:var(--gold) }
.why-pt-body h4 { font-family:'Cinzel',serif; font-size:0.82rem; font-weight:600; letter-spacing:0.08em; color:#fff; margin-bottom:0.5rem }
.why-pt-body p { font-size:0.87rem; font-weight:300; color:#B0A898; line-height:1.85 }
.stats-panel {
  display:grid; grid-template-columns:1fr 1fr; gap:1px;
  background:rgba(200,168,75,0.12); border:1px solid rgba(200,168,75,0.12); position:relative;
}
.stats-panel::before {
  content:'✦'; position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%); font-size:1.2rem; color:var(--gold);
  background:var(--dark); padding:0.5rem; z-index:2; line-height:1; opacity:0.5;
}
.stat { background:var(--dark); padding:3rem 2rem; text-align:center }
.stat-val { font-family:'Cormorant Garamond',serif; font-size:3.2rem; font-weight:600; color:var(--gold); display:block; line-height:1; margin-bottom:0.6rem }
.stat-lbl { font-family:'Jost',sans-serif; font-size:0.6rem; font-weight:400; letter-spacing:0.25em; text-transform:uppercase; color:#8A8890; display:block }

/* ═══════════════════════════════════════════════════════════
   PORTFOLIO / GALLERY
   ═══════════════════════════════════════════════════════════ */
#portfolio { background:var(--dark2) }
#portfolio::before {
  content:''; display:block; height:1px;
  background:linear-gradient(90deg,transparent,var(--gold-dim) 20%,var(--gold) 50%,var(--gold-dim) 80%,transparent);
}

/* ── Gallery Grid ── */
.gallery-grid {
  margin-top:4rem;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:3px;
}
.gallery-item {
  position:relative; overflow:hidden;
  aspect-ratio:1;
  background:var(--dark3);
  cursor:pointer;
}
.gallery-item.wide { grid-column:span 2; aspect-ratio:2/1 }
.gallery-item.tall { grid-row:span 2; aspect-ratio:1/2 }

.gallery-item img {
  width:100%; height:100%; object-fit:cover; display:block;
  transition:transform 0.6s ease;
}
.gallery-item:hover img { transform:scale(1.06) }

/* Placeholder (no image yet) */
.gallery-ph {
  width:100%; height:100%;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:1rem;
  position:relative; overflow:hidden;
}
.gallery-ph::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg, var(--ph-a, #0C0C0E) 0%, var(--ph-b, #1A1A1E) 100%);
}
.gallery-ph .ph-icon { position:relative; z-index:1; stroke:var(--gold); fill:none; stroke-width:1.2; opacity:0.35; width:32px; height:32px; stroke-linecap:round; stroke-linejoin:round }
.gallery-ph .ph-label { position:relative; z-index:1; font-family:'Jost',sans-serif; font-size:0.58rem; font-weight:400; letter-spacing:0.28em; text-transform:uppercase; color:#9A9590 }

/* Overlay on hover */
.gallery-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(6,6,7,0.85) 0%, transparent 60%);
  opacity:0; transition:opacity 0.4s;
  display:flex; flex-direction:column; align-items:flex-start; justify-content:flex-end;
  padding:1.2rem 1.4rem; gap:0.3rem;
}
.gallery-item:hover .gallery-overlay { opacity:1 }
.gallery-overlay-cat {
  font-family:'Jost',sans-serif; font-size:0.54rem; font-weight:400;
  letter-spacing:0.3em; text-transform:uppercase; color:var(--gold);
}
.gallery-overlay-title {
  font-family:'Cinzel',serif; font-size:0.78rem; font-weight:600;
  color:#fff; letter-spacing:0.06em;
}

/* Corner marks */
.gallery-corner { position:absolute; width:16px; height:16px; opacity:0; transition:opacity 0.4s }
.gallery-item:hover .gallery-corner { opacity:0.5 }
.gallery-corner.tl { top:10px; left:10px; border-top:1px solid var(--gold); border-left:1px solid var(--gold) }
.gallery-corner.br { bottom:10px; right:10px; border-bottom:1px solid var(--gold); border-right:1px solid var(--gold) }

/* Hidden items before "view more" */
.gallery-item.gallery-hidden { display:none }
.gallery-item.gallery-visible { display:block }

/* View More button row */
.gallery-view-more {
  margin-top:2rem;
  display:flex; align-items:center; justify-content:center; gap:1.4rem;
}
.gallery-count {
  font-family:'Jost',sans-serif; font-size:0.65rem; font-weight:300;
  letter-spacing:0.22em; text-transform:uppercase; color:var(--cream-faint);
}

/* Legacy port CTA */
.port-cta { margin-top:3rem; display:flex; gap:1.2rem; flex-wrap:wrap }
.port-note {
  margin-top:1.2rem; font-family:'Cormorant Garamond',serif;
  font-size:1rem; font-style:italic; color:#9A9590;
}

/* ── Lightbox ── */
#gallery-lightbox {
  display:none; position:fixed; inset:0; z-index:8000;
  background:rgba(4,4,5,0.95); backdrop-filter:blur(18px);
  align-items:center; justify-content:center;
  flex-direction:column; gap:1.4rem;
}
#gallery-lightbox.open { display:flex }
#gallery-lightbox img {
  max-width:90vw; max-height:80vh; object-fit:contain;
  border:1px solid rgba(200,168,75,0.15);
}
#gallery-lb-info {
  text-align:center;
}
#gallery-lb-info .lb-cat {
  font-family:'Jost',sans-serif; font-size:0.58rem; letter-spacing:0.35em; text-transform:uppercase; color:var(--gold);
}
#gallery-lb-info .lb-title {
  font-family:'Cinzel',serif; font-size:0.95rem; font-weight:600; color:#fff; margin-top:0.3rem;
}
.lb-nav {
  position:absolute; top:50%; transform:translateY(-50%);
  background:none; border:1px solid rgba(200,168,75,0.22); color:var(--gold);
  font-size:1.2rem; cursor:pointer; padding:0.6rem 1rem; transition:all 0.22s;
}
.lb-nav:hover { border-color:var(--gold); background:rgba(200,168,75,0.08) }
.lb-nav.prev { left:2rem }
.lb-nav.next { right:2rem }
.lb-close {
  position:absolute; top:1.4rem; right:1.4rem;
  background:none; border:1px solid rgba(200,168,75,0.22); color:var(--cream-faint);
  font-size:1rem; cursor:pointer; padding:0.35rem 0.85rem; transition:all 0.22s;
}
.lb-close:hover { border-color:var(--gold); color:var(--gold) }

/* ═══════════════════════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════════════════════ */
#process { background:var(--dark) }
.process-row {
  margin-top:5rem; display:grid; grid-template-columns:repeat(4,1fr); position:relative;
}
.process-row::before {
  content:''; position:absolute; top:28px; left:calc(12.5%); right:calc(12.5%);
  height:1px; background:linear-gradient(90deg,transparent,var(--gold-dim) 10%,var(--gold-dim) 90%,transparent);
}
.proc { padding:0 1.5rem; text-align:center }
.proc-circle {
  width:56px; height:56px; border-radius:50%;
  border:1px solid rgba(200,168,75,0.35); background:var(--dark);
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 2rem; position:relative; z-index:1; transition:border-color 0.3s,background 0.3s;
}
.proc:hover .proc-circle { border-color:var(--gold); background:var(--dark3) }
.proc-circle-num { font-family:'Cormorant Garamond',serif; font-size:1.1rem; font-weight:600; font-style:italic; color:var(--gold) }
.proc h4 { font-family:'Cinzel',serif; font-size:0.78rem; font-weight:600; letter-spacing:0.1em; color:#fff; margin-bottom:0.8rem }
.proc p { font-size:0.82rem; font-weight:300; color:#B0A898; line-height:1.8 }

/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */
#contact { background:var(--dark2); border-top:1px solid rgba(200,168,75,0.1); border-bottom:1px solid rgba(200,168,75,0.1) }
.contact-inner { max-width:860px; margin:0 auto; padding:8rem 3rem; text-align:center }
.contact-pre { font-family:'Cormorant Garamond',serif; font-size:1rem; font-style:italic; color:#B09A60; letter-spacing:0.06em; margin-bottom:1rem }
.contact-h { font-family:'Cinzel Decorative',serif; font-size:clamp(1.8rem,3.5vw,3rem); font-weight:400; color:#fff; line-height:1.2; margin-bottom:0.3em }
.contact-h span {
  background:linear-gradient(135deg,var(--gold) 0%,var(--gold-light) 50%,var(--gold-pale) 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.contact-body { font-family:'Jost',sans-serif; font-size:0.95rem; font-weight:300; color:#B0A898; line-height:1.9; max-width:500px; margin:2rem auto 3.5rem }

.wa-btn {
  display:inline-flex; align-items:center; gap:1.2rem; padding:1.2rem 3.5rem;
  background:linear-gradient(135deg,#128C7E,#25D366 50%,#075E54); background-size:200% auto;
  color:#fff; font-family:'Jost',sans-serif; font-size:0.78rem; font-weight:500;
  letter-spacing:0.18em; text-transform:uppercase; text-decoration:none;
  transition:background-position 0.4s,transform 0.3s,box-shadow 0.3s; margin-bottom:4rem;
}
.wa-btn:hover { background-position:right center; transform:translateY(-3px); box-shadow:0 14px 45px rgba(37,211,102,0.3) }
.wa-btn svg { width:22px; height:22px; fill:#fff; flex-shrink:0 }

.contact-cards { display:flex; gap:1.2rem; justify-content:center; flex-wrap:wrap }
.c-card {
  background:var(--dark3); border:1px solid rgba(200,168,75,0.12);
  padding:2rem 2.5rem; text-align:center; text-decoration:none;
  transition:all 0.35s; min-width:190px; position:relative;
}
.c-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent); opacity:0; transition:opacity 0.35s;
}
.c-card:hover { border-color:rgba(200,168,75,0.35); background:var(--dark4); transform:translateY(-4px) }
.c-card:hover::before { opacity:1 }
.c-card svg { width:28px; height:28px; stroke:var(--gold); fill:none; stroke-width:1.3; stroke-linecap:round; stroke-linejoin:round; display:block; margin:0 auto 1rem }
.c-card-name { font-family:'Cinzel',serif; font-size:0.7rem; font-weight:600; letter-spacing:0.18em; text-transform:uppercase; color:var(--gold); margin-bottom:0.4rem; display:block }
.c-card-val { font-size:0.8rem; color:#B0A898; font-weight:300 }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
footer { background:var(--dark); padding:4rem 3rem 3rem; text-align:center }
.footer-logo img { height:52px; opacity:0.55; margin-bottom:2rem; filter:grayscale(0.3) }
.footer-nav { display:flex; gap:2.5rem; justify-content:center; list-style:none; margin-bottom:2rem; flex-wrap:wrap }
.footer-nav a { color:#9A9488; text-decoration:none; font-size:0.65rem; font-weight:400; letter-spacing:0.22em; text-transform:uppercase; transition:color 0.3s }
.footer-nav a:hover { color:var(--gold) }
.footer-orn { display:flex; align-items:center; justify-content:center; gap:1rem; margin-bottom:1.8rem; opacity:0.3 }
.footer-orn-line { width:60px; height:1px; background:var(--gold) }
.footer-orn-symbol { font-family:'Cormorant Garamond',serif; font-size:1rem; color:var(--gold) }
.footer-copy { font-size:0.68rem; font-weight:300; color:#7A7670; letter-spacing:0.08em }
.footer-copy span { color:rgba(200,168,75,0.6) }

/* ═══════════════════════════════════════════════════════════
   FADE IN
   ═══════════════════════════════════════════════════════════ */
.fi { opacity:0; transform:translateY(24px); transition:opacity 0.75s ease,transform 0.75s ease }
.fi.on { opacity:1; transform:translateY(0) }
.fi:nth-child(2) { transition-delay:0.1s }
.fi:nth-child(3) { transition-delay:0.2s }
.fi:nth-child(4) { transition-delay:0.3s }

/* ═══════════════════════════════════════════════════════════
   GEM STUDIO — PASSWORD MODAL
   ═══════════════════════════════════════════════════════════ */
#gs-pw-modal { display:none; position:fixed; inset:0; z-index:9100; background:rgba(4,4,5,0.96); backdrop-filter:blur(18px); align-items:center; justify-content:center }
#gs-pw-modal.open { display:flex }
.gs-pw-box { background:var(--dark2); border:1px solid rgba(200,168,75,0.22); padding:2.8rem 2.4rem; width:380px; max-width:92%; text-align:center; position:relative }
.gs-pw-gem { font-size:2rem; color:var(--gold); margin-bottom:1.2rem; display:block }
.gs-pw-title { font-family:'Cinzel',serif; font-size:.9rem; font-weight:600; letter-spacing:.28em; color:var(--gold); margin-bottom:.3rem }
.gs-pw-sub { font-family:'Jost',sans-serif; font-size:.72rem; font-weight:300; color:var(--cream-faint); letter-spacing:.08em; margin-bottom:1.8rem; line-height:1.6 }
.gs-pw-inp { width:100%; background:var(--dark3); border:1px solid rgba(200,168,75,0.15); color:var(--cream); font-family:'Jost',sans-serif; font-size:1.1rem; font-weight:300; padding:.8rem 1rem; outline:none; text-align:center; letter-spacing:.3em; transition:border-color .22s; margin-bottom:.5rem }
.gs-pw-inp:focus { border-color:rgba(200,168,75,0.45) }
.gs-pw-err { font-family:'Jost',sans-serif; font-size:.68rem; color:#c0614a; letter-spacing:.06em; min-height:1rem; margin-bottom:.9rem }
.gs-pw-btn { width:100%; background:linear-gradient(135deg,var(--gold-dim),var(--gold) 50%,var(--gold-light)); background-size:200% auto; color:var(--dark); border:none; font-family:'Jost',sans-serif; font-size:.65rem; font-weight:500; letter-spacing:.22em; text-transform:uppercase; padding:.82rem; cursor:pointer; transition:all .28s }
.gs-pw-btn:hover { background-position:right center; transform:translateY(-1px); box-shadow:0 6px 22px rgba(200,168,75,0.28) }
.gs-pw-close { position:absolute; top:.8rem; right:.9rem; background:none; border:none; color:var(--cream-faint); font-size:1rem; cursor:pointer; padding:.2rem .5rem; transition:color .18s }
.gs-pw-close:hover { color:var(--gold) }
@keyframes gspwshake { 0%,100%{transform:translateX(0)} 20%{transform:translateX(-8px)} 40%{transform:translateX(8px)} 60%{transform:translateX(-5px)} 80%{transform:translateX(5px)} }

/* ═══════════════════════════════════════════════════════════
   GEM STUDIO — OVERLAY
   ═══════════════════════════════════════════════════════════ */
#gs-ov { display:none; position:fixed; inset:0; z-index:9000; background:rgba(4,4,5,0.97); backdrop-filter:blur(14px); flex-direction:column; overflow:hidden }
#gs-ov.open { display:flex }
.gs-bar { display:flex; align-items:center; justify-content:space-between; padding:0.9rem 2.2rem; border-bottom:1px solid rgba(200,168,75,0.14); background:rgba(6,6,7,0.98); flex-shrink:0 }
.gs-bname { font-family:'Cinzel',serif; font-size:0.78rem; font-weight:600; letter-spacing:0.28em; color:var(--gold) }
.gs-bsub { font-family:'Jost',sans-serif; font-size:0.54rem; letter-spacing:0.28em; color:var(--cream-faint); margin-top:1px }
.gs-xbtn { background:none; border:1px solid rgba(200,168,75,0.22); color:var(--cream-faint); font-size:1rem; cursor:pointer; padding:0.35rem 0.85rem; transition:all 0.22s; font-family:inherit }
.gs-xbtn:hover { border-color:var(--gold); color:var(--gold) }
.gs-tabs { display:flex; border-bottom:1px solid rgba(200,168,75,0.1); flex-shrink:0; overflow-x:auto }
.gs-tab { background:none; border:none; border-bottom:2px solid transparent; color:var(--cream-faint); font-family:'Jost',sans-serif; font-size:0.6rem; font-weight:400; letter-spacing:0.2em; text-transform:uppercase; padding:0.9rem 1.6rem; cursor:pointer; transition:all 0.2s; white-space:nowrap }
.gs-tab:hover { color:var(--cream) }
.gs-tab.on { color:var(--gold); border-bottom-color:var(--gold) }
.gs-body { flex:1; overflow-y:auto; padding:2.2rem 2.8rem 4rem }
.gs-pnl { display:none; animation:gsfup .25s ease }
.gs-pnl.on { display:block }
@keyframes gsfup { from{opacity:0;transform:translateY(7px)} to{opacity:1;transform:translateY(0)} }
.gs-h2 { font-family:'Cormorant Garamond',serif; font-size:1.9rem; font-weight:300; color:#fff; margin-bottom:0.25rem }
.gs-h2 em { color:var(--gold); font-style:italic }
.gs-sub { font-family:'Jost',sans-serif; font-size:0.83rem; font-weight:300; color:#B0A898; line-height:1.8; margin-bottom:1.8rem; max-width:560px }
.gs-hr { display:flex; align-items:center; gap:0.5rem; margin:1rem 0 1.8rem }
.gs-hr-l { width:36px; height:1px; background:var(--gold) }
.gs-hr-d { width:4px; height:4px; border-radius:50%; background:var(--gold) }
.gs-hr-l2 { width:12px; height:1px; background:var(--gold-dim) }
.gs-2c { display:grid; grid-template-columns:1fr 1fr; gap:2rem }
.gs-lbl { display:block; font-family:'Jost',sans-serif; font-size:0.57rem; font-weight:400; letter-spacing:0.28em; text-transform:uppercase; color:var(--cream-faint); margin-bottom:0.5rem }
.gs-inp,.gs-sel,.gs-ta { width:100%; background:var(--dark3); border:1px solid rgba(200,168,75,0.12); color:var(--cream); font-family:'Jost',sans-serif; font-size:0.84rem; font-weight:300; padding:0.65rem 0.85rem; outline:none; transition:border-color 0.22s }
.gs-inp:focus,.gs-sel:focus,.gs-ta:focus { border-color:rgba(200,168,75,0.38) }
.gs-sel option { background:#131316 }
.gs-ta { resize:vertical; min-height:74px; line-height:1.65 }
.gs-fg { margin-bottom:0.9rem }
.gs-2g { display:grid; grid-template-columns:1fr 1fr; gap:0.8rem }
.gs-btn { display:inline-flex; align-items:center; gap:0.5rem; padding:0.68rem 1.5rem; border:none; cursor:pointer; font-family:'Jost',sans-serif; font-size:0.65rem; font-weight:400; letter-spacing:0.18em; text-transform:uppercase; transition:all 0.28s }
.gs-gold { background:linear-gradient(135deg,var(--gold-dim),var(--gold) 50%,var(--gold-light)); background-size:200% auto; color:var(--dark) }
.gs-gold:hover { background-position:right center; transform:translateY(-2px); box-shadow:0 7px 24px rgba(200,168,75,0.28) }
.gs-gold:disabled { opacity:.4; cursor:default; pointer-events:none }
.gs-out { background:transparent; border:1px solid rgba(200,168,75,0.28); color:var(--gold) }
.gs-out:hover { border-color:var(--gold); transform:translateY(-2px) }
.gs-dim { background:var(--dark3); border:1px solid rgba(200,168,75,0.1); color:#B0A898 }
.gs-dim:hover { border-color:rgba(200,168,75,0.22); color:var(--cream) }
.gs-box { background:var(--dark3); border:1px solid rgba(200,168,75,0.1); padding:1.2rem; font-family:'Jost',sans-serif; font-size:0.83rem; font-weight:300; color:#B0A898; line-height:1.85; min-height:90px; white-space:pre-wrap }
.gs-upz { border:1px dashed rgba(200,168,75,0.2); padding:1.8rem; text-align:center; cursor:pointer; transition:all 0.22s; background:var(--dark3); position:relative }
.gs-upz:hover { border-color:var(--gold); background:var(--dark2) }
.gs-upz input { position:absolute; inset:0; opacity:0; cursor:pointer; width:100%; height:100% }
.gs-upz-ic { font-size:1.8rem; color:var(--gold-dim); margin-bottom:0.5rem }
.gs-upz strong { display:block; font-size:0.78rem; font-weight:400; color:#B0A898; margin-bottom:3px }
.gs-upz p { font-size:0.7rem; color:var(--cream-faint) }
.gs-imgb { overflow:hidden; background:repeating-conic-gradient(#1a1a1a 0% 25%,#222 0% 50%) 0 0/14px 14px; display:flex; align-items:center; justify-content:center }
.gs-imgb img { width:100%; height:100%; object-fit:contain }
.gs-ld { display:flex; align-items:center; gap:0.6rem; color:var(--cream-faint); font-size:0.78rem; padding:0.7rem 0 }
.gs-sp { width:14px; height:14px; border:1.5px solid rgba(200,168,75,0.2); border-top-color:var(--gold); border-radius:50%; animation:gsspin .65s linear infinite; flex-shrink:0 }
@keyframes gsspin { to{transform:rotate(360deg)} }
.gs-sw-row { display:flex; gap:5px; flex-wrap:wrap; align-items:center; margin-top:7px }
.gs-sw { width:24px; height:24px; border:2px solid transparent; cursor:pointer; transition:border-color .18s; flex-shrink:0 }
.gs-sw.on { border-color:var(--gold) }
.gs-sw-tr { background:repeating-conic-gradient(#444 0% 25%,#666 0% 50%) 0 0/7px 7px }
.gs-card { background:var(--dark2); border:1px solid rgba(200,168,75,0.1); padding:1.4rem }
.gs-stat-row { display:grid; grid-template-columns:repeat(3,1fr); gap:0.9rem; margin-bottom:1.8rem }
.gs-stat { background:var(--dark2); border:1px solid rgba(200,168,75,0.1); padding:1.2rem; text-align:center }
.gs-stat-n { font-family:'Cormorant Garamond',serif; font-size:2.2rem; font-weight:300; color:var(--gold); display:block; line-height:1 }
.gs-stat-l { font-size:0.58rem; letter-spacing:0.22em; text-transform:uppercase; color:var(--cream-faint); display:block; margin-top:0.35rem }
.gs-tag { display:inline-block; padding:2px 9px; font-size:0.58rem; letter-spacing:0.12em; text-transform:uppercase; border:1px solid rgba(200,168,75,0.28); color:var(--gold-dim) }
.gs-ci { background:var(--dark2); border:1px solid rgba(200,168,75,0.08); transition:border-color .22s }
.gs-ci:hover { border-color:rgba(200,168,75,0.22) }
.gs-ci img { width:100%; aspect-ratio:1; object-fit:cover; display:block }
.gs-ci-ph { width:100%; aspect-ratio:1; background:var(--dark3); display:flex; align-items:center; justify-content:center; font-size:1.8rem; color:var(--gold-dim) }
.gs-ci-info { padding:0.9rem 1rem 1.1rem }
.gs-ci-nm { font-family:'Cinzel',serif; font-size:0.7rem; font-weight:600; letter-spacing:0.08em; color:#fff; margin-bottom:0.25rem }
.gs-ci-pr { font-size:0.78rem; color:var(--gold) }
.gs-ci-mt { font-size:0.68rem; color:var(--cream-faint) }
.gs-sopt { border:1px solid rgba(200,168,75,0.1); padding:0.9rem 0.5rem; cursor:pointer; text-align:center; transition:all .2s; background:var(--dark2) }
.gs-sopt:hover { border-color:rgba(200,168,75,0.28) }
.gs-sopt.on { border-color:var(--gold); background:var(--dark3) }
.gs-sopt-ic { font-size:1.3rem; margin-bottom:0.35rem; color:var(--gold) }
.gs-sopt-nm { font-size:0.62rem; letter-spacing:0.1em; text-transform:uppercase; color:#B0A898 }
.gs-sopt-ds { font-size:0.58rem; color:var(--cream-faint); margin-top:2px }
.gs-t2row { display:flex; border-bottom:1px solid rgba(200,168,75,0.1); margin-bottom:0.9rem }
.gs-t2 { background:none; border:none; border-bottom:2px solid transparent; color:var(--cream-faint); font-family:'Jost',sans-serif; font-size:0.58rem; font-weight:400; letter-spacing:0.18em; text-transform:uppercase; padding:0.65rem 1.1rem; cursor:pointer; transition:all .18s }
.gs-t2.on { color:var(--gold); border-bottom-color:var(--gold) }
.gs-t2:hover { color:var(--cream) }
.gs-div { border:none; border-top:1px solid rgba(200,168,75,0.1); margin:1.4rem 0 }
.gs-empty { text-align:center; padding:2.8rem 1rem; color:var(--cream-faint) }
.gs-empty-ic { font-size:2.2rem; margin-bottom:0.7rem; color:var(--gold-dim) }
.gs-empty p { font-size:0.78rem }
#gs-toast { position:fixed; bottom:1.4rem; right:1.4rem; z-index:9999; background:var(--dark2); border:1px solid rgba(200,168,75,0.32); color:var(--cream); padding:0.65rem 1.1rem; font-family:'Jost',sans-serif; font-size:0.75rem; letter-spacing:0.06em; transform:translateY(60px); opacity:0; transition:all .26s; pointer-events:none }
#gs-toast.on { transform:translateY(0); opacity:1 }
#gs-pm { display:none; position:fixed; inset:0; z-index:9500; background:rgba(4,4,5,0.9); align-items:center; justify-content:center; padding:1rem }
#gs-pm.open { display:flex }
.gs-mbox { background:var(--dark2); border:1px solid rgba(200,168,75,0.18); padding:1.8rem; width:440px; max-width:100%; max-height:90vh; overflow-y:auto; position:relative }
.gs-mclose { position:absolute; top:0.9rem; right:0.9rem; background:none; border:1px solid rgba(200,168,75,0.18); color:var(--cream-faint); font-size:1rem; cursor:pointer; padding:0.2rem 0.6rem; transition:all .2s }
.gs-mclose:hover { border-color:var(--gold); color:var(--gold) }

/* ── API Key notice banner ── */
.gs-api-notice {
  background:rgba(200,168,75,0.06); border:1px solid rgba(200,168,75,0.18);
  padding:0.8rem 1.2rem; margin-bottom:1.8rem;
  display:flex; align-items:center; gap:1rem; flex-wrap:wrap;
}
.gs-api-notice span { font-family:'Jost',sans-serif; font-size:0.72rem; color:#B0A898; line-height:1.6; flex:1 }
.gs-api-notice strong { color:var(--gold) }
.gs-api-key-row { display:flex; gap:0.7rem; align-items:center; margin-top:0.5rem; width:100% }
.gs-api-key-inp { flex:1; background:var(--dark3); border:1px solid rgba(200,168,75,0.15); color:var(--cream); font-family:'Jost',sans-serif; font-size:0.8rem; padding:0.55rem 0.85rem; outline:none; transition:border-color .22s }
.gs-api-key-inp:focus { border-color:rgba(200,168,75,0.4) }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media(max-width:900px) {
  nav { padding:1rem 1.5rem }
  .nav-links { display:none }
  .s-inner { padding:5rem 1.5rem }
  .svc-grid { grid-template-columns:1fr }
  .why-grid { grid-template-columns:1fr; gap:3rem }
  .process-row { grid-template-columns:1fr 1fr; gap:3rem }
  .process-row::before { display:none }
  .gallery-grid { grid-template-columns:1fr 1fr }
  .gallery-item.wide { grid-column:span 2 }
  .gallery-item.tall { grid-row:span 1; aspect-ratio:1 }
  .hero-corner { display:none }
  .gs-body { padding:1.4rem 1.1rem 3rem }
  .gs-2c { grid-template-columns:1fr }
  .gs-2g { grid-template-columns:1fr }
  .gs-tab { padding:.8rem .9rem }
  .lb-nav.prev { left:0.5rem }
  .lb-nav.next { right:0.5rem }
}
@media(max-width:560px) {
  .gallery-grid { grid-template-columns:1fr }
  .gallery-item.wide { grid-column:span 1; aspect-ratio:1 }
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
#testimonials {
  padding:8rem 0;
  position:relative;
  overflow:hidden;
}
#testimonials::before {
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(200,168,75,0.25),transparent);
}
#testimonials::after {
  content:'';
  position:absolute;
  bottom:0; left:0; right:0;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(200,168,75,0.25),transparent);
}

/* Overflow wrapper for sliding */
#testimonials .s-inner {
  overflow: visible;
}

/* ── Track (flex row, slides) ── */
.testi-track {
  display: flex;
  gap: 0;
  margin: 3.5rem 0 2rem;
  overflow: hidden;
  border-radius: 0;
}

/* ── Individual card ── */
.testi-card {
  flex: 0 0 100%;
  background: linear-gradient(145deg, #0E0E12 0%, #131318 60%, #0C0C10 100%);
  border: 1px solid rgba(200,168,75,0.14);
  padding: 3rem 3.5rem;
  position: relative;
  transition: border-color 0.4s;
  overflow: hidden;
}
.testi-card::before {
  content:'';
  position:absolute;
  inset:0;
  background: radial-gradient(ellipse 60% 50% at 50% -10%, rgba(200,168,75,0.055) 0%, transparent 70%);
  pointer-events:none;
}
.testi-card::after {
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:2px;
  background:linear-gradient(90deg,transparent,rgba(200,168,75,0.0),transparent);
  transition: background 0.4s;
}

/* Featured card gets gold top border */
.testi-featured {
  border-color: rgba(200,168,75,0.32);
  background: linear-gradient(145deg, #100F0C 0%, #17160E 60%, #0E0D0A 100%);
}
.testi-featured::after {
  background: linear-gradient(90deg, transparent, rgba(200,168,75,0.55), transparent);
}

/* Opening quote mark */
.testi-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(200,168,75,0.18);
  margin-bottom: 1.2rem;
  display: block;
  letter-spacing: -0.02em;
}
.testi-featured .testi-quote-mark {
  color: rgba(200,168,75,0.35);
}

/* Review text */
.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 1.85;
  color: #D8D0C0;
  margin-bottom: 2.2rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.testi-featured .testi-text {
  color: #E8E0D0;
  font-size: 1.22rem;
}

/* Footer row */
.testi-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

/* Avatar circle */
.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(200,168,75,0.28);
  background: rgba(200,168,75,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-avatar span {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-dim);
}
.testi-avatar-gold {
  border-color: rgba(200,168,75,0.55);
  background: rgba(200,168,75,0.12);
}
.testi-avatar-gold span {
  color: var(--gold);
}

/* Name & role */
.testi-name {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--cream);
  margin-bottom: 2px;
}
.testi-role {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--cream-faint);
}

/* Stars */
.testi-stars {
  margin-left: auto;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

/* ── Controls ── */
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin-top: 1.8rem;
}

.testi-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(200,168,75,0.28);
  background: none;
  color: var(--gold-dim);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.testi-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,168,75,0.07);
}

.testi-dots {
  display: flex;
  gap: 0.5rem;
}
.testi-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid rgba(200,168,75,0.35);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}
.testi-dot.on {
  background: var(--gold);
  border-color: var(--gold);
  width: 22px;
  border-radius: 3px;
}

/* ── CTA block ── */
.testi-cta {
  text-align: center;
  margin-top: 3.5rem;
}
.testi-cta-orn {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 360px;
  margin: 0 auto 1.8rem;
}
.testi-cta-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--cream-dim);
  margin-bottom: 1.8rem;
  letter-spacing: 0.02em;
}

/* ── Responsive ── */
@media (max-width:768px) {
  .testi-card {
    padding: 2.2rem 1.8rem;
  }
  .testi-text {
    font-size: 1rem;
  }
  .testi-featured .testi-text {
    font-size: 1.05rem;
  }
  .testi-quote-mark {
    font-size: 3.5rem;
  }
}
/* ── ABOUT ── */
#about {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(200,168,75,0.02) 50%, var(--bg) 100%);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  margin-top: 3.5rem;
  align-items: start;
}

/* LEFT */
.about-left { position: sticky; top: 6rem; }

.about-img-wrap {
  position: relative;
  margin-bottom: 2rem;
}

.about-img-border {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(200,168,75,0.25);
  pointer-events: none;
}

.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: grayscale(15%);
  transition: filter 0.5s;
}

.about-img:hover { filter: grayscale(0%); }

.about-img-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(8,8,8,0.95) 0%, transparent 100%);
  color: rgba(200,168,75,0.8);
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 2rem 1.2rem 1rem;
}

.about-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(200,168,75,0.1);
}

.about-mini-stat {
  background: var(--bg);
  padding: 1rem 0.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.about-mini-val {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 600;
}

.about-mini-lbl {
  font-family: 'Jost', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(200,168,75,0.45);
}

/* RIGHT */
.about-right { padding-top: 0.5rem; }

.about-faith {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border-left: 2px solid rgba(200,168,75,0.35);
  padding-left: 1.2rem;
  margin-bottom: 2rem;
}

.about-faith-sym {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.about-faith-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(200,168,75,0.75);
  line-height: 1.7;
}

.about-body {
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(237,223,180,0.7);
  line-height: 1.85;
  margin-bottom: 1.4rem;
}

.about-body strong {
  color: rgba(200,168,75,0.9);
  font-weight: 500;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.about-tag {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(200,168,75,0.7);
  border: 1px solid rgba(200,168,75,0.2);
  padding: 0.35rem 0.8rem;
  transition: all 0.3s;
}

.about-tag:hover {
  background: rgba(200,168,75,0.08);
  color: var(--gold);
}

.about-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.5rem;
}

.about-tools-lbl {
  font-family: 'Jost', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(200,168,75,0.4);
  width: 100%;
  margin-bottom: 0.2rem;
}

.about-tool {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  color: rgba(237,223,180,0.5);
  background: rgba(200,168,75,0.05);
  border: 1px solid rgba(200,168,75,0.1);
  padding: 0.28rem 0.7rem;
}

/* AWARDS */
.about-awards {
  margin-top: 5rem;
  border-top: 1px solid rgba(200,168,75,0.1);
  padding-top: 3rem;
}

.about-awards-title {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: rgba(200,168,75,0.6);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  text-align: center;
}

.about-awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(200,168,75,0.08);
}

.about-award {
  background: var(--bg);
  padding: 1rem 1.2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(237,223,180,0.55);
  letter-spacing: 0.05em;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  transition: background 0.3s;
}

.about-award:hover { background: rgba(200,168,75,0.04); }

.about-award span {
  color: rgba(200,168,75,0.5);
  flex-shrink: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-left { position: static; }
  .about-img { aspect-ratio: 1/1; }
  .about-awards-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .about-awards-grid { grid-template-columns: 1fr; }
  .about-mini-stats { grid-template-columns: repeat(3,1fr); }
}
</style>