/* =============================================================
   Closets & More · Designed by Me Corp
   Black · metallic gold · ivory — luxury interior editorial
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg: #0a0a0a;
  --bg-2: #100f0d;
  --bg-3: #17140f;
  --ivory: #F5EFE6;
  --ivory-2: #ece3d4;
  --ink: #0a0a0a;
  --ink-soft: #3b342a;
  --text: #F5EFE6;
  --text-mute: rgba(245, 239, 230, .64);
  --text-faint: rgba(245, 239, 230, .38);

  --champagne: #F3D9A0;
  --gold: #C9A24B;
  --bronze: #8A6424;
  --gold-grad: linear-gradient(115deg, #8A6424 0%, #C9A24B 22%, #F3D9A0 42%, #C9A24B 58%, #8A6424 80%, #C9A24B 100%);
  --gold-flat: linear-gradient(135deg, #F3D9A0 0%, #C9A24B 50%, #8A6424 100%);
  --line: rgba(201, 162, 75, .32);
  --line-soft: rgba(201, 162, 75, .16);

  --serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --script: "Great Vibes", "Allura", cursive;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --gutter: clamp(1rem, 4vw, 3rem);
  --max: 1320px;
  --header-h: 84px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; background: var(--bg); }
body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg, video, canvas { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { font-weight: 400; text-wrap: balance; line-height: 1.08; }
::selection { background: var(--gold); color: var(--ink); }
:focus-visible { outline: 1px solid var(--champagne); outline-offset: 4px; border-radius: 2px; }
svg use { pointer-events: none; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: fixed; top: -100px; left: 1rem; padding: .6rem 1rem; background: var(--ivory); color: var(--ink); z-index: 9999; }
.skip-link:focus { top: 1rem; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.script { font-family: var(--script); font-weight: 400; letter-spacing: 0; }
.serif { font-family: var(--serif); }
.gold-text {
  background: var(--gold-grad);
  background-size: 250% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: goldShift 9s ease-in-out infinite alternate;
  padding-inline: .06em; /* keeps script swashes inside the clip */
}
@keyframes goldShift { to { background-position: 100% 50%; } }

.kicker {
  display: inline-flex; align-items: center; gap: .9rem;
  font-family: var(--sans); font-weight: 400;
  font-size: .74rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold);
}
.kicker .num { font-family: var(--serif); font-style: italic; letter-spacing: 0; font-size: 1rem; color: var(--champagne); }
.kicker .num::after { content: ""; display: inline-block; width: 2.4rem; height: 1px; margin-left: .9rem; vertical-align: middle; background: var(--gold-flat); }

.h2 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 5.2vw, 4.4rem);
  letter-spacing: -.015em;
  line-height: 1.04;
  margin-top: 1.1rem;
}
.h2 em { font-style: italic; color: var(--champagne); }

.section-head { max-width: 780px; margin-bottom: clamp(3rem, 7vw, 5.5rem); }
.section-head-center { margin-inline: auto; text-align: center; }
.section-head-center .kicker { justify-content: center; }
.section-head-split { max-width: none; display: grid; gap: 1.5rem; align-items: end; }
.section-intro { margin-top: 1.4rem; max-width: 34rem; color: var(--text-mute); font-size: clamp(1rem, 1.3vw, 1.12rem); }
.section-head-center .section-intro { margin-inline: auto; }

.u-link { color: var(--champagne); background: linear-gradient(currentColor, currentColor) 0 100% / 100% 1px no-repeat; padding-bottom: 2px; transition: background-size .5s var(--ease-out); }
.u-link:hover { background-size: 0 1px; background-position: 100% 100%; }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: .8rem;
  min-height: 54px; padding: 0 1.9rem;
  font-family: var(--sans); font-weight: 400; font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  border-radius: 0;
  transition: color .5s var(--ease-out), border-color .5s var(--ease-out), transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; transition: transform .5s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn-sm { min-height: 44px; padding: 0 1.3rem; font-size: .7rem; }
.btn-block { width: 100%; }

.btn-gold { color: var(--ink); background: var(--gold-grad); background-size: 220% 100%; background-position: 20% 50%; box-shadow: 0 10px 40px -18px rgba(201,162,75,.7), inset 0 1px 0 rgba(255,245,220,.55); }
.btn-gold { transition: background-position 1s var(--ease-out), transform .5s var(--ease-out), box-shadow .5s var(--ease-out); }
.btn-gold::after { /* travelling glint */
  content: ""; position: absolute; inset: -40% auto -40% -30%; width: 30%; z-index: 1;
  background: linear-gradient(100deg, transparent, rgba(255,250,235,.75), transparent);
  transform: skewX(-20deg) translateX(-120%);
  transition: transform .9s var(--ease-out);
}
.btn-gold:hover { background-position: 80% 50%; box-shadow: 0 16px 50px -16px rgba(243,217,160,.75), inset 0 1px 0 rgba(255,245,220,.7); }
.btn-gold:hover::after { transform: skewX(-20deg) translateX(520%); }
.btn-gold > * { position: relative; z-index: 2; }

.btn-ghost { color: var(--text); border: 1px solid var(--line); }
.btn-ghost::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--gold-flat); transform: scaleY(0); transform-origin: 50% 100%; transition: transform .6s var(--ease-out); }
.btn-ghost:hover { color: var(--ink); border-color: transparent; }
.btn-ghost:hover::before { transform: scaleY(1); }

/* =============================================================
   5. Splash
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-content: center; justify-items: center; gap: 1.2rem;
  background: var(--bg);
  transition: clip-path 1.1s var(--ease-out), opacity .6s ease .5s;
  clip-path: inset(0 0 0 0);
  animation: splashSafety .01s 4.5s forwards;
}
.splash.is-out { clip-path: inset(0 0 100% 0); pointer-events: none; }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; visibility: hidden; } }
.splash-house { width: 110px; overflow: visible; }
.splash-house path { stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw 1.6s var(--ease-soft) .15s forwards; }
.splash-word { font-family: var(--script); font-size: 2.3rem; color: var(--champagne); opacity: 0; transform: translateY(8px); animation: fadeUp 1s var(--ease-out) .9s forwards; }
.splash-word span { color: var(--gold); }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fadeUp { to { opacity: 1; transform: none; } }
html:not(.js) .splash { display: none; }

/* =============================================================
   6. Cursor
   ============================================================= */
.cursor { position: fixed; inset: 0; pointer-events: none; z-index: 900; opacity: 0; transition: opacity .3s; }
.cursor.is-ready { opacity: 1; }
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; border-radius: 50%; }
.cursor-dot { width: 6px; height: 6px; margin: -3px 0 0 -3px; background: var(--champagne); }
.cursor-ring {
  width: 38px; height: 38px; margin: -19px 0 0 -19px;
  border: 1px solid rgba(243,217,160,.55);
  display: grid; place-items: center;
  transition: width .45s var(--ease-out), height .45s var(--ease-out), margin .45s var(--ease-out), background-color .45s, border-color .45s;
}
.cursor-label { font-style: normal; font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink); opacity: 0; transition: opacity .3s; }
.cursor.is-hover .cursor-ring { width: 64px; height: 64px; margin: -32px 0 0 -32px; border-color: var(--champagne); background: rgba(201,162,75,.08); }
.cursor.is-label .cursor-ring { width: 76px; height: 76px; margin: -38px 0 0 -38px; background: var(--champagne); border-color: var(--champagne); }
.cursor.is-label .cursor-label { opacity: 1; }
.cursor.is-label .cursor-dot { opacity: 0; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* =============================================================
   7. Header
   ============================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: transform .6s var(--ease-out), background-color .5s, backdrop-filter .5s, border-color .5s;
  border-bottom: 1px solid transparent;
}
.site-header.is-solid { background: rgba(10,10,10,.9); border-color: var(--line-soft); }
@supports (backdrop-filter: blur(10px)) {
  .site-header.is-solid { background: rgba(10,10,10,.72); backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%); }
}
.site-header.is-hidden { transform: translateY(-100%); }

.utility { display: none; border-bottom: 1px solid var(--line-soft); font-size: .74rem; letter-spacing: .06em; color: var(--text-mute); transition: margin .5s var(--ease-out), opacity .4s; }
.site-header.is-solid .utility { margin-top: -41px; opacity: 0; }
.utility-row { display: flex; justify-content: space-between; align-items: center; height: 40px; }
.utility svg { width: 14px; height: 14px; display: inline-block; vertical-align: -2px; margin-right: .35rem; color: var(--gold); }
.utility-area { display: flex; align-items: center; }
.utility-links { display: flex; align-items: center; gap: 1.6rem; }
.utility-links a { transition: color .3s; }
.utility-links a:hover { color: var(--champagne); }
.utility-social { display: flex; gap: .9rem; padding-left: 1.4rem; border-left: 1px solid var(--line-soft); }
.utility-social svg { margin: 0; width: 16px; height: 16px; }

.nav-row { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 1.5rem; }
.brand img { height: 54px; width: auto; transition: height .5s var(--ease-out); }
.site-header.is-solid .brand img { height: 46px; }
.nav { display: none; gap: 2.2rem; }
.nav a { position: relative; font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-mute); padding: .4rem 0; transition: color .4s; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--gold-flat); transform: scaleX(0); transform-origin: right; transition: transform .5s var(--ease-out); }
.nav a:hover, .nav a.is-current { color: var(--champagne); }
.nav a:hover::after, .nav a.is-current::after { transform: scaleX(1); transform-origin: left; }
.nav-actions { display: flex; align-items: center; gap: 1.1rem; }
.nav-phone { display: flex; align-items: center; gap: .5rem; font-size: .82rem; letter-spacing: .06em; color: var(--text); }
.nav-phone svg { width: 18px; height: 18px; color: var(--gold); }
.nav-phone span { display: none; }
.nav-actions .btn { display: none; }

.menu-toggle { width: 44px; height: 44px; display: grid; place-content: center; gap: 7px; }
.menu-toggle span { display: block; width: 26px; height: 1px; background: var(--champagne); transition: transform .5s var(--ease-out); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: calc(var(--header-h) + 2rem) var(--gutter) 2rem;
  background: radial-gradient(120% 70% at 80% 0%, #1f1911 0%, var(--bg) 60%);
  clip-path: inset(0 0 100% 0); transition: clip-path .8s var(--ease-out);
}
.mobile-menu.is-open { clip-path: inset(0 0 0 0); }
.mobile-menu[hidden] { display: none; }
.mobile-menu nav { display: grid; gap: .3rem; }
.mobile-menu nav a { font-family: var(--serif); font-size: clamp(2rem, 9vw, 3rem); line-height: 1.25; display: flex; align-items: baseline; gap: 1rem; border-bottom: 1px solid var(--line-soft); padding-block: .4rem; }
.mobile-menu nav a small { font-family: var(--sans); font-size: .7rem; letter-spacing: .2em; color: var(--gold); }
.mobile-menu-foot { display: grid; gap: .4rem; font-size: .9rem; color: var(--text-mute); }
.mobile-menu-foot a { color: var(--champagne); }

/* =============================================================
   8. Placeholders (image slots)
   ============================================================= */
.ph {
  position: relative; width: 100%; height: 100%; min-height: 100%;
  display: grid; place-items: end start;
  overflow: hidden;
  background:
    radial-gradient(90% 70% at 70% 20%, rgba(201,162,75,.14), transparent 60%),
    repeating-linear-gradient(90deg, rgba(243,217,160,.035) 0 1px, transparent 1px 64px),
    linear-gradient(160deg, #1b1712 0%, #0e0d0b 100%);
}
.ph::before { /* house line mark */
  content: ""; position: absolute; left: 50%; top: 50%; width: 64px; height: 53px; transform: translate(-50%, -62%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 82'%3E%3Cpath d='M92 79H9V37H5v-9l6-5V12h7v6L50 3l41 27H63' fill='none' stroke='%23C9A24B' stroke-width='2' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: .55;
}
.ph::after { /* inner hairline frame */
  content: ""; position: absolute; inset: 12px; border: 1px solid var(--line-soft); pointer-events: none;
}
.ph-label { position: relative; z-index: 1; margin: 0 0 1.4rem 1.4rem; font-size: .66rem; letter-spacing: .26em; text-transform: uppercase; color: rgba(243,217,160,.7); }
.ph-light {
  background:
    radial-gradient(90% 70% at 70% 20%, rgba(201,162,75,.18), transparent 60%),
    repeating-linear-gradient(90deg, rgba(138,100,36,.06) 0 1px, transparent 1px 64px),
    linear-gradient(160deg, #e9dfcd 0%, #d9ccb5 100%);
}
.ph-light .ph-label { color: var(--bronze); }
.ph-light::after { border-color: rgba(138,100,36,.25); }
.ph-before {
  background:
    repeating-linear-gradient(35deg, rgba(245,239,230,.03) 0 2px, transparent 2px 14px),
    linear-gradient(160deg, #262421 0%, #121110 100%);
}
.ph-before::before { opacity: .25; filter: grayscale(1); }
.compare-after:not(.has-img) {
  background:
    radial-gradient(70% 80% at 80% 30%, rgba(243,217,160,.22), transparent 60%),
    repeating-linear-gradient(90deg, rgba(243,217,160,.07) 0 1px, transparent 1px 48px),
    linear-gradient(160deg, #2a2114 0%, #120f0a 100%);
}
.compare-after::before { left: 75%; }
.compare-before::before { left: 25%; }
/* when a real photo is dropped in, JS adds .has-img */
.ph.has-img { background: #0d0c0a; }
.ph.has-img::before, .ph.has-img .ph-label { display: none; }
.ph.has-img::after { border-color: rgba(243,217,160,.18); }
.ph > img.ph-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.2s var(--ease-out); }
.ph.has-img > img.ph-img { opacity: 1; }
/* bare slot: no placeholder art — stays invisible until a photo exists */
.ph-bare, .ph-bare.has-img { background: none; }
.ph-bare::before, .ph-bare::after { display: none; }

/* =============================================================
   8b. Film grain · scroll progress · language switch
   ============================================================= */
.grain {
  position: fixed; inset: -50%; z-index: 950; pointer-events: none; opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 .95 0 0 0 0 .85 0 0 0 .9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 1.2s steps(6) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); } 20% { transform: translate(-4%, 3%); } 40% { transform: translate(3%, -5%); }
  60% { transform: translate(-6%, -2%); } 80% { transform: translate(5%, 4%); } 100% { transform: translate(0, 0); }
}
.progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 120; pointer-events: none; }
.progress span { display: block; height: 100%; background: var(--gold-flat); transform: scaleX(0); transform-origin: left; box-shadow: 0 0 10px rgba(243,217,160,.6); }

.lang {
  position: relative; display: inline-grid; grid-template-columns: 1fr 1fr;
  padding: 3px; border: 1px solid var(--line); border-radius: 999px;
  background: rgba(10,10,10,.35);
}
.lang button {
  position: relative; z-index: 1; min-width: 38px; height: 30px; padding: 0 .55rem;
  font-size: .68rem; font-weight: 500; letter-spacing: .16em; text-indent: .16em;
  color: var(--text-mute); border-radius: 999px; transition: color .5s var(--ease-out);
}
.lang button:hover { color: var(--champagne); }
.lang button[aria-pressed="true"] { color: var(--ink); }
.lang-pill {
  position: absolute; top: 3px; bottom: 3px; left: 3px; width: calc(50% - 3px);
  border-radius: 999px; background: var(--gold-grad); background-size: 220% 100%; background-position: 30% 50%;
  box-shadow: 0 4px 18px -6px rgba(201,162,75,.8), inset 0 1px 0 rgba(255,245,220,.6);
  transition: transform .7s var(--ease-out), background-position 1s var(--ease-out);
}
.lang[data-active="es"] .lang-pill { transform: translateX(100%); background-position: 70% 50%; }

.lang-curtain {
  position: fixed; inset: 0; z-index: 1100; display: grid; place-items: center;
  background: radial-gradient(60% 60% at 50% 50%, #1d170e, var(--bg) 80%);
  clip-path: inset(100% 0 0 0); pointer-events: none; visibility: hidden;
  transition: clip-path .4s var(--ease-out), visibility 0s .4s;
}
.lang-curtain span { font-size: clamp(3rem, 9vw, 6rem); line-height: 1.3; opacity: 0; transform: translateY(20px); transition: opacity .5s var(--ease-out) .15s, transform .7s var(--ease-out) .15s; }
.lang-curtain.is-on { clip-path: inset(0 0 0 0); visibility: visible; pointer-events: auto; transition: clip-path .6s var(--ease-out), visibility 0s; }
.lang-curtain.is-on span { opacity: 1; transform: none; }
.lang-curtain.is-leaving { clip-path: inset(0 0 100% 0); }
.lang-curtain.is-leaving span { opacity: 0; transform: translateY(-20px); transition-delay: 0s; }

/* =============================================================
   9. Hero
   ============================================================= */
.hero {
  --mx: 50%; --my: 40%;
  position: relative; isolation: isolate;
  min-height: 100vh; min-height: 100svh;
  display: grid; place-items: center;
  padding: calc(var(--header-h) + 3rem) 0 8.5rem;
  overflow: hidden;
  background: var(--bg);
}
.hero-glow {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(38rem 26rem at var(--mx) var(--my), rgba(201,162,75,.16), transparent 70%),
    radial-gradient(60% 50% at 50% 45%, rgba(138,100,36,.18), transparent 70%),
    radial-gradient(120% 80% at 50% 120%, #17120b 0%, transparent 60%);
  transition: background .2s linear;
}
.hero-dust { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; }
/* cinematic backdrop photo (optional) */
.hero-bg { position: absolute; inset: -4% 0 -12%; z-index: -3; pointer-events: none; will-change: transform; }
.hero-bg .ph { position: absolute; inset: 0; }
.hero-bg .ph-img { filter: saturate(.85) brightness(.62); transform: scale(1.12); }
.hero-bg .has-img .ph-img { animation: heroZoom 26s var(--ease-soft) forwards; }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero:has(.hero-bg .has-img) .hero-glow {
  background:
    radial-gradient(38rem 26rem at var(--mx) var(--my), rgba(201,162,75,.14), transparent 70%),
    radial-gradient(70% 60% at 50% 48%, rgba(10,10,10,.55), transparent 80%),
    linear-gradient(180deg, rgba(10,10,10,.75) 0%, rgba(10,10,10,.25) 35%, rgba(10,10,10,.45) 70%, var(--bg) 100%);
}
.hero-frame { position: absolute; inset: calc(var(--header-h) + 1.2rem) var(--gutter) 1.6rem; pointer-events: none; }
.hero-frame i { position: absolute; width: 28px; height: 28px; border-color: var(--line); border-style: solid; border-width: 0; opacity: 0; transition: opacity 1.2s var(--ease-out) 1s; }
.hero-frame i:nth-child(1) { top: 0; left: 0; border-top-width: 1px; border-left-width: 1px; }
.hero-frame i:nth-child(2) { top: 0; right: 0; border-top-width: 1px; border-right-width: 1px; }
.hero-frame i:nth-child(3) { bottom: 0; left: 0; border-bottom-width: 1px; border-left-width: 1px; }
.hero-frame i:nth-child(4) { bottom: 0; right: 0; border-bottom-width: 1px; border-right-width: 1px; }
.is-loaded .hero-frame i { opacity: 1; }

.hero-side { display: none; position: absolute; top: 50%; font-size: .66rem; letter-spacing: .34em; text-transform: uppercase; color: var(--text-faint); white-space: nowrap; }
.hero-side-l { left: calc(var(--gutter) + .6rem); transform: translate(-50%, -50%) rotate(-90deg) translateY(50%); transform-origin: center; }
.hero-side-r { right: calc(var(--gutter) + .6rem); transform: translate(50%, -50%) rotate(90deg) translateY(50%); }

.hero-inner { position: relative; text-align: center; display: grid; justify-items: center; }
.hero-kicker { gap: 1rem; font-size: .66rem; letter-spacing: .3em; }
.kicker-line { width: 2.2rem; height: 1px; background: var(--gold-flat); display: none; }
.hero-logo { margin: clamp(1.6rem, 4vh, 2.8rem) 0 clamp(1.2rem, 3vh, 2rem); width: min(88vw, 820px); }
.logo-sheen { position: relative; display: block; isolation: isolate; filter: drop-shadow(0 20px 60px rgba(201,162,75,.18)); }
.logo-sheen img { width: 100%; height: auto; }
.logo-sheen-band {
  position: absolute; inset: -10% -20%; pointer-events: none;
  background: linear-gradient(105deg, transparent 40%, rgba(255,246,222,.0) 42%, rgba(255,246,222,.85) 50%, rgba(255,246,222,0) 58%, transparent 60%);
  background-size: 250% 100%; background-position: 130% 0;
  mix-blend-mode: color-dodge;
  animation: sheen 7s var(--ease-soft) 2.4s infinite;
}
@keyframes sheen { 0% { background-position: 130% 0; } 38%, 100% { background-position: -30% 0; } }
.hero-lede { max-width: 36rem; font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: var(--text-mute); }
.hero-lede em { font-family: var(--serif); font-style: italic; font-size: 1.15em; }
.hero-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem; margin-top: 2.2rem; }

.hero-scroll { position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%); display: grid; justify-items: center; gap: .7rem; font-size: .62rem; letter-spacing: .34em; text-transform: uppercase; color: var(--text-faint); }
.hero-scroll i { width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.hero-scroll i::after { content: ""; position: absolute; left: 0; top: -40%; width: 1px; height: 40%; background: var(--champagne); animation: scrollDrop 2.4s var(--ease-soft) infinite; }
@keyframes scrollDrop { to { top: 110%; } }
@media (max-height: 860px) { .hero-scroll { display: none; } .hero { padding-bottom: 4rem; } }

/* hero entrance (after splash) */
.js .hero-kicker, .js .hero-logo, .js .hero-lede, .js .hero-ctas, .js .hero-scroll { opacity: 0; transform: translateY(24px); transition: opacity 1.4s var(--ease-out), transform 1.4s var(--ease-out); }
.js .hero-logo { transform: translateY(18px) scale(.965); filter: blur(8px); transition: opacity 1.8s var(--ease-out), transform 1.8s var(--ease-out), filter 1.8s var(--ease-out); }
.is-loaded .hero-kicker { opacity: 1; transform: none; transition-delay: .1s; }
.is-loaded .hero-logo { opacity: 1; transform: none; filter: none; transition-delay: .2s; }
.is-loaded .hero-lede { opacity: 1; transform: none; transition-delay: .7s; }
.is-loaded .hero-ctas { opacity: 1; transform: none; transition-delay: .9s; }
.is-loaded .hero-scroll { opacity: 1; transform: translateX(-50%); transition-delay: 1.3s; }
.js .hero-scroll { transform: translate(-50%, 24px); }
/* safety: never leave the hero hidden */
.js .hero-inner > * { animation: heroSafety .01s 5s forwards; }
@keyframes heroSafety { to { opacity: 1; transform: none; filter: none; } }

/* =============================================================
   10. Marquee
   ============================================================= */
.marquee { border-block: 1px solid var(--line-soft); overflow: hidden; padding: 1.4rem 0; background: var(--bg-2); }
.marquee-track { display: flex; align-items: center; gap: 2.2rem; width: max-content; animation: marquee 48s linear infinite; }
.marquee span { font-family: var(--serif); font-size: clamp(1.4rem, 2.6vw, 2.2rem); color: var(--text-mute); white-space: nowrap; }
.marquee span.script { font-family: var(--script); font-size: clamp(1.9rem, 3.4vw, 2.9rem); color: var(--champagne); }
.marquee b { color: var(--gold); font-size: .55rem; font-weight: 400; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =============================================================
   11. Manifesto
   ============================================================= */
.manifesto { padding: clamp(6rem, 14vw, 11rem) 0 clamp(2rem, 5vw, 4rem); }
.manifesto-grid { display: grid; gap: 2.4rem; max-width: 1100px; }
.manifesto-text { font-family: var(--serif); font-size: clamp(1.7rem, 3.9vw, 3.3rem); line-height: 1.22; letter-spacing: -.01em; }
.manifesto-text .w { transition: color .5s var(--ease-soft); }
.js .manifesto-text.is-split .w { color: rgba(245,239,230,.16); }
.js .manifesto-text.is-split .w.lit { color: var(--text); }
.js .manifesto-text.is-split .w.lit.gold { color: var(--champagne); }
.manifesto-sign { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.6rem; }
.manifesto-sign .script { font-size: clamp(2.6rem, 5vw, 3.8rem); line-height: 1; }
.manifesto-sign-note { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-faint); max-width: 22rem; }

/* =============================================================
   12. Services
   ============================================================= */
.services { position: relative; padding: clamp(5rem, 10vw, 9rem) 0; background: linear-gradient(var(--bg), var(--bg-2)); }
.svc-group + .svc-group { margin-top: clamp(3.5rem, 7vw, 5.5rem); }
.svc-group-title { margin-bottom: 1.4rem; }
.svc-group-title .serif { font-size: clamp(1.8rem, 3vw, 2.4rem); font-style: italic; color: var(--champagne); }
.svc-group-title .script { font-size: clamp(3rem, 6vw, 4.6rem); line-height: 1; }
.svc-list { border-top: 1px solid var(--line); }
.svc {
  position: relative;
  display: grid; grid-template-columns: 2.6rem 1fr; gap: .4rem 1rem;
  padding: 1.7rem 0; border-bottom: 1px solid var(--line-soft);
  cursor: default;
}
.svc::before { /* gold sweep underline */
  content: ""; position: absolute; left: 0; bottom: -1px; height: 1px; width: 100%;
  background: var(--gold-flat); transform: scaleX(0); transform-origin: left; transition: transform .8s var(--ease-out);
}
.svc-no { font-family: var(--serif); font-style: italic; color: var(--gold); padding-top: .5rem; font-size: .95rem; }
.svc-name { font-family: var(--serif); font-size: clamp(1.6rem, 3.6vw, 3rem); letter-spacing: -.01em; transition: transform .7s var(--ease-out), color .5s; }
.svc-desc { grid-column: 2; color: var(--text-mute); max-width: 34rem; font-size: .98rem; }
.svc-arrow { display: none; }
.svc:hover::before { transform: scaleX(1); }
.svc:hover .svc-name { color: var(--champagne); transform: translateX(.6rem); }

.svc-float {
  position: fixed; top: 0; left: 0; z-index: 50;
  width: 300px; height: 380px; margin: -190px 0 0 -150px;
  pointer-events: none; opacity: 0; transform: scale(.85);
  transition: opacity .45s var(--ease-out), transform .6s var(--ease-out);
  clip-path: polygon(0 18%, 50% 0, 100% 18%, 100% 100%, 0 100%); /* house silhouette */
}
.svc-float.is-on { opacity: 1; transform: scale(1); }
.svc-float .ph { height: 100%; }
.svc-float .ph::before { transform: translate(-50%, -40%); }
@media (hover: none), (pointer: coarse) { .svc-float { display: none; } }

/* =============================================================
   13. Why (ivory)
   ============================================================= */
.why { background: var(--ivory); color: var(--ink); padding: clamp(5rem, 10vw, 9rem) 0; position: relative; }
.why .kicker { color: var(--bronze); }
.why .kicker .num { color: var(--bronze); }
.why .h2 em { color: var(--bronze); }
.why .section-intro { color: var(--ink-soft); }
.why-grid { display: grid; gap: clamp(2.5rem, 5vw, 4.5rem); }
.why-feature { position: relative; aspect-ratio: 4 / 5; }
.why-feature .ph { position: absolute; inset: 0; }
.why-feature figcaption { position: absolute; right: -.4rem; bottom: -1.6rem; background: var(--ivory); padding: .4rem 1rem; font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--ink-soft); }
.why-feature figcaption .script { font-size: 2rem; color: var(--bronze); margin-right: .3rem; }
.why-list { display: grid; }
.why-item { display: grid; grid-template-columns: 3.4rem 1fr; gap: 1rem; padding: 1.6rem 0; border-top: 1px solid rgba(138,100,36,.28); }
.why-item:last-child { border-bottom: 1px solid rgba(138,100,36,.28); }
.why-no { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--bronze); line-height: 1.5; }
.why-item h3 { font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.65rem); margin-bottom: .4rem; }
.why-item p { color: var(--ink-soft); font-size: .98rem; }



.why-facts { margin-top: clamp(4rem, 8vw, 6rem); display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(138,100,36,.35); }
.why-facts li { padding: 1.8rem 1rem 0 0; display: grid; gap: .3rem; }
.why-facts strong { font-family: var(--serif); font-weight: 400; font-size: clamp(2.6rem, 5vw, 4rem); line-height: 1; background: linear-gradient(135deg, #C9A24B, #8A6424 60%, #6d4d18); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
.why-facts span:not([data-count]) { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); }

/* =============================================================
   13b. Signature details — horizontal gallery
   Mobile/tablet: native swipe with snap. Desktop: pinned, driven by vertical scroll.
   ============================================================= */
.details { position: relative; background: var(--bg); border-block: 1px solid var(--line-soft); }
.details-sticky { position: relative; overflow: hidden; padding: clamp(5rem, 10vw, 7rem) 0 4rem; }
.details-track {
  display: flex; gap: clamp(1rem, 2.4vw, 2rem); align-items: stretch;
  padding-inline: var(--gutter);
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter); scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.details-track::-webkit-scrollbar { display: none; }
.details-intro { flex: 0 0 min(84vw, 420px); scroll-snap-align: start; display: flex; flex-direction: column; justify-content: center; padding-right: 1rem; }
.details-intro .h2 { font-size: clamp(2.1rem, 4.6vw, 3.9rem); }
.details-hint { margin-top: 2rem; display: inline-flex; align-items: center; gap: .7rem; font-size: .7rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); }
.details-hint svg { width: 18px; height: 18px; animation: nudge 2.2s var(--ease-soft) infinite; }
@keyframes nudge { 50% { transform: translateX(8px); } }

.dcard { flex: 0 0 min(76vw, 360px); scroll-snap-align: start; display: grid; align-content: start; gap: .5rem; }
.dcard-media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; margin-bottom: 1rem; }
.dcard-media .ph { position: absolute; inset: 0; transform: scale(1.18); will-change: transform; }
.dcard-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(10,10,10,.45)); pointer-events: none; }
.dcard-no { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: .95rem; }
.dcard h3 { font-family: var(--serif); font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
.dcard p { color: var(--text-mute); font-size: .95rem; max-width: 30ch; }
.dcard:nth-of-type(even) { padding-top: clamp(0rem, 4vw, 3.5rem); }
.details-bar { margin: 2.6rem var(--gutter) 0; height: 1px; background: var(--line-soft); }
.details-bar span { display: block; height: 100%; background: var(--gold-flat); transform: scaleX(0); transform-origin: left; }

/* pinned (desktop) */
.details.is-pinned .details-sticky { position: sticky; top: 0; height: 100vh; height: 100svh; display: flex; flex-direction: column; justify-content: center; padding: calc(var(--header-h) + 1rem) 0 2rem; }
.details.is-pinned .details-track { overflow: visible; width: max-content; scroll-snap-type: none; will-change: transform; padding-right: 12vw; }
.details.is-pinned .details-intro { flex-basis: 30vw; max-width: 460px; padding-right: 3vw; }
.details.is-pinned .dcard { flex-basis: clamp(260px, 23vw, 360px); }
.details.is-pinned .dcard-media { aspect-ratio: auto; height: min(46vh, 460px); }

/* services thumbnail (touch screens only, when a photo exists) */
.svc-thumb { display: none; }
.svc.has-thumb .svc-thumb { display: block; grid-column: 2; margin-top: .9rem; width: 100%; max-width: 420px; aspect-ratio: 16 / 9; overflow: hidden; clip-path: polygon(0 14%, 50% 0, 100% 14%, 100% 100%, 0 100%); }
.svc-thumb img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 720px) { .svc.has-thumb .svc-thumb { grid-column: 2 / 4; } }

/* =============================================================
   14. Process
   ============================================================= */
.process { padding: clamp(5rem, 10vw, 9rem) 0; background: radial-gradient(70% 50% at 50% 0%, #19140d 0%, var(--bg) 70%); position: relative; }
.process-track { position: relative; max-width: 1080px; margin-inline: auto; }
.process-line { position: absolute; top: 0; bottom: 0; left: 11px; width: 1px; background: var(--line-soft); }
.process-house { position: absolute; top: -44px; left: 50%; width: 40px; max-width: none; transform: translateX(-50%); color: var(--gold); }
.process-line-fill { position: absolute; inset: 0; background: linear-gradient(var(--champagne), var(--gold) 60%, var(--bronze)); transform-origin: top; transform: scaleY(var(--p, 0)); box-shadow: 0 0 14px rgba(243,217,160,.5); }
.steps { display: grid; gap: clamp(2.5rem, 6vw, 4.5rem); padding-top: 1.2rem; }
.step { position: relative; padding-left: 3rem; }
.step-dot { position: absolute; left: 5px; top: 1.9rem; width: 13px; height: 13px; transform: rotate(45deg); background: var(--bg); border: 1px solid var(--gold); transition: background .6s, box-shadow .6s; }
.step.is-reached .step-dot { background: var(--champagne); box-shadow: 0 0 18px rgba(243,217,160,.7); }
.step-card { position: relative; padding: 2rem clamp(1.4rem, 3vw, 2.4rem); border: 1px solid var(--line-soft); background: linear-gradient(160deg, rgba(201,162,75,.06), rgba(10,10,10,0) 60%); transition: border-color .6s, transform .7s var(--ease-out); }
.step-card::before { content: ""; position: absolute; inset: -1px; border: 1px solid transparent; background: var(--gold-flat) border-box; -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .6s; pointer-events: none; }
.step-card:hover { transform: translateY(-4px); }
.step-card:hover::before { opacity: 1; }
.step-no { font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); }
.step h3 { font-family: var(--serif); font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: .6rem 0 .8rem; }
.step p { color: var(--text-mute); }
.step-tag { display: inline-block; margin-top: 1.2rem; font-family: var(--serif); font-style: italic; color: var(--champagne); font-size: .98rem; }

/* =============================================================
   15. Projects
   ============================================================= */
.projects { padding: clamp(5rem, 10vw, 9rem) 0; background: var(--bg-2); }
.projects-grid { display: grid; gap: 1.6rem; }
.project figcaption { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding-top: 1rem; }
.project figcaption span { font-family: var(--serif); font-size: 1.25rem; }
.project figcaption em { font-style: normal; font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); }

.compare { position: relative; aspect-ratio: 4 / 3; overflow: hidden; --pos: 50%; cursor: ew-resize; touch-action: pan-y; user-select: none; -webkit-user-select: none; }
.project-lg .compare { aspect-ratio: 16 / 10; }
.compare > .ph { position: absolute; inset: 0; }
.compare-before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.compare-before .ph-label { margin-left: 1.4rem; }
.compare-after .ph-label { position: absolute; right: 1.4rem; bottom: 1.4rem; margin: 0; }
@media (max-width: 719px) { .compare .ph-label { display: none; } }
.why-feature .ph-label { margin-bottom: 3.4rem; }
.compare-tag { position: absolute; top: 1.2rem; z-index: 2; font-size: .64rem; letter-spacing: .28em; text-transform: uppercase; padding: .45rem .8rem; background: rgba(10,10,10,.6); border: 1px solid var(--line); color: var(--champagne); }
.compare-tag-b { left: 1.2rem; }
.compare-tag-a { right: 1.2rem; }
.compare-handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 1px; background: var(--champagne); z-index: 3; box-shadow: 0 0 16px rgba(243,217,160,.6); }
.compare-handle i { position: absolute; top: 50%; left: 50%; width: 52px; height: 52px; transform: translate(-50%, -50%) rotate(45deg); border: 1px solid var(--champagne); background: rgba(10,10,10,.75); transition: transform .5s var(--ease-out), background .4s; }
.compare-handle i::before, .compare-handle i::after { content: ""; position: absolute; top: 50%; left: 50%; width: 8px; height: 8px; border: solid var(--champagne); border-width: 0 0 1px 1px; }
.compare-handle i::before { transform: translate(-90%, -10%) rotate(0deg); }
.compare-handle i::after { transform: translate(-10%, -90%) rotate(180deg); }
.compare:hover .compare-handle i, .compare.is-drag .compare-handle i { transform: translate(-50%, -50%) rotate(45deg) scale(1.1); background: rgba(201,162,75,.25); }
.compare:focus-visible { outline-offset: 6px; }

.projects-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1.6rem; }
.projects-strip figure { aspect-ratio: 3 / 4; overflow: hidden; }
.projects-strip .ph { transition: transform 1.2s var(--ease-out); }
.projects-strip figure:hover .ph { transform: scale(1.04); }
.projects-follow { margin-top: 3rem; text-align: center; font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--text-mute); }

/* =============================================================
   16. Reviews — rating medallion + 3D review deck
   ============================================================= */
.reviews { --rx: 70%; --ry: 45%; position: relative; isolation: isolate; overflow: hidden; padding: clamp(5rem, 10vw, 9rem) 0; background: radial-gradient(80% 60% at 50% 100%, #15110b 0%, var(--bg) 70%); }
.reviews-glow { position: absolute; inset: 0; z-index: -1; pointer-events: none; background: radial-gradient(34rem 26rem at var(--rx) var(--ry), rgba(201,162,75,.13), transparent 70%); transition: background .2s linear; }
.reviews-bgmark {
  position: absolute; z-index: -1; right: -1vw; top: 38%; font-size: clamp(16rem, 34vw, 34rem); line-height: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(201,162,75,.12), rgba(201,162,75,0) 70%); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
}
.reviews-grid { display: grid; gap: clamp(3rem, 6vw, 5rem); align-items: center; }

/* --- rating medallion --- */
.rating { display: grid; justify-items: center; text-align: center; }
.rating-medal { position: relative; display: grid; place-items: center; width: clamp(200px, 22vw, 260px); aspect-ratio: 1; border-radius: 50%; }
.rating-ring { position: absolute; inset: 0; border-radius: 50%; padding: 1.5px;
  background: conic-gradient(from var(--spin, 0deg), rgba(201,162,75,.08), #F3D9A0 12%, rgba(201,162,75,.15) 25%, rgba(201,162,75,.08) 50%, #C9A24B 62%, rgba(201,162,75,.08) 75%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
  animation: ringSpin 8s linear infinite; filter: drop-shadow(0 0 10px rgba(243,217,160,.35)); }
.rating-ring-2 { inset: 14px; opacity: .45; animation-duration: 14s; animation-direction: reverse; }
@property --spin { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@keyframes ringSpin { to { --spin: 360deg; } }
.rating-inner { position: relative; display: grid; justify-items: center; gap: .1rem; width: 74%; aspect-ratio: 1; place-content: center; border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, #231b10, #0d0b08 70%); box-shadow: inset 0 1px 0 rgba(243,217,160,.25), 0 30px 80px -30px rgba(201,162,75,.55); }
.rating-inner .g-logo { width: 22px; height: 22px; margin-bottom: .2rem; }
.rating-score { font-family: var(--serif); font-size: clamp(3.6rem, 6vw, 4.8rem); line-height: 1; letter-spacing: -.02em;
  background: var(--gold-grad); background-size: 250% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
  animation: goldShift 6s ease-in-out infinite alternate; }
.rating-of { font-size: .68rem; letter-spacing: .3em; color: var(--text-faint); }
.rating-medal:hover .rating-inner { box-shadow: inset 0 1px 0 rgba(243,217,160,.35), 0 30px 90px -20px rgba(243,217,160,.7); }
.rating-inner { transition: box-shadow .6s var(--ease-out); }

.rating-stars { display: flex; gap: .45rem; margin-top: 1.8rem; }
.rating-stars svg { width: 26px; height: 26px; filter: drop-shadow(0 0 8px rgba(243,217,160,.55)); }
.js .rating-stars svg { opacity: .12; transform: scale(.4) rotate(-40deg); transition: opacity .6s var(--ease-out), transform .9s cubic-bezier(.34,1.56,.64,1); }
.js .rating.is-in .rating-stars svg { opacity: 1; transform: none; }
.rating.is-in .rating-stars svg:nth-child(1) { transition-delay: .5s; }
.rating.is-in .rating-stars svg:nth-child(2) { transition-delay: .65s; }
.rating.is-in .rating-stars svg:nth-child(3) { transition-delay: .8s; }
.rating.is-in .rating-stars svg:nth-child(4) { transition-delay: .95s; }
.rating.is-in .rating-stars svg:nth-child(5) { transition-delay: 1.1s; }
.rating-count { margin-top: 1.2rem; font-size: .74rem; letter-spacing: .28em; text-transform: uppercase; color: var(--text-mute); }
.rating-note { margin-top: .4rem; font-family: var(--serif); font-size: 1.25rem; }
.rating-note em { color: var(--champagne); }
.rating-ctas { margin-top: 2rem; display: grid; justify-items: center; gap: 1.2rem; }
.reviews-write { font-family: var(--serif); font-style: italic; font-size: 1.02rem; }
.js .rating .rating-medal { opacity: 0; transform: scale(.85); filter: blur(6px); transition: opacity 1.4s var(--ease-out), transform 1.6s var(--ease-out), filter 1.4s var(--ease-out); }
.js .rating.is-in .rating-medal { opacity: 1; transform: none; filter: none; }

/* --- review deck --- */
.quotes { position: relative; perspective: 1400px; padding-top: 3.2rem; }
.quotes-stage { position: relative; display: grid; }
.quote {
  grid-area: 1 / 1; position: relative; overflow: hidden;
  padding: clamp(1.8rem, 4vw, 3rem); border: 1px solid var(--line-soft);
  background: linear-gradient(160deg, #241d13, #0e0c09 60%);
  box-shadow: 0 40px 90px -40px rgba(0,0,0,.9);
  transform-origin: 50% 0;
  transition: transform 1s var(--ease-out), opacity .8s var(--ease-out), filter .8s var(--ease-out), border-color .6s;
  opacity: 0; pointer-events: none; transform: translate3d(0, 60px, -200px) scale(.9); filter: blur(6px);
}
.quote.is-active { opacity: 1; pointer-events: auto; filter: none; z-index: 3; border-color: var(--line); transform: rotateX(var(--tx, 0deg)) rotateY(var(--ty, 0deg)); }
.quote.is-next { opacity: .7; z-index: 2; border-color: var(--line); transform: translate3d(0, -22px, 0) scale(.94); filter: blur(1px); }
.quote.is-next2 { opacity: .35; z-index: 1; border-color: var(--line-soft); transform: translate3d(0, -42px, 0) scale(.88); filter: blur(2px); }
.quote.is-leaving { opacity: 0; z-index: 4; transform: translate3d(-40%, 30px, 0) rotate(-8deg); filter: blur(4px); transition-duration: .9s; }
.quotes.is-tilting .quote.is-active { transition: transform .15s linear, opacity .8s, filter .8s; }
/* animated gold edge on the active card */
.quote::before { content: ""; position: absolute; inset: 0; padding: 1px; pointer-events: none;
  background: conic-gradient(from var(--spin, 0deg), transparent 0 70%, #F3D9A0 82%, transparent 92%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .8s; animation: ringSpin 6s linear infinite; }
.quote.is-active::before { opacity: 1; }
.quote-sheen { position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .5s;
  background: radial-gradient(22rem 16rem at var(--gx, 50%) var(--gy, 0%), rgba(243,217,160,.12), transparent 70%); }
.quote.is-active .quote-sheen { opacity: 1; }

.quote-head { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1rem; padding-bottom: 1.4rem; margin-bottom: 1.6rem; border-bottom: 1px solid var(--line-soft); }
.quote-avatar { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; font-family: var(--serif); font-size: 1.05rem; color: var(--ink);
  background: var(--gold-grad); background-size: 220% 100%; box-shadow: 0 0 0 4px rgba(201,162,75,.12), 0 8px 24px -8px rgba(201,162,75,.7); }
.quote-who { display: grid; gap: .15rem; text-align: left; }
.quote-who strong { font-weight: 400; font-size: .86rem; letter-spacing: .22em; text-transform: uppercase; color: var(--champagne); }
.quote-who > span { display: flex; align-items: center; gap: .45rem; font-size: .8rem; color: var(--text-faint); }
.g-mini { width: 14px; height: 14px; flex: none; }
.quote-stars { color: var(--champagne); letter-spacing: .1em; font-size: .95rem; text-shadow: 0 0 10px rgba(243,217,160,.5); }
.quote-text { position: relative; font-family: var(--serif); font-size: clamp(1.25rem, 2.1vw, 1.75rem); line-height: 1.45; }
.quote-text .qw { display: inline-block; white-space: pre; }
.js .quote-text.is-split .qw { opacity: 0; transform: translateY(.5em); filter: blur(6px); }
.js .quote.is-active .quote-text.is-split .qw { opacity: 1; transform: none; filter: none; transition: opacity .7s var(--ease-out), transform .9s var(--ease-out), filter .7s var(--ease-out); transition-delay: calc(.25s + var(--i) * 28ms); }
.quote-mark { position: absolute; right: 1.2rem; bottom: -3.2rem; font-size: 11rem; line-height: 1; color: rgba(201,162,75,.12); pointer-events: none; }

.quotes-nav { display: flex; align-items: center; justify-content: center; gap: 1.2rem; margin-top: 2.2rem; }
.quotes-btn { width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--champagne); transition: background .4s, color .4s, border-color .4s, transform .5s var(--ease-out); }
.quotes-btn svg { width: 18px; height: 18px; }
.quotes-btn[data-quotes-prev] svg { transform: scaleX(-1); }
.quotes-btn:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); transform: scale(1.06); }
.quotes-dots { display: flex; gap: .6rem; }
.quotes-dots button { width: 34px; height: 2px; background: var(--line-soft); position: relative; overflow: hidden; }
.quotes-dots button::after { content: ""; position: absolute; inset: 0; background: var(--gold-flat); transform: scaleX(0); transform-origin: left; }
.quotes-dots button.is-active::after { animation: dotFill 7s linear forwards; }
.quotes.is-paused .quotes-dots button.is-active::after { animation-play-state: paused; }
@keyframes dotFill { to { transform: scaleX(1); } }
.quotes-count { font-family: var(--serif); font-style: italic; font-size: .95rem; color: var(--text-faint); min-width: 4.2rem; text-align: center; }
.quotes-count b { font-weight: 400; color: var(--champagne); }

@media (min-width: 960px) {
  .reviews-grid { grid-template-columns: 4fr 7fr; }
  .quotes { padding-top: 3.5rem; }
}
@media (max-width: 539px) {
  .quote-head { grid-template-columns: auto 1fr; }
  .quote-stars { grid-column: 1 / -1; }
  .quotes-count { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .rating-ring, .quote::before { animation: none; }
  .js .quote-text.is-split .qw { opacity: 1; transform: none; filter: none; }
}

/* =============================================================
   17. CTA band
   ============================================================= */
.cta-band { position: relative; padding: clamp(6rem, 12vw, 10rem) 0; text-align: center; overflow: hidden; border-block: 1px solid var(--line-soft); background: radial-gradient(60% 70% at 50% 50%, #1d170e 0%, var(--bg) 75%); }
.cta-band-inner { position: relative; display: grid; justify-items: center; }
.cta-house { position: absolute; left: 50%; top: 50%; width: min(760px, 120vw); transform: translate(-50%, -54%); opacity: .5; pointer-events: none; overflow: visible; }
.cta-house .draw { stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 3s var(--ease-soft); }
.cta-band.is-in .cta-house .draw { stroke-dashoffset: 0; }
.cta-title { font-family: var(--serif); font-size: clamp(2.4rem, 6.4vw, 5.4rem); line-height: 1.08; margin-top: 1.2rem; }
.cta-title .script { font-size: 1.3em; line-height: .8; }

/* =============================================================
   18. Contact
   ============================================================= */
.contact { padding: clamp(5rem, 10vw, 9rem) 0; background: linear-gradient(var(--bg), var(--bg-2)); }
.contact-grid { display: grid; gap: clamp(3rem, 6vw, 5rem); }
.contact-list { margin-top: 2.4rem; display: grid; gap: 1.4rem; }
.contact-list li { display: grid; grid-template-columns: 46px 1fr; gap: 1rem; align-items: center; }
.contact-list svg { width: 46px; height: 46px; padding: 12px; border: 1px solid var(--line); border-radius: 50%; color: var(--gold); }
.contact-list small { display: block; font-size: .66rem; letter-spacing: .26em; text-transform: uppercase; color: var(--text-faint); }
.contact-list a, .contact-list span { font-family: var(--serif); font-size: clamp(1.05rem, 1.8vw, 1.3rem); word-break: break-word; }
.contact-list a { transition: color .3s; }
.contact-list a:hover { color: var(--champagne); }
.socials { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .6rem; }
.socials a { display: inline-flex; align-items: center; gap: .55rem; padding: .55rem 1rem; border: 1px solid var(--line-soft); font-size: .8rem; color: var(--text-mute); transition: border-color .4s, color .4s, background .4s; }
.socials a:hover { border-color: var(--gold); color: var(--champagne); background: rgba(201,162,75,.06); }
.socials svg { width: 18px; height: 18px; color: var(--gold); }

.fl-map { margin-top: 3rem; max-width: 440px; }
.fl-map svg { width: 100%; overflow: visible; }
.fl-outline { fill: rgba(201,162,75,.04); stroke: url(#goldStroke); stroke-width: 1.2; stroke-linejoin: round; stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 3.2s var(--ease-soft), fill 1.5s 2s; }
.fl-map.in .fl-outline { stroke-dashoffset: 0; fill: rgba(201,162,75,.08); }
.fl-cities circle { fill: var(--champagne); opacity: 0; transition: opacity .6s; }
.fl-cities text { font-family: var(--sans); font-size: 11px; letter-spacing: .08em; fill: var(--text-mute); opacity: 0; transition: opacity .6s; }
.fl-map.in .fl-cities circle, .fl-map.in .fl-cities text { opacity: 1; transition-delay: 2.2s; }
.fl-map.in .fl-cities circle { animation: pulse 2.6s ease-in-out 2.8s infinite; transform-box: fill-box; transform-origin: center; }
@keyframes pulse { 50% { transform: scale(1.8); opacity: .5; } }
.fl-map figcaption { margin-top: 1rem; font-family: var(--serif); font-style: italic; color: var(--text-mute); }
.fl-map figcaption .script { font-style: normal; font-size: 1.8rem; }

.contact-form-wrap { position: relative; padding: clamp(1.6rem, 4vw, 3rem); border: 1px solid var(--line); background: linear-gradient(170deg, rgba(201,162,75,.07), rgba(16,15,13,.6) 40%); align-self: start; }
.contact-form-wrap::before { content: ""; position: absolute; inset: 10px; border: 1px solid var(--line-soft); pointer-events: none; }
.form { position: relative; display: grid; gap: 1.2rem; }
.form-title { font-family: var(--serif); font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: .4rem; }
.form-title .script { font-size: 1.5em; }
.field-row { display: grid; gap: 1.2rem; }
.field { position: relative; display: block; }
.field input, .field textarea, .field select {
  width: 100%; padding: 1.5rem 0 .6rem; background: transparent;
  border: 0; border-bottom: 1px solid var(--line); border-radius: 0; outline: 0;
  color: var(--text); font-size: 1rem; font-weight: 300;
  transition: border-color .4s;
}
.field select { appearance: none; -webkit-appearance: none; cursor: pointer; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23C9A24B'/%3E%3C/svg%3E") right .2rem bottom 1rem / 11px no-repeat; }
.field select option { background: var(--bg-2); color: var(--text); }
.field textarea { resize: vertical; min-height: 110px; }
.field > span { position: absolute; left: 0; top: 1.5rem; font-size: 1rem; color: var(--text-faint); pointer-events: none; transform-origin: left; transition: transform .45s var(--ease-out), color .4s; }
.field::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--gold-flat); transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease-out); }
.field:focus-within::after { transform: scaleX(1); }
.field input:focus + span, .field input:not(:placeholder-shown) + span,
.field textarea:focus + span, .field textarea:not(:placeholder-shown) + span,
.field-select > span { transform: translateY(-1.35rem) scale(.72); color: var(--gold); letter-spacing: .1em; }
.field input::placeholder, .field textarea::placeholder { color: transparent; }
.field.is-invalid input { border-color: #c9674b; }
.field.is-invalid > span { color: #e0907a; }

.chips { border: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.chips legend { width: 100%; margin-bottom: .8rem; font-size: .7rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); }
.chips label { position: relative; cursor: pointer; }
.chips input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chips span { display: inline-block; padding: .5rem .95rem; border: 1px solid var(--line-soft); font-size: .84rem; color: var(--text-mute); transition: all .4s var(--ease-out); }
.chips label:hover span { border-color: var(--gold); color: var(--text); }
.chips input:checked + span { background: var(--gold-flat); border-color: transparent; color: var(--ink); }
.chips input:focus-visible + span { outline: 1px solid var(--champagne); outline-offset: 3px; }

.form-note { font-size: .78rem; color: var(--text-faint); text-align: center; }
.form-status { min-height: 1.2em; text-align: center; font-size: .9rem; color: var(--champagne); }
.form-status.is-error { color: #e0907a; }
.form-status a { text-decoration: underline; }
.form.is-sending [data-submit] { pointer-events: none; opacity: .7; }

.form-success { position: relative; text-align: center; display: grid; justify-items: center; gap: .6rem; padding: 2rem 0; }
.form-success[hidden] { display: none; }
.form-success svg { width: 84px; overflow: visible; }
.form-success svg path { stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw 1.8s var(--ease-soft) forwards; }
.form-success .script { font-size: 3.4rem; line-height: 1.1; }
.form-success h3 { font-family: var(--serif); font-size: 1.7rem; }
.form-success p:last-child { color: var(--text-mute); max-width: 26rem; }
.form-success a { color: var(--champagne); }

/* =============================================================
   19. Footer
   ============================================================= */
.footer { position: relative; overflow: hidden; padding: clamp(4rem, 8vw, 6rem) 0 72px; border-top: 1px solid var(--line-soft); background: var(--bg); }
.footer-top { display: grid; gap: 1.4rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-soft); }
.footer-logo img { width: 220px; }
.footer-tag { color: var(--text-mute); max-width: 26rem; }
.footer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.4rem 1.5rem; padding: 3rem 0; }
.footer h4 { font-size: .7rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; font-weight: 400; min-height: 1.6rem; display: flex; align-items: flex-end; }
.footer h4 .script { font-size: 2rem; letter-spacing: 0; text-transform: none; line-height: .8; }
.footer li { color: var(--text-mute); font-size: .92rem; margin-bottom: .55rem; word-break: break-word; }
.footer li a { transition: color .3s; }
.footer li a:hover { color: var(--champagne); }
.footer-social a { display: inline-flex; align-items: center; gap: .6rem; }
.footer-social svg { width: 18px; height: 18px; color: var(--gold); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding: 1.6rem 0; border-top: 1px solid var(--line-soft); font-size: .8rem; color: var(--text-faint); }
.to-top { display: inline-flex; align-items: center; gap: .5rem; letter-spacing: .14em; text-transform: uppercase; font-size: .7rem; color: var(--gold); }
.to-top svg { width: 16px; height: 16px; transform: rotate(-90deg); }
.footer-mega {
  font-family: var(--script); font-size: clamp(4rem, 16vw, 15rem); line-height: 1.1; text-align: center; white-space: nowrap;
  margin-bottom: -.3em; padding-top: .1em;
  background: linear-gradient(180deg, rgba(201,162,75,.28), rgba(201,162,75,0) 85%);
  -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
  pointer-events: none; user-select: none;
}
.footer-mega span { font-family: var(--serif); font-size: .5em; }

/* =============================================================
   20. Mobile quick bar
   ============================================================= */
.quick-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: grid; grid-template-columns: 1fr 2fr;
  padding: .6rem var(--gutter) calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(10,10,10,.92); border-top: 1px solid var(--line-soft);
  transform: translateY(110%); transition: transform .6s var(--ease-out);
}
.quick-bar.is-on { transform: none; }
.quick-bar a { display: flex; align-items: center; justify-content: center; gap: .5rem; min-height: 48px; font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; }
.quick-bar svg { width: 18px; height: 18px; color: var(--gold); }
.quick-bar .quick-cta { background: var(--gold-grad); background-size: 200% 100%; color: var(--ink); }

/* =============================================================
   21. Reveals
   ============================================================= */
.js .rv { opacity: 0; transform: translateY(34px); transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out); transition-delay: var(--d, 0s); }
.js .rv.in { opacity: 1; transform: none; }
/* The clip goes on the children, not the element itself: IntersectionObserver treats a
   fully clipped element as invisible, so it would never be revealed. */
.js .rv-clip { opacity: 1; transform: none; }
.js .rv-clip > * { clip-path: inset(100% 0 0 0); transition: clip-path 1.5s var(--ease-out); transition-delay: var(--d, 0s); }
.js .rv-clip.in > * { clip-path: inset(0 0 0 0); }
.js .rv-clip .ph { transform: scale(1.12); transition: transform 2s var(--ease-out); transition-delay: var(--d, 0s); }
.js .rv-clip.in .ph { transform: scale(1); }
.js .projects-strip .rv-clip.in:hover .ph { transform: scale(1.04); transition-delay: 0s; transition-duration: 1.2s; }

/* =============================================================
   22. Responsive
   ============================================================= */
@media (min-width: 540px) {
  .hero-kicker { font-size: .72rem; }
  .kicker-line { display: block; }
  .field-row { grid-template-columns: 1fr 1fr; }
  .why-facts { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 720px) {
  .svc { grid-template-columns: 4rem 1fr 1fr 3rem; align-items: center; padding: 2.1rem 0; }
  .svc-no { padding-top: 0; }
  .svc-desc { grid-column: 3; font-size: .95rem; }
  .svc-arrow { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line-soft); border-radius: 50%; color: var(--gold); justify-self: end; transition: transform .6s var(--ease-out), background .4s, color .4s; }
  .svc-arrow svg { width: 16px; height: 16px; }
  .svc:hover .svc-arrow { transform: rotate(-45deg); background: var(--gold); color: var(--ink); }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .project-lg { grid-column: 1 / -1; }
  .projects-strip { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-top { grid-template-columns: auto 1fr; align-items: center; gap: 3rem; }
  .quick-bar { display: none; }
  .footer { padding-bottom: 0; }

  /* alternating timeline */
  .process-line { left: 50%; }
  .steps { gap: 0; }
  .step { width: 50%; padding: 0 3.6rem 0 0; }
  .step + .step { margin-top: -2rem; }
  .step:nth-child(even) { margin-left: 50%; padding: 0 0 0 3.6rem; }
  .step:nth-child(odd) { text-align: right; }
  .step-dot { left: auto; right: -7px; }
  .step:nth-child(even) .step-dot { right: auto; left: -6px; }
  .step:nth-child(even) { transform-origin: left; }
  .step { padding-bottom: 5rem; }
}
.nav a { white-space: nowrap; }
@media (min-width: 1140px) {
  .nav { display: flex; gap: clamp(1.3rem, 2vw, 2.2rem); }
  .nav a { font-size: .72rem; letter-spacing: .17em; }
  .menu-toggle { display: none; }
  .mobile-menu { display: none !important; }
}
@media (min-width: 960px) {
  .utility { display: block; }
  .nav-actions .btn { display: inline-flex; white-space: nowrap; }
  .hero-side { display: block; }
  .section-head-split { grid-template-columns: 1.2fr 1fr; gap: 4rem; }
  .section-head-split .section-intro { justify-self: end; margin-bottom: .6rem; }
  .why-grid { grid-template-columns: 5fr 6fr; align-items: start; }
  .why-feature { position: sticky; top: calc(var(--header-h) + 2rem); }
  .contact-grid { grid-template-columns: 5fr 6fr; }
  .manifesto-grid { grid-template-columns: 12rem 1fr; }
  .manifesto-sign { grid-column: 2; }
}
@media (min-width: 1560px) {
  .nav-phone span { display: inline; white-space: nowrap; }
}
@media (min-width: 1280px) {
  .hero-logo { width: min(64vw, 900px); }
}
/* narrow phones: tighter nav */
@media (max-width: 539px) {
  .brand img { height: 44px; }
  .hero-ctas .btn { width: 100%; }
  .btn { letter-spacing: .16em; font-size: .72rem; padding: 0 1.2rem; }
  .hero-ctas { width: 100%; max-width: 360px; }
  .footer-bottom { flex-direction: column; }
}

/* =============================================================
   23. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-dust { display: none; }
  .grain { animation: none; }
  .hero-bg .has-img .ph-img { animation: none; transform: none; }
  .details-hint svg { animation: none; }
  .logo-sheen-band { animation: none; opacity: 0; }
  .marquee-track { animation-duration: 120s; }
  .fl-map.in .fl-cities circle { animation: none; }
}
.dcard-media .ph-label { display: none; }

/* =============================================================
   24. Google reviews badge + hero trust line
   ============================================================= */
.g-stars { color: var(--champagne); letter-spacing: .12em; text-shadow: 0 0 12px rgba(243,217,160,.45); }

.hero-trust { margin-top: 1.6rem; display: inline-flex; align-items: center; gap: .7rem; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-mute); transition: color .4s; }
.hero-trust:hover { color: var(--champagne); }
.hero-trust .g-stars { font-size: .9rem; }
.js .hero-trust { opacity: 0; transform: translateY(24px); transition: opacity 1.4s var(--ease-out) 1.1s, transform 1.4s var(--ease-out) 1.1s, color .4s; }
.is-loaded .hero-trust { opacity: 1; transform: none; }
@media (max-width: 539px) { .hero-trust { font-size: .64rem; letter-spacing: .14em; flex-wrap: wrap; justify-content: center; } }
/* floating labels stay on one line (scaled .72 when raised, so allow 100%/.72 of the width) */
.field > span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.field input:focus + span, .field input:not(:placeholder-shown) + span,
.field textarea:focus + span, .field textarea:not(:placeholder-shown) + span,
.field-select > span { max-width: 138%; }
.field-select select { padding-right: 1.6rem; text-overflow: ellipsis; }

/* =============================================================
   25. Premium buttons — pill shape, polished gold, gradient ring
   ============================================================= */
.btn { border-radius: 999px; min-height: 56px; padding: 0 2.1rem; }
.btn-sm { min-height: 46px; padding: 0 1.5rem; }
.btn:focus-visible { outline-offset: 5px; border-radius: 999px; }

/* gold: polished metal with a light top edge, darker lower edge and soft halo */
.btn-gold {
  background: linear-gradient(180deg, rgba(255,250,235,.35) 0%, rgba(255,250,235,0) 48%, rgba(90,60,15,.18) 100%), var(--gold-grad);
  background-size: 100% 100%, 220% 100%; background-position: 0 0, 20% 50%;
  box-shadow:
    0 0 0 1px rgba(243,217,160,.55),
    0 14px 40px -16px rgba(201,162,75,.85),
    0 2px 6px -2px rgba(0,0,0,.6),
    inset 0 1px 0 rgba(255,248,228,.85),
    inset 0 -2px 6px rgba(110,75,20,.35);
}
.btn-gold:hover {
  background-position: 0 0, 80% 50%;
  box-shadow:
    0 0 0 1px rgba(255,236,190,.9),
    0 0 0 5px rgba(201,162,75,.14),
    0 22px 55px -16px rgba(243,217,160,.9),
    0 2px 6px -2px rgba(0,0,0,.6),
    inset 0 1px 0 rgba(255,248,228,.95),
    inset 0 -2px 6px rgba(110,75,20,.3);
}
.btn-gold:active { transform: translateY(1px) scale(.99); }

/* arrow sits in a small dark disc inside gold buttons */
.btn-gold svg { width: 30px; height: 30px; padding: 7px; margin-right: -1.1rem; border-radius: 50%; background: rgba(10,10,10,.88); color: var(--champagne); box-shadow: inset 0 0 0 1px rgba(243,217,160,.25); }
.btn-sm.btn-gold svg { width: 26px; height: 26px; padding: 6px; margin-right: -.8rem; }
.btn-gold:hover svg { transform: translateX(3px) rotate(-45deg); }

/* ghost: gold gradient hairline ring, glassy fill, gold fill sweeps up on hover */
.btn-ghost { border: 0; background: rgba(20,17,12,.35); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.btn-ghost::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; pointer-events: none; z-index: 1;
  background: linear-gradient(120deg, #8A6424, #F3D9A0 35%, #C9A24B 55%, #8A6424 80%, #F3D9A0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: .75; transition: opacity .5s;
}
.btn-ghost:hover::after { opacity: 1; }
.btn-ghost::before { border-radius: inherit; transform: translateY(101%); transition: transform .7s var(--ease-out); }
.btn-ghost:hover::before { transform: none; }
.btn-ghost:hover { box-shadow: 0 14px 40px -18px rgba(201,162,75,.8); }
.btn-ghost > * { position: relative; z-index: 2; }

/* quick bar + form chips follow the same rounded language */
.quick-bar { gap: .6rem; }
.quick-bar .quick-cta { border-radius: 999px; box-shadow: 0 0 0 1px rgba(243,217,160,.5), inset 0 1px 0 rgba(255,248,228,.8); }
.chips span { border-radius: 999px; padding: .5rem 1.1rem; }
.chips label input:checked + span { background: linear-gradient(180deg, rgba(255,250,235,.35), rgba(255,250,235,0) 55%), var(--gold-flat); color: #1a1409; font-weight: 500; box-shadow: 0 0 0 1px rgba(243,217,160,.6), 0 8px 22px -10px rgba(201,162,75,.8), inset 0 1px 0 rgba(255,248,228,.8); transition: background .4s, box-shadow .4s, color 0s; }
.socials a { border-radius: 999px; padding: .6rem 1.15rem; }

/* =============================================================
   26. Conversion upgrade — hero, proof band, why-us, area, steps form, WhatsApp
   ============================================================= */
/* hero: what + where + benefit + CTA */
.hero-title { margin: clamp(1.2rem, 3vh, 2rem) 0 1.3rem; font-family: var(--serif); font-size: clamp(2.5rem, 5.8vw, 5.3rem); line-height: 1.04; letter-spacing: -.02em; max-width: 20ch; }
.hero-title em { display: block; font-style: italic; background: var(--gold-grad); background-size: 250% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; animation: goldShift 9s ease-in-out infinite alternate; padding: 0 .06em .08em; }
.hero-lede { font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: rgba(245,239,230,.78); max-width: 38rem; }
.hero .hero-ctas { margin-top: 2rem; }
.btn-lg { min-height: 62px; padding: 0 2.4rem; font-size: .82rem; }
.btn .btn-ico { width: 18px; height: 18px; padding: 0; margin: 0; background: none; box-shadow: none; color: var(--champagne); }
.btn-ghost:hover .btn-ico { color: var(--ink); }
.hero-micro { margin-top: 1rem; font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--text-faint); }
.hero .hero-trust { margin-top: 1.2rem; }
.js .hero-title { opacity: 0; transform: translateY(20px); transition: opacity 1.1s var(--ease-out) .1s, transform 1.1s var(--ease-out) .1s; }
.is-loaded .hero-title { opacity: 1; transform: none; }
.is-loaded .hero-lede { transition-delay: .25s; }
.is-loaded .hero-ctas { transition-delay: .4s; }
.is-loaded .hero-trust { transition-delay: .55s; }

/* social proof band */
.proof { border-block: 1px solid var(--line-soft); background: linear-gradient(90deg, #120f0b, #19140d 50%, #120f0b); }
.proof-inner { display: grid; gap: 1.6rem; justify-items: center; text-align: center; padding-block: clamp(2rem, 4vw, 2.8rem); }
.proof-score { display: grid; grid-template-columns: auto auto; grid-template-areas: "g n" "s s" "c c"; align-items: center; justify-content: center; justify-items: center; gap: .3rem .7rem; }
.proof-score .g-logo { grid-area: g; width: 30px; height: 30px; }
.proof-score strong { grid-area: n; font-family: var(--serif); font-weight: 400; font-size: 3.2rem; line-height: 1; background: var(--gold-grad); background-size: 250% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
.proof-stars { grid-area: s; color: var(--champagne); font-size: 1.25rem; letter-spacing: .14em; text-shadow: 0 0 12px rgba(243,217,160,.5); }
.proof-count { grid-area: c; font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; color: var(--text-mute); }
.proof-quote blockquote { font-family: var(--serif); font-style: italic; font-size: clamp(1.25rem, 2.4vw, 1.75rem); line-height: 1.35; max-width: 34ch; margin-inline: auto; }
.proof-quote figcaption { margin-top: .7rem; font-size: .82rem; color: var(--text-faint); }
.proof-quote figcaption strong { font-weight: 400; letter-spacing: .18em; text-transform: uppercase; color: var(--champagne); font-size: .78rem; }
.proof-link { font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; white-space: nowrap; }
@media (min-width: 900px) {
  .proof-inner { grid-template-columns: auto 1fr auto; text-align: left; gap: 3rem; justify-items: stretch; align-items: center; }
  .proof-score { padding-right: 3rem; border-right: 1px solid var(--line-soft); }
  .proof-quote blockquote { margin: 0; }
}

/* services: whole row is a link to the service page */
.svc-link::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.svc { cursor: pointer; }
.svc-link:focus-visible { outline: none; }
.svc:has(.svc-link:focus-visible) { outline: 1px solid var(--champagne); outline-offset: 4px; }

/* why closets & more */
.whyus { padding: clamp(5rem, 10vw, 8rem) 0; background: radial-gradient(70% 60% at 50% 0%, #17120b, var(--bg) 70%); }
.whyus-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.whyus-card { position: relative; padding: 2rem 1.8rem; border: 1px solid var(--line-soft); border-radius: 18px; background: linear-gradient(160deg, rgba(201,162,75,.07), rgba(10,10,10,0) 60%); transition: border-color .5s, transform .6s var(--ease-out), box-shadow .6s; }
.whyus-card:hover { border-color: var(--line); transform: translateY(-4px); box-shadow: 0 24px 60px -30px rgba(201,162,75,.45); }
.whyus-ico { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; margin-bottom: 1.3rem; color: var(--champagne); background: radial-gradient(circle at 50% 30%, #2a2114, #120f0a); box-shadow: 0 0 0 1px var(--line), 0 10px 30px -12px rgba(201,162,75,.6); }
.whyus-ico svg { width: 24px; height: 24px; }
.whyus-card h3 { font-family: var(--serif); font-size: 1.45rem; margin-bottom: .5rem; }
.whyus-card p { color: var(--text-mute); font-size: .96rem; }
.whyus-cta { margin-top: 3rem; display: grid; justify-items: center; text-align: center; }

/* service area */
.area { padding: clamp(5rem, 10vw, 8rem) 0; background: linear-gradient(var(--bg), var(--bg-2)); border-top: 1px solid var(--line-soft); }
.area-grid { display: grid; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.area-cities { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.area-cities li { padding: .5rem 1rem; border: 1px solid var(--line-soft); border-radius: 999px; font-size: .9rem; color: var(--text); background: rgba(201,162,75,.04); }
.area-cities li::before { content: "◆"; margin-right: .5rem; font-size: .5rem; vertical-align: .2em; color: var(--gold); }
.area-note { margin-top: 1.6rem; color: var(--text-mute); max-width: 34rem; }
.area-map { margin: 0 auto; max-width: 560px; width: 100%; }
@media (min-width: 960px) { .area-grid { grid-template-columns: 1fr 1fr; } }

/* 3-step form */
.form-steps .form-title { margin-bottom: 0; }
.steps-bar { height: 2px; background: var(--line-soft); border-radius: 2px; overflow: hidden; }
.steps-bar span { display: block; height: 100%; background: var(--gold-flat); transform: scaleX(.33); transform-origin: left; transition: transform .7s var(--ease-out); }
.steps-count { font-size: .7rem; letter-spacing: .26em; text-transform: uppercase; color: var(--text-faint); margin-top: -.4rem; }
.steps-count b { color: var(--champagne); font-weight: 400; }
.fstep { border: 0; display: grid; gap: 1.3rem; }
.fstep[hidden] { display: none; }
.fstep.is-current { animation: stepIn .6s var(--ease-out); }
@keyframes stepIn { from { opacity: 0; transform: translateX(18px); } }
.fstep-q { font-family: var(--serif); font-size: clamp(1.4rem, 2.4vw, 1.8rem); line-height: 1.2; margin-bottom: .4rem; padding: 0; }
.chips-lg { gap: .6rem; }
.chips-lg span { padding: .75rem 1.3rem; font-size: .95rem; }
.fstep-nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: .4rem; }
.fstep-nav .btn { flex: 1 1 auto; max-width: 340px; margin-left: auto; }
.fstep-nav .btn-block { max-width: none; }
.fstep-back { color: var(--text-mute); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; padding: .6rem 0; transition: color .3s; white-space: nowrap; }
.fstep-back:hover { color: var(--champagne); }

/* WhatsApp: floating (desktop) */
.wa-float {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 85;
  display: flex; align-items: center; gap: .7rem; height: 58px; padding: 0 1.3rem 0 .45rem; border-radius: 999px;
  background: rgba(14,12,9,.92); color: var(--text); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  box-shadow: 0 0 0 1px var(--line), 0 18px 40px -14px rgba(0,0,0,.8);
  transition: box-shadow .4s, transform .5s var(--ease-out);
}
.wa-float svg { width: 48px; height: 48px; padding: 11px; border-radius: 50%; background: #25D366; color: #fff; box-shadow: 0 6px 18px -6px rgba(37,211,102,.7); }
.wa-float:hover { box-shadow: 0 0 0 1px var(--champagne), 0 18px 40px -14px rgba(37,211,102,.45); transform: translateY(-2px); }
@media (max-width: 719px) { .wa-float { display: none; } }

/* mobile quick bar: Call | WhatsApp | Free Design */
.quick-bar { grid-template-columns: 1fr 1.2fr 1.6fr; }
.quick-bar a[data-wa] svg { color: #25D366; }

/* optional gallery slots only appear once they have a photo */
.projects-strip figure.is-optional:not(:has(.has-img)) { display: none; }

/* =============================================================
   27. Service pages (/<service>/)
   ============================================================= */
.sp-hero { min-height: 82vh; min-height: 82svh; padding-bottom: 5rem; }
.sp-crumbs { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-bottom: 1.4rem; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-faint); }
.sp-crumbs a { color: var(--text-mute); transition: color .3s; }
.sp-crumbs a:hover { color: var(--champagne); }
.sp-crumbs [aria-current] { color: var(--champagne); }

.sp-section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.sp-alt { background: var(--bg-2); border-block: 1px solid var(--line-soft); }

.sp-intro { padding: clamp(4.5rem, 9vw, 7.5rem) 0 0; }
.sp-intro-grid { display: grid; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.sp-intro-copy .h2 { margin-top: 0; }
.sp-intro-copy .section-intro { max-width: 40rem; font-size: clamp(1.02rem, 1.4vw, 1.16rem); }
.sp-intro-media { aspect-ratio: 4 / 5; overflow: hidden; border-radius: 18px; }
.sp-intro-media .ph { height: 100%; }
/* no photo yet → text takes the full width */
.sp-intro-media:not(:has(.has-img)) { display: none; }
@media (min-width: 960px) { .sp-intro-grid:has(.sp-intro-media .has-img) { grid-template-columns: 7fr 5fr; } }

.sp-num { font-family: var(--serif); font-style: italic; font-size: 1.1rem; }

.sp-options-grid { display: grid; gap: 2rem; align-items: center; }
.sp-options-grid .section-head { margin-bottom: 0; }
.sp-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); gap: .7rem; }
.sp-options li { display: flex; align-items: center; gap: .8rem; padding: 1rem 1.2rem; border: 1px solid var(--line-soft); border-radius: 14px; background: rgba(201,162,75,.04); font-size: .98rem; }
.sp-options li::before { content: ""; flex: none; width: 8px; height: 8px; transform: rotate(45deg); background: var(--gold-flat); box-shadow: 0 0 10px rgba(243,217,160,.6); }
@media (min-width: 960px) { .sp-options-grid { grid-template-columns: 4fr 7fr; gap: 4rem; } }

.sp-steps { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); counter-reset: s; }
.sp-steps li { position: relative; padding: 2rem 1.6rem; border: 1px solid var(--line-soft); border-radius: 18px; background: linear-gradient(160deg, rgba(201,162,75,.06), transparent 60%); }
.sp-step-no { font-family: var(--serif); font-style: italic; font-size: 2.4rem; line-height: 1; color: var(--gold); opacity: .8; }
.sp-steps h3 { font-family: var(--serif); font-size: 1.45rem; margin: .8rem 0 .5rem; }
.sp-steps p { color: var(--text-mute); font-size: .95rem; }

.sp-gallery:not(:has(.has-img)) { display: none; }
.sp-gallery .projects-strip { margin-top: 0; }

.sp-faq-wrap { max-width: 860px; }
.sp-faq { display: grid; gap: .7rem; }
.sp-faq details { border: 1px solid var(--line-soft); border-radius: 16px; background: rgba(10,10,10,.4); transition: border-color .4s; }
.sp-faq details[open] { border-color: var(--line); }
.sp-faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.3rem 1.5rem; font-family: var(--serif); font-size: clamp(1.1rem, 1.8vw, 1.3rem); }
.sp-faq summary::-webkit-details-marker { display: none; }
.sp-faq summary::after { content: "+"; flex: none; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line); color: var(--champagne); font-family: var(--sans); transition: transform .4s var(--ease-out); }
.sp-faq details[open] summary::after { transform: rotate(45deg); }
.sp-faq details p { padding: 0 1.5rem 1.4rem; color: var(--text-mute); }

.sp-contact { border-top: 1px solid var(--line-soft); }

.sp-more-list { display: grid; gap: .7rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.sp-more-list a { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.2rem 1.5rem; border: 1px solid var(--line-soft); border-radius: 999px; font-family: var(--serif); font-size: 1.15rem; transition: border-color .4s, background .4s, color .4s; }
.sp-more-list a:hover { border-color: var(--gold); background: rgba(201,162,75,.08); color: var(--champagne); }
.sp-more-list svg { width: 18px; height: 18px; color: var(--gold); transition: transform .5s var(--ease-out); }
.sp-more-list a:hover svg { transform: translateX(4px); }
/* new 3D gold logo: a touch larger so the detail reads */
.brand img { height: 60px; }
.site-header.is-solid .brand img { height: 50px; }
.footer-logo img { width: 280px; }
@media (max-width: 539px) { .brand img { height: 48px; } }

/* floating contact bubbles (desktop): Call above WhatsApp */
.float-actions { position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 85; display: grid; justify-items: end; gap: .7rem; }
.float-actions .wa-float { position: static; }
.call-float svg { background: var(--gold-grad); background-size: 220% 100%; color: var(--ink); box-shadow: 0 6px 18px -6px rgba(201,162,75,.8), inset 0 1px 0 rgba(255,248,228,.8); padding: 13px; }
.call-float b { font-weight: 400; color: var(--champagne); letter-spacing: .08em; }
.call-float:hover { box-shadow: 0 0 0 1px var(--champagne), 0 18px 40px -14px rgba(201,162,75,.55); }
@media (max-width: 719px) { .float-actions { display: none; } }
/* both bubbles share the same width (the widest one sets it) */
.float-actions { justify-items: stretch; }
.float-actions .wa-float { width: 100%; }

/* =============================================================
   28. Services — a fixed photo in every row (no cursor-following preview)
   ============================================================= */
.svc { grid-template-columns: 2.6rem 1fr; grid-template-areas: "no media" "no name" "no desc"; gap: .6rem 1rem; }
.svc-no { grid-area: no; }
.svc-media { grid-area: media; position: relative; aspect-ratio: 16 / 10; overflow: hidden; border-radius: 14px; margin-bottom: .6rem; box-shadow: 0 0 0 1px var(--line-soft); }
.svc-media .ph { position: absolute; inset: 0; transition: transform 1.2s var(--ease-out); }
.svc-media .ph::before { width: 44px; height: 36px; }
.svc-media .ph-label { display: none; }
.svc:hover .svc-media .ph { transform: scale(1.06); }
.svc-name { grid-area: name; }
.svc-desc { grid-area: desc; grid-column: auto; }
.svc-arrow { grid-area: arrow; }
@media (min-width: 720px) {
  .svc { grid-template-columns: 3rem 220px 1fr 3rem; grid-template-areas: "no media name arrow" "no media desc arrow"; align-items: center; gap: .4rem 2rem; padding: 1.6rem 0; }
  .svc-media { aspect-ratio: 4 / 3; margin: 0; align-self: center; }
  .svc-name { align-self: end; }
  .svc-desc { align-self: start; }
}
@media (min-width: 1100px) {
  .svc { grid-template-columns: 4rem 260px 1fr 1fr 3rem; grid-template-areas: "no media name desc arrow"; gap: 2.4rem; }
  .svc-name, .svc-desc { align-self: center; }
}
.svc-media .ph::after { border-radius: 8px; }
/* compact floating bubbles so they don't cover the page */
.float-actions { right: 1rem; bottom: 1rem; gap: .45rem; }
.float-actions .wa-float { height: 42px; gap: .55rem; padding: 0 1rem 0 .3rem; font-size: .62rem; letter-spacing: .12em; background: rgba(14,12,9,.82); }
.float-actions .wa-float svg { width: 34px; height: 34px; padding: 8px; }
.float-actions .call-float svg { padding: 9px; }

/* real project video inside photo slots */
.ph > video.ph-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ph.has-video { background: #0d0c0a; }
.why-feature .ph.has-video::after { border-color: rgba(255,255,255,.35); }
/* before/after: normal cursor on the photos, grab cursor only on the divider */
.compare { cursor: default; }
.compare.is-grabbable { cursor: grab; }
.compare.is-drag { cursor: grabbing; }
.compare-handle i { cursor: grab; }
.compare:hover .compare-handle i { transform: translate(-50%, -50%) rotate(45deg); background: rgba(10,10,10,.75); }
.compare.is-grabbable .compare-handle i, .compare.is-drag .compare-handle i { transform: translate(-50%, -50%) rotate(45deg) scale(1.12); background: rgba(201,162,75,.3); }

/* =============================================================
   29. Portrait media boxes — the client's videos are vertical (phone),
   so a landscape box would crop about two thirds of the frame.
   ============================================================= */
.svc-media { aspect-ratio: 2 / 3; }
@media (min-width: 720px) {
  .svc { grid-template-columns: 3rem 200px 1fr 3rem; }
}
@media (min-width: 1100px) {
  .svc { grid-template-columns: 4rem 230px 1fr 1fr 3rem; }
}
.why-feature { aspect-ratio: 2 / 3; }
.sp-intro-media { aspect-ratio: 2 / 3; }
/* keep a real photo (landscape) sensible in the same slots */
.svc-media .ph:not(.has-video) .ph-img { object-position: center; }

/* the client's before/after photos are portrait: give the big comparison a portrait box */
/* portrait photos: keep the featured comparison from getting taller than the screen */
.project-lg { width: min(100%, 860px, calc(76vh * 4 / 5)); justify-self: center; }
.project-lg .compare { aspect-ratio: 4 / 5; }
/* the client's before/after photos are portrait */
.compare { aspect-ratio: 4 / 5; }
