:root {
  --paper: #f0e8d5;
  --paper-light: #f8f3e8;
  --paper-deep: #dfd2b7;
  --ink: #251c16;
  --forest: #2f3d2d;
  --forest-dark: #1e291f;
  --moss: #667359;
  --red: #914235;
  --gold: #d19f2d;
  --line: rgba(37, 28, 22, 0.22);
  --content: 1240px;
  --serif: "Nanum Myeongjo", "AppleMyungjo", "Batang", serif;
  --body: "Gowun Batang", "Apple SD Gothic Neo", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(37, 28, 22, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 28, 22, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: 32px 32px;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  word-break: keep-all;
  overflow-x: clip;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.12;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd,
ol,
ul {
  margin-top: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--paper-light);
  background: var(--forest-dark);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.site-header {
  position: relative;
  z-index: 10;
  width: min(calc(100% - 64px), var(--content));
  min-height: 96px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
}

.brand-hanja {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--ink);
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: -0.1em;
  transform: rotate(-2deg);
}

.brand-korean {
  display: flex;
  flex-direction: column;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.1;
}

.brand-korean small {
  margin-top: 7px;
  font-family: Georgia, serif;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.18em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  min-height: 46px;
  padding: 10px 17px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--ink);
  font-size: 13px;
  transition: color 180ms ease, background 180ms ease;
}

.header-cta:hover {
  color: var(--paper-light);
  background: var(--ink);
}

.hero {
  position: relative;
  width: min(calc(100% - 64px), var(--content));
  min-height: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  gap: 72px;
  align-items: center;
  padding: 76px 0 90px;
}

.hero::after {
  position: absolute;
  bottom: 46px;
  left: -2vw;
  width: 170px;
  height: 170px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-left: 20px;
}

.eyebrow,
.section-label {
  margin-bottom: 28px;
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.hero h1 {
  margin-bottom: 30px;
  font-family: var(--serif);
  font-size: clamp(64px, 7.1vw, 104px);
  font-weight: 400;
  letter-spacing: -0.1em;
  line-height: 0.92;
}

.hero h1 span,
.hero h1 strong,
.hero h1 em {
  display: block;
}

.hero h1 span {
  padding-left: 0.6em;
  font-size: 0.56em;
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 1.5;
}

.hero h1 strong {
  font-weight: 800;
}

.hero h1 em {
  padding-left: 2.55em;
  color: var(--red);
  font-weight: 400;
  font-style: normal;
}

.hero-lead {
  margin-bottom: 34px;
  padding-left: 44px;
  font-size: 18px;
  line-height: 1.85;
}

.hero-actions {
  padding-left: 44px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  min-height: 52px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 700;
  transition: transform 160ms ease, color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-dark {
  color: var(--paper-light);
  background: var(--forest-dark);
  border-color: var(--forest-dark);
}

.button-dark:hover {
  background: var(--red);
  border-color: var(--red);
}

.text-link,
.visit-text-link {
  padding: 11px 0 8px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
}

.hero-notes {
  margin: 48px 0 0 44px;
  padding: 17px 0;
  display: flex;
  gap: 22px;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}

.hero-notes li:not(:last-child)::after {
  padding-left: 22px;
  color: var(--red);
  content: "·";
}

.hero-photo {
  position: relative;
  z-index: 1;
  margin: 0;
  align-self: stretch;
  min-height: 560px;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(248, 243, 232, 0.45);
  transform: rotate(1.2deg);
}

.hero-photo::before {
  position: absolute;
  inset: 8px;
  z-index: 2;
  border: 1px solid rgba(240, 232, 213, 0.62);
  content: "";
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
  object-position: 51% 46%;
  filter: saturate(0.78) contrast(1.03) sepia(0.08);
}

.hero-photo figcaption {
  position: absolute;
  right: 38px;
  bottom: 40px;
  z-index: 3;
  max-width: 280px;
  padding: 15px 19px;
  color: var(--paper-light);
  background: rgba(30, 41, 31, 0.92);
  font-size: 11px;
  line-height: 1.55;
}

.hero-photo figcaption span {
  display: block;
  margin-bottom: 4px;
  color: #d9c998;
  font-family: Georgia, serif;
  font-size: 9px;
  letter-spacing: 0.16em;
}

.hero-seal {
  position: absolute;
  top: -25px;
  left: -36px;
  z-index: 4;
  width: 118px;
  height: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--paper-light);
  background: var(--red);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px var(--red), inset 0 0 0 6px rgba(240, 232, 213, 0.6);
  font-size: 10px;
  line-height: 1.2;
  transform: rotate(-9deg);
}

.hero-seal strong {
  margin: 4px 0;
  font-family: var(--serif);
  font-size: 21px;
}

.hero-seal small {
  font-family: Georgia, serif;
  font-size: 7px;
  letter-spacing: 0.18em;
}

.hero-side-copy {
  position: absolute;
  right: -58px;
  top: 50%;
  margin: 0;
  font-family: Georgia, serif;
  font-size: 9px;
  letter-spacing: 0.22em;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.ticker {
  overflow: hidden;
  color: var(--paper-light);
  background: var(--forest-dark);
  border-top: 1px solid var(--forest-dark);
  border-bottom: 1px solid var(--forest-dark);
}

.ticker-track {
  width: max-content;
  min-width: 100%;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 38px;
  padding: 0 24px;
  animation: ticker 28s linear infinite;
}

.ticker span {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.ticker i {
  color: var(--gold);
  font-style: normal;
}

@keyframes ticker {
  to { transform: translateX(-30%); }
}

.story {
  width: min(calc(100% - 64px), var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 90px;
  padding: 150px 0 140px;
}

.story-title h2,
.menu-heading h2,
.visit-panel h2,
.voices-heading h2,
.final-cta h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 6.4vw, 88px);
  font-weight: 400;
  letter-spacing: -0.09em;
  line-height: 1.05;
}

.story-title h2 em,
.final-cta h2 em {
  color: var(--red);
  font-weight: 800;
  font-style: normal;
}

.story-copy {
  padding: 84px 10% 0 0;
}

.story-intro {
  margin-bottom: 32px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.65;
}

.story-copy > p:last-child {
  max-width: 540px;
  color: rgba(37, 28, 22, 0.72);
  font-size: 15px;
}

.promise-list {
  grid-column: 1 / -1;
  margin: 72px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.promise-list li {
  position: relative;
  min-height: 196px;
  padding: 32px 36px;
}

.promise-list li:not(:last-child) {
  border-right: 1px solid var(--line);
}

.promise-list span {
  display: block;
  margin-bottom: 38px;
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 11px;
}

.promise-list strong {
  display: block;
  margin-bottom: 9px;
  font-family: var(--serif);
  font-size: 22px;
}

.promise-list p {
  margin: 0;
  color: rgba(37, 28, 22, 0.7);
  font-size: 13px;
}

.menu-section {
  padding: 142px max(32px, calc((100vw - var(--content)) / 2));
  color: var(--paper-light);
  background:
    radial-gradient(circle at 84% 14%, rgba(209, 159, 45, 0.11), transparent 24%),
    linear-gradient(110deg, transparent 48%, rgba(255, 255, 255, 0.018) 48%),
    var(--forest-dark);
}

.menu-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 78px;
}

.menu-heading .section-label {
  grid-column: 1 / -1;
  margin-bottom: -20px;
  color: #d5b86b;
}

.menu-heading h2 {
  max-width: 700px;
}

.menu-heading > p:last-child {
  max-width: 440px;
  margin: 0 0 8px;
  color: rgba(248, 243, 232, 0.66);
  font-size: 14px;
}

.menu-ledger {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(248, 243, 232, 0.38);
  border-bottom: 1px solid rgba(248, 243, 232, 0.38);
}

.menu-item {
  position: relative;
  min-height: 500px;
  padding: 34px 34px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.menu-item:not(:last-child) {
  border-right: 1px solid rgba(248, 243, 232, 0.28);
}

.menu-item::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  content: "";
  opacity: 0.62;
  filter: blur(0.5px);
  transition: transform 500ms ease;
}

.menu-item:hover::after {
  transform: scale(1.15) translate(-10px, -10px);
}

.menu-item-matcha::after { background: #6a7d4f; }
.menu-item-cheese::after { background: #d2a131; }
.menu-item-hoji::after { background: #8b5941; }

.menu-number {
  position: relative;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(248, 243, 232, 0.38);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 13px;
}

.menu-copy {
  position: relative;
  z-index: 2;
}

.menu-kind {
  margin-bottom: 12px;
  color: #d5b86b;
  font-family: Georgia, serif;
  font-size: 9px;
  letter-spacing: 0.2em;
}

.menu-copy h3 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 1.17;
}

.menu-copy > p:last-child {
  max-width: 280px;
  margin-bottom: 0;
  color: rgba(248, 243, 232, 0.7);
  font-size: 13px;
}

.menu-mark {
  position: absolute;
  right: -2px;
  bottom: 12px;
  z-index: 1;
  color: rgba(248, 243, 232, 0.16);
  font-family: var(--serif);
  font-size: 94px;
  font-weight: 800;
  writing-mode: vertical-rl;
}

.daily-note {
  margin-top: 50px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.daily-stamp {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  color: #d9cdb3;
  border: 2px solid var(--red);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  transform: rotate(-7deg);
}

.daily-note p {
  margin-bottom: 3px;
  color: rgba(248, 243, 232, 0.65);
  font-size: 12px;
}

.daily-note strong {
  font-family: var(--serif);
  font-size: 17px;
}

.daily-note > a {
  padding: 12px 0 8px;
  border-bottom: 1px solid rgba(248, 243, 232, 0.6);
  font-size: 12px;
}

.visit {
  min-height: 820px;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  color: var(--paper-light);
  background: var(--red);
}

.visit-panel {
  padding: 138px max(64px, calc((100vw - var(--content)) / 2)) 138px max(32px, calc((100vw - var(--content)) / 2));
  background:
    linear-gradient(rgba(248, 243, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 243, 232, 0.035) 1px, transparent 1px),
    var(--forest);
  background-size: 32px 32px;
}

.visit-panel .section-label {
  color: #d5b86b;
}

.visit-panel h2 {
  margin-bottom: 38px;
}

.visit-panel > p:not(.section-label) {
  max-width: 570px;
  margin-bottom: 54px;
  color: rgba(248, 243, 232, 0.72);
  font-size: 15px;
}

.visit-info {
  max-width: 650px;
  margin: 0 0 42px;
  border-top: 1px solid rgba(248, 243, 232, 0.4);
}

.visit-info div {
  min-height: 64px;
  padding: 14px 0;
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(248, 243, 232, 0.2);
}

.visit-info dt {
  color: #d5b86b;
  font-size: 11px;
}

.visit-info dd {
  margin: 0;
  font-size: 14px;
}

.visit-info dd a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.visit-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.button-cream {
  color: var(--forest-dark);
  background: var(--paper-light);
  border-color: var(--paper-light);
}

.visit-typography {
  position: relative;
  min-height: 820px;
  padding: 80px 0 70px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
}

.visit-typography span {
  align-self: center;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(130px, 17vw, 270px);
  font-weight: 800;
  line-height: 0.75;
  writing-mode: vertical-rl;
  text-shadow: 0 0 0 var(--paper);
}

.visit-typography span:first-child {
  align-self: start;
  margin-top: 35px;
}

.visit-typography span:nth-child(2) {
  align-self: end;
  margin-bottom: 40px;
}

.visit-typography p {
  position: absolute;
  right: 34px;
  bottom: 26px;
  color: rgba(248, 243, 232, 0.7);
  font-family: Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  line-height: 1.55;
  text-align: right;
}

.voices {
  width: min(calc(100% - 64px), var(--content));
  margin: 0 auto;
  padding: 148px 0 142px;
}

.voices-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 72px;
}

.voices-heading .section-label {
  grid-column: 1 / -1;
  margin-bottom: -26px;
}

.voices-heading h2 {
  font-size: clamp(48px, 5.6vw, 78px);
}

.voices-heading > p:last-child {
  max-width: 450px;
  margin-bottom: 8px;
  color: rgba(37, 28, 22, 0.68);
  font-size: 13px;
}

.voice-list {
  border-top: 1px solid var(--ink);
}

.voice {
  margin: 0;
  min-height: 170px;
  padding: 32px 0;
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 40px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.voice-index {
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 11px;
}

.voice p {
  max-width: 720px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(21px, 2.1vw, 30px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.5;
}

.voice footer {
  color: rgba(37, 28, 22, 0.55);
  font-size: 11px;
  text-align: right;
}

.final-cta {
  position: relative;
  min-height: 690px;
  padding: 150px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--paper-light);
  border-top: 1px solid var(--line);
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(37, 28, 22, 0.12);
  border-radius: 50%;
  content: "";
}

.final-cta::before {
  left: -210px;
  bottom: -120px;
}

.final-cta::after {
  top: -210px;
  right: -150px;
}

.final-cta .section-label,
.final-cta h2,
.final-cta > p,
.final-cta .cta-actions {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  margin-bottom: 28px;
}

.final-cta > p:not(.section-label) {
  margin-bottom: 35px;
  font-size: 13px;
}

.cta-actions {
  display: flex;
  gap: 12px;
}

.button-outline {
  color: var(--ink);
  background: transparent;
}

.button-outline:hover {
  color: var(--paper-light);
  background: var(--red);
  border-color: var(--red);
}

.cta-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 510px;
  height: 510px;
  display: grid;
  place-items: center;
  color: rgba(145, 66, 53, 0.18);
  border: 1px dashed rgba(145, 66, 53, 0.28);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 10px;
  letter-spacing: 0.42em;
  transform: translate(-50%, -50%) rotate(-15deg);
}

.site-footer {
  min-height: 190px;
  padding: 44px max(32px, calc((100vw - var(--content)) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 36px;
  align-items: center;
  color: var(--paper-light);
  background: var(--forest-dark);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand strong {
  font-family: var(--serif);
  font-size: 32px;
}

.footer-brand span {
  font-family: Georgia, serif;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.footer-info {
  color: rgba(248, 243, 232, 0.62);
  font-size: 11px;
  text-align: center;
}

.footer-info p {
  margin-bottom: 4px;
}

.to-top {
  justify-self: end;
  font-size: 11px;
}

.mobile-contact {
  display: none;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.capture .reveal {
  opacity: 1 !important;
  transform: none !important;
}

.capture .ticker-track {
  animation: none;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
    gap: 38px;
  }

  .hero-copy,
  .hero-lead,
  .hero-actions {
    padding-left: 0;
  }

  .hero-notes {
    margin-left: 0;
    flex-wrap: wrap;
  }

  .hero h1 em {
    padding-left: 1.9em;
  }

  .voice {
    grid-template-columns: 70px 1fr;
  }

  .voice footer {
    grid-column: 2;
    text-align: left;
  }

  .visit-panel {
    padding-right: 48px;
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 74px;
  }

  .site-header {
    width: min(calc(100% - 36px), var(--content));
    min-height: 82px;
  }

  .brand-hanja {
    width: 43px;
    height: 43px;
  }

  .brand-korean {
    font-size: 18px;
  }

  .brand-korean small {
    font-size: 7px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    width: min(calc(100% - 36px), var(--content));
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 58px;
    padding: 62px 0 78px;
  }

  .hero::after,
  .hero-side-copy {
    display: none;
  }

  .hero-copy {
    padding: 0 2px;
  }

  .hero h1 {
    max-width: 520px;
    font-size: clamp(66px, 18vw, 94px);
  }

  .hero h1 span {
    padding-left: 0;
  }

  .hero h1 em {
    padding-left: 2em;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-photo {
    min-height: 0;
    padding: 12px;
    transform: rotate(0.7deg);
  }

  .hero-photo img {
    min-height: 0;
    aspect-ratio: 4 / 5;
    object-position: 51% 50%;
  }

  .hero-seal {
    top: -32px;
    left: auto;
    right: -10px;
    width: 102px;
    height: 102px;
  }

  .hero-photo figcaption {
    right: 25px;
    bottom: 26px;
    max-width: calc(100% - 50px);
  }

  .ticker-track {
    height: 58px;
  }

  .story {
    width: min(calc(100% - 36px), var(--content));
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 100px 0;
  }

  .story-copy {
    padding: 0;
  }

  .story-intro {
    font-size: 21px;
  }

  .promise-list {
    margin-top: 18px;
    grid-template-columns: 1fr;
  }

  .promise-list li {
    min-height: 160px;
    padding: 26px 22px;
  }

  .promise-list li:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .promise-list span {
    margin-bottom: 22px;
  }

  .menu-section {
    padding: 100px 18px;
  }

  .menu-heading,
  .voices-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 52px;
  }

  .menu-heading .section-label,
  .voices-heading .section-label {
    grid-column: 1;
    margin-bottom: 0;
  }

  .menu-heading h2 {
    font-size: clamp(45px, 12vw, 70px);
  }

  .menu-ledger {
    grid-template-columns: 1fr;
  }

  .menu-item {
    min-height: 360px;
    padding: 28px 24px 34px;
  }

  .menu-item:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(248, 243, 232, 0.28);
  }

  .menu-copy h3 {
    font-size: 36px;
  }

  .menu-mark {
    font-size: 76px;
    writing-mode: horizontal-tb;
  }

  .daily-note {
    grid-template-columns: auto 1fr;
  }

  .daily-note > a {
    grid-column: 2;
    justify-self: start;
  }

  .visit {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .visit-panel {
    padding: 100px 18px;
  }

  .visit-panel h2 {
    font-size: clamp(50px, 13vw, 72px);
  }

  .visit-typography {
    min-height: 420px;
    padding: 50px 10px;
  }

  .visit-typography span {
    justify-self: center;
    font-size: 36vw;
    writing-mode: horizontal-tb;
  }

  .visit-typography span:first-child,
  .visit-typography span:nth-child(2) {
    align-self: center;
    margin: 0;
  }

  .voices {
    width: min(calc(100% - 36px), var(--content));
    padding: 100px 0;
  }

  .voice {
    min-height: 0;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    padding: 28px 0;
  }

  .voice p {
    font-size: 20px;
  }

  .voice footer {
    font-size: 10px;
  }

  .final-cta {
    min-height: 580px;
    padding: 110px 18px;
  }

  .final-cta h2 {
    font-size: clamp(50px, 13vw, 74px);
  }

  .site-footer {
    min-height: 300px;
    padding: 48px 18px;
    grid-template-columns: 1fr;
    gap: 26px;
    align-content: center;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .to-top {
    justify-self: center;
  }

  .mobile-contact {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    height: 74px;
    padding: 8px max(10px, env(safe-area-inset-right)) max(8px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 8px;
    color: var(--paper-light);
    background: rgba(30, 41, 31, 0.96);
    border-top: 1px solid rgba(248, 243, 232, 0.22);
    backdrop-filter: blur(12px);
  }

  .mobile-contact a {
    min-height: 52px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(248, 243, 232, 0.38);
    font-size: 13px;
    font-weight: 700;
  }

  .mobile-contact a:last-child {
    color: var(--forest-dark);
    background: var(--paper);
    border-color: var(--paper);
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: clamp(62px, 19vw, 78px);
  }

  .hero h1 em {
    padding-left: 1.65em;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-notes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 12px;
  }

  .hero-notes li:not(:last-child)::after {
    display: none;
  }

  .story-title h2,
  .voices-heading h2 {
    font-size: 46px;
  }

  .daily-note {
    grid-template-columns: 1fr;
  }

  .daily-note > a {
    grid-column: 1;
  }

  .visit-info div {
    grid-template-columns: 68px 1fr;
  }

  .visit-actions,
  .cta-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .visit-text-link {
    align-self: center;
  }

  .final-cta > p:not(.section-label) {
    max-width: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
