:root {
  --ink: #0a0a0b;
  --ink-2: #131316;
  --ink-3: #1c1c20;
  --line: #2a2a2f;
  --bone: #f4f1ea;
  --bone-2: #ebe6dc;
  --paper: #f8f6f1;
  --silver: #c4c4c8;
  --silver-2: #8a8a90;
  --gold: #c8a24b;
  --gold-2: #d8b86a;
  --gold-deep: #8a6f30;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Geist", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--ink); }
body {
  font-family: var(--sans);
  color: var(--bone);
  background: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  cursor: auto;
}
@media (max-width: 900px) { body { cursor: auto; } #cursor { display: none; } }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
@media (max-width: 900px) { button { cursor: pointer; } }

::selection { background: var(--gold); color: var(--ink); }

/* ── film grain ── */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9000;
  opacity: .055; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence baseFrequency='1.4' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 1.6 -0.5'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ── custom cursor ── */
#cursor { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 10000; }
.cursor-dot { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); transform: translate(-50%, -50%); transition: width .25s, height .25s, background .25s; }
.cursor-ring { position: absolute; width: 36px; height: 36px; border: 1px solid var(--bone); border-radius: 50%; transform: translate(-50%, -50%); transition: width .35s cubic-bezier(.2,.8,.2,1), height .35s cubic-bezier(.2,.8,.2,1), border-color .25s, background .25s; }
.cursor-label { position: absolute; transform: translate(-50%, calc(-50% + 0px)); font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); background: var(--gold); padding: 0; border-radius: 999px; opacity: 0; white-space: nowrap; transition: opacity .2s, padding .2s; pointer-events: none; }
#cursor.hover .cursor-ring { width: 64px; height: 64px; border-color: var(--gold); background: rgba(200,162,75,.06); }
#cursor.label .cursor-ring { width: 92px; height: 92px; border-color: var(--gold); background: var(--gold); }
#cursor.label .cursor-dot { opacity: 0; }
#cursor.label .cursor-label { opacity: 1; padding: 4px 10px; }
#cursor.light .cursor-dot { background: var(--ink); }
#cursor.light .cursor-ring { border-color: var(--ink); }

/* ── nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  padding: 18px 40px; gap: 40px;
  transition: background .4s, border-color .4s, padding .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(10,10,11,.78); backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%); border-bottom-color: var(--line); padding: 12px 40px; }
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo img { height: 95px; width: auto; }
.nav.scrolled .nav-logo img { height: 65px; }
.nav-links { display: flex; gap: 36px; justify-content: center; }
.nav-link { font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: .04em; color: var(--bone); position: relative; padding: 6px 0; }
.nav-link::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--gold); transition: right .35s cubic-bezier(.2,.8,.2,1); }
.nav-link:hover::after, .nav-link.active::after { right: 0; }
.nav-cta { display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; padding: 12px 18px 12px 22px; border: 1px solid var(--gold); color: var(--bone); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; transition: background .3s, color .3s; }
.nav-cta:hover { background: var(--gold); color: var(--ink); }
.nav-cta .arr { display: inline-block; transition: transform .3s; }
.nav-cta:hover .arr { transform: translateX(4px); }
@media (max-width: 900px) {
  .nav { padding: 14px 20px; grid-template-columns: auto 1fr auto; }
  .nav-links { display: none; }
}

/* ── hero ── */
.hero { position: relative; min-height: 100vh; padding: 140px 40px 60px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; }

/* expanding panels gallery (B&W on hover) */
.expand-gallery { display: flex; gap: 4px; height: 520px; margin-top: 60px; overflow: hidden; }
.expand-panel { position: relative; flex: 1; background-size: cover; background-position: center; filter: grayscale(1) contrast(1.05); transition: flex 1s cubic-bezier(.2,.8,.2,1), filter .8s; cursor: pointer; }
.expand-panel.active { flex: 6; filter: grayscale(1) contrast(1.05) brightness(1.05); }
.expand-panel-label { position: absolute; left: 18px; top: 18px; background: rgba(255,255,255,.92); color: var(--ink); font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; padding: 8px 14px; opacity: 0; transform: translateY(-6px); transition: opacity .5s .2s, transform .5s .2s; }
.expand-panel.active .expand-panel-label { opacity: 1; transform: translateY(0); }
@media (max-width: 900px) { .expand-gallery { height: 320px; } }
.hero-meta { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--silver-2); }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.hero-headline {
  font-family: var(--serif); font-weight: 300; font-style: normal;
  font-size: clamp(56px, 11vw, 180px); line-height: .92; letter-spacing: -.025em;
  margin: 60px 0 40px; color: var(--bone);
}
.hero-headline .it { font-style: italic; font-weight: 400; color: var(--gold); }
.hero-headline .word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.hero-headline .word > span { display: inline-block; transform: translateY(110%); animation: rise 1.1s cubic-bezier(.2,.8,.2,1) forwards; }
.hero-headline .word:nth-child(2) > span { animation-delay: .12s; }
.hero-headline .word:nth-child(3) > span { animation-delay: .24s; }
.hero-headline .word:nth-child(4) > span { animation-delay: .36s; }
.hero-headline .word:nth-child(5) > span { animation-delay: .48s; }
@keyframes rise { from { transform: translateY(110%); } to { transform: translateY(0); } }

.hero-bottom { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 60px; align-items: end; padding-top: 40px; border-top: 1px solid var(--line); }
.hero-blurb { font-size: 16px; line-height: 1.55; color: var(--silver); max-width: 380px; }
.hero-stat { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--silver-2); }
.hero-stat .num { display: block; font-family: var(--serif); font-size: 64px; font-weight: 300; color: var(--bone); line-height: 1; margin-bottom: 8px; letter-spacing: -.02em; }
.hero-stat .num em { color: var(--gold); font-style: italic; }

.hero-marquee { position: absolute; left: 0; right: 0; bottom: 0; overflow: hidden; border-top: 1px solid var(--line); padding: 14px 0; }
.hero-marquee-track { display: inline-flex; gap: 60px; animation: scroll 60s linear infinite; white-space: nowrap; }
.hero-marquee span { font-family: var(--mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--silver-2); display: inline-flex; align-items: center; gap: 60px; }
.hero-marquee span::after { content: "✦"; color: var(--gold); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (max-width: 900px) {
  .hero { padding: 120px 20px 100px; }
  .hero-bottom { grid-template-columns: 1fr; gap: 30px; }
}

/* ── sections base ── */
.section { padding: 140px 40px; position: relative; }
.section-light { background: var(--bone); color: var(--ink); }
@media (max-width: 900px) { .section { padding: 80px 20px; } }

.eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); }

.h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(40px, 6vw, 84px); line-height: 1; letter-spacing: -.02em; margin: 0 0 40px; }
.h2 .it { font-style: italic; color: var(--gold); }
.section-light .h2 { color: var(--ink); }
.section-light .eyebrow { color: var(--gold-deep); }
.section-light .eyebrow::before { background: var(--gold-deep); }

/* ── why choose us ── */
.why { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.why-head { position: sticky; top: 120px; align-self: start; }
.why-head p { font-size: 18px; line-height: 1.6; color: var(--silver); max-width: 460px; }
.why-list { display: flex; flex-direction: column; }
.why-item { padding: 36px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 60px 1fr auto; gap: 24px; align-items: start; transition: padding .4s; }
.why-item:last-child { border-bottom: 1px solid var(--line); }
.why-item:hover { padding-left: 12px; }
.why-num { font-family: var(--mono); font-size: 12px; letter-spacing: .14em; color: var(--gold); padding-top: 8px; }
.why-title { font-family: var(--serif); font-size: 32px; font-weight: 400; line-height: 1.05; margin: 0 0 12px; }
.why-desc { font-size: 14px; line-height: 1.6; color: var(--silver-2); max-width: 480px; }
.why-icon { width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); transition: border-color .3s, background .3s, color .3s; }
.why-item:hover .why-icon { border-color: var(--gold); background: var(--gold); color: var(--ink); }
@media (max-width: 900px) { .why { grid-template-columns: 1fr; gap: 40px; } .why-head { position: static; } .why-item { grid-template-columns: 40px 1fr; } .why-icon { display: none; } }

/* ── services ── */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.svc { background: var(--ink); position: relative; display: flex; flex-direction: column; transition: background .4s; overflow: hidden; }
.svc-img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--ink-2); }
.svc-img-wrap img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.85) contrast(1.1) brightness(.7); transition: filter 1s, transform 1.2s cubic-bezier(.2,.8,.2,1); }
.svc:hover .svc-img-wrap img { filter: grayscale(0) contrast(1.05) brightness(.95); transform: scale(1.04); }
.svc-img-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,11,.1) 0%, rgba(10,10,11,.7) 100%); pointer-events: none; }
.svc-icon-overlay { position: absolute; bottom: 16px; right: 16px; width: 56px; height: 56px; border: 1px solid var(--gold); background: rgba(10,10,11,.7); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; color: var(--gold); border-radius: 50%; transition: background .3s, color .3s; z-index: 2; }
.svc:hover .svc-icon-overlay { background: var(--gold); color: var(--ink); }
.svc-spec-pill { position: absolute; top: 16px; left: 16px; padding: 6px 12px; background: rgba(10,10,11,.7); backdrop-filter: blur(8px); border: 1px solid var(--line); font-family: var(--mono); font-size: 10px; letter-spacing: .14em; color: var(--bone); z-index: 2; }
.svc-body { padding: 32px 28px 36px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; min-height: 200px; }
.svc-head { display: flex; justify-content: space-between; align-items: start; }
.svc-num { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; color: var(--silver-2); }
.svc-title { font-family: var(--serif); font-size: 30px; font-weight: 400; line-height: 1.05; margin: 16px 0 12px; max-width: 14ch; }
.svc-title .it { font-style: italic; color: var(--gold); }
.svc-desc { font-size: 13px; line-height: 1.6; color: var(--silver-2); }
.svc-arrow { margin-top: 20px; display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.svc-arrow svg { transition: transform .3s; }
.svc:hover .svc-arrow svg { transform: translateX(6px); }
@media (max-width: 900px) { .services { grid-template-columns: 1fr; } }

/* ── photo marquee transitions ── */
.photo-strip { overflow: hidden; padding: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; }
.photo-strip-track { display: flex; gap: 24px; padding: 24px 0; animation: pscroll 70s linear infinite; }
.photo-strip-track > div { flex: 0 0 auto; width: 360px; aspect-ratio: 4/3; overflow: hidden; position: relative; }
.photo-strip-track img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.2); }
.photo-strip-track .meta { position: absolute; left: 12px; bottom: 12px; right: 12px; font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--bone); display: flex; justify-content: space-between; }
.photo-strip-track .meta b { color: var(--gold); font-weight: 500; }
.photo-strip-track .meta::before { content: ""; position: absolute; left: -12px; right: -12px; bottom: -12px; height: 50%; background: linear-gradient(180deg, transparent, rgba(10,10,11,.85)); z-index: -1; }
@keyframes pscroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── materials & systems gallery ── */
.materials { background: var(--bone); color: var(--ink); padding: 140px 40px; }
.materials .h2, .materials .eyebrow { color: var(--ink); }
.materials .eyebrow { color: var(--gold-deep); }
.materials .eyebrow::before { background: var(--gold-deep); }
.materials-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 70px; align-items: end; }
.materials-head p { font-size: 16px; line-height: 1.65; color: rgba(10,10,11,.65); max-width: 460px; }
.materials-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 180px; gap: 20px; }
.mat { position: relative; overflow: hidden; background: var(--ink-2); }
.mat img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.8,.2,1); }
.mat:hover img { transform: scale(1.06); }
.mat-overlay { position: absolute; inset: 0; padding: 20px; display: flex; flex-direction: column; justify-content: space-between; pointer-events: none; }
.mat-overlay::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,11,0) 30%, rgba(10,10,11,.85) 100%); }
.mat-overlay > * { position: relative; z-index: 1; }
.mat-tag { font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--bone); padding: 5px 10px; background: rgba(10,10,11,.6); backdrop-filter: blur(8px); border: 1px solid rgba(244,241,234,.2); align-self: start; }
.mat-title { font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--bone); line-height: 1.1; }
.mat-spec { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; color: var(--gold-2); margin-top: 6px; text-transform: uppercase; }

.mat-1 { grid-column: span 5; grid-row: span 2; }
.mat-2 { grid-column: span 4; grid-row: span 1; }
.mat-3 { grid-column: span 3; grid-row: span 1; }
.mat-4 { grid-column: span 4; grid-row: span 1; }
.mat-5 { grid-column: span 3; grid-row: span 2; }
.mat-6 { grid-column: span 4; grid-row: span 1; }
.mat-7 { grid-column: span 5; grid-row: span 1; }
@media (max-width: 900px) { .materials-head { grid-template-columns: 1fr; } .materials-grid > .mat { grid-column: span 12 !important; grid-row: span 1 !important; aspect-ratio: 4/3; } .materials-grid { grid-auto-rows: auto; } }

/* ── blueprint / technical band ── */
.blueprint { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 100px 40px; position: relative; overflow: hidden; }
.blueprint::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(200,162,75,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(200,162,75,.06) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; }
.blueprint-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: center; position: relative; }
.blueprint-svg { width: 100%; aspect-ratio: 4/3; }
.blueprint-svg .thin { stroke: var(--gold); stroke-width: .5; fill: none; }
.blueprint-svg .med { stroke: var(--bone); stroke-width: .8; fill: none; }
.blueprint-svg .accent { stroke: var(--gold); stroke-width: 1.5; fill: none; }
.blueprint-svg .lbl { fill: var(--silver); font-family: var(--mono); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.blueprint-svg .lbl-gold { fill: var(--gold); font-family: var(--mono); font-size: 9px; letter-spacing: .14em; }
.blueprint-svg .dim { stroke: var(--silver-2); stroke-width: .4; fill: none; stroke-dasharray: 2 3; }
.blueprint-svg .fillp { fill: rgba(200,162,75,.08); stroke: var(--gold); stroke-width: .6; }
.blueprint-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); margin-top: 40px; border: 1px solid var(--line); }
.blueprint-stat { background: var(--ink-2); padding: 24px; }
.blueprint-stat-num { font-family: var(--serif); font-size: 40px; font-weight: 300; line-height: 1; color: var(--bone); margin-bottom: 8px; }
.blueprint-stat-num .it { font-style: italic; color: var(--gold); }
.blueprint-stat-lbl { font-family: var(--mono); font-size: 10px; letter-spacing: .18em; color: var(--silver-2); text-transform: uppercase; }
@media (max-width: 900px) { .blueprint-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ── hero banner (rotating bg) ── */
.hero-banner { position: relative; min-height: 100vh; padding: 140px 40px 80px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.6s cubic-bezier(.4,0,.2,1), transform 8s linear; transform: scale(1.04); filter: grayscale(.15) contrast(1.05) brightness(.85); }
.hero-bg-slide.active { opacity: 1; transform: scale(1.0); }
.hero-bg-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,11,12,.7) 0%, rgba(11,11,12,.45) 30%, rgba(11,11,12,.55) 60%, rgba(11,11,12,.92) 100%), linear-gradient(90deg, rgba(11,11,12,.6) 0%, transparent 40%, transparent 60%, rgba(11,11,12,.4) 100%); }
.hero-bg-grain { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.025) 1px, transparent 1px); background-size: 3px 3px; mix-blend-mode: overlay; pointer-events: none; }
.hero-banner-meta { position: relative; z-index: 2; display: flex; justify-content: space-between; font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--silver); }
.hero-banner-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-banner-meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
.hero-banner-content { position: relative; z-index: 2; }
.hero-banner-bottom { display: grid; grid-template-columns: 1.2fr auto; gap: 60px; align-items: end; padding-top: 36px; border-top: 1px solid rgba(244,241,234,.18); }
.hero-banner-bottom .hero-blurb { font-size: 17px; line-height: 1.55; color: var(--bone); max-width: 520px; opacity: .92; }
.hero-banner-actions { display: flex; gap: 14px; }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--gold); color: var(--ink); padding: 16px 26px; font-family: var(--mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; text-decoration: none; transition: all .25s; }
.btn-primary:hover { background: var(--bone); }
.btn-ghost { display: inline-flex; align-items: center; padding: 16px 26px; border: 1px solid rgba(244,241,234,.3); color: var(--bone); font-family: var(--mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; text-decoration: none; transition: all .25s; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.hero-banner-controls { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; padding: 18px 0 30px; font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--silver); }
.hero-slide-info { display: flex; flex-direction: column; gap: 4px; }
.hero-slide-loc { color: var(--bone); }
.hero-slide-code { color: var(--gold); }
.hero-slide-dots { display: flex; gap: 10px; }
.hero-dot { width: 28px; height: 2px; background: rgba(244,241,234,.25); border: none; padding: 0; cursor: none; transition: background .3s; }
.hero-dot.active { background: var(--gold); }
.hero-slide-counter em { font-style: italic; color: var(--gold); font-size: 14px; }
@media (max-width: 900px) {
  .hero-banner { padding: 120px 20px 100px; }
  .hero-banner-bottom { grid-template-columns: 1fr; gap: 24px; }
  .hero-banner-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { justify-content: center; }
}
.hero-visual-frame { position: relative; aspect-ratio: 3/4; overflow: hidden; border: 1px solid var(--line); }
.hero-visual-frame img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.1) contrast(1.05); }
.hero-visual-meta { position: absolute; left: 12px; right: 12px; bottom: 12px; padding-top: 12px; border-top: 1px solid rgba(244,241,234,.4); display: flex; justify-content: space-between; font-family: var(--mono); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--bone); }
.hero-visual-tag { position: absolute; top: -10px; left: -10px; background: var(--gold); color: var(--ink); font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; padding: 6px 10px; font-weight: 600; }
@media (max-width: 1100px) { .hero-visual { display: none; } }

/* ── reviews with photo ── */
.reviews { background: var(--bone); color: var(--ink); padding: 0; }
.reviews-wrap { padding: 140px 40px; }
.reviews-stage-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; min-height: 480px; }
.review-photo-stack { position: relative; }
.review-photo { position: absolute; inset: 0; overflow: hidden; opacity: 0; transition: opacity .8s; }
.review-photo.active { opacity: 1; }
.review-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.1); }
.review-photo-meta { position: absolute; left: 16px; right: 16px; bottom: 16px; display: flex; justify-content: space-between; font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--bone); padding-top: 12px; border-top: 1px solid rgba(244,241,234,.4); }
@media (max-width: 900px) { .reviews-wrap { padding: 80px 20px; } .reviews-stage-grid { grid-template-columns: 1fr; min-height: auto; gap: 40px; } .review-photo-stack { height: 320px; position: relative; } }

/* ── divider band ── */
.divider-band { padding: 60px 40px; background: var(--bone); color: var(--ink); border-top: 1px solid rgba(10,10,11,.08); border-bottom: 1px solid rgba(10,10,11,.08); }
.divider-band-inner { display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; }
.divider-band h3 { font-family: var(--serif); font-size: clamp(28px, 4vw, 48px); font-weight: 300; line-height: 1.05; margin: 0; max-width: 18ch; letter-spacing: -.02em; }
.divider-band h3 .it { font-style: italic; color: var(--gold-deep); }
.divider-band a { display: inline-flex; align-items: center; gap: 12px; padding: 16px 24px; border: 1px solid var(--ink); font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink); transition: background .3s, color .3s; }
.divider-band a:hover { background: var(--ink); color: var(--bone); }

/* ── before-after slider ── */
.ba { padding: 140px 40px; }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.ba-stage { position: relative; aspect-ratio: 4/3; overflow: hidden; user-select: none; cursor: ew-resize; border: 1px solid var(--line); }
.ba-stage img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.ba-after-clip { position: absolute; inset: 0; overflow: hidden; }
.ba-handle { position: absolute; top: 0; bottom: 0; width: 2px; background: var(--gold); z-index: 5; pointer-events: none; }
.ba-handle::before { content: ""; position: absolute; left: -20px; right: -20px; top: 50%; width: 42px; height: 42px; transform: translate(0,-50%); border-radius: 50%; border: 2px solid var(--gold); background: var(--ink); }
.ba-handle::after { content: "↔"; position: absolute; left: -20px; top: 50%; width: 42px; height: 42px; transform: translate(0,-50%); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 16px; }
.ba-tag { position: absolute; top: 16px; padding: 6px 12px; background: rgba(10,10,11,.7); backdrop-filter: blur(6px); border: 1px solid var(--line); font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--bone); z-index: 4; }
.ba-tag.before { left: 16px; }
.ba-tag.after { right: 16px; color: var(--gold); border-color: var(--gold); }
@media (max-width: 900px) { .ba-grid { grid-template-columns: 1fr; gap: 40px; } }


/* ── portfolio ── */
.portfolio-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 50px; gap: 40px; flex-wrap: wrap; }
.portfolio-filters { display: flex; gap: 6px; flex-wrap: wrap; }
.portfolio-filter { padding: 10px 18px; border: 1px solid var(--line); font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--silver-2); transition: all .3s; border-radius: 999px; }
.portfolio-filter:hover { color: var(--bone); border-color: var(--silver-2); }
.portfolio-filter.active { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.portfolio-count { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--silver-2); text-transform: uppercase; }

.portfolio-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.proj { position: relative; overflow: hidden; cursor: none; transition: opacity .4s; }
.proj.hidden { display: none; }
.proj-img { position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--ink-2); }
.proj-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.8,.2,1), filter .6s; filter: grayscale(.15) contrast(1.05); }
.proj:hover .proj-img img { transform: scale(1.06); filter: grayscale(0) contrast(1.05); }
.proj-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(10,10,11,.7) 100%); opacity: 0; transition: opacity .4s; }
.proj:hover .proj-img::after { opacity: 1; }
.proj-meta { display: flex; justify-content: space-between; align-items: end; padding: 16px 4px 0; font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--silver-2); }
.proj-title { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--bone); margin: 6px 0 0; line-height: 1.1; letter-spacing: -.01em; }
.proj-tag { color: var(--gold); }

.proj.span-7 { grid-column: span 7; }
.proj.span-5 { grid-column: span 5; }
.proj.span-6 { grid-column: span 6; }
.proj.span-4 { grid-column: span 4; }
.proj.span-3 { grid-column: span 3; }
.proj.span-8 { grid-column: span 8; }
.proj.span-12 { grid-column: span 12; }
.proj.span-12 .proj-img { aspect-ratio: 21/9; }
.proj.tall .proj-img { aspect-ratio: 3/4; }
.proj.wide .proj-img { aspect-ratio: 16/9; }
@media (max-width: 900px) { .portfolio-grid > .proj { grid-column: span 12 !important; } }

/* ── about / story ── */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.about-img { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.1) contrast(1.05); }
.about-img-meta { position: absolute; bottom: 20px; left: 20px; right: 20px; display: flex; justify-content: space-between; font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--bone); padding-top: 16px; border-top: 1px solid rgba(244,241,234,.4); }
.about-text .lead { font-family: var(--serif); font-size: 32px; line-height: 1.25; font-weight: 300; margin: 20px 0 30px; letter-spacing: -.01em; }
.about-text .lead .it { font-style: italic; color: var(--gold); }
.about-text p { font-size: 15px; line-height: 1.7; color: var(--silver); margin: 0 0 20px; max-width: 480px; }
.about-sig { margin-top: 40px; display: flex; align-items: center; gap: 20px; padding-top: 24px; border-top: 1px solid var(--line); }
.about-sig-name { font-family: var(--serif); font-size: 22px; font-style: italic; color: var(--bone); }
.about-sig-role { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--silver-2); margin-top: 4px; }
@media (max-width: 900px) { .about { grid-template-columns: 1fr; gap: 40px; } }

/* ── values ── */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 100px; }
.value { padding: 30px 24px; border: 1px solid var(--line); position: relative; transition: border-color .3s, background .3s; }
.value:hover { border-color: var(--gold); background: var(--ink-2); }
.value-num { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; color: var(--gold); }
.value-title { font-family: var(--serif); font-size: 22px; font-weight: 500; margin: 14px 0 8px; }
.value-desc { font-size: 13px; line-height: 1.55; color: var(--silver-2); }
@media (max-width: 900px) { .values { grid-template-columns: 1fr 1fr; } }

/* ── stats / numbers ── */
.numbers { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 60px 40px; border-right: 1px solid var(--line); position: relative; }
.stat:last-child { border-right: 0; }
.stat-num { font-family: var(--serif); font-size: clamp(60px, 8vw, 120px); font-weight: 300; line-height: 1; letter-spacing: -.03em; }
.stat-num .it { color: var(--gold); font-style: italic; }
.stat-label { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--silver-2); margin-top: 16px; max-width: 200px; line-height: 1.5; }
@media (max-width: 900px) { .numbers-grid { grid-template-columns: 1fr 1fr; } .stat { padding: 40px 20px; } .stat:nth-child(2) { border-right: 0; } .stat:nth-child(odd) { border-right: 1px solid var(--line); } .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); } }

/* ── process ── */
.process { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.process-head .h2 { margin-bottom: 30px; }
.process-list { display: flex; flex-direction: column; }
.proc-item { padding: 32px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: auto 1fr; gap: 32px; cursor: none; transition: padding .4s; }
.proc-item:last-child { border-bottom: 1px solid var(--line); }
.proc-num { font-family: var(--serif); font-size: 56px; font-weight: 300; line-height: 1; color: var(--gold); font-style: italic; }
.proc-title { font-family: var(--serif); font-size: 28px; font-weight: 400; margin: 4px 0 10px; }
.proc-desc { font-size: 14px; line-height: 1.6; color: var(--silver-2); max-width: 460px; max-height: 0; overflow: hidden; transition: max-height .5s cubic-bezier(.2,.8,.2,1), margin-top .5s; }
.proc-item.open .proc-desc { max-height: 200px; margin-top: 8px; }
.proc-meta { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--silver-2); margin-top: 16px; }
@media (max-width: 900px) { .process { grid-template-columns: 1fr; gap: 40px; } }

/* ── reviews ── */
.reviews { background: var(--bone); color: var(--ink); }
.reviews-stage { position: relative; min-height: 360px; }
.review { position: absolute; inset: 0; opacity: 0; transition: opacity .8s; pointer-events: none; }
.review.active { opacity: 1; pointer-events: auto; }
.review-stars { display: flex; gap: 4px; color: var(--gold-deep); margin-bottom: 30px; }
.review-quote { font-family: var(--serif); font-size: clamp(28px, 4vw, 48px); font-weight: 300; line-height: 1.25; letter-spacing: -.01em; max-width: 1100px; margin: 0 0 50px; color: var(--ink); }
.review-quote .it { font-style: italic; color: var(--gold-deep); }
.review-cite { display: flex; gap: 24px; align-items: end; padding-top: 24px; border-top: 1px solid rgba(10,10,11,.15); }
.review-name { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--ink); }
.review-role { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(10,10,11,.55); margin-top: 4px; }
.reviews-controls { display: flex; justify-content: space-between; align-items: center; margin-top: 60px; padding-top: 30px; border-top: 1px solid rgba(10,10,11,.15); }
.reviews-counter { font-family: var(--mono); font-size: 12px; letter-spacing: .18em; color: var(--ink); }
.reviews-counter em { color: var(--gold-deep); font-style: normal; }
.reviews-arrows { display: flex; gap: 8px; }
.rev-arr { width: 56px; height: 56px; border: 1px solid rgba(10,10,11,.25); display: flex; align-items: center; justify-content: center; transition: all .3s; border-radius: 50%; }
.rev-arr:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }

/* ── service areas ── */
.areas { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.areas-list { display: flex; flex-direction: column; }
.area-item { padding: 22px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 40px 1fr auto; gap: 16px; align-items: center; transition: padding .4s, color .4s; }
.area-item:last-child { border-bottom: 1px solid var(--line); }
.area-item:hover { padding-left: 12px; }
.area-num { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--silver-2); }
.area-name { font-family: var(--serif); font-size: 32px; font-weight: 400; transition: color .3s; }
.area-item:hover .area-name { color: var(--gold); font-style: italic; }
.area-tag { font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--silver-2); padding: 4px 10px; border: 1px solid var(--line); border-radius: 999px; }
.areas-map { aspect-ratio: 1/1.1; background: var(--ink-2); border: 1px solid var(--line); position: relative; overflow: hidden; }
@media (max-width: 900px) { .areas { grid-template-columns: 1fr; gap: 40px; } }

/* ── quote form ── */
.quote { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quote-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; }
.quote-side .h2 { margin-bottom: 30px; }
.quote-side p { color: var(--silver); line-height: 1.6; margin-bottom: 30px; max-width: 360px; }
.quote-side ul { list-style: none; padding: 0; margin: 0; }
.quote-side li { padding: 14px 0; border-top: 1px solid var(--line); font-family: var(--mono); font-size: 12px; letter-spacing: .14em; color: var(--silver); display: flex; justify-content: space-between; }
.quote-side li:last-child { border-bottom: 1px solid var(--line); }
.quote-side li b { color: var(--bone); font-weight: 500; }

.quote-form { background: var(--ink); padding: 50px; border: 1px solid var(--line); }
.quote-steps { display: flex; gap: 4px; margin-bottom: 36px; }
.quote-step-pill { flex: 1; height: 2px; background: var(--line); position: relative; overflow: hidden; }
.quote-step-pill.done { background: var(--gold); }
.quote-step-pill.active::after { content: ""; position: absolute; inset: 0; background: var(--gold); width: 60%; }
.quote-step-meta { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--silver-2); margin-bottom: 28px; }
.quote-step-meta b { color: var(--gold); font-weight: 500; }
.quote-step-title { font-family: var(--serif); font-size: 36px; font-weight: 400; line-height: 1.1; margin: 0 0 30px; }
.quote-step-title .it { font-style: italic; color: var(--gold); }

.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--silver-2); margin-bottom: 8px; }
.field input, .field textarea, .field select { width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--line); padding: 10px 0 12px; color: var(--bone); font: inherit; font-size: 16px; outline: none; transition: border-color .3s; font-family: var(--sans); }
.field input:focus, .field textarea:focus, .field select:focus { border-bottom-color: var(--gold); }
.field textarea { resize: none; min-height: 80px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.choice { padding: 18px 16px; border: 1px solid var(--line); display: flex; flex-direction: column; gap: 6px; transition: all .3s; text-align: left; }
.choice:hover { border-color: var(--silver-2); }
.choice.selected { border-color: var(--gold); background: rgba(200,162,75,.06); }
.choice-name { font-family: var(--serif); font-size: 18px; font-weight: 500; }
.choice-meta { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; color: var(--silver-2); text-transform: uppercase; }

.quote-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 36px; }
.btn { display: inline-flex; align-items: center; gap: 12px; padding: 14px 22px; font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; transition: all .3s; }
.btn-ghost { color: var(--silver); }
.btn-ghost:hover { color: var(--bone); }
.btn-primary { background: var(--gold); color: var(--ink); border: 1px solid var(--gold); font-weight: 600; }
.btn-primary:hover { background: var(--gold-2); border-color: var(--gold-2); }
.btn-primary:disabled { opacity: .35; cursor: not-allowed; }
.btn .arr { transition: transform .3s; display: inline-block; }
.btn-primary:hover .arr { transform: translateX(4px); }

.quote-success { text-align: center; padding: 60px 20px; }
.quote-success-icon { width: 64px; height: 64px; border: 1px solid var(--gold); border-radius: 50%; margin: 0 auto 30px; display: flex; align-items: center; justify-content: center; color: var(--gold); }
.quote-success h3 { font-family: var(--serif); font-size: 36px; font-weight: 400; margin: 0 0 16px; }
.quote-success h3 .it { font-style: italic; color: var(--gold); }
.quote-success p { color: var(--silver); max-width: 380px; margin: 0 auto; line-height: 1.6; }

@media (max-width: 900px) {
  .quote-grid { grid-template-columns: 1fr; gap: 40px; }
  .quote-form { padding: 30px 20px; }
  .field-grid, .choice-grid { grid-template-columns: 1fr; }
}

/* ── contact ── */
.contact { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; }
.contact-info { display: flex; flex-direction: column; }
.contact-block { padding: 30px 0; border-top: 1px solid var(--line); }
.contact-block:last-child { border-bottom: 1px solid var(--line); }
.contact-label { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.contact-value { font-family: var(--serif); font-size: 28px; font-weight: 400; line-height: 1.2; }
.contact-value a { transition: color .3s; }
.contact-value a:hover { color: var(--gold); font-style: italic; }
.contact-sub { font-size: 13px; color: var(--silver-2); margin-top: 6px; }
.contact-map { background: var(--ink-2); border: 1px solid var(--line); aspect-ratio: 1/1.05; position: relative; overflow: hidden; }
.contact-map iframe { width: 100%; height: 100%; border: 0; }
.contact-map-meta { position: absolute; left: 20px; right: 20px; bottom: 20px; z-index: 1000; padding: 14px 18px; background: rgba(10,10,11,.85); backdrop-filter: blur(8px); border: 1px solid var(--line); display: flex; justify-content: space-between; font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--bone); }
.contact-map-meta b { color: var(--gold); }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; gap: 40px; } }

/* ── footer ── */
.footer { padding: 100px 40px 30px; border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid var(--line); }
.footer-brand img { height: 140px; margin-bottom: 24px; margin-left: -15px; }
.footer-brand p { font-family: var(--serif); font-size: 22px; font-style: italic; line-height: 1.4; color: var(--silver); max-width: 360px; }
.footer-col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin: 0 0 20px; font-weight: 500; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--silver); font-size: 14px; transition: color .3s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { padding-top: 30px; display: flex; justify-content: space-between; font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--silver-2); }
.footer-license { display: flex; gap: 24px; }
@media (max-width: 900px) {
  .footer { padding: 60px 20px 30px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

/* ── massive logo wordmark ── */
.wordmark { padding: 0 40px 0; overflow: hidden; }
.wordmark-svg { width: 100%; display: block; }
.wordmark text { fill: var(--ink); stroke: var(--gold); stroke-width: 1; font-family: var(--serif); font-weight: 300; font-style: italic; letter-spacing: -.03em; }
.section-light .wordmark text { stroke: var(--gold-deep); }
@media (max-width: 900px) { .wordmark { padding: 0 20px; } }

/* ── variant pill (link between proposals) ── */
.variant-pill { position: fixed; bottom: 28px; right: 28px; z-index: 60; background: var(--bone); color: var(--ink); padding: 12px 20px; border-radius: 999px; font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 10px; box-shadow: 0 12px 32px rgba(0,0,0,.32); transition: all .25s; text-decoration: none; }
.variant-pill:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }
.variant-pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: inline-block; }
.variant-pill:hover .variant-pill-dot { background: var(--ink); }
.wordmark-svg { width: 100%; display: block; }
.wordmark text { fill: var(--ink); stroke: var(--gold); stroke-width: 1; font-family: var(--serif); font-weight: 300; font-style: italic; letter-spacing: -.03em; }
.section-light .wordmark text { stroke: var(--gold-deep); }
@media (max-width: 900px) { .wordmark { padding: 0 20px; } }

/* reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }


.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; width: 40px; height: 40px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; justify-self: end; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--bone); transition: transform .3s, opacity .3s; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav.open .nav-links { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,10,11,.98); padding: 24px 32px 32px; gap: 16px; backdrop-filter: blur(14px); border-top: 1px solid var(--line); }
  .nav.open .nav-links .nav-link { font-size: 16px; padding: 8px 0; border-bottom: 1px solid var(--line); color: var(--bone); }
}

/* mobile nav refinements */
@media (max-width: 900px) {
  .nav { padding: 14px 20px !important; gap: 0; }
  .nav-logo img { height: 38px !important; }
  .nav-toggle { margin-left: auto; }
}

.contact-map-leaflet { width: 100%; height: 100%; background: #0a0a0b; }
.contact-map-leaflet .leaflet-control-attribution { background: rgba(0,0,0,.6); color: #999; font-size: 10px; }
.contact-map-leaflet .leaflet-control-attribution a { color: var(--gold); }


/* Leaflet custom pin */
.tl-pin { position: relative; }
.tl-pin-dot { position: absolute; left: 50%; top: 50%; width: 14px; height: 14px; background: var(--gold); border: 2px solid #0a0a0b; border-radius: 50%; transform: translate(-50%, -50%); z-index: 2; box-shadow: 0 0 0 2px var(--gold); }
.tl-pin-pulse { position: absolute; left: 50%; top: 50%; width: 44px; height: 44px; border-radius: 50%; background: rgba(200,162,75,.35); transform: translate(-50%, -50%) scale(.6); animation: tl-pulse 1.8s ease-out infinite; }
@keyframes tl-pulse { 0% { transform: translate(-50%,-50%) scale(.4); opacity: .8; } 100% { transform: translate(-50%,-50%) scale(1.3); opacity: 0; } }

/* Open in Google Maps button */
.map-open-gm { position: absolute; right: 16px; top: 16px; z-index: 1000; width: 38px; height: 38px; display: grid; place-items: center; background: rgba(10,10,11,.85); border: 1px solid var(--gold); color: var(--gold); font-family: var(--mono); font-size: 16px; line-height: 1; backdrop-filter: blur(8px); transition: all .25s; }
.map-open-gm:hover { background: var(--gold); color: var(--ink); transform: translateY(-1px); }


/* Leaflet tooltip & popup styles */
.leaflet-tooltip.tl-tooltip { background: rgba(10,10,11,.95); color: var(--bone); border: 1px solid var(--gold); border-radius: 0; padding: 10px 14px; font-family: var(--mono); font-size: 11px; letter-spacing: .08em; line-height: 1.6; box-shadow: 0 12px 32px rgba(0,0,0,.45); white-space: nowrap; }
.leaflet-tooltip.tl-tooltip b { color: var(--gold); font-family: var(--serif); font-size: 14px; font-weight: 400; letter-spacing: 0; }
.leaflet-tooltip.tl-tooltip::before { border-top-color: var(--gold) !important; }
.leaflet-popup-content-wrapper { background: rgba(10,10,11,.95); color: var(--bone); border: 1px solid var(--gold); border-radius: 0; box-shadow: 0 12px 32px rgba(0,0,0,.45); }
.leaflet-popup-content { font-family: var(--mono); font-size: 11px; letter-spacing: .06em; line-height: 1.6; margin: 14px 18px; }
.leaflet-popup-content b { font-family: var(--serif); font-size: 15px; color: var(--gold); font-weight: 400; }
.leaflet-popup-content a { color: var(--gold); border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.leaflet-popup-tip { background: rgba(10,10,11,.95); border: 1px solid var(--gold); }
.leaflet-popup-close-button { color: var(--silver) !important; }


/* areas section redesigned (no map) */
.areas-section { display: block; }
.areas-section .areas-head { max-width: 1320px; margin: 0 auto 60px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: end; }
.areas-section .areas-head .eyebrow { grid-column: 1 / -1; }
.areas-section .areas-head h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(48px, 7vw, 96px); line-height: .95; letter-spacing: -.025em; }
.areas-section .areas-head h2 .it { font-style: italic; color: var(--gold); }
.areas-intro { font-family: var(--serif); font-weight: 300; font-size: clamp(18px, 1.4vw, 22px); line-height: 1.55; color: var(--silver); max-width: 540px; }
.areas-intro .it { font-style: italic; color: var(--gold); }
.areas-grid-wide { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); max-width: 1320px; margin: 0 auto; }
.area-tile { background: var(--ink); padding: 32px 26px; display: flex; flex-direction: column; gap: 14px; transition: background .3s; cursor: default; }
.area-tile:hover { background: var(--ink-2); }
.area-tile-num { font-family: var(--mono); font-size: 11px; letter-spacing: .22em; color: var(--gold); }
.area-tile-name { font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--bone); letter-spacing: -.005em; }
.area-tile-tag { font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--silver-2); margin-top: auto; }
@media (max-width: 1024px) {
  .areas-section .areas-head { grid-template-columns: 1fr; gap: 24px; }
  .areas-grid-wide { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .areas-grid-wide { grid-template-columns: 1fr; }
}
