:root {
  --ink: #11110f;
  --ink-soft: #1b1b18;
  --paper: #f3efe7;
  --paper-2: #e4dccf;
  --white: #fffdf9;
  --acid: #b89455;
  --clay: #965c45;
  --stone: #7d766c;
  --muted: #655f56;
  --line: rgba(17, 17, 15, .17);
  --line-dark: rgba(255, 255, 255, .17);
  --shadow: 0 26px 70px rgba(30, 26, 20, .14);
  --font-body: "Avenir Next", "Segoe UI", Arial, sans-serif;
  --font-display: "Avenir Next", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { color: inherit; }
.shell { width: min(1280px, calc(100% - 44px)); margin: 0 auto; }
.narrow { width: min(880px, calc(100% - 44px)); margin: 0 auto; }
.skip-link { position: fixed; left: 14px; top: -100px; z-index: 100; background: var(--acid); color: #111; padding: 10px 14px; }
.skip-link:focus { top: 14px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(243, 239, 231, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(15px);
}
.site-header.dark { position: absolute; inset: 0 0 auto; background: transparent; color: white; border: 0; }
.nav { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { font-family: var(--font-display); font-size: 23px; letter-spacing: -.055em; text-decoration: none; white-space: nowrap; }
.brand strong { font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: clamp(12px, 1.6vw, 24px); font-size: 14px; }
.nav-links a { text-decoration: none; position: relative; }
.nav-links a:not(.button):after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1px; background: currentColor; transition: right .22s ease; }
.nav-links a:hover:after, .nav-links a[aria-current="page"]:after { right: 0; }
.language { display: inline-flex; align-items: center; gap: 7px; border-left: 1px solid currentColor; padding-left: 20px; opacity: .8; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 20px; padding: 13px 18px; border: 1px solid currentColor; border-radius: 99px; text-decoration: none; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.light { background: var(--white); color: var(--ink); border-color: var(--white); }
.button.acid { background: var(--acid); color: var(--ink); border-color: var(--acid); }
.button.arrow:after { content: "↗"; opacity: .65; }
.menu-toggle { display: none; border: 1px solid currentColor; border-radius: 99px; background: transparent; padding: 9px 14px; }

.hero { min-height: 92vh; color: white; background: #0f0f0d; display: flex; align-items: flex-end; position: relative; overflow: hidden; }
.hero:before, .hero:after { content: ""; position: absolute; inset: 0; background-position: center; background-size: cover; background-repeat: no-repeat; }
.hero:before { background-image: linear-gradient(0deg, rgba(0,0,0,.35), transparent 32%), linear-gradient(90deg, rgba(8,8,7,.78), rgba(8,8,7,.25) 54%, rgba(8,8,7,.05)), var(--hero-start); }
.hero:after { background-image: linear-gradient(0deg, rgba(0,0,0,.35), transparent 32%), linear-gradient(90deg, rgba(8,8,7,.78), rgba(8,8,7,.25) 54%, rgba(8,8,7,.05)), var(--hero-end); opacity: 0; animation: hero-reveal 1.9s cubic-bezier(.4,0,.2,1) .9s forwards; }
@keyframes hero-reveal { to { opacity: 1; } }
.hero-content { position: relative; z-index: 2; padding: 175px 0 62px; }
.eyebrow { font-size: 12px; text-transform: uppercase; letter-spacing: .18em; margin-bottom: 22px; }
.hero h1, .page-hero h1, .display { font-family: var(--font-display); font-weight: 300; letter-spacing: -.06em; line-height: .9; }
.hero h1 { font-size: clamp(58px, 9.2vw, 132px); margin: 0; max-width: 1080px; }
.hero h1 em { color: var(--acid); font-style: normal; }
.hero-foot { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-top: 43px; }
.hero-copy { font-size: 18px; max-width: 520px; color: rgba(255,255,255,.84); }
.hero-location { font-size: 13px; text-transform: uppercase; letter-spacing: .12em; white-space: nowrap; }
.page-hero { padding: 160px 0 86px; border-bottom: 1px solid var(--line); background: linear-gradient(90deg, var(--panel-1,rgba(211,201,187,.55)) 0 33.333%, var(--panel-2,rgba(232,224,212,.38)) 33.333% 66.666%, var(--panel-3,rgba(194,181,163,.48)) 66.666% 100%), url('/assets/resinlove/home-texture-v2.webp') center/cover no-repeat; }
.page-hero.dark-panel { color: white; border: 0; }
.page-hero h1 { font-size: clamp(58px, 9vw, 122px); margin: 0; max-width: 1080px; }
.page-hero h1 em { color: var(--clay); font-style: normal; }
.page-hero.dark-panel h1 em { color: var(--acid); }
.page-hero p { max-width: 660px; font-size: 19px; color: var(--muted); margin: 34px 0 0 auto; }
.page-hero.dark-panel p { color: rgba(255,255,255,.76); }
body[data-page="surfaces"] .page-hero { --panel-1:rgba(55,50,45,.84); --panel-2:rgba(92,83,75,.75); --panel-3:rgba(132,119,105,.64); }
body[data-page="spaces"] .page-hero { --panel-1:rgba(208,197,181,.51); --panel-2:rgba(235,228,217,.30); --panel-3:rgba(190,174,154,.43); }
body[data-page="process"] .page-hero { --panel-1:rgba(65,59,53,.82); --panel-2:rgba(103,94,85,.72); --panel-3:rgba(145,130,113,.61); }
body[data-page="kate"] .page-hero { --panel-1:rgba(222,210,192,.46); --panel-2:rgba(242,236,226,.25); --panel-3:rgba(198,179,157,.43); }
body[data-page="journal"] .page-hero { --panel-1:rgba(58,52,47,.84); --panel-2:rgba(94,84,75,.75); --panel-3:rgba(137,120,104,.63); }
body[data-page="contact"] .page-hero { --panel-1:rgba(216,204,187,.49); --panel-2:rgba(241,234,223,.27); --panel-3:rgba(191,173,151,.45); }

.section { padding: 112px 0; }
.section.compact { padding: 76px 0; }
.section.dark { background: var(--ink); color: white; }
.section.acid { background: #d5c19d; }
.section.clay { background: var(--clay); color: white; }
.section-kicker { font-size: 12px; text-transform: uppercase; letter-spacing: .17em; margin-bottom: 25px; }
.intro-grid { display: grid; grid-template-columns: .62fr 1.38fr; gap: 80px; }
.lead { font-family: var(--font-display); font-size: clamp(38px, 5.4vw, 74px); line-height: 1.02; letter-spacing: -.05em; margin: 0; }
.lead .muted { color: #9a958a; }
.prose { font-size: 18px; max-width: 720px; }
.prose p { margin: 0 0 1.2em; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.rule-grid { margin-top: 66px; padding-top: 24px; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px; color: #56534d; }

.route-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; margin-top: 54px; }
.route-card { min-height: 370px; padding: 28px; position: relative; overflow: hidden; text-decoration: none; color: white; display: flex; flex-direction: column; justify-content: space-between; background: #222; }
.route-card:nth-child(1) { grid-column: span 7; }
.route-card:nth-child(2) { grid-column: span 5; }
.route-card:nth-child(3) { grid-column: span 5; }
.route-card:nth-child(4) { grid-column: span 7; }
.route-card:before { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,10,8,.73), rgba(10,10,8,.08)), var(--image) center/cover no-repeat; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.route-card:hover:before { transform: scale(1.035); }
.route-card > * { position: relative; z-index: 1; }
.route-card small { text-transform: uppercase; letter-spacing: .13em; }
.route-card h3 { font-family: var(--font-display); font-size: clamp(34px, 4vw, 55px); letter-spacing: -.045em; line-height: .98; font-weight: 300; margin: 0; }

.finish-lab { background: var(--ink); color: white; }
.lab-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; margin-bottom: 54px; }
.lab-head h2 { font-family: var(--font-display); font-size: clamp(46px, 6vw, 80px); line-height: .96; letter-spacing: -.05em; font-weight: 300; max-width: 840px; margin: 0; }
.lab-head p { max-width: 330px; color: #aaa79f; margin: 0; }
.finish-layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); gap: 20px; }
.surface-demo { min-height: 510px; position: relative; overflow: hidden; background: #393833; }
.surface-demo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.surface-word { position: absolute; z-index: 2; left: 26px; bottom: 19px; font-family: var(--font-display); font-size: clamp(52px, 8vw, 112px); line-height: .82; letter-spacing: -.065em; color: rgba(255,255,255,.73); }
.finish-controls { border: 1px solid var(--line-dark); padding: 28px; min-height: 510px; display: flex; flex-direction: column; }
.tabs, .filters { display: flex; gap: 8px; flex-wrap: wrap; }
.tab, .filter { border: 1px solid #454541; color: #b6b2aa; background: transparent; border-radius: 99px; padding: 10px 14px; cursor: pointer; }
.tab[aria-selected="true"], .filter[aria-pressed="true"] { background: var(--acid); border-color: var(--acid); color: #111; }
.finish-number { margin-top: auto; font-family: var(--font-display); font-size: 74px; font-weight: 300; color: #41413d; }
.finish-title { font-size: 32px; margin: 2px 0 12px; }
.finish-copy { color: #aaa79f; min-height: 76px; margin: 0; }
.finish-note { margin: 22px 0 0; padding-top: 19px; border-top: 1px solid var(--line-dark); color: #aaa79f; font-size: 14px; }
.finish-note strong { color: #ddd7cc; }

.steps { border-top: 1px solid var(--line); }
.step { display: grid; grid-template-columns: 78px 1fr; gap: 24px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.step-num { color: #8d887f; }
.step h3 { font-size: 21px; margin: 0 0 7px; font-weight: 500; }
.step p { color: var(--muted); margin: 0; max-width: 720px; }
.dark .steps { border-color: var(--line-dark); }
.dark .step { border-color: var(--line-dark); }
.dark .step p { color: #aaa79f; }

.catalog-toolbar { display: flex; justify-content: space-between; gap: 30px; align-items: flex-end; margin: 50px 0 28px; }
.catalog-toolbar p { color: var(--muted); max-width: 420px; margin: 0; }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.catalog-card { border: 1px solid var(--line); background: var(--white); min-height: 400px; display: flex; flex-direction: column; transition: opacity .25s ease, transform .25s ease; }
.catalog-card[hidden] { display: none; }
.catalog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.sample { height: 220px; position: relative; overflow: hidden; background: #ddd8ce; }
.sample img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.catalog-card:hover .sample img { transform: scale(1.025); }
.catalog-body { padding: 23px; display: flex; flex-direction: column; flex: 1; }
.catalog-meta { display: flex; justify-content: space-between; gap: 20px; color: #807c74; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.catalog-card h3 { font-family: var(--font-display); font-size: 30px; font-weight: 400; letter-spacing: -.04em; margin: 25px 0 9px; }
.catalog-card p { color: var(--muted); margin: 0; }
.catalog-tags { margin-top: auto; padding-top: 24px; display: flex; gap: 7px; flex-wrap: wrap; }
.catalog-tags span { border: 1px solid var(--line); border-radius: 99px; font-size: 12px; padding: 5px 9px; }
.note { margin-top: 26px; padding: 19px 22px; border-left: 3px solid var(--acid); background: #e9e2d6; color: #514b43; }

.image-block { min-height: 520px; background: var(--image) center/cover no-repeat; position: relative; }
.feature-split { display: grid; grid-template-columns: minmax(340px,.85fr) minmax(0,1.15fr); gap: clamp(42px,7vw,96px); align-items: start; }
.feature-split > .image-block { position: sticky; top: 110px; min-height: 720px; }
.process-visuals { position: sticky; top: 110px; display: grid; gap: 14px; }
.process-visuals .image-block { min-height: 350px; }
.process-visuals .craft-tools { min-height: 270px; background-position: center 66%; }
.space-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.space-story { grid-column: span 6; border-top: 1px solid var(--line); padding-top: 22px; }
.space-story.wide { grid-column: span 12; display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; }
.space-story h2 { font-family: var(--font-display); font-size: 45px; font-weight: 300; letter-spacing: -.045em; margin: 14px 0 15px; }
.space-story p { color: var(--muted); max-width: 570px; }
.space-story .image-block { margin-top: 26px; min-height: 390px; }

.profile-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 72px; align-items: start; }
.profile-visuals { display: grid; grid-template-columns: .9fr 1.1fr; gap: 14px; align-self: start; }
.profile-image { min-height: 430px; background: linear-gradient(0deg,rgba(17,17,15,.12),rgba(17,17,15,0)), var(--image) center/cover; }
.profile-image.palette { grid-column: 1 / -1; min-height: 390px; }
.profile-image.portrait, .profile-image.table { min-height: 460px; }
.profile-pending { display: flex; align-items: flex-end; padding: 30px; background: radial-gradient(circle at 70% 25%, rgba(255,255,255,.65), transparent 26%), linear-gradient(145deg, #d8caba 0%, #9b8875 44%, #373632 100%); color: #fff; }
.profile-pending strong, .profile-pending span { display: block; }
.profile-pending strong { font-family: var(--font-display); font-size: clamp(34px,4vw,55px); font-weight: 300; letter-spacing: -.04em; }
.profile-pending span { margin-top: 6px; color: rgba(255,255,255,.72); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.profile-copy h2 { font-family: var(--font-display); font-size: clamp(43px, 5.5vw, 73px); font-weight: 300; line-height: 1; letter-spacing: -.05em; margin: 0 0 38px; }
.profile-copy p { font-size: 18px; color: #56534d; margin: 0 0 1.3em; }
.profile-points { margin-top: 45px; border-top: 1px solid var(--line); }
.profile-point { display: grid; grid-template-columns: 45px 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); }

.journal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.journal-card { background: var(--white); border: 1px solid var(--line); }
.journal-link { display: block; color: inherit; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.journal-link:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.journal-link .copy span { display: inline-block; margin-top: 12px; font-weight: 600; }
.journal-card img { width: 100%; aspect-ratio: 1.12; object-fit: cover; }
.journal-card .copy { padding: 24px; }
.journal-card small { color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }
.journal-card h2 { font-family: var(--font-display); font-weight: 400; font-size: 30px; line-height: 1.08; letter-spacing: -.04em; margin: 18px 0 13px; }
.journal-card p { color: var(--muted); }

.quote { background: #c8ad7a; padding: 102px 0; }
.quote blockquote { font-family: var(--font-display); font-size: clamp(44px, 7vw, 98px); line-height: .98; letter-spacing: -.06em; margin: 0; max-width: 1160px; }
.quote footer { margin-top: 34px; font-size: 13px; text-transform: uppercase; letter-spacing: .14em; }

.contact-panel { background: var(--ink); color: white; padding: 110px 0 38px; }
.contact-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 72px; }
.contact-panel h2 { font-family: var(--font-display); font-size: clamp(55px, 8vw, 105px); line-height: .9; letter-spacing: -.06em; font-weight: 300; margin: 0; }
.contact-panel h2 span { color: var(--acid); }
.contact-actions { align-self: end; border-top: 1px solid #464640; padding-top: 25px; }
.contact-actions p { color: #aaa79f; font-size: 18px; margin: 0 0 25px; }
.contact-actions .button { margin: 0 8px 10px 0; }

.contact-list { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.contact-item { padding: 30px 20px 30px 0; border-bottom: 1px solid var(--line); }
.contact-item small { display: block; text-transform: uppercase; letter-spacing: .13em; color: var(--muted); margin-bottom: 8px; }
.contact-item a { font-size: 20px; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.contact-feature { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(42px,7vw,92px); align-items: start; }
.contact-feature > .image-block { min-height: 720px; position: sticky; top: 110px; }
.contact-socials { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 34px; }
.contact-socials a { border: 1px solid var(--line); border-radius: 99px; padding: 10px 14px; text-decoration: none; }

.audience { background: #dfd3c1; }
.audience-card { min-height: 350px; padding: 34px; border: 1px solid rgba(17,17,15,.25); text-decoration: none; display: flex; flex-direction: column; transition: transform .2s ease, background .2s ease; }
.audience-card:hover { transform: translateY(-3px); background: var(--white); }
.audience-card small, .form-head small, .faq-card small, .article-prose small { text-transform: uppercase; letter-spacing: .14em; color: var(--muted); }
.audience-card h2 { font-family: var(--font-display); font-size: clamp(34px, 4vw, 55px); line-height: 1; letter-spacing: -.05em; font-weight: 300; margin: 34px 0 20px; }
.audience-card p { color: var(--muted); font-size: 17px; max-width: 520px; }
.audience-card span { margin-top: auto; padding-top: 30px; font-weight: 600; }

.faq-index { background: #e6ded2; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 64px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.faq-card { min-height: 285px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-decoration: none; display: flex; flex-direction: column; background: rgba(255,255,255,.16); transition: background .2s ease; }
.faq-card:hover { background: var(--white); }
.faq-card h2 { font-family: var(--font-display); font-size: clamp(28px, 3.1vw, 43px); line-height: 1.04; letter-spacing: -.045em; font-weight: 300; margin: 30px 0; }
.faq-card span { margin-top: auto; }
.article-prose > section { padding: 0 0 54px; margin: 0 0 54px; border-bottom: 1px solid var(--line); }
.article-prose h2 { font-family: var(--font-display); font-size: clamp(35px, 4.4vw, 58px); line-height: 1.02; letter-spacing: -.05em; font-weight: 300; margin: 18px 0 22px; }
.article-prose p { color: var(--muted); font-size: 19px; line-height: 1.7; }

.visualisation-story { background: #ddd2c3; }
.before-after-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 64px; }
.before-after-grid figure { margin: 0; }
.before-after-grid img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.before-after-grid figcaption { border: 1px solid var(--line); border-top: 0; padding: 14px 16px; text-transform: uppercase; letter-spacing: .13em; font-size: 12px; }

.form-layout { display: grid; grid-template-columns: minmax(0,.85fr) minmax(420px,1.15fr); gap: 74px; align-items: start; }
.consultation-form { padding: clamp(26px,4vw,52px); background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); }
.form-head { margin-bottom: 38px; }
.form-head h2 { font-family: var(--font-display); font-size: clamp(37px,4.5vw,61px); line-height: 1; letter-spacing: -.05em; font-weight: 300; margin: 16px 0 0; }
.consultation-form label { display: grid; gap: 9px; margin-bottom: 21px; font-size: 14px; font-weight: 600; }
.consultation-form input, .consultation-form select, .consultation-form textarea { width: 100%; border: 1px solid #bbb3a7; border-radius: 0; background: #fbf8f2; color: var(--ink); padding: 14px 15px; min-height: 51px; }
.consultation-form textarea { resize: vertical; }
.consultation-form input:focus, .consultation-form select:focus, .consultation-form textarea:focus { outline: 2px solid var(--acid); outline-offset: 2px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.consultation-form .check { display: flex; grid-template-columns: none; align-items: flex-start; gap: 12px; font-weight: 400; line-height: 1.45; }
.consultation-form .check input { width: 19px; min-height: 19px; flex: 0 0 19px; margin-top: 2px; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-submit { border: 0; cursor: pointer; font-weight: 600; }
.form-note, .form-error { color: var(--muted); font-size: 13px; margin: 17px 0 0; }
.form-error { color: #8d2d22; }

.site-footer { background: var(--ink); color: #aaa69e; border-top: 1px solid #353531; padding: 72px 0 24px; font-size: 13px; }
.footer-main { display: grid; grid-template-columns: 1.15fr .925fr .925fr; gap: 20px; }
.footer-brand { padding-right: 54px; }
.footer-brand .brand { color: #fff; font-size: 30px; }
.footer-brand p { line-height: 1.75; margin: 20px 0; }
.footer-brand small { color: #77746d; }
.footer-path { min-height: 240px; border: 1px solid #393936; padding: 28px; text-decoration: none; display: flex; flex-direction: column; transition: background .2s ease, transform .2s ease; }
.footer-path:hover { background: #1b1b18; transform: translateY(-2px); }
.footer-path small { text-transform: uppercase; letter-spacing: .14em; color: var(--acid); }
.footer-path strong { color: #fff; font-family: var(--font-display); font-size: 31px; font-weight: 300; line-height: 1.05; margin: 33px 0 14px; }
.footer-path span { margin-top: auto; }
.footer-bottom { border-top: 1px solid #353531; margin-top: 56px; padding-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-socials { display: flex; gap: 9px; }
.footer-socials a { width: 35px; height: 35px; display: grid; place-items: center; border: 1px solid #494944; border-radius: 50%; text-decoration: none; color: #ddd8cf; font-weight: 600; }
.footer-legal { display: flex; gap: 24px; align-items: center; }
.footer-legal a { color: #ddd8cf; text-underline-offset: 4px; }

.privacy h2 { font-family: var(--font-display); font-size: 31px; font-weight: 400; letter-spacing: -.03em; margin: 2.2em 0 .6em; }
.privacy p, .privacy li { color: #55514a; }

.language-gate { min-height: 100vh; background: var(--ink); color: white; display: grid; place-items: center; text-align: center; padding: 40px; }
.language-gate h1 { font-family: var(--font-display); font-size: clamp(58px, 10vw, 120px); letter-spacing: -.065em; font-weight: 300; margin: 0 0 20px; }
.language-gate p { color: #aaa79f; }
.language-gate .choices { display: flex; gap: 12px; justify-content: center; margin-top: 30px; }

@media (max-width: 1080px) {
  .nav-links { display: none; position: fixed; inset: 0; min-height: 100vh; background: var(--paper); color: var(--ink); padding: 110px 24px 40px; flex-direction: column; align-items: flex-start; font-size: 27px; }
  .dark .nav-links, .site-header.dark .nav-links { background: var(--ink); color: white; }
  body.nav-open .nav-links { display: flex; }
  .menu-toggle { display: inline-flex; position: relative; z-index: 40; }
  .language { border: 0; padding-left: 0; }
  .intro-grid, .profile-grid, .contact-grid, .form-layout, .feature-split, .contact-feature { grid-template-columns: 1fr; gap: 46px; }
  .profile-visuals { grid-template-columns: 1fr 1fr; }
  .profile-image.portrait { min-height: 520px; }
  .feature-split > .image-block { position: relative; top: auto; min-height: 520px; }
  .process-visuals { position: relative; top: auto; }
  .profile-image { position: relative; top: auto; min-height: 520px; }
  .contact-feature > .image-block { position: relative; top: auto; min-height: 520px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; padding-right: 0; }
  .three-col, .catalog-grid, .journal-grid { grid-template-columns: repeat(2, 1fr); }
  .four-col { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .shell, .narrow { width: min(100% - 28px, 1280px); }
  .nav { min-height: 68px; }
  .hero { min-height: 800px; }
  .hero:before, .hero:after { background-position: 56% center; }
  .hero:before { background-image: linear-gradient(0deg, rgba(8,8,7,.88), rgba(8,8,7,.08) 67%), var(--hero-start); }
  .hero:after { background-image: linear-gradient(0deg, rgba(8,8,7,.88), rgba(8,8,7,.08) 67%), var(--hero-end); }
  .hero-content { padding: 135px 0 38px; }
  .hero h1 { font-size: 56px; }
  .hero-foot { display: block; }
  .hero-location { margin-top: 25px; white-space: normal; }
  .page-hero { padding: 120px 0 62px; }
  .page-hero h1 { font-size: 56px; }
  .page-hero p { margin-left: 0; }
  .section { padding: 78px 0; }
  .section.compact { padding: 58px 0; }
  .rule-grid, .two-col, .three-col, .four-col, .catalog-grid, .journal-grid, .contact-list, .faq-grid, .form-row, .before-after-grid, .footer-main { grid-template-columns: 1fr; }
  .route-card:nth-child(n) { grid-column: span 12; min-height: 320px; }
  .lab-head { display: block; }
  .lab-head p { margin-top: 22px; }
  .finish-layout { grid-template-columns: 1fr; }
  .surface-demo { min-height: 370px; }
  .finish-controls { min-height: 335px; }
  .catalog-toolbar { display: block; }
  .catalog-toolbar p { margin-bottom: 22px; }
  .space-story, .space-story.wide { grid-column: span 12; display: block; }
  .profile-visuals { grid-template-columns: 1fr; }
  .profile-image, .profile-image.palette, .profile-image.portrait, .profile-image.team, .profile-image.table { min-height: 360px; }
  .image-block { min-height: 390px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom, .footer-legal { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .hero:after { animation: none; opacity: 1; }
  html { scroll-behavior: auto; }
  *, *:before, *:after { transition: none !important; }
}
