/* ===========================================================
   STUDIO3C — v3 · warm boutique · clean grotesk
   bone + espresso + one muted clay accent
   =========================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #f3ede1;   /* bone */
  --bg-2:    #ece3d4;   /* deeper cream */
  --card:    #f8f3ea;   /* lifted card */
  --dark:    #221b14;   /* espresso */
  --cream:   #f3ede1;
  --ink:     #221b14;
  --ink-2:   #3c2f24;
  --muted:   #7c7163;   /* warm taupe */
  --line:    rgba(34,27,20,.13);
  --line-2:  rgba(34,27,20,.24);
  --clay:    #b07a5e;   /* dusty clay */
  --clay-dk: #946548;
  --maxw:    1500px;
  --ease:    cubic-bezier(.22,1,.36,1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  background: var(--bg); color: var(--ink); line-height: 1.6;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
  font-weight: 400;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--clay); color: var(--bg); }

/* faint paper tactility */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 9000; pointer-events: none; opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1,h2,h3,h4,.display {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500; line-height: 1.12; letter-spacing: -.01em;
}
.accent, em.accent, .grad, em.grad { color: var(--clay); font-style: normal; }
.outline { color: var(--ink); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
section { padding: 44px 0; position: relative; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .76rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--clay);
}
.eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--clay); }
.eyebrow.center { justify-content: center; }
.section-head { max-width: 820px; margin-bottom: 24px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h1, .section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.7rem); font-weight: 500; margin-top: 20px; letter-spacing: -.015em; }
.section-head p { margin-top: 20px; color: var(--muted); font-size: .98rem; max-width: 520px; font-weight: 400; }
.section-head.center p { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .88rem; font-weight: 600; letter-spacing: .01em;
  padding: 15px 30px; border-radius: 4px; border: 1px solid transparent;
  transition: transform .3s var(--ease), background .3s, color .3s, border-color .3s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--clay-dk); }
.btn-green { background: var(--clay); color: var(--cream); }
.btn-green:hover { background: var(--clay-dk); }
.btn-outline { border-color: var(--line-2); color: var(--ink); }
.btn-outline:hover { border-color: var(--ink); background: var(--ink); color: var(--cream); }
.btn-ghost { padding: 0; border-radius: 0; color: var(--ink); font-weight: 600; }
.btn-ghost .arr { transition: transform .3s var(--ease); display: inline-block; }
.btn-ghost:hover { color: var(--clay); }
.btn-ghost:hover .arr { transform: translateX(7px); }
.on-dark .btn-outline { border-color: rgba(243,237,225,.32); color: var(--cream); }
.on-dark .btn-outline:hover { background: var(--cream); color: var(--ink); }

/* ---------- nav ---------- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 26px 40px; transition: padding .3s, background .3s, border-color .3s; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(243,237,225,.82); backdrop-filter: blur(14px); border-color: var(--line); padding: 16px 40px; }
.nav-logo { display: inline-flex; align-items: center; gap: 9px; }
.logo-mark { width: 32px; height: 32px; flex-shrink: 0; }
.logo-mark .d-ink { fill: var(--ink); }
.logo-mark .d-clay { fill: var(--clay); }
.footer .logo-mark .d-ink { fill: var(--cream); }   /* visible on the dark footer */
.logo-word { font-weight: 700; font-size: 1.22rem; letter-spacing: -.03em; }
.logo-word span { color: var(--clay); }
.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links a, .nav-links .nav-drop-label { font-size: .92rem; font-weight: 500; color: var(--ink-2); transition: color .2s; position: relative; }
.nav-links a::after, .nav-links .nav-drop-label::after { content: ''; position: absolute; left: 0; bottom: -5px; height: 1px; width: 0; background: var(--clay); transition: width .25s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-drop-label { cursor: default; user-select: none; outline: none; }
.nav-drop:hover .nav-drop-label, .nav-drop:focus-within .nav-drop-label { color: var(--ink); }
.nav-drop:hover .nav-drop-label::after, .nav-drop:focus-within .nav-drop-label::after { width: 100%; }

.nav-drop { position: relative; }
.nav-drop > a::before { content: ''; }
.nav-drop-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(6px);
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 8px; display: flex; flex-direction: column; gap: 2px; min-width: 150px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s, transform .2s;
  box-shadow: 0 14px 30px rgba(34,27,20,.14);
}
.nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(2px);
}
.nav-drop-menu a { font-size: .9rem; font-weight: 500; color: var(--ink-2); padding: 8px 12px; border-radius: 8px; white-space: nowrap; }
.nav-drop-menu a::after { display: none; }
.nav-drop-menu a:hover { background: var(--bg-2, rgba(34,27,20,.05)); color: var(--ink); }

.burger { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; background: none; border: none; cursor: pointer; align-items: center; justify-content: center; z-index: 210; }
.burger span { width: 26px; height: 2px; background: var(--ink); transition: transform .35s var(--ease), opacity .25s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0; background: var(--bg); z-index: 200; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 2px; padding: 0 40px; opacity: 0; pointer-events: none; transform: translateY(-10px); transition: opacity .3s, transform .3s; }
.mobile-menu.open { opacity: 1; pointer-events: all; transform: none; }
.mobile-menu a { font-weight: 700; font-size: clamp(2rem,9vw,3rem); padding: 8px 0; letter-spacing: -.03em; }
.mobile-menu a:hover { color: var(--clay); }
.mobile-menu .btn { margin-top: 26px; }

/* ---------- hero (inner pages) ---------- */
.hero { display: flex; align-items: center; padding: 92px 0 18px; position: relative; }
.hero .wrap { width: 100%; position: relative; z-index: 2; }
.hero-mark { width: 40px; height: 40px; display: block; margin: 0 auto 14px; animation: floaty 7s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-9px) rotate(3deg); } }

/* ---------- page-load slide wipe (ONLY when arriving from the landing page) ---------- */
.page-wipe { position: fixed; inset: 0; z-index: 400; background: var(--clay); pointer-events: none; display: none; will-change: transform; }
@keyframes wipeLeft  { to { transform: translateX(-101%); } }
@keyframes wipeRight { to { transform: translateX(101%); } }
@keyframes wipeUp    { to { transform: translateY(-101%); } }
@keyframes wipeDown  { to { transform: translateY(101%); } }
html.from-landing body[data-dir="left"]  .page-wipe { display: block; animation: wipeLeft  .7s var(--ease) forwards; }
html.from-landing body[data-dir="right"] .page-wipe { display: block; animation: wipeRight .7s var(--ease) forwards; }
html.from-landing body[data-dir="up"]    .page-wipe { display: block; animation: wipeUp    .7s var(--ease) forwards; }
html.from-landing body[data-dir="down"]  .page-wipe { display: block; animation: wipeDown  .7s var(--ease) forwards; }
@media (prefers-reduced-motion: reduce) { .page-wipe { display: none !important; } }

/* ---------- left vertical-spine layout (subpages) ---------- */
body.sub { padding-left: 116px; padding-top: 92px; }
body.sub .nav { left: 116px; }
body.sub .hero {
  position: fixed; top: 0; left: 0; bottom: 0; width: 116px; z-index: 60;
  display: flex; align-items: center; justify-content: center; padding: 0;
  border-right: 1px solid var(--line); background: var(--bg);
}
body.sub .hero .wrap { width: auto; max-width: none; margin: 0; padding: 0; }
/* keep the About story photo modest + close to the text */
body.sub .about-split { grid-template-columns: 300px 1fr; gap: 44px; align-items: center; }
body.sub .about-img-wrap { max-width: 300px; position: relative; }
body.sub .about-img-wrap::before {
  content: ''; position: absolute; inset: 0; transform: translate(14px, 14px);
  border: 1px solid var(--clay); border-radius: 4px; z-index: 0; pointer-events: none;
}
body.sub .about-img-wrap img { aspect-ratio: 4/5; height: auto; position: relative; z-index: 1; border: 1px solid var(--line-2); }
body.sub .hero-title {
  writing-mode: vertical-rl; transform: rotate(180deg); text-orientation: mixed;
  margin: 0; white-space: nowrap; line-height: 1;
  font-family: 'Codystar', 'Hanken Grotesk', sans-serif;
  font-size: clamp(2.6rem, 3.4vw, 4rem); font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink);
}
body.sub .hero-title .accent { color: var(--clay); }
@media (max-width: 820px) {
  body.sub { padding-left: 0; padding-top: 0; }
  body.sub .nav { left: 0; }
  body.sub .hero { position: static; width: auto; height: auto; padding: 104px 0 0; border-right: none; justify-content: flex-start; }
  body.sub .hero .wrap { padding: 0 24px; }
  body.sub .hero-title { writing-mode: horizontal-tb; transform: none; font-size: clamp(2.6rem,13vw,3.6rem); letter-spacing: .14em; color: var(--ink); }
  body.sub .about-split { grid-template-columns: 1fr; gap: 26px; }
  body.sub .about-img-wrap { max-width: 280px; }
}
.hero-tag { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.hero-tag .mono { font-size: .8rem; color: var(--muted); letter-spacing: .04em; }
.hero-title { font-size: clamp(1.8rem, 3.6vw, 2.7rem); font-weight: 500; margin: 14px 0 0; letter-spacing: -.015em; line-height: 1.1; }
.hero-title .ln { display: block; }
.hero-bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-top: 48px; flex-wrap: wrap; }
.hero-sub { max-width: 460px; color: var(--ink-2); font-size: 1.12rem; }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-top: 30px; }
.hero-meta { font-size: .86rem; color: var(--muted); text-align: right; line-height: 2.1; }
.hero-meta b { color: var(--clay); font-weight: 700; }
.hero-stats { margin-top: 50px; display: flex; gap: 48px; flex-wrap: wrap; }
.hero-stat .n { font-weight: 700; font-size: 2rem; letter-spacing: -.03em; }
.hero-stat .l { font-size: .82rem; color: var(--muted); }
/* legacy hero leftovers neutralised */
.hero-copy { position: relative; z-index: 2; }
.hero-visual { position: relative; z-index: 2; }

/* ---------- marquee ---------- */
.marq { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 24px 0; overflow: hidden; white-space: nowrap; }
.marq-track { display: inline-flex; animation: scroll 38s linear infinite; will-change: transform; }
.marq:hover .marq-track { animation-play-state: paused; }
.marq-track span { font-weight: 600; font-size: clamp(1.2rem,3vw,1.9rem); letter-spacing: -.01em; padding: 0 28px; display: inline-flex; align-items: center; gap: 28px; color: var(--ink); }
.marq .star { color: var(--clay); font-size: .7em; }
.marq .hollow { color: var(--muted); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.bg-2, .bg-alt { background: var(--bg-2); }
.on-dark { background: var(--dark); color: var(--cream); }
.on-dark h2, .on-dark h3, .on-dark h4 { color: var(--cream); }
.on-dark .section-head p, .on-dark .muted, .on-dark p { color: rgba(243,237,225,.62); }
.on-dark .eyebrow { color: #c8a487; }
.on-dark .eyebrow::before { background: #c8a487; }
.on-dark .accent, .on-dark em.accent, .on-dark .grad { color: #c8a487; }

/* ---------- services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.svc-card { background: var(--bg); padding: 52px 44px; position: relative; transition: background .35s; }
.svc-card:hover { background: var(--card); }
.svc-num { font-size: .82rem; font-weight: 600; letter-spacing: .12em; color: var(--clay); }
.svc-card h3 { font-size: 1.32rem; font-weight: 600; margin: 14px 0 14px; letter-spacing: -.01em; }
.svc-card p { color: var(--muted); font-size: .98rem; }
.svc-feats { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.svc-feats li { font-size: .9rem; color: var(--ink-2); display: flex; gap: 12px; align-items: flex-start; }
.svc-feats li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--clay); margin-top: 9px; flex-shrink: 0; }

/* ---------- process ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.step { border-top: 1px solid var(--line-2); padding-top: 26px; }
.on-dark .step { border-color: rgba(243,237,225,.22); }
.step .snum { font-size: .82rem; font-weight: 600; letter-spacing: .1em; color: var(--clay); }
.on-dark .step .snum { color: #c8a487; }
.step h3 { font-size: 1.45rem; margin: 16px 0 14px; letter-spacing: -.02em; }
.step p { color: var(--muted); font-size: .95rem; }
.on-dark .step p { color: rgba(243,237,225,.6); }

/* ---------- work ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.filter-btn { font-size: .82rem; font-weight: 500; padding: 9px 20px; border-radius: 100px; border: 1px solid var(--line-2); background: none; color: var(--muted); cursor: pointer; transition: all .2s; }
.filter-btn:hover { color: var(--ink); border-color: var(--ink); }
.filter-btn.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.work-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.work-item { position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--bg-2); border: 1px solid var(--line); display: block; border-radius: 3px; }
.work-item.wide { grid-column: span 2; aspect-ratio: 16/9; }
.work-item img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.5) contrast(.96); transition: transform .7s var(--ease), filter .5s; }
.work-item:hover img { transform: scale(1.04); filter: grayscale(0); }
.work-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--bg-2); }
.work-ph span { font-weight: 700; font-size: 2.6rem; color: var(--line-2); }
.work-overlay { position: absolute; inset: 0; padding: 26px; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(to top, rgba(34,27,20,.9), transparent 62%); opacity: 0; transform: translateY(10px); transition: opacity .4s var(--ease), transform .4s var(--ease); color: var(--cream); }
.work-item:hover .work-overlay { opacity: 1; transform: none; }
.work-overlay::after { content: ''; position: absolute; left: 26px; bottom: 22px; width: 0; height: 2px; background: var(--clay); transition: width .45s var(--ease) .05s; }
.work-item:hover .work-overlay::after { width: 40px; }
.work-overlay h3 { padding-bottom: 14px; }
.work-overlay .wtype { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #d8bda6; }
.work-overlay h3 { font-size: 1.18rem; font-weight: 600; margin-top: 6px; color: var(--cream); letter-spacing: -.01em; }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; align-items: stretch; }
.price-card { background: var(--card); border: 1px solid var(--line); padding: 44px 36px; position: relative; border-radius: 5px; transition: transform .35s var(--ease), border-color .35s; display: flex; flex-direction: column; }
.price-card:hover { transform: translateY(-5px); border-color: var(--line-2); }
.price-card.featured { border-color: var(--clay); }
.price-badge { position: absolute; top: -11px; left: 36px; background: var(--clay); color: var(--cream); font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 5px 13px; border-radius: 3px; }
.price-name { font-weight: 600; font-size: 1.35rem; letter-spacing: -.01em; }
.price-tag { font-size: .9rem; color: var(--muted); margin-top: 8px; min-height: 42px; }
.price-amt { font-weight: 600; font-size: 2.3rem; margin: 18px 0 4px; letter-spacing: -.02em; }
.price-amt small { font-size: .8rem; font-weight: 500; color: var(--muted); }
.price-time { font-size: .82rem; font-weight: 600; color: var(--clay); letter-spacing: .02em; }
.price-feats { list-style: none; margin: 26px 0; display: flex; flex-direction: column; gap: 12px; }
.price-feats li { font-size: .88rem; color: var(--ink-2); display: flex; gap: 11px; align-items: flex-start; }
.price-feats li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--clay); margin-top: 8px; flex-shrink: 0; }
.price-card .btn { width: 100%; justify-content: center; margin-top: auto; }
.addons { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 26px; }
.addon { border: 1px solid var(--line); padding: 34px; background: var(--card); border-radius: 5px; transition: border-color .3s; }
.addon:hover { border-color: var(--clay); }
.addon h4 { font-size: 1.2rem; letter-spacing: -.02em; }
.addon .ap { color: var(--clay); font-weight: 600; font-size: .88rem; margin: 8px 0 16px; }
.addon p { color: var(--muted); font-size: .88rem; }

/* ---------- about ---------- */
.about-split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: grayscale(.25) contrast(.97); border-radius: 4px; }
.about-img-wrap .float-badge { position: absolute; bottom: -16px; right: -16px; background: var(--clay); color: var(--cream); padding: 16px 20px; font-size: .84rem; line-height: 1.4; border-radius: 4px; }
.about-text h2 { font-size: clamp(2rem,4vw,3.2rem); }
.about-text p { margin-top: 20px; color: var(--ink-2); }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.value { border: 1px solid var(--line); padding: 34px; background: var(--card); border-radius: 5px; transition: border-color .3s, transform .3s; }
.value:hover { border-color: var(--clay); transform: translateY(-3px); }
.value .vnum { font-weight: 600; color: var(--clay); letter-spacing: .1em; font-size: .9rem; }
.value h4 { font-size: 1.2rem; margin: 10px 0 12px; letter-spacing: -.02em; }
.value p { color: var(--muted); font-size: .9rem; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag { font-size: .86rem; padding: 10px 18px; border: 1px solid var(--line-2); border-radius: 100px; transition: all .2s; }
.tag:hover { border-color: var(--clay); color: var(--clay); }

/* ---------- stats ---------- */
.stats-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.stat-big { border-top: 1px solid rgba(243,237,225,.22); padding-top: 22px; }
.stat-big .n { font-weight: 600; font-size: clamp(2.2rem,5vw,3.6rem); letter-spacing: -.02em; color: var(--cream); }
.stat-big .n span { color: #c8a487; }
.stat-big .l { font-size: .82rem; color: rgba(243,237,225,.6); }

/* ---------- testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.testi { border: 1px solid var(--line); padding: 38px; background: var(--card); border-radius: 5px; transition: border-color .3s; }
.testi:hover { border-color: var(--line-2); }
.testi .q { font-weight: 700; font-size: 2.6rem; color: var(--clay); line-height: .5; }
.testi p { margin: 22px 0 24px; color: var(--ink-2); font-size: 1rem; }
.testi .who { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--clay); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; font-family: inherit; font-weight: 600; font-size: 1.04rem; color: var(--ink); padding: 26px 0; display: flex; justify-content: space-between; gap: 20px; align-items: center; letter-spacing: -.005em; }
.faq-q .icn { color: var(--clay); font-size: 1.5rem; transition: transform .3s; }
.faq-item.open .faq-q .icn { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding-bottom: 28px; color: var(--muted); }

/* ---------- contact ---------- */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.contact-left h1 { font-size: clamp(2.2rem,4.5vw,3.4rem); }
.contact-left p { margin-top: 20px; color: var(--ink-2); }
.contact-points { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 13px; }
.contact-points li { display: flex; gap: 12px; color: var(--ink-2); }
.contact-points li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--clay); margin-top: 9px; flex-shrink: 0; }
.contact-detail { margin-top: 32px; display: flex; flex-direction: column; gap: 10px; font-size: .94rem; color: var(--muted); }
.contact-detail span { display: inline-flex; align-items: center; gap: 9px; }
.contact-icon { width: 18px; height: 18px; flex-shrink: 0; color: var(--clay); }
.contact-detail a:hover { color: var(--clay); }
.form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field label { font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea { font-family: inherit; font-size: .96rem; padding: 14px 16px; border: 1px solid var(--line-2); border-radius: 4px; background: var(--card); color: var(--ink); transition: border-color .2s; width: 100%; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--clay); }
.field textarea { resize: vertical; min-height: 130px; }
.field select option { background: var(--card); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: .8rem; color: var(--muted); }
.form-msg { font-size: .9rem; font-weight: 600; }
.form-msg.ok { color: var(--clay); }
.form-msg.err { color: #b3402f; }

/* ---------- blog ---------- */
.blog-feat { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; border: 1px solid var(--line); padding: 46px; margin-bottom: 44px; background: var(--card); border-radius: 6px; transition: border-color .3s; }
.blog-feat:hover { border-color: var(--clay); }
.blog-feat .fimg { background: var(--bg-2); border-radius: 4px; aspect-ratio: 16/10; overflow: hidden; }
.blog-feat .fimg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-cat { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--clay); }
.blog-feat h2 { font-size: clamp(1.8rem,3.2vw,2.6rem); margin: 16px 0; letter-spacing: -.02em; }
.blog-feat p { color: var(--muted); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.post { border: 1px solid var(--line); overflow: hidden; background: var(--card); border-radius: 5px; transition: transform .3s, border-color .3s; display: flex; flex-direction: column; }
.post:hover { transform: translateY(-5px); border-color: var(--clay); }
.post .pimg { background: var(--bg-2); aspect-ratio: 16/10; overflow: hidden; }
.post .pimg img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.post:hover .pimg img { transform: scale(1.04); }
.post .pbody { padding: 30px; display: flex; flex-direction: column; flex: 1; }
.post h3 { font-size: 1.22rem; margin: 13px 0; letter-spacing: -.02em; }
.post p { color: var(--muted); font-size: .9rem; flex: 1; }
.post .pmeta { margin-top: 18px; font-size: .78rem; color: var(--muted); }

/* ---------- single blog post ---------- */
.post-back { font-size: .84rem; font-weight: 600; color: var(--muted); display: inline-flex; align-items: center; gap: 8px; transition: color .2s; }
.post-back:hover { color: var(--clay); }
.post-head { max-width: 780px; margin: 22px auto 0; text-align: left; }
.post-head h1 { font-size: clamp(2rem,4.2vw,3.1rem); font-weight: 500; letter-spacing: -.02em; line-height: 1.12; margin: 14px 0 18px; }
.post-meta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: .86rem; color: var(--muted); margin-bottom: 6px; }
.post-meta-row .dot { color: var(--line-2); }
.post-cover { max-width: 960px; margin: 34px auto; border-radius: 6px; overflow: hidden; background: var(--bg-2); aspect-ratio: 16/9; }
.post-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-content { max-width: 780px; margin: 0 auto; }
.post-content p { color: var(--ink-2); font-size: 1.04rem; line-height: 1.8; margin-bottom: 24px; }
.post-content h2 { font-size: clamp(1.3rem,2.4vw,1.7rem); font-weight: 600; letter-spacing: -.015em; margin: 46px 0 18px; }
.post-content h3 { font-size: 1.15rem; font-weight: 600; letter-spacing: -.01em; margin: 34px 0 14px; }
.post-content strong { color: var(--ink); font-weight: 700; }
.post-sources { max-width: 780px; margin: 40px auto 0; padding-top: 28px; border-top: 1px solid var(--line); font-size: .82rem; color: var(--muted); line-height: 1.8; }
.post-foot-nav { max-width: 780px; margin: 40px auto 0; padding-top: 28px; border-top: 1px solid var(--line); }
.post-foot-nav a { font-size: .9rem; font-weight: 600; color: var(--ink-2); transition: color .2s; }
.post-foot-nav a:hover { color: var(--clay); }
@media (max-width: 640px) { .post-head, .post-content, .post-sources, .post-foot-nav { max-width: 100%; } }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; padding: 34px 0; }
.cta-band h2 { font-size: clamp(1.1rem,4vw,2.85rem); font-weight: 500; max-width: none; margin: 0 auto; letter-spacing: -.015em; white-space: nowrap; }
/* clay CTA band — distinct from the espresso footer */
.cta-accent { background: var(--clay); color: var(--cream); }
.cta-accent h2 { color: var(--cream); }
.cta-accent h2 .accent, .cta-accent .accent { color: var(--ink); }
.cta-accent p { color: rgba(243,237,225,.82); }
.cta-accent .btn-green { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.cta-accent .btn-green:hover { background: #14100b; }
/* one-line CTA: heading left, button right */
.cta-row { text-align: center; }
.cta-row .wrap { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.cta-row h2 { margin: 0; max-width: none; white-space: nowrap; }
.cta-row .cta-actions { margin: 0; justify-content: center; }

/* ---------- centered footer ---------- */
.footer-center { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.footer-center .nav-logo { justify-content: center; }
.footer-center .footer-tag { color: rgba(243,237,225,.6); max-width: 440px; font-size: .95rem; margin: 0; }
.footer-connect { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; }
.footer-connect a { color: rgba(243,237,225,.62); font-size: .92rem; transition: color .2s; }
.footer-connect a:hover { color: var(--cream); }
.footer-center .footer-bot { justify-content: center; border-top: 1px solid rgba(243,237,225,.14); padding-top: 22px; margin-top: 8px; width: 100%; max-width: 560px; }
.footer-center .footer-bot p { font-size: .82rem; color: rgba(243,237,225,.55); }
.footer-legal { display: flex; align-items: center; gap: 10px; justify-content: center; font-size: .82rem; color: rgba(243,237,225,.5); }
.footer-legal a { color: rgba(243,237,225,.5); transition: color .2s; }
.footer-legal a:hover { color: var(--cream); }
.cta-band p { margin: 26px auto 38px; color: rgba(243,237,225,.65); max-width: 520px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- footer ---------- */
.footer { background: var(--dark); color: var(--cream); padding: 80px 0 42px; }
.footer-top { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 48px; padding-bottom: 50px; border-bottom: 1px solid rgba(243,237,225,.14); }
.footer-brand .nav-logo { margin-bottom: 18px; }
.footer-brand .logo-word, .footer .logo-word { color: var(--cream); }
.footer-brand p { color: rgba(243,237,225,.6); max-width: 340px; font-size: .95rem; }
.footer-col h4 { font-size: .76rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: #c8a487; margin-bottom: 18px; }
.footer-col a { display: block; color: rgba(243,237,225,.62); padding: 7px 0; font-size: .94rem; transition: color .2s; }
.footer-col a:hover { color: var(--cream); }
.footer-bot { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; flex-wrap: wrap; gap: 12px; font-size: .82rem; color: rgba(243,237,225,.55); }
.footer-giant { font-weight: 700; font-size: clamp(4rem,21vw,17rem); line-height: .82; letter-spacing: -.05em; color: rgba(243,237,225,.07); text-align: center; margin-top: 48px; user-select: none; }

/* ---------- "show more" collapsible ---------- */
.more-wrap { text-align: center; padding: 30px 0; }
.more-toggle { display: inline-flex; align-items: center; gap: 9px; font-family: inherit; font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); background: none; border: none; cursor: pointer; transition: color .2s; }
.more-toggle:hover { color: var(--clay); }
.more-toggle .chev { transition: transform .3s var(--ease); }
.more-toggle[aria-expanded="true"] .chev { transform: rotate(180deg); }
/* on mobile, make the toggle read as a tappable button */
@media (max-width: 720px) {
  .more-wrap { padding: 22px 24px; }
  .more-toggle { width: 100%; justify-content: center; border: 1.5px solid var(--line-2); border-radius: 100px; padding: 16px 26px; color: var(--ink); background: var(--bg-2); }
  .more-toggle:hover, .more-toggle[aria-expanded="true"] { border-color: var(--clay); color: var(--clay); }
}
.more { display: none; }
.more.open { display: block; animation: moreIn .5s var(--ease); }
@keyframes moreIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---------- photography gallery ---------- */
.gallery { column-count: 3; column-gap: 14px; perspective: 1000px; }
.gphoto { display: block; width: 100%; margin: 0 0 14px; padding: 0; border: none; background: none; cursor: pointer; break-inside: avoid; overflow: hidden; border-radius: 4px; transition: transform .3s var(--ease); transform-style: preserve-3d; }
.gphoto img { width: 100%; display: block; filter: grayscale(.15) brightness(.98); transition: transform .6s var(--ease), filter .4s; }
.gphoto:hover img { transform: scale(1.05); filter: grayscale(0) brightness(1); }
/* staggered load entrance */
.gallery .gphoto { opacity: 0; animation: galleryIn .85s var(--ease) both; }
@keyframes galleryIn { from { opacity: 0; transform: translateY(44px) scale(.93); } to { opacity: 1; transform: none; } }
.gallery .gphoto:nth-child(1){animation-delay:.10s} .gallery .gphoto:nth-child(2){animation-delay:.17s}
.gallery .gphoto:nth-child(3){animation-delay:.24s} .gallery .gphoto:nth-child(4){animation-delay:.31s}
.gallery .gphoto:nth-child(5){animation-delay:.38s} .gallery .gphoto:nth-child(6){animation-delay:.45s}
.gallery .gphoto:nth-child(7){animation-delay:.52s} .gallery .gphoto:nth-child(8){animation-delay:.59s}
.gallery .gphoto:nth-child(9){animation-delay:.66s} .gallery .gphoto:nth-child(10){animation-delay:.73s}
.gallery .gphoto:nth-child(11){animation-delay:.80s} .gallery .gphoto:nth-child(12){animation-delay:.87s}
.gallery .gphoto:nth-child(13){animation-delay:.94s} .gallery .gphoto:nth-child(14){animation-delay:1.01s}
.gallery .gphoto:nth-child(15){animation-delay:1.08s} .gallery .gphoto:nth-child(16){animation-delay:1.15s}
.gallery .gphoto:nth-child(17){animation-delay:1.22s} .gallery .gphoto:nth-child(18){animation-delay:1.29s}
@media (max-width: 1000px) { .gallery { column-count: 2; } }
@media (max-width: 600px) { .gallery { column-count: 1; } }

/* ---------- lightbox ---------- */
.lightbox { position: fixed; inset: 0; background: rgba(34,27,20,.93); backdrop-filter: blur(8px); z-index: 500; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s; }
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: 4px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lb-btn { position: absolute; background: none; border: none; color: var(--cream); cursor: pointer; opacity: .7; transition: opacity .2s; }
.lb-btn:hover { opacity: 1; }
.lb-close { top: 22px; right: 26px; font-size: 2rem; line-height: 1; }
.lb-nav { top: 50%; transform: translateY(-50%); font-size: 2.6rem; padding: 10px 22px; }
.lb-prev { left: 6px; } .lb-next { right: 6px; }

/* ---------- work modal ---------- */
.work-modal { position: fixed; inset: 0; background: rgba(34,27,20,.93); backdrop-filter: blur(8px); z-index: 500; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s; padding: 24px; }
.work-modal.open { opacity: 1; pointer-events: all; }
.work-modal-card { background: var(--cream); border-radius: 6px; width: 100%; max-width: 640px; max-height: 88vh; overflow: auto; box-shadow: 0 30px 80px rgba(0,0,0,.5); position: relative; transform: translateY(14px); transition: transform .3s var(--ease); }
.work-modal.open .work-modal-card { transform: translateY(0); }
.work-modal-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.work-modal-body { padding: 28px 32px 32px; }
.work-modal-body .wtype { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--clay); }
.work-modal-body h3 { font-size: 1.4rem; margin-top: 8px; letter-spacing: -.01em; }
.work-modal-body p { margin-top: 14px; color: var(--muted); line-height: 1.6; }
.work-modal-visit { margin-top: 22px; padding: 12px 24px; font-size: .82rem; }
.work-modal-close { position: absolute; top: 14px; right: 16px; background: none; border: none; color: var(--ink); opacity: .6; cursor: pointer; font-size: 1.6rem; line-height: 1; transition: opacity .2s; }
.work-modal-close:hover { opacity: 1; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 1.3s var(--ease), transform 1.3s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .svc-grid, .price-grid, .addons, .work-grid, .testi-grid, .blog-grid, .steps, .stats-strip, .values-grid { grid-template-columns: 1fr; }
  .work-item.wide { grid-column: span 1; aspect-ratio: 4/3; }
  .about-split, .contact-split, .blog-feat { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-meta { text-align: left; }
}
@media (max-width: 720px) {
  section { padding: 80px 0; }
  .wrap { padding: 0 24px; }
  .nav, .nav.scrolled { padding: 18px 24px; }
  .nav-links, .nav .btn.desktop { display: none; }
  .burger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .svc-card { padding: 40px 30px; }
  .hero { min-height: auto; padding: 140px 0 70px; }
}
@media (prefers-reduced-motion: reduce) {
  .work-grid .work-item::before { display: none; }
  .gphoto { transform: none !important; animation: none; opacity: 1; }
  .marq-track { animation: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
}
