:root {
  --ink: #0c0c0b;
  --ink-soft: #151412;
  --paper: #f1ece3;
  --paper-2: #e8e0d4;
  --gold: #c39b63;
  --gold-light: #e2c796;
  --muted: #a9a297;
  --line: rgba(255,255,255,.14);
  --dark-line: rgba(12,12,11,.14);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --container: min(1240px, calc(100vw - 64px));
  --ease: cubic-bezier(.2,.75,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
::selection { background: var(--gold); color: var(--ink); }
.container { width: var(--container); margin-inline: auto; }
.skip-link { position: fixed; top: -80px; left: 16px; background: #fff; color: #000; padding: 10px 16px; z-index: 9999; transition: top .2s; }
.skip-link:focus { top: 16px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 1000; border-bottom: 1px solid transparent; transition: background .35s, border .35s, transform .35s; }
.site-header.scrolled { background: rgba(10,10,9,.92); border-color: rgba(255,255,255,.1); backdrop-filter: blur(16px); }
.header-inner { height: 92px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; color: #fff; width: fit-content; }
.brand-logo { width: 68px; height: 68px; object-fit: contain; flex: 0 0 auto; filter: drop-shadow(0 5px 16px rgba(0,0,0,.24)); }
.footer-brand .brand-logo { width: 116px; height: 116px; filter: none; }
.desktop-nav { display: flex; gap: 34px; align-items: center; }
.desktop-nav a { position: relative; color: rgba(255,255,255,.72); font-size: 12px; letter-spacing: .06em; font-weight: 600; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--gold); transition: right .3s; }
.desktop-nav a:hover { color: #fff; }
.desktop-nav a:hover::after { right: 0; }
.header-cta { justify-self: end; }
.menu-toggle, .mobile-menu { display: none; }

.btn { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; padding: 0 24px; border: 1px solid transparent; text-transform: uppercase; font-size: 10px; font-weight: 700; letter-spacing: .14em; transition: transform .25s var(--ease), background .25s, color .25s, border .25s; }
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.btn-small { min-height: 44px; padding-inline: 19px; font-size: 9px; }
.btn-gold { color: #17130e; background: var(--gold); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { color: #fff; border-color: rgba(255,255,255,.35); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-ghost { color: #fff; border-color: rgba(255,255,255,.25); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-dark-outline { border-color: rgba(12,12,11,.3); }
.btn-dark-outline:hover { background: var(--ink); color: #fff; }

.hero { min-height: 100svh; position: relative; display: flex; align-items: center; color: #fff; background: #0a0a09; overflow: hidden; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 62% center; filter: saturate(.66) contrast(1.05); opacity: .76; transform: scale(1.03); animation: heroZoom 13s ease-out forwards; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,5,4,.96) 0%, rgba(5,5,4,.75) 42%, rgba(5,5,4,.2) 73%, rgba(5,5,4,.35) 100%), linear-gradient(0deg, rgba(5,5,4,.72) 0%, transparent 42%); }
.hero-grain { position: absolute; inset: 0; opacity: .07; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E"); }
.hero-content { position: relative; z-index: 2; padding-top: 105px; padding-bottom: 140px; }
.hero-eyebrow { display: flex; align-items: center; gap: 14px; color: var(--gold-light); text-transform: uppercase; font-size: 10px; font-weight: 700; letter-spacing: .18em; }
.eyebrow-line { width: 42px; height: 1px; background: var(--gold); }
.hero h1 { max-width: 850px; margin: 28px 0 24px; font-family: var(--serif); font-weight: 600; font-size: clamp(66px, 7.1vw, 116px); line-height: .82; letter-spacing: -.04em; }
.hero h1 em { font-weight: 500; color: var(--gold-light); }
.hero-text { max-width: 575px; margin: 0; color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.85; }
.hero-actions { display: flex; gap: 12px; margin-top: 38px; }
.hero-meta { position: absolute; z-index: 2; left: 50%; bottom: 35px; transform: translateX(-50%); display: flex; justify-content: space-between; align-items: end; }
.hero-rating { display: grid; grid-template-columns: auto auto; column-gap: 12px; align-items: center; }
.hero-rating .stars { grid-column: 1 / -1; }
.stars { color: var(--gold-light); letter-spacing: .18em; font-size: 10px; }
.hero-rating strong { font-family: var(--serif); font-size: 28px; font-weight: 600; }
.hero-rating span, .hero-hours span, .hero-hours small { color: rgba(255,255,255,.55); font-size: 10px; letter-spacing: .08em; }
.hero-hours { text-align: right; display: flex; flex-direction: column; }
.hero-hours strong { margin: 2px 0; font-family: var(--serif); font-size: 21px; letter-spacing: .02em; }
.scroll-cue { position: absolute; z-index: 4; bottom: 33px; left: 50%; width: 24px; height: 38px; border: 1px solid rgba(255,255,255,.35); border-radius: 20px; }
.scroll-cue span { position: absolute; left: 50%; top: 8px; width: 3px; height: 3px; background: #fff; border-radius: 50%; transform: translateX(-50%); animation: scrollDot 1.8s infinite; }

.marquee { background: var(--gold); overflow: hidden; border-block: 1px solid rgba(0,0,0,.12); }
.marquee-track { --marquee-distance: -50%; width: max-content; display: flex; align-items: center; animation: marquee 30s linear infinite; will-change: transform; }
.marquee-group { flex: 0 0 auto; display: flex; align-items: center; gap: 25px; padding: 16px 12.5px; }
.marquee span { font-size: 10px; font-weight: 800; letter-spacing: .2em; white-space: nowrap; }
.marquee i { font-style: normal; font-size: 8px; flex: 0 0 auto; }

.section { padding: 140px 0; }
.section-kicker { display: block; margin-bottom: 18px; color: #8f6a3d; font-size: 10px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.section-kicker.light { color: var(--gold-light); }
.section-title { margin: 0; font-family: var(--serif); font-size: clamp(52px, 5vw, 78px); font-weight: 600; line-height: .94; letter-spacing: -.03em; }
.section-title em { color: #997447; font-weight: 500; }
.section-title.light { color: #fff; }
.section-title.light em { color: var(--gold-light); }
.lead { font-size: 18px !important; line-height: 1.8 !important; color: #34302b !important; }
.centered { max-width: 760px; margin: 0 auto 72px; text-align: center; }
.centered p { color: #6e675e; }

.story { background: var(--paper); }
.story-grid { display: grid; grid-template-columns: 1.02fr .85fr; gap: 110px; align-items: center; }
.story-visual { position: relative; min-height: 690px; }
.image-frame { overflow: hidden; background: #d6cec1; }
.image-frame img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8) sepia(.08); transition: transform .8s var(--ease); }
.image-frame:hover img { transform: scale(1.035); }
.image-frame-main { position: absolute; inset: 0 16% 10% 0; }
.image-frame-float { position: absolute; width: 43%; height: 43%; right: 0; bottom: 0; border: 12px solid var(--paper); box-shadow: 0 25px 70px rgba(41,31,22,.2); }
.story-seal { position: absolute; width: 126px; height: 126px; right: 8%; top: 8%; color: var(--gold-light); filter: drop-shadow(0 5px 18px rgba(0,0,0,.35)); display: grid; place-items: center; }
.story-seal svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; fill: none; stroke: currentColor; stroke-width: 1; }
.story-seal text { fill: currentColor; stroke: none; font-family: var(--sans); font-size: 8px; letter-spacing: 2.1px; }
.story-seal-mark { position: relative; z-index: 1; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: rgba(8,8,8,.62); border: 1px solid rgba(214,177,122,.5); backdrop-filter: blur(6px); box-shadow: 0 12px 28px rgba(0,0,0,.22); }
.story-seal-logo { width: 42px; height: 42px; object-fit: contain; filter: brightness(0) saturate(100%) invert(83%) sepia(20%) saturate(585%) hue-rotate(354deg) brightness(95%) contrast(89%); }
.story-copy > p { max-width: 570px; color: #656057; font-size: 14px; }
.story-points { margin-top: 38px; border-top: 1px solid var(--dark-line); }
.story-points div { display: grid; grid-template-columns: 54px 1fr; align-items: center; border-bottom: 1px solid var(--dark-line); padding: 16px 0; }
.story-points strong { color: #a07b4c; font-family: var(--serif); font-size: 19px; }
.story-points span { font-size: 12px; font-weight: 700; letter-spacing: .04em; }
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 30px; padding-bottom: 4px; border-bottom: 1px solid currentColor; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.text-link span { transition: transform .25s; }
.text-link:hover span { transform: translate(2px,-2px); }

.services { background: #e7dfd3; border-top: 1px solid rgba(0,0,0,.06); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--dark-line); border-left: 1px solid var(--dark-line); }
.service-card { position: relative; min-height: 360px; padding: 34px; border-right: 1px solid var(--dark-line); border-bottom: 1px solid var(--dark-line); background: rgba(255,255,255,.07); transition: background .35s, transform .35s var(--ease); overflow: hidden; }
.service-card::before { content: ""; position: absolute; inset: auto -30% -60% 30%; height: 260px; background: radial-gradient(circle, rgba(195,155,99,.2), transparent 68%); opacity: 0; transition: opacity .35s; }
.service-card:hover { background: rgba(255,255,255,.38); transform: translateY(-6px); z-index: 2; box-shadow: 0 20px 50px rgba(70,54,36,.08); }
.service-card:hover::before { opacity: 1; }
.service-card.featured { background: var(--ink-soft); color: #fff; }
.service-card.featured p { color: rgba(255,255,255,.62); }
.service-card.featured a { color: var(--gold-light); }
.service-tag { position: absolute; top: 0; right: 0; background: var(--gold); color: var(--ink); padding: 7px 13px; font-size: 8px; font-weight: 800; letter-spacing: .16em; }
.service-number { color: #9b805d; font-family: var(--serif); font-size: 15px; }
.service-icon { width: 52px; margin: 34px 0 24px; }
.service-icon svg { width: 100%; fill: none; stroke: currentColor; stroke-width: 1.25; }
.service-card h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 30px; line-height: 1; font-weight: 600; }
.service-card p { max-width: 310px; margin: 0; color: #6d675f; font-size: 12px; }
.service-card a { position: absolute; left: 34px; bottom: 30px; display: inline-flex; gap: 9px; align-items: center; color: #8f6a3d; font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.service-card a span { transition: transform .25s; }
.service-card a:hover span { transform: translateX(4px); }

/* Universo Nostra */
.universe { position: relative; background: #0b0b0a; color: #fff; overflow: hidden; }
.universe::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 5% 15%, rgba(195,155,99,.15), transparent 28%), radial-gradient(circle at 90% 75%, rgba(195,155,99,.1), transparent 30%); }
.universe-heading { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr .75fr; gap: 100px; align-items: end; margin-bottom: 70px; }
.universe-heading > p { max-width: 520px; margin: 0 0 7px; color: rgba(255,255,255,.55); font-size: 14px; }
.universe-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: repeat(2, minmax(285px, auto)); gap: 14px; }
.universe-card { position: relative; min-height: 285px; padding: 36px; border: 1px solid rgba(255,255,255,.12); background: linear-gradient(145deg, rgba(255,255,255,.03), rgba(255,255,255,.01)); overflow: hidden; isolation: isolate; transition: transform .35s var(--ease), border-color .35s, background .35s; }
.universe-card-featured { grid-row: 1 / 3; min-height: 584px; display: flex; flex-direction: column; justify-content: flex-end; padding: 48px; }
.universe-card::after { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(140deg, rgba(255,255,255,.02) 0%, transparent 32%, rgba(195,155,99,.09) 100%); opacity: .92; transition: opacity .35s; }
.universe-card:hover { transform: translateY(-5px); border-color: rgba(226,199,150,.38); background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.015)); }
.universe-card:hover::after { opacity: 1; }
.universe-card:hover .universe-media img { transform: scale(1.06); filter: saturate(.95) contrast(1.06) brightness(.6); }
.universe-card-glow { position: absolute; z-index: -1; width: 260px; height: 260px; right: -90px; top: -90px; border-radius: 50%; background: radial-gradient(circle, rgba(195,155,99,.18), transparent 68%); }
.universe-media { position: absolute; inset: 0; z-index: -3; overflow: hidden; }
.universe-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,5,4,.18), rgba(5,5,4,.58) 55%, rgba(5,5,4,.82)); }
.universe-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.03); filter: saturate(.85) contrast(1.05) brightness(.55); }
.universe-card--tattoo .universe-media img { object-position: center top; }
.universe-card--piercing .universe-media img { object-position: center center; }
.universe-card--visagismo .universe-media img { object-position: center 58%; }
.universe-icon { width: 62px; height: 62px; display: grid; place-items: center; margin-bottom: 35px; border: 1px solid rgba(226,199,150,.35); border-radius: 50%; color: var(--gold-light); }
.universe-card-featured .universe-icon { width: 76px; height: 76px; }
.universe-icon svg { width: 31px; fill: none; stroke: currentColor; stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }
.universe-index { display: block; margin-bottom: 12px; color: var(--gold-light); font-size: 8px; font-weight: 800; letter-spacing: .2em; }
.universe-card h3 { margin: 0 0 13px; font-family: var(--serif); font-size: 39px; line-height: .95; font-weight: 600; }
.universe-card-featured h3 { font-size: 64px; }
.universe-card p { max-width: 470px; margin: 0; color: rgba(255,255,255,.56); font-size: 12px; line-height: 1.75; }
.universe-card small { display: block; margin-top: 18px; color: rgba(255,255,255,.35); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.universe-card a { width: fit-content; display: inline-flex; align-items: center; gap: 9px; margin-top: 25px; padding-bottom: 4px; border-bottom: 1px solid rgba(226,199,150,.55); color: var(--gold-light); font-size: 8px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.universe-card a span { transition: transform .25s; }
.universe-card a:hover span { transform: translate(2px,-2px); }
.universe-watermark { position: absolute; z-index: -1; right: -8px; bottom: -26px; color: rgba(255,255,255,.025); font-family: var(--serif); font-size: 92px; line-height: 1; letter-spacing: -.05em; white-space: nowrap; }
.universe-card-featured .universe-watermark { right: -18px; bottom: -40px; font-size: 155px; }

.manifesto { position: relative; background: #0c0c0b; color: #fff; overflow: hidden; }
.manifesto-bg { position: absolute; inset: 0; opacity: .18; background: radial-gradient(circle at 20% 20%, #a57944, transparent 32%), linear-gradient(120deg, transparent 55%, rgba(255,255,255,.05)); }
.manifesto-bg::after { content: "BN"; position: absolute; right: -20px; bottom: -190px; font-family: var(--serif); font-size: 580px; line-height: 1; color: rgba(255,255,255,.025); }
.manifesto-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1fr; gap: 120px; }
.manifesto-copy p { max-width: 550px; margin-top: 32px; color: rgba(255,255,255,.58); font-size: 14px; }
.manifesto-list { border-top: 1px solid var(--line); }
.manifesto-item { display: grid; grid-template-columns: 56px 1fr; gap: 24px; padding: 29px 0; border-bottom: 1px solid var(--line); }
.manifesto-item > span { color: var(--gold); font-family: var(--serif); font-size: 20px; }
.manifesto-item h3 { margin: 0 0 7px; font-family: var(--serif); font-size: 28px; font-weight: 600; }
.manifesto-item p { margin: 0; color: rgba(255,255,255,.5); font-size: 12px; }

.gallery-section { padding: 135px 0 115px; background: var(--paper); overflow: hidden; }
.gallery-heading { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 58px; }
.gallery-note { max-width: 310px; margin: 0; color: #746d64; font-size: 13px; line-height: 1.7; }
.gallery-track { width: min(1500px, calc(100vw - 28px)); margin: 0 auto; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.gallery-item { position: relative; margin: 0; overflow: hidden; background: #ddd4c7; aspect-ratio: 4 / 5; display: block; }
.gallery-item--feature { grid-column: auto; grid-row: auto; min-height: 0; }
.gallery-item--tall { grid-column: auto; grid-row: auto; min-height: 0; }
.gallery-item--wide { grid-column: auto; grid-row: auto; min-height: 0; }
.gallery-link { position: relative; display: block; width: 100%; height: 100%; padding: 0; border: 0; background: transparent; cursor: zoom-in; }
.gallery-link img { width: 100%; height: 100%; object-fit: contain; object-position: center; padding: 12px; background: #eae2d5; filter: saturate(.88) contrast(1.01); transition: transform .6s var(--ease), filter .45s var(--ease); }
.gallery-link::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,8,8,.02), rgba(8,8,8,.34)); opacity: 0; transition: opacity .35s var(--ease); z-index: 1; }
.gallery-zoom { position: absolute; left: 16px; bottom: 16px; z-index: 2; padding: 9px 12px; border: 1px solid rgba(255,255,255,.2); background: rgba(10,10,9,.72); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; opacity: 0; transform: translateY(10px); transition: opacity .35s var(--ease), transform .35s var(--ease); backdrop-filter: blur(10px); }
.gallery-item:hover .gallery-link img,
.gallery-item:focus-within .gallery-link img { transform: scale(1.02); filter: saturate(.98); }
.gallery-item:hover .gallery-link::before,
.gallery-item:focus-within .gallery-link::before,
.gallery-item:hover .gallery-zoom,
.gallery-item:focus-within .gallery-zoom { opacity: 1; transform: translateY(0); }
.lightbox { position: fixed; inset: 0; z-index: 120; display: none; }
.lightbox.open { display: block; }
.lightbox-backdrop { position: absolute; inset: 0; border: 0; background: rgba(5,5,4,.82); backdrop-filter: blur(14px); }
.lightbox-dialog { position: relative; z-index: 1; display: grid; place-items: center; width: min(100vw - 48px, 1200px); height: min(100vh - 48px, 900px); margin: 24px auto; }
.lightbox-close { position: absolute; top: 16px; right: 16px; z-index: 2; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.18); background: rgba(10,10,9,.72); color: #fff; font-size: 28px; line-height: 1; cursor: pointer; }
.lightbox-figure { margin: 0; max-width: 100%; max-height: 100%; }
.lightbox-image { display: block; max-width: 100%; max-height: calc(100vh - 130px); object-fit: contain; box-shadow: 0 24px 80px rgba(0,0,0,.38); }
.lightbox-caption { margin-top: 12px; color: rgba(255,255,255,.78); font-size: 13px; text-align: center; }
body.lightbox-open { overflow: hidden; }

.social-proof { background: #e7dfd3; border-top: 1px solid var(--dark-line); }
.proof-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 120px; align-items: center; }
.score { margin-top: 8px; font-family: var(--serif); font-size: 130px; line-height: .78; letter-spacing: -.06em; }
.score span { color: inherit; }
.stars.large { margin: 22px 0 12px; font-size: 17px; }
.proof-score p { color: #6e675e; font-size: 12px; }
.proof-copy { padding-left: 70px; border-left: 1px solid var(--dark-line); }
.proof-copy blockquote { margin: 0; font-family: var(--serif); font-size: clamp(36px, 3.6vw, 58px); line-height: 1.04; letter-spacing: -.025em; }
.proof-copy > p { max-width: 650px; margin-top: 30px; color: #716a61; font-size: 13px; }
.proof-badges { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 28px; }
.proof-badges span { display: inline-flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 700; letter-spacing: .03em; }
.proof-badges svg { width: 17px; fill: none; stroke: #9a7447; stroke-width: 2; }

.location { background: var(--paper); }
.location-card { display: grid; grid-template-columns: 1fr 1fr; min-height: 650px; background: #ddd4c7; box-shadow: 0 30px 90px rgba(63,49,32,.12); }
.location-map { position: relative; min-height: 650px; overflow: hidden; background: #111; }
.map-embed { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: none; }
.map-shade { display: none; }
.map-badge { position: absolute; left: 28px; bottom: 28px; min-width: 220px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.16); background: rgba(10,10,9,.82); color: #fff; backdrop-filter: blur(14px); box-shadow: 0 18px 45px rgba(0,0,0,.24); }
.map-badge span { display: block; margin-bottom: 5px; color: var(--gold-light); font-size: 8px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.map-badge strong { display: block; font-family: var(--serif); font-size: 23px; font-weight: 600; line-height: 1; }
.map-badge small { display: block; margin-top: 8px; color: rgba(255,255,255,.5); font-size: 9px; }
.location-copy { padding: 70px; }
.location-copy h2 { margin: 0 0 40px; font-family: var(--serif); font-size: clamp(48px, 4.5vw, 72px); line-height: .95; font-weight: 600; }
.location-copy h2 em { color: #987144; font-weight: 500; }
.location-info { display: grid; gap: 20px; }
.location-info div { display: grid; grid-template-columns: 92px 1fr; padding-bottom: 18px; border-bottom: 1px solid var(--dark-line); }
.location-info span { color: #8a8177; font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.location-info strong { font-size: 12px; line-height: 1.65; }
.location-actions { display: flex; gap: 10px; margin-top: 34px; }

.final-cta { position: relative; min-height: 660px; display: grid; place-items: center; overflow: hidden; background: #0c0c0b; color: #fff; }
.final-cta > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 42%; filter: grayscale(.4) saturate(.65); opacity: .62; }
.final-cta-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,7,6,.9), rgba(7,7,6,.52), rgba(7,7,6,.82)), linear-gradient(0deg, rgba(7,7,6,.7), transparent 50%); }
.final-cta-content { position: relative; z-index: 2; text-align: center; }
.final-cta-content > span { color: var(--gold-light); font-size: 10px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.final-cta h2 { margin: 22px 0 36px; font-family: var(--serif); font-size: clamp(64px, 7vw, 105px); line-height: .82; letter-spacing: -.04em; font-weight: 600; }
.final-cta h2 em { color: var(--gold-light); font-weight: 500; }

.site-footer { padding: 70px 0 24px; background: #080808; color: #fff; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr auto; align-items: end; gap: 50px; padding-bottom: 50px; }
.footer-top > p { max-width: 410px; margin: 0; color: rgba(255,255,255,.48); font-size: 12px; }
.footer-social { display: flex; gap: 25px; }
.footer-social a { color: var(--gold-light); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.35); font-size: 9px; letter-spacing: .04em; }

.footer-bottom a { color: inherit; transition: color .25s ease; }
.footer-bottom a:hover { color: var(--gold-light); }
.floating-whatsapp { position: fixed; z-index: 100; right: 24px; bottom: 24px; display: flex; align-items: center; gap: 10px; background: #fff; color: #111; padding: 11px 16px 11px 12px; border-radius: 999px; box-shadow: 0 12px 40px rgba(0,0,0,.22); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: transform .25s; }
.floating-whatsapp:hover { transform: translateY(-3px); }
.floating-whatsapp svg { width: 26px; fill: #1a9e57; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

@keyframes heroZoom { to { transform: scale(1); } }
@keyframes marquee { to { transform: translateX(var(--marquee-distance, -50%)); } }
@keyframes scrollDot { 0% { opacity: 0; transform: translate(-50%,0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%,15px); } }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(195,155,99,.2); } 50% { box-shadow: 0 0 0 24px rgba(195,155,99,0); } }

@media (max-width: 1100px) {
  :root { --container: min(100% - 40px, 1000px); }
  .desktop-nav { gap: 20px; }
  .desktop-nav a { font-size: 10px; }
  .story-grid, .manifesto-grid { gap: 65px; }
  .universe-heading { gap: 55px; }
  .universe-card-featured { padding: 40px; }
  .story-visual { min-height: 600px; }
  .gallery-track { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
  .gallery-item--feature, .gallery-item--tall, .gallery-item--wide { grid-column: auto; grid-row: auto; min-height: 0; }
  .proof-grid { gap: 70px; }
  .location-copy { padding: 55px; }
}

@media (max-width: 860px) {
  :root { --container: calc(100vw - 36px); }
  .site-header { background: rgba(10,10,9,.62); backdrop-filter: blur(10px); }
  .header-inner { height: 76px; grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .brand-logo { width: 54px; height: 54px; }
  .footer-brand .brand-logo { width: 102px; height: 102px; }
  .menu-toggle { display: grid; width: 42px; height: 42px; place-content: center; gap: 7px; border: 1px solid rgba(255,255,255,.2); background: transparent; }
  .menu-toggle span { width: 18px; height: 1px; background: #fff; transition: transform .3s, opacity .3s; }
  .menu-toggle.active span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle.active span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu { position: fixed; inset: 76px 0 auto; display: flex; flex-direction: column; gap: 0; padding: 10px 18px 24px; background: rgba(10,10,9,.97); border-top: 1px solid rgba(255,255,255,.08); transform: translateY(-125%); opacity: 0; pointer-events: none; transition: transform .35s var(--ease), opacity .25s; }
  .mobile-menu.open { transform: none; opacity: 1; pointer-events: auto; }
  .mobile-menu > a:not(.btn) { padding: 17px 4px; border-bottom: 1px solid rgba(255,255,255,.1); color: #fff; font-family: var(--serif); font-size: 24px; }
  .mobile-menu .btn { margin-top: 18px; }
  .hero { min-height: 840px; align-items: end; }
  .hero-image { object-position: 68% center; opacity: .62; }
  .hero-overlay { background: linear-gradient(0deg, rgba(5,5,4,.98) 0%, rgba(5,5,4,.68) 55%, rgba(5,5,4,.3) 100%); }
  .hero-content { padding-top: 130px; padding-bottom: 170px; }
  .hero h1 { font-size: clamp(58px, 15vw, 92px); line-height: .86; }
  .hero-text { max-width: 520px; }
  .hero-meta { bottom: 34px; }
  .scroll-cue { display: none; }
  .section { padding: 100px 0; }
  .story-grid, .manifesto-grid, .proof-grid, .location-card { grid-template-columns: 1fr; }
  .universe-heading { grid-template-columns: 1fr; gap: 30px; }
  .universe-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .universe-card-featured { grid-column: 1 / -1; grid-row: auto; min-height: 460px; }
  .story-grid { gap: 65px; }
  .story-visual { min-height: 620px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .manifesto-grid { gap: 70px; }
  .gallery-heading { display: block; }
  .gallery-note { max-width: 100%; margin-top: 16px; }
  .proof-copy { padding: 45px 0 0; border-left: 0; border-top: 1px solid var(--dark-line); }
  .location-card { min-height: auto; }
  .location-map { min-height: 450px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-social { grid-column: 2; }
}

@media (max-width: 600px) {
  :root { --container: calc(100vw - 28px); }
  .hero { min-height: 780px; }
  .hero-image { object-position: 66% center; }
  .hero-content { padding-bottom: 185px; }
  .hero-eyebrow { font-size: 8px; }
  .eyebrow-line { width: 26px; }
  .hero h1 { margin-top: 22px; font-size: clamp(52px, 16.5vw, 78px); }
  .hero-text { font-size: 13px; line-height: 1.7; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-meta { align-items: end; }
  .hero-rating span { max-width: 86px; line-height: 1.3; }
  .hero-hours strong { font-size: 17px; }
  .hero-hours small { max-width: 150px; }
  .marquee-group { padding: 13px 12.5px; }
  .section-title { font-size: clamp(46px, 14vw, 64px); }
  .centered { text-align: left; margin-bottom: 46px; }
  .story-visual { min-height: 470px; }
  .image-frame-main { inset: 0 11% 8% 0; }
  .image-frame-float { width: 46%; height: 42%; border-width: 7px; }
  .story-seal { width: 92px; height: 92px; right: 4%; top: 6%; }
  .story-copy .lead { font-size: 15px !important; }
  .services-grid { grid-template-columns: 1fr; }
  .universe-heading { margin-bottom: 45px; }
  .universe-grid { grid-template-columns: 1fr; }
  .universe-card, .universe-card-featured { grid-column: auto; min-height: 350px; padding: 30px; }
  .universe-card-featured h3 { font-size: 52px; }
  .universe-card-featured .universe-watermark { font-size: 105px; }
  .service-card { min-height: 330px; padding: 28px; }
  .service-card a { left: 28px; }
  .manifesto { padding-top: 105px; }
  .manifesto-bg::after { font-size: 360px; bottom: -120px; }
  .gallery-section { padding: 100px 0; }
  .gallery-track { width: calc(100vw - 28px); grid-template-columns: 1fr 1fr; gap: 8px; }
  .gallery-item--feature, .gallery-item--tall, .gallery-item--wide { grid-column: auto; grid-row: auto; min-height: 0; }
  .gallery-zoom { left: 10px; right: 10px; bottom: 10px; padding: 8px 10px; font-size: 9px; letter-spacing: .1em; text-align: center; }
  .lightbox-dialog { width: min(100vw - 24px, 1200px); height: min(100vh - 24px, 900px); margin: 12px auto; }
  .lightbox-close { top: 10px; right: 10px; width: 40px; height: 40px; }
  .score { font-size: 105px; }
  .proof-copy blockquote { font-size: 37px; }
  .proof-badges { flex-direction: column; }
  .location-map { min-height: 410px; }
  .map-badge { left: 14px; right: 14px; bottom: 14px; min-width: 0; }
  .location-copy { padding: 38px 24px; }
  .location-copy h2 { font-size: 48px; }
  .location-info div { grid-template-columns: 1fr; gap: 5px; }
  .location-actions { flex-direction: column; }
  .final-cta { min-height: 580px; }
  .final-cta h2 { font-size: 58px; }
  .footer-top { grid-template-columns: 1fr; align-items: start; }
  .footer-social { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .floating-whatsapp { right: 14px; bottom: 14px; }
  .floating-whatsapp span { display: none; }
  .floating-whatsapp { padding: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
