/* ============================================================
   Jake White Architecture — site.css
   ────────────────────────────────────────────────────────────
   Layered:
     1. Tokens (custom properties)
     2. Base resets + typography
     3. Layout primitives (shell, hair)
     4. Nav + Footer (shared chrome)
     5. Homepage components (hero, statement, works, services,
        areas, closing)
     6. Page-level shells (.page-hero shared by /blog/ and /contact/)
     7. Journal-specific (filter chips, featured post, post grid,
        subscribe band)
     8. Contact-specific (map card, sidebar cards, process, FAQ)
     9. Portfolio reskin (header type, morgan-carn footnote)
   ──────────────────────────────────────────────────────────── */

/* 1 ─ Tokens ───────────────────────────────────────────────── */
:root {
  --paper:        oklch(0.972 0.010 82);   /* warm off-white */
  --paper-2:      oklch(0.955 0.013 82);   /* slightly darker, for inset bands */
  --paper-3:      oklch(0.935 0.015 80);   /* card hover wash */
  --ink:          oklch(0.20  0.012 70);
  --ink-soft:     oklch(0.32  0.010 70);
  --ink-mute:     oklch(0.48  0.012 75);
  --hair:         oklch(0.84  0.012 80);
  --hair-soft:    oklch(0.90  0.010 80);
  --accent:       oklch(0.52  0.105 48);   /* burnt sienna */
  --accent-deep:  oklch(0.40  0.095 45);

  --serif: "Fraunces", ui-serif, Georgia, serif;
  --sans:  "Manrope", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono:  "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --content-max: 1440px;
  --gutter: clamp(20px, 4vw, 56px);
}

/* 2 ─ Base ─────────────────────────────────────────────────── */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 380;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: var(--paper); }

/* Typography scale */
.display {
  font-family: var(--serif);
  font-weight: 380;
  font-style: normal;
  letter-spacing: -0.022em;
  line-height: 0.98;
  font-size: clamp(48px, 8.4vw, 132px);
  text-wrap: balance;
  font-variation-settings: "opsz" 96, "SOFT" 30, "WONK" 0;
  margin: 0;
}
.display .it {
  font-style: italic; font-weight: 360;
  font-variation-settings: "opsz" 96, "SOFT" 30, "WONK" 0;
}
.h2 {
  font-family: var(--serif);
  font-weight: 380;
  letter-spacing: -0.018em;
  line-height: 1.02;
  font-size: clamp(36px, 5.4vw, 78px);
  text-wrap: balance;
  font-variation-settings: "opsz" 72, "SOFT" 30, "WONK" 0;
  margin: 0;
}
.h2 .it { font-style: italic; font-weight: 360; }
.h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.012em;
  margin: 0;
}
.lede {
  font-family: var(--serif);
  font-weight: 360;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.32;
  letter-spacing: -0.008em;
  color: var(--ink);
  max-width: 32ch;
  text-wrap: pretty;
}
.body-l {
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
  text-wrap: pretty;
}
.body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.label, .meta {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.num { font-feature-settings: "tnum"; }

/* 3 ─ Layout primitives ────────────────────────────────────── */
.shell { max-width: var(--content-max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.hair  { height: 1px; background: var(--hair); width: 100%; }
.hair-soft { height: 1px; background: var(--hair-soft); }
.section { padding-top: clamp(56px, 7vw, 112px); padding-bottom: clamp(56px, 7vw, 112px); }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(28px, 4vw, 80px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.section-head .eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.section-head .eyebrow .num { color: var(--ink); font-weight: 500; }
@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; gap: 18px; align-items: start; }
}

/* 4 ─ Nav + Footer ─────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 30;
  background: color-mix(in oklch, var(--paper) 92%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hair-soft);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px var(--gutter);
  max-width: var(--content-max);
  margin: 0 auto;
}
.wordmark {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.16em;
  line-height: 1.12;
  text-transform: uppercase;
  color: var(--ink);
  display: flex; flex-direction: column;
}
.wordmark span:last-child { color: var(--ink-mute); }
.nav-links {
  display: flex; gap: 44px; align-items: center;
  font-size: 17px; color: var(--ink-soft); font-weight: 400;
}
.nav-links a { position: relative; padding: 4px 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .38s cubic-bezier(.4,.0,.2,1);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-links:has(a:hover) a[aria-current="page"]:not(:hover)::after {
  transform: scaleX(0);
  transform-origin: right;
}
.nav-links a[aria-current="page"] { color: var(--ink); font-weight: 500; }
.nav-cta {
  font-family: var(--sans); font-size: 16px; font-weight: 500;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 11px 20px;
  border-radius: 999px;
  transition: background .25s ease, color .25s ease;
}
.nav-cta:hover { background: var(--ink); color: var(--paper); }
@media (max-width: 840px) {
  .nav-links { display: none; }
}

.footer {
  padding: 36px var(--gutter);
  border-top: 1px solid oklch(0.28 0.012 70);
  background: oklch(0.16 0.012 70);
  color: oklch(0.62 0.010 82);
  font-size: 12.5px;
  letter-spacing: 0.02em;
}
.footer-inner {
  max-width: var(--content-max); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.footer .label { color: oklch(0.55 0.010 82); }

/* 5 ─ Homepage components ──────────────────────────────────── */

/* Hero — Split */
.hero {
  padding-top: clamp(48px, 6vw, 96px);
  padding-bottom: clamp(48px, 6vw, 96px);
}
.hero-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: end;
}
.hero-side { display: flex; flex-direction: column; gap: 28px; }
.hero-meta { display: flex; align-items: center; gap: 14px; }
.hero-meta .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}
.hero-img {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--paper-2);
}
.hero-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: clamp(40px, 5vw, 72px);
  padding-top: 28px;
  border-top: 1px solid var(--hair);
  align-items: start;
}
.hero-foot .stat-num {
  font-family: var(--serif); font-weight: 360;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95; letter-spacing: -0.02em;
}
.hero-stat { display: flex; flex-direction: column; gap: 6px; }
.hero-stat .label { margin-bottom: 6px; }
.hero-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.hero-stats-row .hero-stat {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 6px;
}
.hero-stats-row .hero-stat .label { margin-bottom: 0; }
@media (max-width: 840px) {
  .hero-row { grid-template-columns: 1fr; gap: 28px; }
  .hero-img { aspect-ratio: 4/3; }
  .hero-foot { grid-template-columns: 1fr 1fr; gap: 20px; }
}

/* Statement */
.statement {
  background: var(--paper-2);
  border-top: 1px solid var(--hair-soft);
  border-bottom: 1px solid var(--hair-soft);
}
.statement-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 96px);
  align-items: start;
}
.statement .pull {
  font-family: var(--serif);
  font-weight: 360;
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: balance;
  margin: 0;
}
.statement .body-l { font-size: clamp(16px, 1.2vw, 19px); }
.statement-body { display: flex; flex-direction: column; gap: 16px; }
.statement-body p { margin: 0; }
.signoff {
  margin-top: 32px;
  display: flex; align-items: center; gap: 14px;
  font-size: 13px; color: var(--ink-soft);
}
@media (max-width: 840px) {
  .statement-grid { grid-template-columns: 1fr; gap: 22px; }
}

/* Works grid */
.works-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 2.6vw, 48px) clamp(20px, 2vw, 32px);
}
.work { display: flex; flex-direction: column; gap: 16px; }
.work .frame {
  width: 100%;
  background: var(--paper-3);
  overflow: hidden;
  position: relative;
  transition: transform .5s ease;
}
.work .frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.work:hover .frame { transform: translateY(-3px); }
.work-meta {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
}
.work-meta .left { display: flex; flex-direction: column; gap: 3px; }
.work-meta .right { text-align: right; }
.work-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(20px, 1.7vw, 26px); line-height: 1.1;
  letter-spacing: -0.012em;
}
.work-title .asterisk {
  color: var(--accent-deep);
  margin-left: 0.08em;
  font-weight: 500;
}
.work-loc { font-family: var(--sans); font-size: 13px; color: var(--ink-soft); }
.work .label { font-size: 11px; }

.work.w-7 { grid-column: span 7; }
.work.w-5 { grid-column: span 5; }
.work.w-6 { grid-column: span 6; }
.work.w-4 { grid-column: span 4; }
.work.w-8 { grid-column: span 8; }
.work.w-12 { grid-column: span 12; }
.work.tall .frame   { aspect-ratio: 4/5; }
.work.wide .frame   { aspect-ratio: 16/10; }
.work.land .frame   { aspect-ratio: 3/2; }
.work.full .frame   { aspect-ratio: 21/9; }
.work.sq   .frame   { aspect-ratio: 1/1; }
@media (max-width: 840px) {
  .work, .work.w-7, .work.w-5, .work.w-6, .work.w-4, .work.w-8, .work.w-12 { grid-column: span 12; }
  .work .frame { aspect-ratio: 4/3; }
}

.works-foot-note {
  margin-top: clamp(40px, 4vw, 56px) auto 0;
  padding-top: clamp(24px, 2.4vw, 32px);
  border-top: 1px solid var(--hair);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.45;
  color: var(--ink-soft);
  text-align: center;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}
.works-foot-note .asterisk {
  color: var(--accent-deep);
  font-weight: 500;
  font-style: normal;
}

.pill-cta {
  display: inline-flex; align-items: center; gap: 14px;
  border: 1px solid var(--ink);
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.01em;
  transition: background .25s ease, color .25s ease;
}
.pill-cta:hover { background: var(--ink); color: var(--paper); }
.pill-cta .arrow { font-family: var(--serif); font-size: 18px; line-height: 1; transform: translateY(-1px); }

/* Services */
.services {
  background: var(--paper-2);
  border-top: 1px solid var(--hair-soft);
}
.services-list {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  border-top: 1px solid var(--hair);
  align-items: stretch;
}
.service {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 32px 36px;
  border-bottom: 1px solid var(--hair);
  border-right: 1px solid var(--hair);
  position: relative;
  background: transparent;
  color: var(--ink);
  transition: background .55s ease .05s, color .55s ease .05s;
  outline: none;
  cursor: pointer;
}
.service:nth-child(3n) { border-right: none; }
.service:hover,
.service:focus-visible {
  background: oklch(0.20 0.012 70);
  color: oklch(0.95 0.008 82);
}
.service .num-tag {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--ink-mute);
  letter-spacing: 0.10em;
  transition: color .5s ease .05s;
}
.service h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2vw, 32px);
  letter-spacing: -0.012em;
  line-height: 1.08;
  transition: color .5s ease .05s;
}
.service-body {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.55;
  max-width: 38ch;
  transition: color .5s ease .05s;
}
.service.featured h3 .it { font-style: italic; color: var(--accent-deep); transition: color .5s ease .05s; }
.service-plus {
  position: absolute;
  top: 30px;
  right: 28px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--ink-mute);
  line-height: 1;
  transition: transform .55s cubic-bezier(.2,.7,.2,1) .05s, color .5s ease .05s;
  pointer-events: none;
}
.service:hover .service-plus,
.service:focus-visible .service-plus {
  transform: rotate(45deg);
  color: var(--accent);
}
.service:hover h3,
.service:focus-visible h3 { color: oklch(0.97 0.008 82); }
.service:hover .num-tag,
.service:focus-visible .num-tag { color: oklch(0.66 0.010 82); }
.service:hover .service-body,
.service:focus-visible .service-body { color: oklch(0.84 0.010 82); }
.service:hover.featured h3 .it,
.service:focus-visible.featured h3 .it { color: var(--accent); }
.service-more {
  margin: 14px 0 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--hair-soft);
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
  max-width: 40ch;
  transition: color .55s ease .05s, border-top-color .55s ease .05s;
}
.service:hover .service-more,
.service:focus-visible .service-more {
  color: oklch(0.80 0.010 82);
  border-top-color: oklch(0.32 0.012 70);
}
@media (max-width: 960px) {
  .service { grid-column: span 6; }
  .service:nth-child(3n) { border-right: 1px solid var(--hair); }
  .service:nth-child(2n) { border-right: none; }
}
@media (max-width: 640px) {
  .service { grid-column: span 12; border-right: none; padding: 28px 24px; }
}

/* Areas */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(28px, 4vw, 80px);
  align-items: start;
}
.areas-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.area-col h4 {
  margin: 0 0 16px 0;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--hair);
}
.area-col ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 7px;
  font-size: 14px; color: var(--ink-soft);
}
.area-col li { display: flex; align-items: center; gap: 8px; }
.area-col li::before {
  content: ""; width: 4px; height: 4px; background: var(--ink-mute); border-radius: 50%;
  flex-shrink: 0;
}
.area-col li.featured { color: var(--ink); font-weight: 500; }
.area-col li.featured::before { background: var(--accent); }
@media (max-width: 840px) {
  .areas-grid { grid-template-columns: 1fr; }
  .areas-cols { grid-template-columns: 1fr 1fr; }
}

/* Closing */
.closing {
  background: oklch(0.18 0.012 70);
  color: oklch(0.95 0.008 82);
  padding-top: clamp(72px, 9vw, 140px);
  padding-bottom: clamp(72px, 9vw, 140px);
}
.closing .display { color: oklch(0.97 0.008 82); }
.closing .display .it { color: var(--accent); }
.closing-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 5vw, 96px);
  align-items: end;
}
.closing .label { color: oklch(0.75 0.012 82); }
.closing-list {
  display: flex; flex-direction: column; gap: 10px;
  font-size: 16px; color: oklch(0.86 0.010 82);
}
.closing-list a { display: flex; justify-content: space-between; align-items: center;
                  padding: 12px 0; border-bottom: 1px solid oklch(0.30 0.012 70); }
.closing-list a .arrow { font-family: var(--serif); font-style: italic; opacity: 0.6; }
.closing-list a:hover { color: var(--paper); }
.closing-list a:hover .arrow { opacity: 1; transform: translateX(4px); transition: transform .3s ease; }
@media (max-width: 840px) {
  .closing-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* 6 ─ Page shells (shared by blog + contact) ───────────────── */
.page-hero {
  padding-top: clamp(56px, 7vw, 120px);
  padding-bottom: clamp(40px, 5vw, 80px);
  border-bottom: 1px solid var(--hair);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 80px);
  align-items: end;
}
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 360;
  font-size: clamp(44px, 6.5vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 0;
}
.page-hero h1 .it { font-style: italic; font-weight: 340; }
@media (max-width: 840px) {
  .page-hero-grid { grid-template-columns: 1fr; gap: 22px; }
}

/* 7 ─ Journal ─────────────────────────────────────────────── */
.filter-row {
  display: flex; gap: 8px; flex-wrap: wrap;
  padding: 20px 0;
  border-bottom: 1px solid var(--hair-soft);
}
.chip {
  padding: 8px 16px;
  border: 1px solid var(--hair);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .2s ease;
  background: transparent;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.featured-post {
  padding-top: clamp(40px, 5vw, 80px);
  padding-bottom: clamp(40px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.featured-post .post-img {
  aspect-ratio: 4/3;
  background: var(--paper-2);
  overflow: hidden;
}
.featured-post .post-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.featured-post h2 {
  font-family: var(--serif);
  font-weight: 380;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.018em;
  margin: 0 0 20px 0;
  text-wrap: balance;
}
.featured-post h2 .it { font-style: italic; font-weight: 360; }
.featured-post .featured-meta {
  display: flex; align-items: center; gap: 16px; margin-bottom: 28px;
}
.featured-post .read-link {
  margin-top: 28px;
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--ink); font-weight: 500; font-size: 14px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  align-self: flex-start;
}
.featured-post .read-link .arrow { font-family: var(--serif); }
@media (max-width: 840px) {
  .featured-post { grid-template-columns: 1fr; }
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 3.5vw, 56px) clamp(20px, 2.4vw, 36px);
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(56px, 7vw, 96px);
  border-top: 1px solid var(--hair);
}
.post {
  display: flex; flex-direction: column; gap: 18px;
  cursor: pointer;
}
.post .post-img {
  aspect-ratio: 4/3;
  background: var(--paper-3);
  overflow: hidden;
  transition: transform .5s ease;
}
.post .post-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.post:hover .post-img { transform: translateY(-3px); }
.post-meta-row {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--ink-mute);
}
.post-meta-row .cat { color: var(--accent-deep); font-weight: 500; }
.post-meta-row .dot {
  width: 3px; height: 3px; border-radius: 50%; background: var(--ink-mute);
}
.post h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.15;
  letter-spacing: -0.012em;
  margin: 0;
  text-wrap: balance;
}
.post p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  text-wrap: pretty;
}
.post .author {
  font-size: 13px; color: var(--ink-mute);
  margin-top: 4px;
}
@media (max-width: 960px) {
  .post-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .post-grid { grid-template-columns: 1fr; }
}

.subscribe {
  background: var(--paper-2);
  border-top: 1px solid var(--hair-soft);
  padding: clamp(56px, 7vw, 104px) 0;
}
.subscribe-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 80px);
  align-items: center;
}
.subscribe h2 {
  font-family: var(--serif); font-weight: 380;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.02; letter-spacing: -0.018em;
  margin: 0; text-wrap: balance;
}
.subscribe h2 .it { font-style: italic; font-weight: 360; }
.subscribe-form {
  display: flex; gap: 0;
  border-bottom: 1px solid var(--ink);
  align-items: center;
}
.subscribe-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 16px 0;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
}
.subscribe-form input::placeholder { color: var(--ink-mute); }
.subscribe-form button {
  background: transparent;
  border: none;
  padding: 16px 0 16px 16px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
}
.subscribe-form button .arrow { font-family: var(--serif); font-size: 18px; }
.subscribe .note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink-mute);
}
@media (max-width: 840px) {
  .subscribe-grid { grid-template-columns: 1fr; }
}

/* 8 ─ Contact ─────────────────────────────────────────────── */
.contact-page .page-hero-grid {
  grid-template-columns: 1.2fr 1fr;
}
.contact-page .page-hero h1 {
  font-size: clamp(56px, 9vw, 144px);
  line-height: 0.94;
  letter-spacing: -0.025em;
}
.contact-main {
  padding-top: clamp(48px, 6vw, 96px);
  padding-bottom: clamp(64px, 8vw, 120px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 96px);
  align-items: start;
}
@media (max-width: 960px) {
  .contact-main { grid-template-columns: 1fr; }
}

.map-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--hair);
  background: var(--paper-2);
  overflow: hidden;
}
.map-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--hair);
  background: var(--paper);
}
.map-link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color .2s;
}
.map-link:hover { border-color: var(--ink); }
.map-link .arrow { font-family: var(--serif); font-size: 14px; }
.map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--paper-3);
}
.map-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: saturate(0.85) contrast(0.95);
}
.map-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 28px 24px;
  border-top: 1px solid var(--hair);
  background: var(--paper);
}
.map-foot .item-label {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--ink-mute);
  display: block; margin-bottom: 8px;
}
.map-address {
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.005em;
}
@media (max-width: 540px) {
  .map-foot { grid-template-columns: 1fr; gap: 18px; }
  .map-head { padding: 14px 18px; }
}

.sidebar { display: flex; flex-direction: column; gap: 32px; }
.sidebar-card {
  border: 1px solid var(--hair);
  background: var(--paper-2);
  padding: 28px;
}
.sidebar-card h4 {
  margin: 0 0 18px 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.sidebar-card .item {
  display: flex; flex-direction: column;
  padding: 14px 0;
  border-top: 1px solid var(--hair-soft);
}
.sidebar-card .item:first-of-type { border-top: none; padding-top: 0; }
.sidebar-card .item-label {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--ink-mute); margin-bottom: 4px;
}
.sidebar-card .item-value {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.sidebar-card .item-value a {
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.sidebar-card .item-value a:hover { border-color: var(--ink); }
.sidebar-card.dark {
  background: oklch(0.18 0.012 70);
  border-color: oklch(0.18 0.012 70);
  color: oklch(0.92 0.010 82);
}
.sidebar-card.dark h4 { color: oklch(0.85 0.010 82); }
.sidebar-card.dark .item-label { color: oklch(0.65 0.010 82); }
.sidebar-card.dark .item-value { color: oklch(0.97 0.008 82); }
.sidebar-card.dark .item { border-top-color: oklch(0.28 0.012 70); }

.process {
  background: var(--paper-2);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: clamp(56px, 7vw, 96px) 0;
}
.process-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(28px, 4vw, 80px);
  margin-bottom: clamp(40px, 5vw, 64px);
  align-items: end;
}
.process-head h2 {
  font-family: var(--serif); font-weight: 380;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.02; letter-spacing: -0.018em;
  margin: 0; text-wrap: balance;
}
.process-head h2 .it { font-style: italic; font-weight: 360; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hair);
}
.process-step {
  padding: 32px 28px 32px 0;
  border-right: 1px solid var(--hair);
  display: flex; flex-direction: column; gap: 14px;
}
.process-step:last-child { border-right: none; padding-right: 0; }
.process-step:not(:first-child) { padding-left: 28px; }
.process-step .step-n {
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1;
  color: var(--accent-deep);
  font-weight: 380;
  letter-spacing: -0.02em;
}
.process-step h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 22px; line-height: 1.15;
  margin: 0; letter-spacing: -0.01em;
}
.process-step p {
  margin: 0; font-size: 14px; color: var(--ink-soft); line-height: 1.55;
}
@media (max-width: 840px) {
  .process-head { grid-template-columns: 1fr; align-items: start; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step {
    border-right: none;
    padding-left: 0;
    padding-right: 0;
    border-bottom: 1px solid var(--hair);
  }
  .process-step:last-child { border-bottom: none; }
}

.faq { padding: clamp(64px, 8vw, 120px) 0; }
.faq-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(28px, 4vw, 80px);
  margin-bottom: clamp(40px, 5vw, 56px);
}
.faq-head h2 {
  font-family: var(--serif); font-weight: 380;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.02; letter-spacing: -0.018em;
  margin: 0; text-wrap: balance;
}
.faq-head h2 .it { font-style: italic; font-weight: 360; }
.faq-list { border-top: 1px solid var(--hair); }
.faq-item { border-bottom: 1px solid var(--hair); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(18px, 1.7vw, 24px);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.2;
  flex: 1;
}
.faq-q .plus {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--ink-mute);
  transition: transform .3s ease, color .2s;
  font-weight: 300;
  line-height: 1;
}
details[open] .faq-q .plus { transform: rotate(45deg); color: var(--accent-deep); }
.faq-a {
  padding: 0 0 28px 0;
  max-width: 64ch;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 840px) {
  .faq-head { grid-template-columns: 1fr; gap: 18px; }
}

/* 9 ─ Portfolio reskin ────────────────────────────────────── */
.portfolio-page {
  padding-top: clamp(48px, 6vw, 96px);
  padding-bottom: clamp(56px, 7vw, 112px);
}
.portfolio-page .project-header {
  margin-bottom: clamp(32px, 4vw, 56px);
}
.portfolio-page h1 {
  font-family: var(--serif);
  font-weight: 380;
  font-size: clamp(40px, 5.6vw, 84px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.portfolio-page h1 .asterisk {
  color: var(--accent-deep);
  margin-left: 0.06em;
  font-weight: 500;
}
.portfolio-page .morgan-carn-note {
  margin-top: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--accent-deep);
  max-width: 60ch;
}
.portfolio-page .morgan-carn-note .asterisk {
  color: var(--accent-deep);
  font-style: normal;
  font-weight: 500;
  margin-right: 4px;
}
.portfolio-page .project-body {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  margin-top: clamp(40px, 5vw, 72px);
  align-items: start;
}
.portfolio-page .project-body p {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 1em 0;
  max-width: 64ch;
}
.portfolio-page .project-body p em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
}
.portfolio-page .project-meta {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-top: 1px solid var(--hair);
  padding-top: 18px;
}
.portfolio-page .project-meta p { margin: 0 0 10px 0; }
.portfolio-page .project-meta p strong {
  display: block;
  color: var(--ink-mute);
  font-weight: 500;
  margin-bottom: 4px;
}
@media (max-width: 840px) {
  .portfolio-page .project-body { grid-template-columns: 1fr; }
}

.portfolio-nav {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--hair);
  padding-top: 32px;
  margin-top: clamp(48px, 6vw, 96px);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.portfolio-nav a { color: var(--ink); transition: color .2s ease; }
.portfolio-nav a:hover { color: var(--accent-deep); }
.portfolio-nav .prev { display: inline-flex; align-items: center; gap: 10px; }
.portfolio-nav .next { display: inline-flex; align-items: center; gap: 10px; margin-left: auto; }
.portfolio-nav .arrow { font-family: var(--serif); font-size: 18px; text-transform: none; }
