/* ============================================================
   ALIA INTERIOR — style.css  v4.0 · GILDED LIGHT
   Premium Luxury Interior Design Studio · Kolkata

   v4.0 direction: "Gilded Light" — the interface behaves like a
   perfectly lit showroom. Gold light follows the cursor across
   cards and buttons (a nod to the studio's own Lighting Design
   service); surfaces read as cut glass and brushed brass; and a
   few structural motifs borrow from architectural drafting —
   hairline blueprint grids and hand-drawn ground-lines — echoing
   the studio's Space Planning work.
   ============================================================ */

/* ── 1. CSS CUSTOM PROPERTIES ── */
:root {
  /* Deep luxury palette — obsidian with a warm plum undertone */
  --ink:          #0A0710;
  --ink-2:        #150F1C;
  --ink-3:        #211829;
  --cream:        #F6F1E7;
  --warm:         #FBFAF6;
  --white:        #FFFFFF;

  /* Gold system — richer, more jewel-like, higher contrast */
  --gold:         #C9962E;
  --gold-2:       #E9B85C;
  --gold-3:       #F6D999;
  --gold-4:       #8A6420;
  --gold-pale:    #F8EDD4;
  --gold-dim:     rgba(201, 150, 46, 0.12);
  --gold-border:  rgba(201, 150, 46, 0.22);
  --gold-border-2:rgba(201, 150, 46, 0.08);
  --gold-glow:    rgba(233, 184, 92, 0.35);

  /* Muted tones */
  --muted:        #7A6E62;
  --muted-2:      #A09080;
  --muted-3:      #C4BAB0;

  /* Surface layers */
  --surface-1:    rgba(255,255,255,0.60);
  --surface-2:    rgba(255,255,255,0.30);
  --glass-border: rgba(255,255,255,0.70);

  /* Ink section colors */
  --dark-bg:      #0D0A13;
  --dark-bg-2:    #120D18;

  /* Borders */
  --border-light: rgba(255,255,255,0.08);
  --border-ink:   rgba(255,255,255,0.06);

  /* Radii */
  --radius-xs:    4px;
  --radius-sm:    10px;
  --radius-md:    18px;
  --radius-lg:    28px;
  --radius-pill:  999px;

  /* Shadows */
  --shadow-soft:  0 12px 40px rgba(10,8,6,0.08);
  --shadow-glass: 0 8px 32px rgba(10,8,6,0.06), inset 0 1px 0 rgba(255,255,255,0.8);
  --shadow-gold:  0 20px 60px rgba(201,150,46,0.18);
  --shadow-gold-lg: 0 30px 90px rgba(201,150,46,0.24);
  --shadow-card:  0 2px 8px rgba(10,8,6,0.04), 0 8px 24px rgba(10,8,6,0.06);

  /* Typography */
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  2rem;
  --sp-lg:  3.5rem;
  --sp-xl:  5.5rem;

  /* Transitions */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.76, 0, 0.24, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-tilt: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── 1b. SHARED SIGNATURE MOTIFS ── */
@keyframes goldShimmer  { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes spinSlow     { to { transform: rotate(360deg); } }
@keyframes spinSlowRev  { to { transform: rotate(-360deg); } }
@keyframes floatDrift   { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(6px,-10px); } }
@keyframes breatheGlow  { 0%, 100% { box-shadow: 0 4px 20px rgba(201,150,46,.3); } 50% { box-shadow: 0 10px 34px rgba(201,150,46,.5); } }
@keyframes drawLine     { to { transform: scaleX(1); } }
@keyframes fillUp       { to { height: 100%; } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes curtainWipe {
  from { clip-path: inset(0 0 0 100%); }
  to   { clip-path: inset(0 0 0 0%); }
}
@keyframes cinematicIn {
  from { opacity: 0; filter: blur(9px); clip-path: inset(0 0 35% 0); }
  to   { opacity: 1; filter: blur(0);   clip-path: inset(0 0 0 0); }
}

/* Cursor-tracked spotlight glow — JS sets --mx / --my (percentages)
   on mousemove for these surfaces; a soft gold light "finds" the
   cursor, echoing the studio's lighting-design craft. */
.svc-card, .pc, .proc-step, .tc, .values-item, .about-slot {
  --mx: 50%; --my: 40%;
}
.svc-card, .pc { isolation: isolate; }
.svc-card::after, .pc::after, .proc-step::after, .tc::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(233,184,92,.16), transparent 58%);
  opacity: 0; transition: opacity .5s var(--ease-out);
  pointer-events: none; z-index: -1;
}
.svc-card:hover::after, .pc:hover::after, .proc-step:hover::after, .tc:hover::before { opacity: 1; }

/* ── 2. RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background: var(--warm);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

@media (hover: none) { body { cursor: auto; } }

img   { display: block; max-width: 100%; height: auto; }
a     { text-decoration: none; cursor: none; color: inherit; }
button { cursor: none; font-family: var(--font-sans); border: none; background: none; }
ul, ol { list-style: none; }

/* ── 3. CURSOR ── */
#cur-dot {
  position: fixed; z-index: 9999; pointer-events: none;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 16px rgba(201,150,46,0.7);
  transform: translate(-50%, -50%);
  transition: transform .2s var(--ease-out), opacity .3s;
}
#cur-dot.hovered  { transform: translate(-50%, -50%) scale(1.5); opacity: .9; }
#cur-dot.clicking { transform: translate(-50%, -50%) scale(.75); }

#cur-ring {
  position: fixed; z-index: 9998; pointer-events: none;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid rgba(201,150,46,0.5);
  transform: translate(-50%, -50%);
  transition: width .4s var(--ease-out), height .4s var(--ease-out), border-color .3s;
}
#cur-ring.hovered  { width: 44px; height: 44px; border-color: rgba(201,150,46,0.7); }
#cur-ring.clicking { width: 24px; height: 24px; }

#cur-trail { position: fixed; inset: 0; z-index: 9997; pointer-events: none; display: block; }

@media (hover: none) {
  #cur-dot, #cur-ring, #cur-trail { display: none; }
  body, a, button { cursor: auto; }
}
@media (prefers-reduced-motion: reduce) {
  #cur-trail { display: none; }
}

/* ── 4. SCROLL PROGRESS ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; z-index: 600;
  height: 2px; background: transparent;
}
.scroll-progress span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-3));
  width: 0; transition: width .1s linear;
}

/* ── 5. LOADER ── */
#loader {
  position: fixed; inset: 0; z-index: 10000;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(201,150,46,.08), transparent 60%),
    var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.7rem;
  transition: opacity .8s var(--ease-out), visibility .8s var(--ease-out), filter .8s var(--ease-out);
}
#loader.gone { opacity: 0; visibility: hidden; filter: blur(6px); }

.ld-mark {
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
  position: relative;
}
.ld-logo {
  width: 392px; height: 392px; object-fit: contain;
  filter: drop-shadow(0 18px 48px rgba(201,150,46,.22));
  animation: ldFloat .8s .15s var(--ease-out) both;
}
.ld-wordmark {
  font-family: var(--font-serif);
  font-size: 2.1rem; font-weight: 400; letter-spacing: .16em;
  color: var(--cream); overflow: hidden;
  position: relative;
}
.ld-wordmark em { color: var(--gold); font-style: italic; }
.ld-inner {
  display: block;
  opacity: 0;
  transform: translateY(16px) scale(.98);
  animation: ldUp .75s .25s var(--ease-out) forwards;
}
#loader::before,
#loader::after {
  content: '';
  position: absolute; left: 50%; top: 50%;
  border-radius: 50%;
  border: 1px solid rgba(201,150,46,.24);
  pointer-events: none;
  transform: translate(-50%, -50%);
}
#loader::before { width: 320px; height: 320px; border-style: dashed; opacity: .35; }
#loader::after  { width: 260px; height: 260px; opacity: .25; }
.ld-track {
  width: 220px; height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 24px rgba(255,255,255,.06);
}
.ld-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-3));
  box-shadow: 0 0 28px rgba(201,150,46,.3);
  animation: ldFill 1.2s .3s var(--ease-out) forwards;
}

@keyframes ldFill {
  to { width: 100%; }
}

@keyframes ldUp  { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes ldFloat { 0% { opacity: 0; transform: translateY(10px); } 100% { opacity: 1; transform: translateY(0); } }

/* ── 6. NAVIGATION ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5%;
  transition: background .5s, box-shadow .5s, padding .5s, backdrop-filter .5s;
}
#nav.solid {
  background: rgba(250,250,247,0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--gold-border), 0 4px 24px rgba(10,8,6,0.05);
  padding: .85rem 5%;
}

.nav-logo {
  display: inline-flex; align-items: center; gap: .22rem;
  font-family: var(--font-serif);
  font-size: 1.55rem; font-weight: 400; letter-spacing: .1em;
  color: var(--white);
  transition: color .4s;
}
.nav-logo-img {
  width: 72px; height: 72px; object-fit: contain;
  flex-shrink: 0;
}
.nav-logo span { display: inline-flex; align-items: center; }
.nav-logo em { color: var(--gold); font-style: italic; }
#nav.solid .nav-logo { color: var(--ink); }

.nav-links {
  display: flex; gap: 2.2rem; align-items: center;
}
.nav-links a {
  font-size: .68rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
  transition: color .3s; position: relative; padding: .25rem 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-3));
  transition: width .35s var(--ease-out);
}
.nav-links a:hover              { color: var(--gold-3); }
.nav-links a:hover::after       { width: 100%; }
#nav.solid .nav-links a         { color: var(--muted); }
#nav.solid .nav-links a:hover   { color: var(--gold); }

.nav-cta {
  display: inline-flex; align-items: center; gap: .45rem;
  background: linear-gradient(135deg, rgba(201,150,46,.15), rgba(201,150,46,.05));
  color: var(--gold-3);
  padding: .5rem 1.1rem;
  font-weight: 500; font-size: .66rem;
  letter-spacing: .15em; text-transform: uppercase;
  border: 1px solid rgba(201,150,46,0.4);
  border-radius: var(--radius-pill);
  position: relative; overflow: hidden; isolation: isolate;
  transition: transform .25s var(--ease-out), box-shadow .25s, border-color .25s, color .25s;
}
.nav-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,.12) 50%, transparent 100%);
  transform: translateX(-110%);
  transition: transform .6s ease;
  z-index: -1;
}
.nav-cta:hover {
  transform: translateY(-1px);
  color: #fff4df;
  border-color: rgba(201,150,46,.7);
  box-shadow: 0 8px 28px rgba(201,150,46,.2);
}
.nav-cta:hover::before { transform: translateX(110%); }
.nav-cta::after { display: none !important; }

.nav-right { display: flex; align-items: center; gap: .6rem; }

.hbg {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: .4rem;
  width: 36px; cursor: none;
}
.hbg span {
  display: block; height: 1.5px; width: 100%;
  background: var(--white); border-radius: 2px;
  transition: transform .4s var(--ease-out), opacity .3s, width .3s;
}
#nav.solid .hbg span { background: var(--ink); }
.hbg.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hbg.open span:nth-child(2) { opacity: 0; width: 0; }
.hbg.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-links {
  transition: opacity .4s, visibility .4s, transform .5s var(--ease-out);
}
@media (max-width: 900px) {
  .hbg { display: flex; }
  .nav-links {
    position: fixed; inset: 0; z-index: 490;
    background: rgba(8,6,10,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 2.4rem; opacity: 0; visibility: hidden;
    transform: scale(.97);
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: scale(1); }
  .nav-links a {
    font-size: 1rem; letter-spacing: .24em;
    color: rgba(255,255,255,.7);
  }
  .nav-links a:hover { color: var(--gold-2); }
  .nav-cta { display: none; }
}

/* ── 7. BUTTONS ── */
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: var(--ink);
  padding: .9rem 2rem;
  font-family: var(--font-sans);
  font-weight: 600; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  border: none; border-radius: var(--radius-pill);
  position: relative; overflow: hidden; isolation: isolate;
  transition: transform .35s var(--ease-tilt), box-shadow .35s;
  box-shadow: 0 4px 20px rgba(201,150,46,.3);
  animation: breatheGlow 4.5s ease-in-out infinite;
  will-change: transform;
}
.btn-gold::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  opacity: 0; transition: opacity .4s;
}
/* Light-sweep sheen that crosses the button on hover */
.btn-gold::before {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.55) 48%, transparent 66%);
  transform: translateX(-140%);
  transition: transform .7s var(--ease-out);
  pointer-events: none;
}
.btn-gold:hover { transform: translateY(-2px) scale(1.015); box-shadow: 0 14px 44px rgba(201,150,46,.45); }
.btn-gold:hover::after { opacity: 1; }
.btn-gold:hover::before { transform: translateX(140%); }
.btn-gold span { position: relative; z-index: 3; }
.btn-gold:active { transform: translateY(0) scale(.98); }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: transparent;
  color: rgba(255,255,255,.7);
  padding: .9rem 2rem;
  font-weight: 500; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-pill);
  transition: color .3s, border-color .3s, background .3s, transform .3s var(--ease-spring);
}
.btn-outline:hover {
  color: var(--white);
  border-color: rgba(233,184,92,.55);
  background: rgba(255,255,255,.07);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,150,46,.14);
}
.btn-outline, .btn-ink { will-change: transform; }

.btn-ink {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--ink);
  color: var(--cream);
  padding: .9rem 2rem;
  font-weight: 500; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-pill);
  position: relative; overflow: hidden;
  transition: transform .3s var(--ease-spring), box-shadow .3s;
}
.btn-ink::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,150,46,.12), transparent);
  opacity: 0; transition: opacity .4s;
}
.btn-ink:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(10,8,6,.2); }
.btn-ink:hover::after { opacity: 1; }
.btn-ink span { position: relative; z-index: 1; }

/* ── 8. SECTION TYPOGRAPHY ── */
.s-tag {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .63rem; font-weight: 600; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.s-tag::before {
  content: '';
  width: 28px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

section[id] { scroll-margin-top: 84px; }

.s-h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400; line-height: 1.12; letter-spacing: -.01em;
  color: var(--ink);
}
.s-h2 em {
  font-style: italic;
  background: linear-gradient(100deg, var(--gold) 20%, var(--gold-3) 40%, var(--gold) 60%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: var(--gold);
  animation: goldShimmer 7s ease-in-out infinite;
}
.s-h2.light { color: var(--white); }

.s-body {
  font-size: 1.05rem; line-height: 1.75;
  color: var(--muted); max-width: 52ch;
}
.s-body-soft { color: rgba(255,255,255,.5); }

/* ── 9. SCROLL REVEAL ── */
.reveal, .reveal-l, .reveal-r {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal-l { transform: translateX(-32px); }
.reveal-r { transform: translateX(32px); }
.reveal.in, .reveal-l.in, .reveal-r.in { opacity: 1; transform: none; }

.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ── 10. HERO ── */
#hero {
  position: relative; min-height: 100svh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden; padding: 0 5%;
  gap: 4rem;
  background: var(--dark-bg);
}

#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%; pointer-events: none;
}
.hero-grain {
  position: absolute; inset: 0; pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}
.hero-vignette {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 70% 50%, transparent 30%, rgba(8,6,10,.7) 100%);
}

/* Social sidebar */
.hero-soc {
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: .3rem;
  z-index: 10; padding: .6rem;
}
.hs-item {
  display: flex; align-items: center; gap: 0;
  overflow: hidden;
  border-radius: var(--radius-pill);
  padding: .5rem .65rem;
  transition: background .3s, gap .4s var(--ease-out), padding .4s var(--ease-out);
  background: rgba(255,255,255,.04);
}
.hs-item:hover {
  background: rgba(255,255,255,.08);
  gap: .55rem;
  padding: .5rem .9rem .5rem .65rem;
}
.hs-icon { width: 18px; height: 18px; flex-shrink: 0; }
.hs-icon svg { width: 100%; height: 100%; }
.hs-label {
  font-size: .62rem; letter-spacing: .1em; white-space: nowrap;
  color: rgba(255,255,255,.55); max-width: 0;
  overflow: hidden;
  transition: max-width .5s var(--ease-out), opacity .4s;
  opacity: 0;
}
.hs-item:hover .hs-label { max-width: 180px; opacity: 1; }

/* Hero text */
.hero-left {
  position: relative; z-index: 5;
  padding: 8rem 0 6rem 4rem;
  display: flex; flex-direction: column; align-items: flex-start;
}

.hero-eyebrow {
  font-size: .65rem; font-weight: 500; letter-spacing: .36em; text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 1.6rem;
  display: flex; align-items: center; gap: .8rem;
}
.hero-eyebrow::before {
  content: '';
  width: 36px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 6.5vw, 5.5rem);
  font-weight: 400; line-height: 1.05;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: cinematicIn 1.3s 1.95s var(--ease-out) forwards;
}
.hero-h1 em {
  color: var(--gold-3);
  font-style: italic;
  background: linear-gradient(100deg, var(--gold-2) 20%, var(--gold-3) 40%, var(--gold-2) 60%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 7s ease-in-out infinite;
}

.hero-eyebrow { opacity: 0; animation: fadeUp .8s 1.8s var(--ease-out) forwards; }

.hero-sub {
  font-size: 1.05rem; line-height: 1.8;
  color: rgba(255,255,255,.5);
  max-width: 44ch; margin-bottom: 2.4rem;
  opacity: 0;
  animation: fadeUp .8s 2.3s var(--ease-out) forwards;
}

.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp .8s 2.5s var(--ease-out) forwards;
}

.hero-stats {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s 2.7s var(--ease-out) forwards;
}
.hero-stats > div {
  padding: .9rem 1.2rem;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  min-width: 120px;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 2rem; font-weight: 400; line-height: 1;
  color: var(--white);
}
.stat-unit { font-size: 1.2rem; color: var(--gold-2); }
.stat-lbl {
  font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-top: .3rem;
}

/* Hero right / photo grid */
.hero-right {
  position: relative; z-index: 5;
  padding: 7rem 3rem 7rem 0;
}
/* Slow rotating gold ring behind the photo grid — a lighting-design cue */
.hero-right::before {
  content: '';
  position: absolute; right: 8%; top: 12%;
  width: 220px; height: 220px; border-radius: 50%;
  border: 1px dashed rgba(201,150,46,.16);
  animation: spinSlow 40s linear infinite;
  pointer-events: none; z-index: -1;
}
.hero-img-grid {
  display: flex; flex-direction: column; gap: .75rem;
  height: 100%;
  opacity: 0;
  animation: fadeUp 1s 1.9s var(--ease-out) forwards;
}
.hero-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }

.hslot {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  aspect-ratio: 4/3;
  position: relative;
  isolation: isolate;
}
.hslot:first-child { aspect-ratio: 4/3.5; }
.hslot img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease-out), opacity .5s;
  opacity: .9;
  clip-path: inset(0 0 0 0);
}
.hslot:hover img { transform: scale(1.04); opacity: 1; }
/* Light-sweep sheen on hover, echoing lighting design */
.hslot::before {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.16) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform .9s var(--ease-out);
  pointer-events: none;
}
.hslot:hover::before { transform: translateX(120%); }
.hslot.img-missing, .about-slot.img-missing {
  background: linear-gradient(135deg, var(--gold-dim), rgba(255,255,255,.05));
}
.hslot.img-missing::after, .about-slot.img-missing::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px dashed rgba(201,150,46,.25);
  border-radius: inherit;
  opacity: 1;
  background: none;
}

/* Placeholder shimmer for missing images */
.hslot:not(:has(img[src]:not([src=""]))):not(:has(img[src^="assets/images/hero"])) {
  background: linear-gradient(135deg, rgba(201,150,46,.08), rgba(255,255,255,.03));
}

/* fallback gradient overlay for image placeholders */
.hslot::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 60%, rgba(8,6,10,.4));
  pointer-events: none;
}

.hero-badge {
  position: absolute; bottom: 6.5rem; right: 2.5rem; z-index: 10;
  background: rgba(201,150,46,.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,150,46,.3);
  border-radius: var(--radius-md);
  padding: .8rem 1.1rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(201,150,46,.12);
}
.hb-score {
  display: block;
  font-family: var(--font-serif); font-size: 1.4rem;
  color: var(--gold-3);
}
.hb-sub {
  display: block;
  font-size: .58rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-top: .15rem;
}

/* ── 11. MARQUEE ── */
.marquee-wrap {
  overflow: hidden;
  background: linear-gradient(90deg, var(--ink) 0%, var(--ink-2) 50%, var(--ink) 100%);
  border-top: 1px solid rgba(201,150,46,.1);
  border-bottom: 1px solid rgba(201,150,46,.1);
  padding: 1rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-track {
  display: flex; align-items: center; gap: 0;
  animation: marquee 32s linear infinite;
  width: max-content;
}
.mq-item {
  font-size: .62rem; font-weight: 500; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
  padding: .2rem 2.2rem;
  position: relative;
  white-space: nowrap;
  transition: color .3s;
}
.mq-item::before {
  content: '◆';
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  font-size: .35rem;
  color: var(--gold);
  opacity: .7;
}
.mq-item:hover { color: var(--gold-2); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── 12. ABOUT ── */
#about {
  padding: var(--sp-xl) 5%;
  background: var(--warm);
  position: relative;
  overflow: hidden;
}
#about::before {
  content: '';
  position: absolute; right: 0; top: 0;
  width: 40%; height: 100%;
  background: radial-gradient(ellipse at right center, rgba(201,150,46,.04), transparent 70%);
  pointer-events: none;
}

.about-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8rem; align-items: center;
  max-width: 1200px; margin: 0 auto;
}

.about-visual { position: relative; }
.about-slot {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold-dim), rgba(255,255,255,.2));
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-gold), 0 2px 0 var(--gold-border);
  border: 1px solid var(--gold-border);
  position: relative;
  isolation: isolate;
}
.about-slot img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease-out);
}
.about-slot:hover img { transform: scale(1.04); }
/* Cursor sheen — a soft pass of light across the portrait */
.about-slot::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255,255,255,.16), transparent 45%);
  opacity: 0; transition: opacity .5s var(--ease-out);
  pointer-events: none;
}
.about-slot:hover::after { opacity: 1; }
/* Curtain-wipe reveal, triggered when the parent .reveal-l gains .in */
.about-visual.reveal-l .about-slot img {
  clip-path: inset(0 0 0 100%);
  transition: clip-path 1.15s .15s var(--ease-out), transform .9s var(--ease-out);
}
.about-visual.reveal-l.in .about-slot img { clip-path: inset(0 0 0 0%); }

.about-accent {
  position: absolute; bottom: -2rem; right: -2rem;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.8rem;
  border: 1px solid rgba(201,150,46,.2);
  box-shadow: 0 20px 50px rgba(10,8,6,.25);
  text-align: center;
}
.aa-num {
  display: block;
  font-family: var(--font-serif); font-size: 2.4rem; font-weight: 400;
  color: var(--gold-3); line-height: 1;
}
.aa-lbl {
  display: block;
  font-size: .58rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-top: .4rem;
}

.about-content { padding-right: 2rem; }
.about-vals {
  display: flex; gap: 2.5rem;
  margin: 2.5rem 0;
  padding: 1.8rem 0;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
.av-item { text-align: center; }
.av-num {
  font-family: var(--font-serif);
  font-size: 2.6rem; font-weight: 400; line-height: 1;
  color: var(--gold);
}
.plus-mark { font-size: 1.6rem; color: var(--gold-2); }
.av-lbl {
  font-size: .6rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); margin-top: .4rem;
}

.values-list { margin: 2rem 0; display: flex; flex-direction: column; gap: 1rem; }
.values-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: .9rem 1.2rem;
  background: var(--surface-1);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-glass);
  backdrop-filter: blur(8px);
  font-size: .92rem; color: var(--muted);
  transition: transform .25s var(--ease-out), box-shadow .25s;
  position: relative; overflow: hidden;
}
.values-item::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(201,150,46,.12), transparent 60%);
  opacity: 0; transition: opacity .4s;
  pointer-events: none;
}
.values-item:hover::after { opacity: 1; }
.values-item:hover { transform: translateX(4px); box-shadow: var(--shadow-card); }
.values-bullet { color: var(--gold); font-size: .8rem; flex-shrink: 0; margin-top: .12rem; }
.values-strong { color: var(--ink); font-weight: 600; }

/* ── 12b. OWNER VISION ── */
#owner {
  /* Both edges rely on the neighbouring sections' own padding for
     spacing (About's bottom padding above, Services' top padding
     below) — previously this also added a full --sp-xl on its own
     bottom, doubling the gap before Services and making the section
     look oversized. */
  padding: 0 5%;
  background: rgba(255,250,244,.98);
  position: relative;
}
.owner-wrap {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem;
  align-items: center; padding: clamp(2rem, 3vw, 3rem);
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(248,237,212,.9));
  border: 1px solid rgba(201,150,46,.18);
  border-radius: calc(var(--radius-lg) + 4px);
  box-shadow: 0 30px 80px rgba(10,8,6,.12);
  position: relative; overflow: hidden;
}
.owner-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(201,150,46,.12), transparent 44%);
  pointer-events: none;
}
.owner-content { position: relative; z-index: 1; }
.owner-content .s-tag { margin-bottom: 1rem; }
.owner-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 1.2rem;
  padding-left: 1.05rem;
  border-left: 4px solid var(--gold);
}
.owner-copy {
  font-size: .95rem; line-height: 1.8;
  color: var(--muted);
  margin-bottom: 1.6rem;
  max-width: 52ch;
}
.owner-list {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  color: var(--muted);
}
.owner-list li:last-child { grid-column: 1 / -1; }
.owner-list li {
  position: relative;
  padding: 1.1rem 1.2rem 1.1rem 2.4rem;
  background: rgba(255,255,255,.88);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  line-height: 1.8;
}
.owner-list li::before {
  content: '✦';
  color: var(--gold);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  line-height: 1;
}
.owner-visual {
  position: relative; z-index: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.72);
}
.owner-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.18), transparent 45%);
  pointer-events: none;
}
.owner-visual img {
  width: 100%; height: 100%; min-height: 360px; object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.owner-visual:hover img {
  transform: scale(1.03);
}

/* ── 13. SERVICES ── */
#services {
  padding: var(--sp-xl) 5%;
  background: var(--dark-bg);
  position: relative; overflow: hidden;
}
#services::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(201,150,46,.08) 0%, transparent 45%),
    radial-gradient(ellipse at 80% 100%, rgba(201,150,46,.05) 0%, transparent 40%),
    linear-gradient(rgba(201,150,46,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,150,46,.05) 1px, transparent 1px);
  background-size: auto, auto, 46px 46px, 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 40%, transparent 85%);
  mask-image: radial-gradient(ellipse at 50% 30%, #000 40%, transparent 85%);
  pointer-events: none;
}

.svc-head {
  text-align: center; margin-bottom: 4.5rem;
  max-width: 600px; margin-left: auto; margin-right: auto;
}

.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1200px; margin: 0 auto;
}

.svc-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-md);
  padding: 2.8rem 2rem;
  position: relative; overflow: hidden;
  transition: transform .35s var(--ease-out), border-color .35s, background .35s, box-shadow .35s;
  cursor: none;
}
.svc-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,150,46,.4), transparent);
  transform: scaleX(0);
  transition: transform .5s var(--ease-out);
}
.svc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,150,46,.2);
  background: rgba(255,255,255,.05);
  box-shadow: 0 24px 60px rgba(10,8,6,.4), 0 0 0 1px rgba(201,150,46,.1);
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-num {
  font-family: var(--font-serif);
  font-size: 4rem; font-weight: 400; line-height: 1;
  color: rgba(201,150,46,.15);
  margin-bottom: 1.2rem;
  transition: color .3s;
  letter-spacing: -.02em;
}
.svc-card:hover .svc-num { color: rgba(201,150,46,.28); }

.svc-name {
  font-family: var(--font-serif);
  font-size: 1.35rem; font-weight: 400; line-height: 1.2;
  color: var(--white); margin-bottom: .8rem;
}
.svc-desc {
  font-size: .9rem; line-height: 1.7;
  color: rgba(255,255,255,.4);
}
.svc-link {
  margin-top: 1.8rem;
  font-size: .65rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
  opacity: 0; transform: translateX(-8px);
  transition: opacity .3s, transform .3s;
}
.svc-card:hover .svc-link { opacity: 1; transform: none; }

.svc-cta-row {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px; margin: 4rem auto 0;
  padding: 2.5rem 3rem;
  border: 1px solid rgba(201,150,46,.15);
  border-radius: var(--radius-md);
  background: rgba(201,150,46,.04);
}
.svc-cta-text {
  font-size: 1rem; color: rgba(255,255,255,.5);
  max-width: 50ch;
}

/* ── 14. PROCESS ── */
#process {
  padding: var(--sp-xl) 5%;
  background: var(--warm);
  position: relative;
}
#process::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,150,46,.04), transparent 60%),
    linear-gradient(rgba(10,7,16,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,7,16,.035) 1px, transparent 1px);
  background-size: auto, 46px 46px, 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 20%, #000 35%, transparent 80%);
  mask-image: radial-gradient(ellipse at 50% 20%, #000 35%, transparent 80%);
  pointer-events: none;
}

.proc-wrap { max-width: 1200px; margin: 0 auto; }
.proc-head {
  text-align: center;
  margin: 0 auto 5rem;
  max-width: 840px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.proc-head p {
  margin: 0 auto;
}
.proc-head::after {
  content: '';
  position: absolute; left: 50%; bottom: -2.2rem;
  width: 160px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-50%) scaleX(0);
  transition: transform 1.1s .25s var(--ease-out);
}
.proc-head.in::after { transform: translateX(-50%) scaleX(1); }

.proc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.proc-step {
  background: var(--surface-1);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 2.4rem 2rem 2rem;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-glass);
  backdrop-filter: blur(8px);
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.proc-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }

.ps-n {
  font-family: var(--font-serif);
  font-size: 3.5rem; font-weight: 400; line-height: 1;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  display: block; margin-bottom: 1.4rem;
}
.ps-title {
  font-family: var(--font-serif);
  font-size: 1.2rem; font-weight: 400;
  color: var(--ink); margin-bottom: .7rem;
}
.ps-desc { font-size: .88rem; line-height: 1.7; color: var(--muted); }
.ps-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-3));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.proc-step:hover .ps-line { transform: scaleX(1); }

/* ── 15. GALLERY ── */
#gallery {
  padding: var(--sp-xl) 5%;
  background: var(--warm);
}
.gal-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 2rem;
  margin-bottom: 3rem;
  max-width: 1200px; margin-left: auto; margin-right: auto;
}
.gallery-title { margin-bottom: 0; }

.gal-controls {
  display: flex; flex-direction: column; align-items: flex-end; gap: 1rem;
}
.gal-filters {
  display: flex; gap: .5rem; flex-wrap: wrap;
}
.gf {
  padding: .45rem 1rem;
  font-size: .62rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--gold-border);
  border-radius: var(--radius-pill);
  background: transparent;
  transition: color .25s, background .25s, border-color .25s, transform .2s;
}
.gf:hover, .gf.on {
  color: var(--ink); background: var(--gold-pale);
  border-color: var(--gold); transform: translateY(-1px);
}

.gal-admin-toggle {
  padding: .45rem 1rem;
  font-size: .62rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted-3); border: 1px dashed rgba(201,150,46,.25);
  border-radius: var(--radius-pill);
  background: transparent;
  transition: color .25s, border-color .25s;
}
.gal-admin-toggle:hover { color: var(--gold); border-color: var(--gold); }

/* Gallery admin panel */
.gal-admin-panel {
  display: none;
  max-width: 1200px; margin: 0 auto 2rem;
  background: var(--surface-1);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-glass);
}
.gal-admin-panel.open { display: block; }

.ga-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem; margin-bottom: 1.2rem;
}
.ga-field { display: flex; flex-direction: column; gap: .4rem; }
.ga-field label {
  font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
}
.ga-field input, .ga-field select, .ga-field textarea {
  padding: .65rem .9rem;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xs);
  font-family: var(--font-sans); font-size: .88rem;
  background: rgba(255,255,255,.7);
  transition: border-color .25s;
}
.ga-field input:focus, .ga-field select:focus {
  outline: none; border-color: var(--gold);
}
.ga-file input { display: none; }

.ga-actions { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 1rem; }
.ga-btn {
  padding: .55rem 1.1rem;
  font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 500;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-pill);
  color: var(--gold); background: transparent;
  transition: background .25s, color .25s;
}
.ga-btn:hover { background: var(--gold-pale); }
.ga-btn-add { background: var(--gold-pale); }
.ga-btn-label { cursor: pointer; }
.ga-btn-ghost { color: var(--muted); border-color: var(--gold-border-2); }

.ga-note { font-size: .78rem; color: var(--muted-2); }

/* Gallery grid */
.gal-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(100px, 1fr);
  gap: 0.55rem;
  max-width: 100%;
  margin: 0 auto;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}

.gal-ribbon-wrap {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.gal-ribbon {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(100px, 140px);
  gap: 0.55rem;
}

.gal-ribbon .gi {
  min-width: 100px;
  aspect-ratio: 4/3;
  scroll-snap-align: start;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.08);
}
.gal-ribbon .gi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease-out), filter .4s;
}
.gal-ribbon .gi:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.gal-ribbon .gi.active {
  transform: scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201,150,46,.22);
}

.gal-feature {
  max-width: 1200px;
  margin: 0 auto 1.5rem;
  position: relative;
  padding: 3px;
  border-radius: calc(var(--radius-md) + 3px);
  isolation: isolate;
}
/* Rotating conic gold border frame — a museum-spotlight treatment */
.gal-feature::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 3px;
  background: linear-gradient(135deg, rgba(201,150,46,.35), rgba(201,150,46,.07));
  z-index: -1;
  opacity: .6;
}

.gal-feature .gi {
  width: 100%;
  aspect-ratio: 16/9;
  min-height: 420px;
  border: 1px solid rgba(201,150,46,.18);
  box-shadow: 0 26px 70px rgba(10,8,6,.16);
  cursor: zoom-in;
  overflow: hidden;
  position: relative;
}
.gal-feature .gi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gal-feature .gi::after {
  content: 'Click to enlarge';
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: .45rem .9rem;
  background: rgba(8,6,10,.78);
  color: rgba(255,255,255,.92);
  font-size: .72rem;
  letter-spacing: .12em;
  border-radius: var(--radius-pill);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}

.gal-feature .gi:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.gal-feature .gi::after {
  content: 'Click to enlarge';
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: .45rem .9rem;
  background: rgba(8,6,10,.72);
  color: rgba(255,255,255,.9);
  font-size: .72rem;
  letter-spacing: .12em;
  border-radius: var(--radius-pill);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}

.gal-feature .gi:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.gi {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--gold-dim), rgba(255,255,255,.05));
  border: 1px solid var(--gold-border);
  cursor: zoom-in;
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.gi:hover { transform: translateY(-4px) scale(1.005); box-shadow: var(--shadow-gold); }
.gi img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease-out), filter .4s;
}
.gi:hover img { transform: scale(1.06); filter: brightness(1.05); }
.gi-cap {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,6,10,.8) 0%, transparent 60%);
  display: flex; align-items: flex-end;
  padding: 1.2rem;
  opacity: 0; transition: opacity .4s;
}
.gi:hover .gi-cap { opacity: 1; }
.gi-cap-text {
  font-size: .75rem; font-weight: 500; letter-spacing: .1em;
  color: var(--white);
}

/* Gallery empty state */
.gal-empty {
  grid-column: 1 / -1; text-align: center;
  padding: 6rem 2rem;
  color: var(--muted);
}
.gal-empty h3 {
  font-family: var(--font-serif); font-size: 1.6rem; font-weight: 400;
  margin-bottom: .8rem; color: var(--ink);
}

/* ── 16. LIGHTBOX ── */
.lb {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(8,6,10,.96);
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .4s, visibility .4s;
}
.lb.open { opacity: 1; visibility: visible; }
.lb-x {
  position: absolute; top: 1.2rem; right: 1.2rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, transform .25s;
}
.lb-x:hover { background: rgba(255,255,255,.15); transform: rotate(90deg); }
.lb-fig {
  max-width: min(90vw, 1100px);
  max-height: 90vh;
  display: flex; flex-direction: column; gap: 1rem;
}
.lb-fig {
  max-width: min(90vw, 1100px);
  max-height: 90vh;
  display: flex; flex-direction: column; gap: 1rem;
  position: relative;
}
.lb-fig img {
  max-height: 80vh; max-width: 100%;
  object-fit: contain; border-radius: var(--radius-sm);
  box-shadow: 0 40px 80px rgba(8,6,10,.6);
}
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: var(--white); font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 910;
  transition: background .25s, transform .25s;
}
.lb-nav:hover { background: rgba(255,255,255,.16); transform: translateY(-50%) scale(1.03); }
.lb-prev { left: 1.1rem; }
.lb-next { right: 1.1rem; }
.lb-cap {
  display: flex; justify-content: space-between; align-items: center;
  padding: .4rem .2rem;
}
.lb-cap span { font-size: .82rem; color: rgba(255,255,255,.55); }
.lb-hint { font-size: .68rem; letter-spacing: .15em; color: rgba(255,255,255,.3); }

/* ── 17. PRICING ── */
#pricing {
  padding: var(--sp-xl) 5%;
  background: var(--dark-bg);
  position: relative; overflow: hidden;
}
#pricing::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,150,46,.06), transparent 65%);
  pointer-events: none;
}

.pricing-head { text-align: center; margin-bottom: 3rem; }
.pricing-head-sub {
  font-size: .88rem; color: rgba(255,255,255,.4);
  letter-spacing: .05em; margin-top: .8rem;
}

.pricing-tabs {
  display: flex; gap: .5rem; justify-content: center;
  margin-bottom: 3rem;
}
.ptab {
  padding: .6rem 1.6rem;
  font-size: .65rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-pill);
  background: transparent;
  transition: color .25s, border-color .25s, background .25s;
}
.ptab.active, .ptab:hover {
  color: var(--gold-3); border-color: rgba(201,150,46,.4);
  background: rgba(201,150,46,.06);
}

.pricing-panel { display: none; }
.pricing-panel.active { display: block; }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1100px; margin: 0 auto;
}

.pc {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-md);
  padding: 2.8rem 2rem 2.4rem;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s ease-out, border-color .25s, box-shadow .25s, background-color .25s;
}
.pc::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,150,46,.2), transparent);
  transition: opacity .3s;
}
.pc:hover {
  transform: translateY(-3px);
  border-color: rgba(201,150,46,.18);
  box-shadow: 0 18px 48px rgba(10,8,6,.32);
}
.pc.popular {
  background: rgba(201,150,46,.06);
  border-color: rgba(201,150,46,.3);
  box-shadow: 0 0 0 1px rgba(201,150,46,.15), var(--shadow-gold);
  overflow: visible;
}
.pc.popular::before { background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 1; }
.pc.popular::after {
  content: '';
  position: absolute; inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(201,150,46,.16), rgba(201,150,46,0));
  z-index: -2;
  opacity: .7;
  pointer-events: none;
}

.pop-badge {
  position: absolute; top: 1.2rem; right: 1.2rem;
  font-size: .55rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  padding: .3rem .7rem; border-radius: var(--radius-pill);
  font-weight: 600;
}

.pc-tier {
  font-size: .6rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
  margin-bottom: .8rem; display: block;
}
.pc-name {
  font-family: var(--font-serif);
  font-size: 2.8rem; font-weight: 400; line-height: 1;
  color: var(--white); margin-bottom: .4rem;
}
.pc.popular .pc-name { font-size: 3rem; }
.pc-onwards { font-size: 1.4rem; color: var(--gold-2); }
.pc-scope {
  font-size: .8rem; color: rgba(255,255,255,.35);
  letter-spacing: .08em; margin-bottom: 2rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.pc-features { flex: 1; margin-bottom: 2rem; display: flex; flex-direction: column; gap: .7rem; }
.pc-feat {
  display: flex; align-items: center; gap: .75rem;
  font-size: .88rem; color: rgba(255,255,255,.65);
}
.pc-feat.dim { color: rgba(255,255,255,.2); }
.pc-feat-icon { color: var(--gold); font-size: .75rem; flex-shrink: 0; width: 1rem; }
.pc-feat.dim .pc-feat-icon { color: rgba(255,255,255,.2); }

.pc-cta {
  display: flex; align-items: center; justify-content: center;
  padding: .85rem 1.5rem;
  background: rgba(201,150,46,.08);
  border: 1px solid rgba(201,150,46,.25);
  border-radius: var(--radius-pill);
  font-size: .65rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-2); font-weight: 500;
  transition: background .25s, border-color .25s, transform .25s, color .25s;
}
.pc-cta:hover {
  background: rgba(201,150,46,.18);
  border-color: rgba(201,150,46,.5);
  color: var(--gold-3); transform: translateY(-2px);
}
.pc.popular .pc-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-color: transparent;
  color: var(--ink);
}
.pc.popular .pc-cta:hover { filter: brightness(1.1); }

.pricing-disclaimer {
  text-align: center; margin-top: 2rem;
  font-size: .75rem; color: rgba(255,255,255,.25);
  letter-spacing: .1em;
}

/* ── 18. TESTIMONIALS ── */
#testi {
  padding: var(--sp-xl) 5%;
  background: var(--warm);
  position: relative;
}
#testi::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 0% 50%, rgba(201,150,46,.04), transparent 50%);
  pointer-events: none;
}

.testi-wrap {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 8rem; align-items: start;
  max-width: 1200px; margin: 0 auto;
}

.g-score-big {
  font-family: var(--font-serif);
  font-size: 6rem; font-weight: 400; line-height: 1;
  color: var(--ink); margin: 1.2rem 0 .2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.testi-left .s-h2.light { color: var(--ink); }
.g-stars-big { font-size: 1.6rem; color: var(--gold); letter-spacing: .1rem; margin-bottom: .5rem; }
.g-cnt { font-size: .82rem; color: var(--muted); letter-spacing: .1em; }
.g-logo-row {
  display: flex; align-items: center; gap: .8rem;
  margin-top: 1.2rem; margin-bottom: 1.5rem;
}
.g-logo { width: 60px; }
.g-verified {
  font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted-2);
}
.testi-maps-link {
  font-size: .78rem; color: var(--gold); letter-spacing: .08em;
  border-bottom: 1px solid rgba(201,150,46,.3);
  padding-bottom: .15rem;
  transition: color .25s, border-color .25s;
}
.testi-maps-link:hover { color: var(--gold-2); border-color: var(--gold-2); }

.testi-title { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 1.8rem; }

.tc-list { display: flex; flex-direction: column; gap: 1.25rem; }
.tc {
  background: var(--surface-1);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-glass);
  backdrop-filter: blur(8px);
  transition: transform .3s var(--ease-out), box-shadow .3s;
  position: relative;
}
.tc:hover { transform: translateY(-4px) scale(1.008); box-shadow: var(--shadow-card), var(--shadow-gold); }
.tc::after {
  content: '"';
  position: absolute; top: .4rem; right: 1.2rem;
  font-family: var(--font-serif); font-style: italic;
  font-size: 4.5rem; line-height: 1;
  color: var(--gold); opacity: .12;
  pointer-events: none;
}

.tc-head {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.1rem;
}
.tc-av {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 400;
  flex-shrink: 0;
}
.tc-name { font-size: .82rem; font-weight: 600; color: var(--ink); }
.tc-stars { font-size: .72rem; color: var(--gold); letter-spacing: .08rem; margin-top: .15rem; }
.tc-glogo { margin-left: auto; width: 48px; opacity: .6; }
.tc-text { font-size: .9rem; line-height: 1.75; color: var(--muted); }

/* ── 19. CONTACT ── */
#contact {
  padding: var(--sp-xl) 5%;
  background: var(--dark-bg);
  position: relative;
}
#contact::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(201,150,46,.06), transparent 40%),
    radial-gradient(ellipse at 100% 100%, rgba(201,150,46,.04), transparent 40%);
  pointer-events: none;
}

.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 8rem; align-items: start;
  max-width: 1200px; margin: 0 auto;
}

.ci-list { margin: 2rem 0; display: flex; flex-direction: column; gap: 1rem; }
.ci {
  display: flex; align-items: flex-start; gap: 1.1rem;
  padding: 1.1rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
  transition: border-color .25s, background .25s;
}
.ci:hover { border-color: rgba(201,150,46,.2); background: rgba(255,255,255,.05); }
.ci-icon {
  width: 36px; height: 36px; border-radius: var(--radius-xs);
  background: rgba(201,150,46,.1);
  border: 1px solid rgba(201,150,46,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.ci-icon svg { width: 16px; height: 16px; }
.ci-lbl {
  font-size: .58rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: .25rem;
}
.ci-val { font-size: .88rem; color: rgba(255,255,255,.7); }
.ci-val a { transition: color .25s; }
.ci-val a:hover { color: var(--gold-2); }
.rating-line { display: flex; align-items: center; gap: .5rem; }
.rating-meta { font-size: .75rem; color: rgba(255,255,255,.3); }

.soc-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .7rem; margin-top: 2rem;
}
.sc {
  display: flex; align-items: center; gap: .8rem;
  padding: .9rem 1rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
  transition: border-color .25s, background .25s, transform .25s;
}
.sc:hover { border-color: rgba(201,150,46,.25); background: rgba(255,255,255,.06); transform: translateY(-2px); }
.sc-wide { grid-column: 1 / -1; }
.sc-ico {
  width: 34px; height: 34px; border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sc-ico svg { width: 16px; height: 16px; }
.sc.ig .sc-ico { background: rgba(225,48,108,.1); color: rgb(225,48,108); }
.sc.fb .sc-ico { background: rgba(24,119,242,.1); color: rgb(24,119,242); }
.sc.wa .sc-ico { background: rgba(37,211,102,.1); color: rgb(37,211,102); }
.sc.em .sc-ico { background: rgba(234,67,53,.1); color: rgb(234,67,53); }
.sc.gm .sc-ico { background: rgba(201,150,46,.1); color: var(--gold); }
.sc-info { flex: 1; min-width: 0; }
.sc-platform { font-size: .7rem; font-weight: 500; color: rgba(255,255,255,.65); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sc-handle { font-size: .65rem; color: rgba(255,255,255,.3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sc-arr { font-size: .8rem; color: rgba(255,255,255,.2); transition: color .25s, transform .25s; }
.sc:hover .sc-arr { color: var(--gold); transform: translateX(2px); }

/* Contact form */
.contact-title { display: none; }
.cform { display: flex; flex-direction: column; gap: 1.1rem; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: .4rem; }

.flbl {
  font-size: .62rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.fi, .fsel, .fta {
  padding: .85rem 1.1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-sans); font-size: .92rem;
  transition: border-color .25s, background .25s, box-shadow .25s;
  -webkit-appearance: none;
}
.fi::placeholder, .fta::placeholder { color: rgba(255,255,255,.2); }
.fi:focus, .fsel:focus, .fta:focus {
  outline: none;
  border-color: rgba(201,150,46,.6);
  background: rgba(255,255,255,.07);
  box-shadow: 0 0 0 4px rgba(201,150,46,.14), 0 0 24px rgba(201,150,46,.12);
}
.fsel { cursor: none; }
.fta { resize: vertical; min-height: 120px; }

.map-block {
  margin-top: 2rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
}
.map-block iframe {
  display: block; width: 100%; height: 260px;
  border: 0; filter: grayscale(.4) contrast(1.05);
}
.map-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: .8rem 1rem;
  background: rgba(255,255,255,.03);
  border-top: 1px solid rgba(255,255,255,.06);
}
.map-footer a {
  font-size: .72rem; color: var(--gold); letter-spacing: .08em;
  transition: color .25s;
}
.map-footer a:hover { color: var(--gold-2); }
.map-footer span { font-size: .7rem; color: rgba(255,255,255,.25); }

/* ── 20. FOOTER ── */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(201,150,46,.12);
}
.ft-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 5% 3rem;
}

.ft-logo {
  font-family: var(--font-serif); font-size: 1.4rem; font-weight: 400;
  color: var(--cream); letter-spacing: .08em;
  display: inline-block; margin-bottom: .8rem;
}
.ft-logo em { color: var(--gold); font-style: italic; }
.ft-tagline { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.35); max-width: 38ch; margin-bottom: 1.5rem; }
.ft-soc { display: flex; gap: .6rem; }
.ft-sl {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4);
  transition: border-color .25s, color .25s, background .25s, transform .25s;
}
.ft-sl svg { width: 15px; height: 15px; }
.ft-sl:hover { border-color: rgba(201,150,46,.5); color: var(--gold-2); background: rgba(201,150,46,.09); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(201,150,46,.2); }

.ft-col-title {
  font-size: .62rem; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 1.4rem; font-weight: 500;
}
.ft-links { display: flex; flex-direction: column; gap: .7rem; }
.ft-links a {
  font-size: .85rem; color: rgba(255,255,255,.4);
  transition: color .25s, transform .25s; display: inline-block;
}
.ft-links a:hover { color: var(--gold-2); transform: translateX(3px); }

.ft-c-items { display: flex; flex-direction: column; gap: .7rem; }
.ftci {
  font-size: .82rem; color: rgba(255,255,255,.35);
  transition: color .25s;
}
.ftci a { transition: color .25s; }
.ftci a:hover { color: var(--gold-2); }
.ftci-rating { color: var(--gold-2); font-family: var(--font-serif); font-size: .9rem; }
.ft-instalink { color: var(--gold); }

.ft-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 1.5rem 5%;
  border-top: 1px solid rgba(255,255,255,.04);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .5rem;
}
.ft-copy, .ft-rating {
  font-size: .72rem; color: rgba(255,255,255,.2);
  letter-spacing: .05em;
}
.maps-inline-link { color: rgba(201,150,46,.5); transition: color .25s; }
.maps-inline-link:hover { color: var(--gold); }

/* ── 21. TOAST ── */
.toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(120%);
  background: var(--ink);
  color: var(--cream);
  padding: .9rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(201,150,46,.25);
  font-size: .82rem;
  z-index: 800;
  transition: transform .5s var(--ease-out);
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 20px 50px rgba(10,8,6,.4);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── 22. FLOATING BUTTONS ── */
.wa-btn {
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 400;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,.35);
  transition: transform .3s var(--ease-spring), box-shadow .3s;
  border: 2px solid rgba(255,255,255,.3);
}
.wa-btn svg { width: 28px; height: 28px; fill: var(--white); }
.wa-btn::before {
  content: '';
  position: absolute; inset: -8px; border-radius: 50%;
  border: 1.5px solid rgba(37,211,102,.4);
  animation: waPulse 2.5s ease-out infinite;
}
.wa-btn:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 16px 40px rgba(37,211,102,.5); }
@keyframes waPulse {
  0% { transform: scale(.85); opacity: .55; }
  70% { transform: scale(1.15); opacity: 0; }
  100% { transform: scale(1.15); opacity: 0; }
}

.to-top {
  position: fixed; right: 1.5rem; bottom: 5.5rem; z-index: 400;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(250,250,247,.9);
  color: var(--ink);
  border: 1px solid var(--gold-border);
  backdrop-filter: blur(12px);
  font-size: .8rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(10,8,6,.1);
  opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility .3s, transform .3s var(--ease-spring);
}
.to-top.show { opacity: 1; visibility: visible; }
.to-top:hover { transform: translateY(-2px); }

/* ── 23. RESPONSIVE ── */
@media (max-width: 1100px) {
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 8rem 0 3rem 0; }
  .hero-right { display: none; }
  .hero-soc { display: none; }

  .about-wrap, .testi-wrap, .contact-wrap { gap: 5rem; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --sp-xl: 4.5rem; }
  .about-wrap { grid-template-columns: 1fr; }
  .about-visual { max-width: 420px; margin: 0 auto; }
  .testi-wrap { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .ft-inner { grid-template-columns: 1fr; gap: 3rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
  .ft-bottom { flex-direction: column; text-align: center; gap: .4rem; }
  .gal-feature .gi { aspect-ratio: 4/3; min-height: 260px; }
  .gal-ribbon .gi { min-width: 140px; }
}

@media (max-width: 700px) {
  /* Services & Process boxes were full-width and oversized on phones,
     forcing a lot of scrolling for very little content. Two compact
     columns + smaller type/padding fit far more on screen at once. */
  .svc-head { margin-bottom: 2.5rem; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); gap: .7rem; }
  .svc-card { padding: 1.4rem 1.1rem; }
  .svc-num { font-size: 2rem; margin-bottom: .5rem; }
  .svc-name { font-size: .98rem; margin-bottom: .35rem; }
  .svc-desc { font-size: .76rem; line-height: 1.5; }
  .svc-link { margin-top: .9rem; font-size: .56rem; }

  .proc-grid { grid-template-columns: repeat(2, 1fr); gap: .7rem; }
  .proc-step { padding: 1.4rem 1.1rem 1.2rem; }
  .ps-n { font-size: 1.9rem; margin-bottom: .5rem; }
  .ps-title { font-size: .98rem; margin-bottom: .35rem; }
  .ps-desc { font-size: .78rem; line-height: 1.5; }

  .gal-grid { grid-auto-columns: minmax(160px, 1fr); gap: .85rem; }
  .gal-ribbon .gi { min-width: 160px; }
  .frow { grid-template-columns: 1fr; }
  .svc-cta-row { flex-direction: column; text-align: center; }
  .soc-grid { grid-template-columns: 1fr; }
  .about-vals { gap: 1.5rem; }
}

@media (max-width: 420px) {
  /* Below ~420px even 2 columns get tight — drop to one column but
     keep the compact sizing from above so cards stay short. */
  .svc-grid, .proc-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .owner-wrap { grid-template-columns: 1fr; padding: clamp(1.5rem, 4vw, 2.5rem); gap: 2rem; }
  .owner-list { grid-template-columns: 1fr; }
  .owner-quote { padding-left: 0.9rem; }
  .owner-list li { padding-left: 1.4rem; }
  .owner-visual { max-width: 100%; margin: 0 auto; }
  .owner-visual img { min-height: 260px; }
}

@media (max-width: 500px) {
  .gal-grid { grid-auto-columns: minmax(140px, 1fr); gap: .75rem; }
  .gal-ribbon .gi { min-width: 140px; }
  .hero-h1 { font-size: 2.8rem; }
  .hero-stats { gap: .75rem; }
}

@media (max-width: 420px) {
  .gal-grid { grid-auto-columns: minmax(120px, 1fr); gap: .65rem; }
  .gal-ribbon .gi { min-width: 120px; }
}

/* ── 24. REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── 25. HOVER NONE (touch devices) ── */
@media (hover: none) {
  body, a, button { cursor: auto; }
  #cur-dot, #cur-ring { display: none; }
  .wa-btn::before { display: none; }

  /* Most of the site's motion (card lift, image zoom, button glow) is
     gated behind :hover, which never fires on touch — so on phones
     these elements looked completely static. Give them a quick,
     tactile press animation instead. */
  .svc-card, .proc-step, .pc, .gi, .values-item, .btn-outline, .btn-ink {
    transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
  }
  .svc-card:active, .proc-step:active, .pc:active { transform: scale(.97); }
  .gi:active { transform: scale(.96); }
  .gi:active img { transform: scale(1.04); }
  .values-item:active { transform: scale(.98); }
  .btn-outline:active, .btn-ink:active { transform: scale(.96); }
}


/* ── SIGNATURE ELEMENT: Gold geometric watermark ── */
.section-watermark {
  position: absolute;
  font-family: var(--font-serif);
  font-size: clamp(8rem, 15vw, 18rem);
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,150,46,.07);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  letter-spacing: -.03em;
  z-index: 0;
  font-style: italic;
}
