@import url("fonts.css");

/* ============================================================
   Inkwise Tattoo Studio — light premium one-pager
   Warm gallery light + ink + one restrained warm-bronze accent.
   Immersive full-screen hero; nav goes transparent -> solid on scroll.
   Reveal motion: Apple-style zoom-in (scale-up + fade).
   ============================================================ */

:root {
  --bg:      #F5F3EE;  --bg-2: #ECE9E1;  --surface: #FBFAF6;  --surface-2:#F1EEE6;
  --text:    #1A1813;  --muted: #6B675D; --faint: #948F84;
  --line:    rgba(26,24,19,0.12);  --line-2: rgba(26,24,19,0.20);
  --accent:  #7A6A52;  --accent-dim: rgba(122,106,82,0.42);
  --champagne: #D8BD92; /* accent on dark surfaces (hero/footer) */

  /* dark band tokens (footer) */
  --d-bg: #16130E; --d-text: #ECE5D7; --d-muted: #9B9284; --d-faint: #6E665A;
  --d-line: rgba(236,229,215,0.14); --d-accent: #C9B089;

  --wrap: 1240px; --pad: 34px; --nav-h: 84px;
  --sec-y: clamp(54px, 8vw, 100px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1); --radius: 3px;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--bg); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400; font-size: 17px; line-height: 1.65; color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
::selection { background: var(--champagne); color: #14110C; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }

h1, h2, h3, .display { font-family: "Bricolage Grotesque", "Geist", sans-serif; font-weight: 600; line-height: 1.02; letter-spacing: -0.02em; color: var(--text); text-wrap: balance; }
p { text-wrap: pretty; }

/* anchor jumps land below the fixed nav */
section[id] { scroll-margin-top: var(--nav-h); }

/* keyboard focus (form fields keep their own focus style) */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }
input:focus-visible, textarea:focus-visible, select:focus-visible { outline: none; }
.hero :focus-visible, .closing :focus-visible, .site-footer :focus-visible, .lightbox :focus-visible { outline-color: var(--champagne); }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.eyebrow { display: inline-block; font-family: "Geist", sans-serif; font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.3em; color: var(--accent); margin-bottom: 22px; }
.muted { color: var(--muted); }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.visually-hidden:focus { position: fixed; top: 12px; left: 12px; width: auto; height: auto; clip: auto; background: var(--text); color: var(--bg); padding: 10px 16px; z-index: 200; border-radius: var(--radius); }

/* ---------- reveal: Apple-style zoom-in (gentle travel, long settle) ---------- */
[data-reveal] { opacity: 0; transform: scale(0.94); transform-origin: center; transition: opacity 1.15s var(--ease), transform 1.15s var(--ease); will-change: opacity, transform; }
[data-reveal].is-visible { opacity: 1; transform: none; }
.phrase-motion .word { display: inline-block; opacity: 0; transform: scale(0.82); filter: blur(4px); transform-origin: 50% 90%; transition: opacity 1s var(--ease), transform 1s var(--ease), filter 1s var(--ease); }
.phrase-motion.is-visible .word { opacity: 1; transform: none; filter: blur(0); }
/* statement gets a bigger, slower zoom-into-focus per word (resolves to sharp) */
.statement .phrase-motion .word { transform: scale(0.68) translateY(0.1em); filter: blur(7px); transition-duration: 1.25s; }
.statement .phrase-motion.is-visible .word { transform: none; filter: blur(0); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal], .phrase-motion .word,
  html.js .hero .eyebrow, html.js .hero h1, html.js .hero-actions, html.js .hero-media, html.js .hero-media-inner { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
  html.js .hero-media img { animation: none !important; transform: none !important; }
  .hero-scroll { display: none !important; }
}

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 15px 32px; font-family: "Geist", sans-serif; font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.16em; border: 1px solid transparent; border-radius: var(--radius); transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.1s ease; white-space: nowrap; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--text); color: var(--bg); border-color: var(--text); }
.btn-primary:hover { background: transparent; color: var(--text); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn-ghost:hover { background: var(--text); color: var(--bg); border-color: var(--text); }

/* ---------- nav (fixed, transparent over hero -> solid on scroll) ---------- */
.site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: transparent; border-bottom: 1px solid transparent; transition: background 0.55s var(--ease), border-color 0.55s var(--ease); }
.site-nav .wrap { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }
.logo-img { height: 34px; width: auto; display: block; }
.logo-ink { display: none; }
.site-nav.scrolled { background: rgba(245,243,238,0.82); backdrop-filter: saturate(150%) blur(16px); -webkit-backdrop-filter: saturate(150%) blur(16px); border-bottom-color: var(--line); }
.site-nav.scrolled .logo-cream { display: none; }
.site-nav.scrolled .logo-ink { display: block; }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { font-size: 13px; letter-spacing: 0.04em; color: #F3EFE8; position: relative; padding-block: 4px; transition: color 0.3s var(--ease); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: currentColor; transition: width 0.35s var(--ease); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.site-nav.scrolled .nav-links a { color: var(--text); }
.site-nav.scrolled .nav-links a:hover, .site-nav.scrolled .nav-links a.active { color: var(--accent); }

.nav-cta { padding: 11px 24px; background: transparent; color: #F3EFE8; border-color: rgba(243,239,232,0.55); }
.nav-cta:hover { background: #F3EFE8; color: #14110C; border-color: #F3EFE8; }
.site-nav.scrolled .nav-cta { background: var(--text); color: var(--bg); border-color: var(--text); }
.site-nav.scrolled .nav-cta:hover { background: transparent; color: var(--text); }

.nav-toggle { display: none; width: 28px; height: 22px; position: relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; height: 1.5px; width: 100%; background: #F3EFE8; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), background 0.3s var(--ease); }
.site-nav.scrolled .nav-toggle span, .site-nav.scrolled .nav-toggle span::before, .site-nav.scrolled .nav-toggle span::after { background: var(--text); }
.nav-toggle span { top: 50%; } .nav-toggle span::before { top: -7px; } .nav-toggle span::after { top: 7px; }
/* solid variant for sub-pages (no hero) */
.site-nav.solid { position: sticky; background: rgba(245,243,238,0.9); backdrop-filter: saturate(150%) blur(16px); -webkit-backdrop-filter: saturate(150%) blur(16px); border-bottom-color: var(--line); }
.site-nav.solid .logo-cream { display: none; } .site-nav.solid .logo-ink { display: block; }

.mobile-menu { position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 99; background: rgba(245,243,238,0.98); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: transform 0.35s var(--ease), opacity 0.35s var(--ease); }
.mobile-menu.open { transform: none; opacity: 1; pointer-events: auto; }
.mobile-menu ul { list-style: none; padding: 16px var(--pad) 26px; }
.mobile-menu li + li { border-top: 1px solid var(--line); }
.mobile-menu a { display: block; padding: 16px 0; font-size: 20px; font-family: "Bricolage Grotesque", sans-serif; }

/* ---------- hero (full-screen immersive) ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media-inner { position: absolute; inset: 0; }
/* mobile uses the portrait crop framed on the face; desktop uses the wide
   composite (tattoo right, extended dark studio panel left for the text) */
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 36% 28%; }
@media (min-width: 760px) { .hero-media img { object-position: 50% 42%; } }
/* scrim weighted to the left (where the text lives) and the bottom; the panel
   is already dark, so this is light - the tattoo on the right stays clear */
.hero::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background:
  linear-gradient(to right, rgba(14,12,8,0.6) 0%, rgba(14,12,8,0.18) 30%, rgba(14,12,8,0) 54%),
  linear-gradient(to top, rgba(14,12,8,0.42) 0%, rgba(14,12,8,0.04) 34%, rgba(14,12,8,0) 52%); }
.hero-content { position: relative; z-index: 2; width: 100%; min-width: 0; max-width: var(--wrap); margin-inline: auto; padding: 0 var(--pad) clamp(60px, 9vw, 120px); display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
/* keep hero children inside the viewport on narrow phones (eyebrow wraps, buttons stack) instead of clipping */
.hero-content > * { max-width: 100%; }

/* film grain over the immersive photo bands (breaks digital flatness) */
.hero::before, .closing::before { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.35; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.16'/%3E%3C/svg%3E"); background-size: 160px; }

/* hero photo, three transform layers that never collide:
   .hero-media        -> scroll parallax (JS, transform set inline on scroll)
   .hero-media-inner  -> one-time settle: zooms in from 1.09 as the curtain lifts
   .hero-media img    -> continuous Ken Burns drift, always alive after the settle */
html.js .hero-media-inner { transform: scale(1.09); transition: transform 3.4s var(--ease); }
html.js.ready .hero-media-inner { transform: none; }
html.js.ready .hero-media img { animation: hero-drift 17s ease-in-out 1.2s infinite alternate; }
@keyframes hero-drift {
  from { transform: scale(1.02) translate(0, 0); }
  to   { transform: scale(1.13) translate(-3%, -2.4%); }
}

/* hero entrance: waits for the preloader, then cascades in (html.js set inline in head) */
html.js .hero .eyebrow, html.js .hero h1, html.js .hero-actions { opacity: 0; transform: scale(0.97) translateY(22px); transition: opacity 1.4s var(--ease), transform 1.4s var(--ease); }
html.js .hero h1 { transition-delay: 0.18s; }
html.js .hero-actions { transition-delay: 0.42s; }
html.js.ready .hero .eyebrow, html.js.ready .hero h1, html.js.ready .hero-actions { opacity: 1; transform: none; }

/* scroll cue */
.hero-scroll { position: absolute; z-index: 2; right: clamp(26px, 4vw, 56px); bottom: clamp(64px, 9vw, 122px); display: flex; flex-direction: column; align-items: center; gap: 14px; opacity: 0; transition: opacity 1.2s var(--ease) 0.9s; }
html.ready .hero-scroll { opacity: 1; }
.hero-scroll span { writing-mode: vertical-rl; font-size: 10px; font-weight: 500; letter-spacing: 0.34em; text-transform: uppercase; color: rgba(243,239,232,0.66); }
.hero-scroll::after { content: ""; width: 1px; height: 52px; background: linear-gradient(to bottom, rgba(243,239,232,0.75), rgba(243,239,232,0.08)); animation: scroll-cue 2.4s var(--ease) infinite; transform-origin: top; }
@keyframes scroll-cue { 0% { transform: scaleY(0); } 45% { transform: scaleY(1); } 100% { transform: scaleY(1); opacity: 0; } }
@media (max-width: 720px) { .hero-scroll { display: none; } }
.hero .eyebrow { color: rgba(243,239,232,0.82); }
.hero h1 { color: #F6F2EA; font-size: clamp(52px, 9.5vw, 132px); font-weight: 600; letter-spacing: -0.035em; line-height: 0.9; margin-bottom: 34px; max-width: 11ch; text-shadow: 0 2px 44px rgba(12,10,7,0.45); }
.hero h1 .grad { color: var(--champagne); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-start; }
.hero .btn-primary { background: #F3EFE8; color: #14110C; border-color: #F3EFE8; }
.hero .btn-primary:hover { background: transparent; color: #F3EFE8; }
.hero .btn-ghost { color: #F3EFE8; border-color: rgba(243,239,232,0.5); }
.hero .btn-ghost:hover { background: #F3EFE8; color: #14110C; border-color: #F3EFE8; }

/* ---------- statement (scroll-reveal manifesto) ---------- */
.statement { position: relative; background: var(--bg); padding-block: clamp(104px, 17vh, 196px); text-align: center; overflow: hidden; }
.statement .wrap { position: relative; z-index: 1; max-width: 1120px; }
/* the ink-drop mark, oversized and faint behind the words */
/* ink-drop watermark: centred in the band with generous clearance top and
   bottom (the glyph is a tall bar + drop, so it is kept small to float clear) */
.statement-mark { position: absolute; inset: 0; z-index: 0; display: grid; place-items: center; pointer-events: none; }
.statement-mark img { height: min(66%, 380px); width: auto; opacity: 0.08; transform: translateY(-12%); }
.statement [data-reveal] { transform: scale(0.9); transition-duration: 1.5s; }
.statement-line { font-family: "Bricolage Grotesque", sans-serif; font-size: clamp(40px, 7.5vw, 108px); font-weight: 600; line-height: 0.98; letter-spacing: -0.035em; }
.statement-line.accent { color: var(--accent); }

/* ---------- specialties marquee (outlined ticker, echoes the footer ghost) ---------- */
.marquee { overflow: hidden; background: var(--bg); border-top: 1px solid var(--line); padding: clamp(22px, 3vw, 34px) 0; }
.marquee-track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee-group { display: flex; align-items: center; gap: clamp(28px, 4vw, 56px); padding-right: clamp(28px, 4vw, 56px); }
.marquee-group span { font-family: "Bricolage Grotesque", sans-serif; font-size: clamp(24px, 3.2vw, 40px); font-weight: 600; letter-spacing: -0.015em; white-space: nowrap; color: var(--text); }
.marquee-group .dia { color: var(--accent); font-size: 11px; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- trust strip (diamond motif from the wordmark) ---------- */
.trust { background: var(--bg); padding: 36px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { position: relative; padding: 6px 26px; font-size: 11.5px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); text-align: center; }
.trust-item + .trust-item::before { content: "\2666"; position: absolute; left: 0; top: 50%; transform: translate(-50%, -50%); font-size: 7px; color: var(--accent); opacity: 0.6; }

/* ---------- services (photo grid, 2x2) ---------- */
.services { background: var(--bg-2); padding-block: var(--sec-y); border-top: 1px solid var(--line); }
.services-head { max-width: 640px; margin-bottom: clamp(40px, 5vw, 64px); }
.services-head h2 { font-size: clamp(32px, 4.8vw, 54px); font-weight: 600; letter-spacing: -0.025em; }
.services-head p { color: var(--muted); margin-top: 16px; font-weight: 300; }
.services-grid { display: grid; grid-template-columns: 1fr; gap: clamp(26px, 3vw, 42px); }
@media (min-width: 720px) {
  .services-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  /* offset the right column into a zig-zag so the grid reads composed, not templated */
  .service-card:nth-child(even) { margin-top: clamp(36px, 5vw, 72px); }
  .service-card:nth-child(3) { margin-top: calc(-1 * clamp(36px, 5vw, 72px)); }
}
.service-thumb img.pos-mid { object-position: 50% 42%; }
.service-thumb img.pos-high { object-position: 50% 22%; } /* keep a top-anchored subject (e.g. the back-piece head) in frame */
.service-thumb img.pos-low { object-position: 50% 70%; }  /* pull a lower subject up into the crop */
.service-card { display: flex; flex-direction: column; }
.service-thumb { position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); aspect-ratio: 4 / 5; background: #d9d5cc; box-shadow: 0 14px 36px rgba(26,24,19,0.10); }
.service-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.service-card:hover .service-thumb img { transform: scale(1.045); }
.service-tag { position: absolute; top: 14px; left: 14px; z-index: 2; background: rgba(20,17,12,0.7); color: #F3EFE8; font-size: 10.5px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.16em; padding: 7px 12px; border-radius: 100px; backdrop-filter: blur(4px); }
.service-card h3 { font-size: clamp(22px, 3vw, 30px); font-weight: 600; letter-spacing: -0.02em; margin-top: 22px; }
.service-card p { color: var(--muted); font-weight: 300; margin-top: 10px; max-width: 46ch; }
.services-cta { margin-top: clamp(34px, 4vw, 52px); }
.services-cta a { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500; letter-spacing: 0.04em; color: var(--accent); border-bottom: 1px solid var(--accent-dim); padding-bottom: 3px; transition: gap 0.3s var(--ease), opacity 0.3s var(--ease); }
.services-cta a::after { content: "\2192"; font-size: 15px; transition: transform 0.3s var(--ease); }
.services-cta a:hover { opacity: 0.7; }
.services-cta a:hover::after { transform: translateX(4px); }

/* ---------- work (horizontal scroller + lightbox) ---------- */
.work { background: var(--bg); padding-block: var(--sec-y); overflow: hidden; }
.work-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-bottom: 44px; }
.work-head h2 { font-size: clamp(32px, 4.8vw, 54px); font-weight: 600; letter-spacing: -0.025em; }
.work-head p { max-width: 42ch; color: var(--muted); font-weight: 300; }
.work-scroller-wrap { position: relative; }
.work-scroller { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 0 22px; margin: 0 calc(-1 * var(--pad)); padding-inline: var(--pad); scrollbar-width: none; -ms-overflow-style: none; cursor: grab; }
.work-scroller::-webkit-scrollbar { display: none; }
.work-scroller.dragging { cursor: grabbing; scroll-snap-type: none; }
.work-item { flex: 0 0 auto; width: clamp(260px, 62vw, 384px); aspect-ratio: 4 / 5; scroll-snap-align: center; overflow: hidden; border-radius: var(--radius); background: #d9d5cc; border: 1px solid var(--line); position: relative; cursor: zoom-in; box-shadow: 0 12px 34px rgba(26,24,19,0.10); }
.work-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.work-num { position: absolute; top: 14px; left: 16px; z-index: 2; pointer-events: none; font-family: "Bricolage Grotesque", sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.1em; color: rgba(246,242,234,0.9); text-shadow: 0 1px 10px rgba(0,0,0,0.5); font-variant-numeric: tabular-nums; }
.work-item:hover img, .work-item:focus-within img { transform: scale(1.045); }
/* Alternating rhythm: Aldo's realism shown large, Olex's fine-line work smaller. */
.work-scroller { align-items: center; }
.work-item.is-big { width: clamp(300px, 66vw, 440px); }
.work-item.is-small { width: clamp(184px, 44vw, 288px); }
/* Artist credit + Instagram link, overlaid on each piece. */
.work-artist { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; display: flex; align-items: baseline; gap: 8px; padding: 30px 14px 12px; font-size: 12.5px; font-weight: 500; letter-spacing: 0.03em; color: #F6F2EA; text-decoration: none; background: linear-gradient(to top, rgba(18,16,13,0.74), rgba(18,16,13,0)); text-shadow: 0 1px 8px rgba(0,0,0,0.55); cursor: pointer; }
.work-artist span { color: var(--champagne); font-weight: 400; }
.work-artist:hover span, .work-artist:focus-visible span { text-decoration: underline; }
.work-item.is-small .work-artist { font-size: 11.5px; padding: 26px 12px 10px; }
#lightboxArtist { flex: 0 0 auto; color: var(--champagne); text-decoration: none; font-size: 13px; }
#lightboxArtist:hover { text-decoration: underline; }
#lightboxArtist:empty { display: none; }
.work-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 48px; height: 48px; border-radius: 50%; background: rgba(251,250,246,0.9); border: 1px solid var(--line-2); color: var(--text); display: grid; place-items: center; font-size: 20px; backdrop-filter: blur(6px); box-shadow: 0 6px 20px rgba(26,24,19,0.12); transition: background 0.3s var(--ease), transform 0.1s ease; }
.work-arrow:hover { background: var(--surface); }
.work-arrow:active { transform: translateY(-50%) scale(0.94); }
.work-arrow.prev { left: 6px; } .work-arrow.next { right: 6px; }
.work-more { margin-top: 34px; }
.work-more a { font-size: 13px; letter-spacing: 0.04em; color: var(--accent); border-bottom: 1px solid var(--accent-dim); padding-bottom: 2px; transition: opacity 0.3s var(--ease); }
.work-more a:hover { opacity: 0.65; }
@media (hover: none) { .work-arrow { display: none; } }

.lightbox { position: fixed; inset: 0; z-index: 300; display: none; background: rgba(18,16,13,0.94); place-items: center; padding: 5vh 4vw; }
.lightbox.open { display: grid; }
.lightbox-figure { display: flex; flex-direction: column; align-items: center; gap: 14px; max-width: 92vw; }
.lightbox img { max-width: 92vw; max-height: 82vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-meta { display: flex; align-items: baseline; gap: 16px; color: rgba(236,229,215,0.72); font-size: 13px; font-weight: 300; max-width: 62ch; text-align: left; }
.lightbox-meta #lightboxCount { flex: 0 0 auto; font-family: "Bricolage Grotesque", sans-serif; font-weight: 600; font-size: 14px; color: var(--champagne); font-variant-numeric: tabular-nums; }
.lightbox-close, .lightbox-arrow { position: absolute; z-index: 5; color: #F5F3EE; width: 52px; height: 52px; display: grid; place-items: center; font-size: 30px; border: 1px solid rgba(245,243,238,0.28); border-radius: 50%; transition: background 0.3s var(--ease); }
.lightbox-close:hover, .lightbox-arrow:hover { background: rgba(245,243,238,0.12); }
.lightbox-close { top: 22px; right: 22px; font-size: 24px; }
.lightbox-arrow.prev { left: 3vw; top: 50%; transform: translateY(-50%); }
.lightbox-arrow.next { right: 3vw; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) { .lightbox-arrow { display: none; } }

/* ---------- booking (split: steps + form) ---------- */
.booking { background: var(--bg-2); padding-block: var(--sec-y); border-top: 1px solid var(--line); }
.booking .wrap { display: grid; grid-template-columns: 1fr; gap: clamp(44px, 6vw, 76px); }
@media (min-width: 940px) { .booking .wrap { grid-template-columns: 0.9fr 1.1fr; align-items: start; } }
.booking-head h2 { font-size: clamp(34px, 5vw, 58px); font-weight: 600; margin-bottom: 42px; letter-spacing: -0.025em; }
.steps { list-style: none; display: grid; gap: 26px; }
.steps li { display: grid; grid-template-columns: 46px 1fr; gap: 20px; align-items: start; }
.step-num { font-family: "Bricolage Grotesque", sans-serif; font-size: 20px; color: var(--accent); font-weight: 600; }
.step-body h3 { font-size: 18px; font-weight: 500; font-family: "Geist", sans-serif; letter-spacing: -0.01em; }
.step-body p { color: var(--muted); font-size: 15px; margin-top: 6px; font-weight: 300; }

.form-card { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius); padding: clamp(24px, 3vw, 40px); box-shadow: 0 20px 50px rgba(26,24,19,0.06); }
.form-row { display: grid; gap: 18px; }
.form-row.two { grid-template-columns: 1fr; }
@media (min-width: 560px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; min-width: 0; }
.form-row .field { min-width: 0; } /* let grid columns shrink on small screens */
.field label { font-size: 12.5px; letter-spacing: 0.04em; color: var(--text); font-weight: 500; }
.field .req { color: var(--accent); }
.field input, .field textarea, .field select { font-family: "Geist", sans-serif; font-size: 15px; color: var(--text); background: var(--bg); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 12px 14px; width: 100%; min-width: 0; max-width: 100%; box-sizing: border-box; transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease); }
/* iOS gives date/select inputs an intrinsic min-width and won't shrink them; force them inside the card */
.field input[type="date"], .field select { -webkit-appearance: none; appearance: none; }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%237A6A52' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.field textarea { resize: vertical; min-height: 108px; }
.field input::placeholder, .field textarea::placeholder { color: #8C8578; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(122,106,82,0.15); }
.field-error { font-size: 12.5px; color: #A5442F; display: none; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: #A5442F; }
.field.invalid .field-error { display: block; }
.check-row.invalid { color: #A5442F; }
.check-row.invalid input[type="checkbox"] { outline: 2px solid #A5442F; outline-offset: 1px; }
.field-file { display: flex; align-items: center; gap: 10px; cursor: pointer; border: 1px dashed var(--line-2); border-radius: var(--radius); padding: 12px 14px; font-size: 14px; color: var(--muted); transition: border-color 0.25s var(--ease); }
.field-file:hover { border-color: var(--accent); }
.check-row { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.check-row input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--accent); flex: 0 0 auto; }
.check-row a { color: var(--accent); border-bottom: 1px solid var(--accent-dim); }
.form-submit { width: 100%; }
.form-note { font-size: 13px; color: var(--muted); text-align: center; margin-top: 14px; font-weight: 300; }

/* ---------- pricing ---------- */
.pricing { background: var(--bg); padding-block: var(--sec-y); border-top: 1px solid var(--line); }
.pricing-head { max-width: 640px; margin-bottom: clamp(40px, 5vw, 64px); }
.pricing-head h2 { font-size: clamp(32px, 4.8vw, 54px); font-weight: 600; letter-spacing: -0.025em; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.price-card { background: var(--surface); padding: clamp(24px, 2.6vw, 36px); display: flex; flex-direction: column; gap: 14px; transition: background 0.4s var(--ease); }
.price-card:hover { background: #FFFFFF; }
.price-card h3 { font-size: 15px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); font-family: "Geist", sans-serif; }
.price-card .amount { font-family: "Bricolage Grotesque", sans-serif; font-size: clamp(24px, 2.7vw, 33px); font-weight: 600; color: var(--accent); line-height: 1; letter-spacing: -0.02em; white-space: nowrap; font-variant-numeric: tabular-nums; }
.price-card .amount span { display: block; font-family: "Geist", sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); margin-top: 9px; }
.price-card p { color: var(--muted); font-size: 14px; font-weight: 300; line-height: 1.55; }
.pricing-note { color: var(--muted); font-size: 14.5px; max-width: 78ch; margin-top: 34px; font-weight: 300; }
.pricing-note strong { color: var(--text); font-weight: 500; }

/* ---------- big-project session estimates ---------- */
.sessions { background: var(--bg); padding-block: var(--sec-y); border-top: 1px solid var(--line); }
.sessions-head { max-width: 640px; margin-bottom: clamp(40px, 5vw, 60px); }
.sessions-head h2 { font-size: clamp(32px, 4.8vw, 54px); font-weight: 600; letter-spacing: -0.025em; }
.sessions-head p { color: var(--muted); margin-top: 16px; font-weight: 300; }
.sessions-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
@media (min-width: 620px) { .sessions-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 940px) { .sessions-grid { grid-template-columns: 1fr 1fr 1fr; } }
.session-item { background: var(--surface); padding: clamp(24px, 2.6vw, 34px); display: flex; flex-direction: column; gap: 12px; transition: background 0.4s var(--ease); }
.session-item:hover { background: #FFFFFF; }
.session-item h3 { font-size: clamp(19px, 2.2vw, 23px); font-weight: 600; letter-spacing: -0.015em; }
.session-item p { color: var(--muted); font-size: 14.5px; font-weight: 300; }
.session-item .num { color: var(--accent); font-weight: 500; font-variant-numeric: tabular-nums; }

/* ---------- team ---------- */
.team { background: var(--bg-2); padding-block: var(--sec-y); border-top: 1px solid var(--line); }
.team > .wrap > h2 { font-size: clamp(32px, 4.8vw, 54px); font-weight: 600; max-width: 20ch; letter-spacing: -0.025em; }
.team-head-lead { color: var(--muted); margin-top: 16px; max-width: 54ch; font-weight: 300; }
.team-list { margin-top: clamp(40px, 5vw, 64px); border-top: 1px solid var(--line); }
.team-member { display: grid; grid-template-columns: 1fr; gap: 6px; padding: clamp(26px, 3.4vw, 42px) 0; border-bottom: 1px solid var(--line); }
.team-member .name-row { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.team-member h3 { font-size: clamp(27px, 3.6vw, 40px); font-weight: 600; letter-spacing: -0.02em; }
.team-member .role { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.team-member p { color: var(--muted); max-width: 66ch; margin-top: 8px; font-weight: 300; }
.team-member .ig { display: inline-block; margin-top: 12px; font-size: 13px; color: var(--accent); border-bottom: 1px solid var(--accent-dim); padding-bottom: 2px; transition: opacity 0.3s var(--ease); }
.team-member .ig:hover { opacity: 0.65; }
@media (min-width: 880px) { .team-member { grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.4fr); gap: 40px; align-items: start; } .team-member p { margin-top: 0; } }

/* ---------- faq (accordion) ---------- */
.faq { background: var(--bg); padding-block: var(--sec-y); border-top: 1px solid var(--line); }
.faq > .wrap > h2 { font-size: clamp(32px, 4.8vw, 54px); font-weight: 600; margin-bottom: clamp(36px, 4vw, 56px); letter-spacing: -0.025em; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 26px 0; cursor: pointer; list-style: none; font-family: "Bricolage Grotesque", sans-serif; font-size: clamp(20px, 2.6vw, 27px); font-weight: 500; letter-spacing: -0.015em; }
.faq-q::-webkit-details-marker { display: none; }
.faq-num { color: var(--accent); font-size: 0.72em; font-weight: 600; margin-right: 20px; font-variant-numeric: tabular-nums; }
.faq-icon { font-family: "Geist", sans-serif; font-size: 22px; color: var(--accent); flex: 0 0 auto; transition: transform 0.3s var(--ease); }
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-a { color: var(--muted); padding: 0 0 26px; max-width: 74ch; font-weight: 300; }
/* animated expand where supported (progressive enhancement) */
@supports (interpolate-size: allow-keywords) {
  .faq { interpolate-size: allow-keywords; }
  .faq-item::details-content { block-size: 0; overflow: hidden; transition: block-size 0.6s var(--ease), content-visibility 0.6s allow-discrete; }
  .faq-item[open]::details-content { block-size: auto; }
}

/* ---------- big projects / closing (full-bleed immersive finale) ---------- */
.closing { position: relative; min-height: 92svh; display: flex; align-items: center; overflow: hidden; }
.closing-media { position: absolute; inset: 0; z-index: 0; }
.closing-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }
.closing::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(to right, rgba(14,12,9,0.93) 0%, rgba(14,12,9,0.68) 46%, rgba(14,12,9,0.34) 100%); }
.closing-content { position: relative; z-index: 2; width: 100%; max-width: var(--wrap); margin-inline: auto; padding: clamp(90px, 13vh, 150px) var(--pad); }
.closing-inner { max-width: 620px; }
.closing h2 { color: #F6F2EA; font-size: clamp(40px, 6.6vw, 92px); font-weight: 600; margin-bottom: 28px; letter-spacing: -0.03em; line-height: 0.95; }
.closing p { color: rgba(236,229,215,0.82); font-size: clamp(16px, 1.7vw, 19px); font-weight: 300; max-width: 54ch; }
.closing p + p { margin-top: 18px; }
.closing .btn { margin-top: 34px; }
.closing .btn-primary { background: #F3EFE8; color: #14110C; border-color: #F3EFE8; }
.closing .btn-primary:hover { background: transparent; color: #F3EFE8; }

/* ---------- preloader (logo splash -> ink-curtain wipe upward) ----------
   Sequence: logo fades and lifts first (0.45s), then the curtain wipes up
   slowly with a symmetric ease (starts 0.35s later), and the hero cascade
   begins mid-wipe (html.ready is added by JS ~0.6s after .done). */
.preloader { position: fixed; inset: 0; z-index: 1000; background: var(--bg); display: grid; place-items: center; clip-path: inset(0 0 0 0); transition: clip-path 1.3s cubic-bezier(0.65, 0, 0.25, 1) 0.35s, visibility 1.7s; }
.preloader.done { clip-path: inset(0 0 100% 0); visibility: hidden; pointer-events: none; }
.preloader-logo { height: 44px; width: auto; opacity: 0; transform: scale(0.94); animation: preloader-in 1.1s var(--ease) forwards; transition: opacity 0.45s ease-out, transform 0.45s ease-out; }
.preloader.done .preloader-logo { opacity: 0; transform: translateY(-14px); }
@keyframes preloader-in { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .preloader-logo { animation: none; opacity: 1; transform: none; } .preloader { transition: none; } }

/* ---------- ink-dot cursor (fine pointers only; enabled by JS via html.cursor-on) ---------- */
html.cursor-on body { cursor: none; }
html.cursor-on a, html.cursor-on button, html.cursor-on summary, html.cursor-on .work-item { cursor: none; }
html.cursor-on input, html.cursor-on textarea, html.cursor-on select, html.cursor-on .field-file, html.cursor-on .check-row { cursor: auto; }
.cursor-dot { position: fixed; left: 0; top: 0; z-index: 2000; width: 10px; height: 10px; margin: -5px 0 0 -5px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 1px rgba(245,243,238,0.35); pointer-events: none; transition: width 0.45s var(--ease), height 0.45s var(--ease), margin 0.45s var(--ease), opacity 0.45s var(--ease); }
.cursor-dot.grow { width: 34px; height: 34px; margin: -17px 0 0 -17px; opacity: 0.75; }
.cursor-dot.hidden { opacity: 0; }

/* ---------- footer (dark anchor band) ---------- */
.site-footer { background: var(--d-bg); color: var(--d-text); padding-block: clamp(56px, 7vw, 90px) 30px; }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--d-line); }
@media (min-width: 760px) { .footer-top { grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 30px; } }
.footer-brand .logo-img { height: 32px; margin-bottom: 20px; }
.footer-brand p { color: var(--d-muted); font-size: 14.5px; font-weight: 300; line-height: 1.6; }
.footer-brand .guest-spot { margin-top: 16px; }
.footer-brand a { color: var(--d-accent); border-bottom: 1px solid rgba(201,176,137,0.4); }
.footer-col h4 { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--d-faint); font-weight: 500; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a { color: var(--d-muted); font-size: 14.5px; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--d-text); }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input { flex: 1; background: transparent; border: 1px solid var(--d-line); border-radius: var(--radius); padding: 11px 13px; color: var(--d-text); font-size: 14px; font-family: "Geist", sans-serif; }
.newsletter-form input::placeholder { color: var(--d-faint); }
.newsletter-form input:focus { outline: none; border-color: var(--d-accent); }
.newsletter-form button { padding: 11px 20px; background: var(--d-accent); color: #14110C; border-radius: var(--radius); font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 500; transition: opacity 0.3s var(--ease); }
.newsletter-form button:hover { opacity: 0.85; }
.newsletter-consent { margin: 14px 0 0; color: var(--d-faint); }
.newsletter-msg { margin: 10px 0 0; font-size: 13px; color: var(--d-accent); min-height: 1em; }
.newsletter-msg:empty { display: none; }
.newsletter-form button:disabled { opacity: 0.6; cursor: default; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 28px; color: var(--d-faint); font-size: 13px; }
.footer-bottom a { color: var(--d-accent); }

/* ---------- simple / legal pages (fixed nav -> add top padding) ---------- */
.simple-page { min-height: 74vh; display: grid; place-items: center; text-align: center; padding: calc(var(--nav-h) + 90px) 0 110px; }
.simple-page .eyebrow { color: var(--accent); }
.simple-page h1 { font-size: clamp(38px, 6vw, 66px); font-weight: 600; margin-bottom: 22px; letter-spacing: -0.03em; }
.simple-page h1 .grad { color: var(--accent); }
.simple-page p { color: var(--muted); max-width: 56ch; margin-inline: auto; font-weight: 300; }
.simple-page p + p { margin-top: 14px; }
.simple-page a:not(.btn) { color: var(--accent); border-bottom: 1px solid var(--accent-dim); }
.simple-page .btn { margin-top: 34px; }

/* ---------- 404 (bespoke ink-drop moment) ---------- */
.notfound { position: relative; min-height: calc(100svh - var(--nav-h)); display: grid; place-items: center; text-align: center; overflow: hidden; background: var(--bg); padding: calc(var(--nav-h) + 40px) 0 90px; }
/* ghost numeral + ink-drop mark, stacked and centred behind the message */
.notfound-bg { position: absolute; inset: 0; z-index: 0; display: grid; place-items: center; pointer-events: none; }
.notfound-num, .notfound-mark { grid-area: 1 / 1; }
.notfound-num { font-family: "Bricolage Grotesque", sans-serif; font-weight: 600; font-size: clamp(150px, 34vw, 460px); line-height: 1; letter-spacing: -0.04em; color: var(--text); opacity: 0.05; user-select: none; }
.notfound-mark { height: min(56%, 320px); width: auto; opacity: 0.07; transform: translateY(-4%); }
.notfound-inner { position: relative; z-index: 1; max-width: 640px; }
.notfound .eyebrow { color: var(--accent); }
.notfound h1 { font-size: clamp(38px, 6vw, 66px); font-weight: 600; margin-bottom: 22px; letter-spacing: -0.03em; }
.notfound h1 .grad { color: var(--accent); }
.notfound p { color: var(--muted); max-width: 52ch; margin-inline: auto; font-weight: 300; }
.notfound .btn { margin-top: 34px; }
/* motion: message rises in on load; the ghost layer drifts slowly (hero echo) */
.notfound-inner { animation: nf-rise 1.15s var(--ease) both; }
.notfound-bg { animation: nf-drift 19s ease-in-out infinite alternate; }
@keyframes nf-rise { from { opacity: 0; transform: translateY(18px) scale(0.985); } to { opacity: 1; transform: none; } }
@keyframes nf-drift { from { transform: scale(1) translate(0, 0); } to { transform: scale(1.06) translate(1.5%, -2%); } }
@media (prefers-reduced-motion: reduce) { .notfound-inner, .notfound-bg { animation: none; } }

.legal-page { padding: calc(var(--nav-h) + clamp(40px, 6vw, 80px)) 0 clamp(60px, 8vw, 110px); }
.legal-page .wrap { max-width: 760px; }
.legal-page h1 { font-size: clamp(38px, 6vw, 62px); font-weight: 600; margin-bottom: 16px; letter-spacing: -0.03em; }
.legal-updated { color: var(--faint); font-size: 14px; margin-bottom: 40px; }
.legal-page h2 { font-size: clamp(22px, 3vw, 28px); font-weight: 600; margin: 40px 0 14px; letter-spacing: -0.02em; }
.legal-page p, .legal-page li { color: var(--muted); font-weight: 300; }
.legal-page p { margin-bottom: 14px; }
.legal-page ul { padding-left: 20px; margin-bottom: 14px; display: grid; gap: 8px; }
.legal-page strong { color: var(--text); font-weight: 500; }
.legal-page a { color: var(--accent); border-bottom: 1px solid var(--accent-dim); }

/* ---------- responsive ---------- */
@media (max-width: 880px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .trust .wrap { grid-template-columns: 1fr 1fr; gap: 18px 0; }
  .trust-item:nth-child(3)::before { display: none; }
  .trust-item { padding-inline: 12px; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  :root { --pad: 22px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .trust .wrap { grid-template-columns: 1fr; }
  .trust-item { border-top: 1px solid var(--line); padding: 12px; }
  .trust-item::before { display: none !important; }
  .trust-item:first-child { border-top: none; }
}
