:root {
  --bg: #f4f2ec;
  --paper: #fff;
  --ink: #141413;
  --muted: #74726c;
  --line: #d6d2c8;
  --soft: #e9e5dc;
  --dark: #11110f;
  --accent: #b98158;
  --max: 1320px;
  --header: 74px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header) + 20px); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .01em;
  line-break: strict;
  word-break: normal;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; max-width: 100%; }
button, input, select, textarea { font: inherit; }
p, h1, h2, h3, h4, blockquote, figure { margin-top: 0; }
p, blockquote { text-wrap: pretty; }
h1, h2, h3, h4, .lead { text-wrap: balance; }
h1, h2, .serif { font-family: Georgia, "Times New Roman", "Yu Mincho", serif; font-weight: 400; }
.wrap { width: min(calc(100% - 56px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 999; left: 12px; top: -80px; background: #fff; padding: 10px 14px; }
.skip-link:focus { top: 12px; }

/* header */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header);
  background: rgba(244, 242, 236, .9);
  border-bottom: 1px solid rgba(20, 20, 19, .08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { font-family: Georgia, "Times New Roman", serif; font-size: 17px; white-space: nowrap; }
.desktop-nav { display: flex; align-items: center; gap: 30px; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.desktop-nav a { position: relative; padding: 10px 0; color: #696760; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 6px; height: 1px; background: currentColor; transition: right .25s ease; }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { right: 0; }
.desktop-nav a[aria-current="page"] { color: var(--ink); }

/* mobile navigation */
.mobile-menu-wrap { display: none; position: relative; }
.menu-toggle { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.menu-button { position: relative; z-index: 162; width: 48px; height: 48px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; cursor: pointer; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.menu-button span { width: 25px; height: 1px; background: var(--ink); transition: transform .2s ease; }
.menu-toggle:checked + .menu-button span:first-child { transform: translateY(4.5px) rotate(45deg); }
.menu-toggle:checked + .menu-button span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
.mobile-menu-panel { position: fixed; z-index: 160; top: var(--header); left: 0; right: 0; height: calc(100dvh - var(--header)); background: rgba(244, 242, 236, .995); padding: 18px 22px calc(44px + env(safe-area-inset-bottom)); overflow-y: auto; transform: translateX(105%); visibility: hidden; transition: transform .26s ease, visibility 0s linear .26s; }
.menu-toggle:checked ~ .mobile-menu-panel { transform: translateX(0); visibility: visible; transition: transform .26s ease; }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; padding: 2px 0 18px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.menu-close { min-width: 72px; min-height: 42px; display: flex; justify-content: flex-end; align-items: center; color: var(--ink); cursor: pointer; }
.mobile-menu-links a { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 80px; padding: 19px 0; border-bottom: 1px solid var(--line); font-family: Georgia, "Times New Roman", serif; font-size: clamp(32px, 10vw, 46px); line-height: 1; }
.mobile-menu-links small { font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif; color: var(--muted); font-size: 9px; line-height: 1.5; letter-spacing: .12em; text-align: right; }
.mobile-menu-links a[aria-current="page"] { color: var(--accent); }
.mobile-menu-foot { padding-top: 22px; color: var(--muted); font-size: 11px; line-height: 1.8; }

/* shared typography and sections */
.eyebrow { margin-bottom: 14px; color: var(--muted); font-size: 10px; line-height: 1.5; letter-spacing: .18em; text-transform: uppercase; }
.display { margin: 0; font-size: clamp(62px, 9vw, 140px); line-height: .88; letter-spacing: -.06em; }
.display .small-line { display: block; margin-top: 14px; font-size: .27em; line-height: 1.2; letter-spacing: -.025em; }
.section { padding: 126px 0; }
.section--paper { background: var(--paper); }
.section--dark { background: var(--dark); color: #fff; }
.section--dark .eyebrow, .section--dark .muted { color: #aaa79f; }
.section-title { margin: 0; font-size: clamp(46px, 6vw, 84px); line-height: .98; letter-spacing: -.045em; }
.section-title--sm { font-size: clamp(36px, 4.7vw, 64px); }
.lead { font-size: clamp(19px, 2vw, 28px); line-height: 1.58; }
.muted { color: var(--muted); }
.section-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 72px; align-items: end; margin-bottom: 58px; }
.section-heading > p { max-width: 520px; margin: 0 0 4px auto; color: var(--muted); }
.section--dark .section-heading > p { color: #aaa79f; }
.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 13px; min-height: 49px; padding: 11px 20px; border: 1px solid currentColor; border-radius: 999px; font-size: 12px; letter-spacing: .04em; transition: background .2s, color .2s, border-color .2s; }
.btn::after { content: "↗"; }
.btn:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.section--dark .btn:hover { background: #fff; border-color: #fff; color: var(--ink); }
.text-link { display: inline-flex; gap: 10px; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 12px; }
.text-link::after { content: "→"; }
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { padding: 7px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

/* page hero */
.page-hero { position: relative; min-height: 92svh; padding-top: var(--header); overflow: hidden; background: #d7d4cd; }
.page-hero__image { position: absolute; inset: var(--header) 0 0; }
.page-hero__image img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.07) 45%, rgba(0,0,0,.52)); }
.page-hero__content { position: relative; z-index: 2; min-height: calc(92svh - var(--header)); padding-top: 82px; padding-bottom: 48px; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; }
.page-hero__topline { position: absolute; top: 44px; left: 0; right: 0; display: flex; justify-content: space-between; gap: 24px; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.page-hero__intro { display: grid; grid-template-columns: 1.18fr .82fr; gap: 60px; align-items: end; }
.page-hero__intro p { max-width: 500px; margin: 0 0 8px auto; font-size: 14px; line-height: 1.9; }
.page-hero--works .page-hero__image img { object-position: 60% center; }
.page-hero--services .page-hero__image img { object-position: center 42%; }
.page-hero--about .page-hero__image img { object-position: 58% center; }
.page-hero--stories .page-hero__image img { object-position: center center; }
.page-hero--contact .page-hero__image img { object-position: 68% center; }

/* editorial layouts */
.intro-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: start; }
.intro-grid__aside { padding-top: 8px; }
.intro-grid__aside p { max-width: 360px; }
.intro-grid__body { max-width: 760px; }
.intro-grid__body .lead { margin-bottom: 32px; }
.fact-strip { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 68px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fact { min-height: 116px; padding: 22px 20px 18px 0; border-right: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; }
.fact + .fact { padding-left: 20px; }
.fact:last-child { border-right: 0; }
.fact span { color: var(--muted); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.fact strong { font-family: Georgia, "Times New Roman", serif; font-size: 18px; font-weight: 400; line-height: 1.35; }

/* works */
.feature-project { display: grid; grid-template-columns: 1.25fr .75fr; gap: 24px; align-items: stretch; }
.feature-project__image { min-height: 700px; overflow: hidden; background: #ddd; }
.feature-project__image img { height: 100%; object-fit: cover; }
.feature-project__copy { padding: 52px 46px; background: var(--soft); display: flex; flex-direction: column; justify-content: space-between; }
.feature-project__copy h3 { margin-bottom: 24px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(38px, 4vw, 58px); font-weight: 400; line-height: 1.06; letter-spacing: -.04em; }
.project-data { margin-top: 42px; border-top: 1px solid #cbc6ba; }
.project-data div { display: grid; grid-template-columns: 88px 1fr; gap: 20px; padding: 12px 0; border-bottom: 1px solid #cbc6ba; font-size: 12px; }
.project-data span { color: var(--muted); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.works-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.work-card { display: block; }
.work-card__image { overflow: hidden; background: #ddd; }
.work-card__image img { height: 100%; object-fit: cover; transition: transform .55s ease; }
.work-card:hover img { transform: scale(1.02); }
.work-card:nth-child(1) { grid-column: span 7; }
.work-card:nth-child(2) { grid-column: span 5; }
.work-card:nth-child(3) { grid-column: 2 / span 4; }
.work-card:nth-child(4) { grid-column: 6 / span 7; }
.work-card:nth-child(5), .work-card:nth-child(6) { grid-column: span 6; }
.work-card:nth-child(1) .work-card__image { aspect-ratio: 1.45; }
.work-card:nth-child(2) .work-card__image { aspect-ratio: .92; }
.work-card:nth-child(3) .work-card__image { aspect-ratio: .78; }
.work-card:nth-child(4) .work-card__image { aspect-ratio: 1.65; }
.work-card:nth-child(5) .work-card__image, .work-card:nth-child(6) .work-card__image { aspect-ratio: 1.25; }
.work-card__meta { display: flex; justify-content: space-between; gap: 16px; margin-top: 9px; color: var(--muted); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.approach-card { padding-top: 20px; border-top: 1px solid currentColor; }
.approach-card b { display: block; margin-bottom: 36px; font-family: Georgia, "Times New Roman", serif; font-size: 31px; font-weight: 400; }
.approach-card p { margin: 0; color: #aaa79f; font-size: 13px; }
.archive-list { border-top: 1px solid var(--line); }
.archive-row { display: grid; grid-template-columns: 60px 1.1fr .9fr auto; gap: 24px; align-items: center; min-height: 100px; border-bottom: 1px solid var(--line); }
.archive-row__no, .archive-row__meta { color: var(--muted); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.archive-row__title { font-family: Georgia, "Times New Roman", serif; font-size: clamp(25px, 3vw, 39px); line-height: 1.05; }

/* services */
.service-list { border-top: 1px solid var(--line); }
.service-card { display: grid; grid-template-columns: 64px 1fr 1.08fr .55fr; gap: 30px; padding: 40px 0; border-bottom: 1px solid var(--line); align-items: start; }
.service-card__no { color: var(--muted); font-size: 10px; }
.service-card h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(34px, 3.7vw, 53px); font-weight: 400; line-height: .98; letter-spacing: -.035em; }
.service-card__desc p { margin: 0 0 14px; color: var(--muted); font-size: 13px; }
.service-card__details { display: flex; flex-wrap: wrap; gap: 5px 14px; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.service-card__price { text-align: right; font-family: Georgia, "Times New Roman", serif; font-size: 24px; white-space: nowrap; }
.included-panel { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; padding: 60px; background: var(--soft); }
.included-panel h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(31px, 3.6vw, 50px); font-weight: 400; line-height: 1.18; }
.included-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 34px; }
.included-item { padding-top: 15px; border-top: 1px solid #c8c3b7; }
.included-item strong { display: block; margin-bottom: 5px; font-size: 13px; }
.included-item span { color: var(--muted); font-size: 12px; }
.usecase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.usecase { min-height: 250px; padding: 26px; border: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; }
.usecase__no { color: var(--muted); font-size: 10px; }
.usecase h3 { margin: 28px 0 12px; font-family: Georgia, "Times New Roman", serif; font-size: 26px; font-weight: 400; }
.usecase p { margin: 0; color: var(--muted); font-size: 13px; }
.process-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 20px; }
.process-step { min-height: 215px; padding-top: 16px; border-top: 1px solid currentColor; }
.process-step span { display: block; margin-bottom: 48px; color: #aaa79f; font-size: 10px; letter-spacing: .14em; }
.process-step h3 { margin-bottom: 10px; font-family: Georgia, "Times New Roman", serif; font-size: 26px; font-weight: 400; }
.process-step p { margin: 0; color: #aaa79f; font-size: 13px; }

/* about */
.portrait-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 84px; align-items: center; }
.portrait-layout__image { background: #ddd; }
.portrait-layout__image img { aspect-ratio: 4 / 5; object-fit: cover; }
.portrait-layout__copy { max-width: 680px; }
.portrait-layout__copy .lead { margin-bottom: 30px; }
.profile-table { margin-top: 42px; border-top: 1px solid var(--line); }
.profile-table div { display: grid; grid-template-columns: 140px 1fr; gap: 22px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.profile-table span { color: var(--muted); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.manifesto { max-width: 1080px; margin: auto; text-align: center; }
.manifesto blockquote { margin: 0; font-family: Georgia, "Times New Roman", "Yu Mincho", serif; font-size: clamp(34px, 5vw, 68px); line-height: 1.28; letter-spacing: -.04em; }
.manifesto p { max-width: 660px; margin: 34px auto 0; color: #aaa79f; font-size: 14px; }
.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.value { min-height: 260px; padding: 30px 44px 30px 0; border-bottom: 1px solid var(--line); }
.value:nth-child(odd) { border-right: 1px solid var(--line); }
.value:nth-child(even) { padding-left: 44px; }
.value span { color: var(--muted); font-size: 10px; letter-spacing: .14em; }
.value h3 { margin: 52px 0 12px; font-family: Georgia, "Times New Roman", serif; font-size: 35px; font-weight: 400; }
.value p { max-width: 500px; margin: 0; color: var(--muted); font-size: 13px; }
.personal-grid { display: grid; grid-template-columns: .9fr 1.1fr .82fr; gap: 18px; align-items: start; }
.personal-grid figure:nth-child(1) { margin-top: 74px; }
.personal-grid figure:nth-child(3) { margin-top: 130px; }
.personal-grid img { aspect-ratio: 4 / 5; object-fit: cover; }
.personal-grid figure:nth-child(2) img { aspect-ratio: 4 / 5.7; }
.personal-grid figcaption { margin-top: 8px; color: var(--muted); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }

/* stories */
.story-feature { display: grid; grid-template-columns: .74fr 1.26fr; gap: 76px; align-items: start; }
.story-sidebar { position: sticky; top: calc(var(--header) + 40px); }
.story-sidebar h2 { margin-bottom: 26px; }
.story-sidebar p { color: var(--muted); font-size: 14px; }
.story-chapter-list { margin-top: 36px; border-top: 1px solid var(--line); }
.story-chapter-list div { display: grid; grid-template-columns: 72px 1fr; gap: 18px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 11px; }
.story-chapter-list span { color: var(--muted); }
.story-sequence { display: grid; gap: 52px; }
.story-frame { margin: 0; }
.story-frame img { width: 100%; height: auto; }
.story-frame:nth-child(2) { width: 82%; margin-left: auto; }
.story-frame:nth-child(3) { width: 90%; }
.story-frame figcaption { display: grid; grid-template-columns: 90px 1fr; gap: 18px; margin-top: 11px; color: var(--muted); font-size: 10px; letter-spacing: .05em; }
.story-note { padding: 34px 0 8px; border-top: 1px solid var(--line); }
.story-note .lead { max-width: 760px; margin-bottom: 18px; }
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.journal-card__image { overflow: hidden; background: #ddd; }
.journal-card__image img { aspect-ratio: 1.1; object-fit: cover; transition: transform .45s ease; }
.journal-card:hover img { transform: scale(1.02); }
.journal-card__date { margin-top: 12px; color: var(--muted); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.journal-card h3 { margin: 5px 0 8px; font-family: Georgia, "Times New Roman", serif; font-size: 28px; font-weight: 400; }
.journal-card p { margin: 0; color: var(--muted); font-size: 12px; }

/* contact */
.contact-intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: 84px; align-items: start; }
.contact-intro__copy { max-width: 700px; }
.contact-intro__copy .lead { margin-bottom: 26px; }
.prep-list { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 42px; border-top: 1px solid var(--line); }
.prep-item { min-height: 140px; padding: 20px 24px 18px 0; border-bottom: 1px solid var(--line); }
.prep-item:nth-child(odd) { border-right: 1px solid var(--line); }
.prep-item:nth-child(even) { padding-left: 24px; }
.prep-item span { color: var(--muted); font-size: 9px; letter-spacing: .12em; }
.prep-item strong { display: block; margin-top: 20px; font-family: Georgia, "Times New Roman", serif; font-size: 21px; font-weight: 400; }
.form-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 78px; align-items: start; }
.form-aside { position: sticky; top: calc(var(--header) + 40px); }
.form-aside p { max-width: 360px; color: #aaa79f; font-size: 13px; }
.contact-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #aaa79f; font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: 12px 2px; border: 0; border-bottom: 1px solid #454541; border-radius: 0; outline: 0; background: transparent; color: #fff; font-size: 16px; }
.field textarea { min-height: 160px; max-height: 380px; resize: vertical; }
.field select option { color: #111; }
.field input::placeholder, .field textarea::placeholder { color: #6f6e68; opacity: 1; }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: #fff; }
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-bottom-color: #d98b7d; }
.required { color: #dab089; }
.optional { margin-left: 5px; color: #77756f; font-size: 9px; letter-spacing: .08em; }
.field-help { display: flex; justify-content: space-between; gap: 16px; color: #77756f; font-size: 10px; }
.consent { display: flex; align-items: flex-start; gap: 12px; color: #b7b4ac !important; font-size: 12px !important; line-height: 1.7; letter-spacing: 0 !important; text-transform: none !important; cursor: pointer; }
.consent input { appearance: none; -webkit-appearance: none; flex: 0 0 20px; width: 20px !important; height: 20px; min-height: 20px !important; margin: 2px 0 0; padding: 0 !important; border: 1px solid #65635e !important; border-radius: 2px; position: relative; }
.consent input:checked { background: #f4f2ec; border-color: #f4f2ec !important; }
.consent input:checked::after { content: ""; position: absolute; left: 6px; top: 2px; width: 5px; height: 10px; border: solid #111; border-width: 0 1.5px 1.5px 0; transform: rotate(45deg); }
.form-actions { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 6px; }
.submit-btn { min-width: 220px; background: #fff; border-color: #fff; color: #111; cursor: pointer; }
.submit-btn:hover { background: #dedbd2 !important; border-color: #dedbd2 !important; color: #111 !important; }
.form-actions small { color: #85827b; }
.form-status { display: none; grid-column: 1 / -1; padding: 14px 16px; border: 1px solid #3d3d38; font-size: 12px; }
.form-status.show { display: block; }
.form-status.error { border-color: #8f554f; color: #efc4be; }
.form-status.success { border-color: #536a5b; color: #cfe1d2; }
.contact-note-list { margin-top: 40px; border-top: 1px solid #353531; }
.contact-note-list div { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 15px 0; border-bottom: 1px solid #353531; }
.contact-note-list span { color: #77756f; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.contact-note-list strong { color: #b7b4ac; font-size: 12px; font-weight: 400; }

/* faq and next */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { display: grid; grid-template-columns: 70px 1fr; gap: 30px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.faq-item span { color: var(--muted); font-size: 10px; }
.faq-item h3 { margin: 0 0 7px; font-size: 14px; font-weight: 500; }
.faq-item p { margin: 0; color: var(--muted); font-size: 13px; }
.next-page { display: block; padding: 88px 0 94px; background: var(--dark); color: #fff; }
.next-page__inner { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.next-page span { color: #8b8983; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.next-page strong { display: block; margin-top: 18px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(48px, 8vw, 108px); font-weight: 400; line-height: .86; letter-spacing: -.05em; }
.next-page__arrow { font-size: 44px !important; color: #fff !important; }

footer { padding: 24px 0 calc(26px + env(safe-area-inset-bottom)); border-top: 1px solid #2b2b28; background: var(--dark); color: #79776f; font-size: 10px; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; }
.archive-signal { display: inline-flex; align-items: center; gap: 8px; opacity: .34; letter-spacing: .12em; transition: opacity .2s ease; }
.archive-signal::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: #9ab9c0; box-shadow: 0 0 7px rgba(154, 185, 192, .7); }
.archive-signal:hover, .archive-signal:focus-visible { opacity: .92; }

@supports not (height: 100dvh) { .mobile-menu-panel { height: calc(100vh - var(--header)); } }
@supports not (height: 100svh) { .page-hero { min-height: 92vh; } .page-hero__content { min-height: calc(92vh - var(--header)); } }

@media (max-width: 900px) {
  :root { --header: 64px; }
  .wrap { width: min(calc(100% - 30px), var(--max)); }
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .desktop-nav { display: none; }
  .mobile-menu-wrap { display: block; }
  .section { padding: 82px 0; }
  .page-hero { min-height: 86svh; }
  .page-hero__content { min-height: calc(86svh - var(--header)); padding-top: 74px; padding-bottom: 28px; }
  .page-hero__topline { top: 26px; }
  .page-hero__topline span:last-child { display: none; }
  .page-hero__intro, .section-heading, .intro-grid, .portrait-layout, .story-feature, .contact-intro, .form-layout, .included-panel { grid-template-columns: 1fr; }
  .page-hero__intro { gap: 22px; }
  .page-hero__intro p { margin: 0; max-width: 520px; font-size: 12px; }
  .display { font-size: clamp(54px, 16vw, 84px); line-height: .92; }
  .display .small-line { font-size: .3em; }
  .section-heading { gap: 24px; margin-bottom: 38px; }
  .section-heading > p { margin: 0; }
  .section-title { font-size: clamp(40px, 12vw, 60px); }
  .intro-grid { gap: 34px; }
  .intro-grid__aside p { max-width: none; }
  .fact-strip { grid-template-columns: repeat(2, 1fr); margin-top: 46px; }
  .fact:nth-child(2) { border-right: 0; }
  .fact:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .feature-project { grid-template-columns: 1fr; }
  .feature-project__image { min-height: 0; }
  .feature-project__image img { height: auto; }
  .feature-project__copy { padding: 34px 24px; gap: 42px; }
  .works-grid { display: block; }
  .work-card { margin-bottom: 32px; }
  .work-card__image { aspect-ratio: auto !important; }
  .work-card__image img { height: auto; object-fit: contain; }
  .approach-grid { grid-template-columns: 1fr; gap: 26px; }
  .approach-card b { margin-bottom: 18px; }
  .archive-row { grid-template-columns: 38px 1fr auto; gap: 14px; min-height: 88px; }
  .archive-row__meta { grid-column: 2 / -1; margin-top: -20px; }
  .service-card { grid-template-columns: 34px 1fr auto; gap: 12px; padding: 28px 0; }
  .service-card h3 { font-size: 31px; }
  .service-card__desc { grid-column: 2 / -1; }
  .service-card__price { font-size: 19px; }
  .included-panel { gap: 38px; padding: 34px 23px; }
  .usecase-grid, .process-list, .journal-grid { grid-template-columns: 1fr; }
  .usecase { min-height: 220px; }
  .process-step { min-height: auto; padding-bottom: 12px; }
  .process-step span { margin-bottom: 24px; }
  .portrait-layout { gap: 38px; }
  .portrait-layout__image { width: 88%; margin: auto; }
  .value { padding-right: 24px; }
  .value:nth-child(even) { padding-left: 24px; }
  .personal-grid { grid-template-columns: 1fr; gap: 30px; }
  .personal-grid figure, .personal-grid figure:nth-child(1), .personal-grid figure:nth-child(3) { width: 92%; margin: 0; }
  .personal-grid figure:nth-child(2) { width: 78%; margin-left: auto; }
  .personal-grid img, .personal-grid figure:nth-child(2) img { height: auto; aspect-ratio: auto; }
  .story-sidebar, .form-aside { position: static; }
  .story-sequence { gap: 32px; }
  .story-frame, .story-frame:nth-child(2), .story-frame:nth-child(3) { width: 100%; margin: 0; }
  .prep-list { margin-top: 34px; }
  .contact-form { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .form-actions { grid-column: auto; display: block; }
  .submit-btn { width: 100%; }
  .form-actions small { display: block; margin-top: 14px; text-align: center; }
  .faq-item { grid-template-columns: 42px 1fr; gap: 12px; }
  .next-page { padding: 65px 0 72px; }
  .footer-inner { flex-direction: column; }
  .archive-signal { width: fit-content; }
  .desktop-break { display: none; }
}

@media (max-width: 560px) {
  .fact-strip { grid-template-columns: 1fr; }
  .fact, .fact + .fact { min-height: 91px; padding: 15px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .fact:last-child { border-bottom: 0; }
  .included-grid, .value-grid, .prep-list { grid-template-columns: 1fr; }
  .value, .value:nth-child(even), .prep-item, .prep-item:nth-child(even) { min-height: auto; padding: 22px 0; border-right: 0; }
  .value h3 { margin-top: 28px; }
  .story-frame figcaption { grid-template-columns: 70px 1fr; }
  .archive-row__title { font-size: 24px; }
  .page-hero--contact .display { font-size: clamp(48px, 15vw, 72px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
