:root {
  --cream: #F4EFE3;
  --ink: #24241F;
  --moss: #304030;
  --ivory: var(--cream);
  --green: var(--ink);
  --blue: var(--moss);
  --page-pad: clamp(1.25rem, 5vw, 5.5rem);
  --section-space: max(15vh, 8rem);
  --max-width: 88rem;
  --hairline: 1px solid var(--ink);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-color: var(--moss) var(--cream); scrollbar-width: thin; }
body { margin: 0; overflow-x: hidden; background: var(--cream); color: var(--ink); font-family: "Pretendard Variable", Pretendard, "Noto Sans KR", system-ui, sans-serif; font-size: 16px; line-height: 1.78; text-rendering: optimizeLegibility; }
body::-webkit-scrollbar { width: 10px; }
body::-webkit-scrollbar-track { background: var(--cream); }
body::-webkit-scrollbar-thumb { background: var(--moss); border: 3px solid var(--cream); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--cream); outline-offset: 3px; box-shadow: 0 0 0 5px var(--moss); }
p { max-width: 40ch; text-wrap: pretty; }
.skip-link { position: fixed; z-index: 100; top: .75rem; left: .75rem; padding: .75rem 1rem; background: var(--cream); color: var(--ink); transform: translateY(-160%); }
.skip-link:focus { transform: none; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header { position: absolute; z-index: 20; inset: 0 0 auto; display: flex; align-items: center; justify-content: space-between; height: 6rem; padding: 0 var(--page-pad); color: var(--cream); }
.brand { font-size: .78rem; font-weight: 620; letter-spacing: .34em; }
.site-nav { display: flex; gap: clamp(1.5rem, 3vw, 3.75rem); font-size: .73rem; font-weight: 470; letter-spacing: .08em; }
.site-nav a { padding: .7rem 0; }
.site-nav a:hover, .site-nav a[aria-current="page"] { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: .5rem; }
.menu-button { display: none; }

.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; color: var(--cream); background: var(--ink); isolation: isolate; }
.hero::after { position: absolute; z-index: 1; inset: clamp(.8rem, 1.4vw, 1.4rem); border: 1px solid color-mix(in srgb, var(--cream) 62%, transparent); content: ""; pointer-events: none; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.62) sepia(.12) contrast(1.04); animation: hero-zoom 18s cubic-bezier(.2,.55,.25,1) both; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, color-mix(in srgb, var(--ink) 86%, transparent) 0%, color-mix(in srgb, var(--ink) 60%, transparent) 38%, color-mix(in srgb, var(--ink) 8%, transparent) 72%), linear-gradient(0deg, color-mix(in srgb, var(--ink) 58%, transparent) 0%, transparent 52%); }
.hero-content { position: relative; z-index: 2; width: min(100%, var(--max-width)); margin: 0 auto; padding: 0 var(--page-pad) clamp(4.5rem, 9vh, 8rem); }
.kicker { margin: 0 0 1.7rem; font-size: .64rem; font-weight: 620; letter-spacing: .3em; text-transform: uppercase; }
.hero h1, .display-title { margin: 0; font-weight: 230; letter-spacing: -.04em; line-height: 1.08; word-break: keep-all; text-wrap: balance; }
.headline-line { display: block; max-width: 100%; }
.hero h1 { max-width: 10ch; font-size: clamp(4.4rem, 9.3vw, 9.5rem); }
.hero-copy { max-width: 25rem; margin: 2rem 0 0; font-size: clamp(1rem, 1.3vw, 1.25rem); line-height: 1.75; }
.hero-link { display: inline-flex; justify-content: space-between; gap: 4rem; min-width: 14rem; min-height: 44px; margin-top: 2.25rem; padding: .9rem 0; border-bottom: 1px solid var(--cream); font-size: .78rem; font-weight: 560; letter-spacing: .06em; }
.hero-meta { position: absolute; right: var(--page-pad); bottom: clamp(4.5rem, 9vh, 8rem); z-index: 2; margin: 0; writing-mode: vertical-rl; font-size: .6rem; letter-spacing: .25em; }

@keyframes hero-zoom { from { transform: scale(1); } to { transform: scale(1.055); } }

.section { padding: var(--section-space) var(--page-pad); }
.section-inner { width: min(100%, var(--max-width)); margin: 0 auto; }
.display-title { max-width: 16ch; font-size: clamp(3.4rem, 6.7vw, 7.25rem); }
.section-head { display: grid; grid-template-columns: minmax(12rem, .4fr) 1fr; align-items: start; margin-bottom: max(8vh, 4rem); }
.section-head .kicker { padding-top: .55rem; }

.intro { min-height: 100svh; display: flex; align-items: center; }
.intro .display-title { max-width: 15ch; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 10vw, 10rem); margin: max(10vh, 5rem) 0 0 30%; }
.intro-lede { margin: 0; max-width: 22ch; font-size: clamp(1.35rem, 2vw, 2rem); font-weight: 350; line-height: 1.65; }
.body-copy { max-width: 22rem; }
.body-copy p { margin: 0 0 1.5rem; }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); margin: max(10vh, 5rem) 0 0; border-top: var(--hairline); }
.principles > div { padding: 1.4rem 1.5rem 0 0; }
.principles dt { margin-bottom: .65rem; font-size: .9rem; font-weight: 650; }
.principles dd { margin: 0; max-width: 20ch; font-size: .78rem; opacity: .72; }

.collection { background: var(--moss); color: var(--cream); }
.collection .section-head, .collection .curated-heading { border-color: var(--cream); }
.collection .featured-product-slot, .collection .product-grid { color: var(--ink); }
.collection-visual { position: relative; margin: 0; overflow: hidden; }
.collection-visual picture { display: block; }
.collection-visual img { width: 100%; height: min(72vh, 56rem); object-fit: cover; }
.collection-visual figcaption { position: absolute; right: 1.25rem; bottom: 1.1rem; padding: .45rem .65rem; background: var(--ivory); font-size: .58rem; font-weight: 650; letter-spacing: .16em; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.75rem, 1.2vw, 1.25rem); margin-top: max(8vh, 4rem); }
.card { border: var(--hairline); }
.product-card { overflow: hidden; background: var(--cream); }
.product-crop { position: relative; height: clamp(18rem, 32vw, 32rem); overflow: hidden; background: var(--blue); }
.product-crop img { position: absolute; top: 50%; width: auto; max-width: none; height: 180%; }
.crop-left img { left: 0; transform: translateY(-50%); }
.crop-center img { left: 50%; transform: translate(-50%, -50%); }
.crop-right img { right: 0; transform: translateY(-50%); }
.card-copy { padding: 1.4rem; }
.card-label { margin: 0 0 1rem; font-size: .62rem; font-weight: 650; letter-spacing: .16em; text-transform: uppercase; }
.card-copy h3 { margin: 0; font-size: clamp(1.7rem, 2.4vw, 2.8rem); font-weight: 350; letter-spacing: -.04em; }
.card-copy > p:not(.card-label) { min-height: 3.3rem; margin: .8rem 0 1.5rem; font-size: .8rem; opacity: .72; }
.card-copy strong { font-size: .78rem; }
.placeholder-note { margin: 1rem 0 0; font-size: .68rem; opacity: .7; }
.store-product-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; background: var(--cream); }
.store-product-media { position: relative; overflow: hidden; aspect-ratio: 4 / 5; background: var(--cream); border-bottom: var(--hairline); }
.store-product-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(1.02); }
.store-product-media.is-missing, .featured-product-media.is-missing { display: grid; place-items: center; padding: 2rem; background: var(--blue); }
.product-image-fallback { max-width: 18ch; margin: 0; text-align: center; font-size: .75rem; }
.store-product-body { display: flex; flex: 1; flex-direction: column; padding: 1.4rem; }
.store-product-body h3 { min-height: 4.8em; margin: 0; font-size: clamp(1.15rem, 1.5vw, 1.55rem); font-weight: 330; letter-spacing: -.025em; line-height: 1.45; word-break: keep-all; }
.product-tagline { min-height: 3.4em; margin: 1.25rem 0 0; font-size: .82rem; line-height: 1.7; opacity: .76; word-break: keep-all; }
.store-product-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 2rem; padding-top: 1rem; border-top: var(--hairline); }
.store-product-footer strong { font-size: .82rem; }
.buy-link { display: inline-flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-width: 9rem; min-height: 44px; padding: .65rem .8rem; border: 0; border-radius: 0; background: var(--ink); color: var(--cream); cursor: pointer; font: inherit; font-size: .72rem; font-weight: 620; letter-spacing: .05em; }
.buy-link:hover { background: var(--moss); color: var(--cream); }
.product-list-state { grid-column: 1 / -1; min-height: 20rem; display: grid; place-items: center; margin: 0; padding: 2rem; border: var(--hairline); font-size: .82rem; text-align: center; }
.collection-link { display: inline-flex; justify-content: space-between; gap: 4rem; min-width: 15rem; min-height: 44px; margin-top: 2.5rem; padding: .9rem 0; border-bottom: 1px solid currentColor; font-size: .78rem; font-weight: 620; letter-spacing: .05em; }

.feature { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; padding: 0; color: var(--cream); background: var(--ink); }
.feature > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.feature > .feature-image--portrait { object-fit: contain; object-position: right center; }
.feature-scrim { position: absolute; inset: 0; background: linear-gradient(0deg, color-mix(in srgb, var(--ink) 92%, transparent) 0%, color-mix(in srgb, var(--ink) 18%, transparent) 68%); }
.feature-copy { position: relative; z-index: 2; width: min(100%, var(--max-width)); margin: 0 auto; padding: var(--section-space) var(--page-pad); }
.feature-copy .display-title { max-width: 15ch; }
.feature-copy > p:not(.kicker) { margin: 2rem 0 0; max-width: 24rem; }
.feature-copy a { display: inline-flex; gap: 4rem; min-height: 44px; margin-top: 2rem; padding-bottom: .6rem; border-bottom: 1px solid var(--cream); font-size: .78rem; font-weight: 560; }

.journal .display-title { max-width: 15ch; }
.journal-list { border-top: var(--hairline); }
.journal-card { border-width: 0 0 1px; }
.journal-card:hover { background: color-mix(in srgb, var(--moss) 10%, transparent); }
.journal-card a { display: grid; grid-template-columns: 9rem 1fr auto; gap: clamp(1.5rem, 5vw, 6rem); align-items: start; padding: clamp(2rem, 5vw, 4.5rem) clamp(0rem, 2vw, 2rem); }
.journal-card time { padding-top: .4rem; font-size: .68rem; letter-spacing: .12em; }
.journal-card h3 { margin: 0; font-size: clamp(1.8rem, 3.4vw, 3.8rem); font-weight: 260; letter-spacing: -.045em; line-height: 1.12; }
.journal-card p { margin: 1.25rem 0 0; font-size: .8rem; opacity: .72; }
.journal-card > a > span { font-size: 1.2rem; }
.journal-state { min-height: 15rem; display: grid; place-items: center; margin: 0; border-bottom: 1px solid var(--green); font-size: .82rem; text-align: center; }

.contact { background: var(--ink); color: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(4rem, 12vw, 12rem); }
.contact-copy .display-title { max-width: 15ch; }
.contact-copy > p:not(.kicker) { margin: 2rem 0 0; max-width: 25rem; }
.contact-copy > a { display: inline-block; min-height: 44px; margin-top: 1.5rem; padding-bottom: .35rem; border-bottom: 1px solid var(--moss); }
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.field label { display: block; margin-bottom: .35rem; font-size: .72rem; font-weight: 600; }
.field input, .field textarea { width: 100%; padding: .8rem 0; border: 0; border-bottom: 1px solid color-mix(in srgb, var(--cream) 55%, transparent); border-radius: 0; outline: 0; background: transparent; }
.field textarea { min-height: 8rem; resize: none; }
.field input::placeholder, .field textarea::placeholder { color: color-mix(in srgb, var(--cream) 58%, transparent); }
.field input:focus, .field textarea:focus { border-color: var(--moss); }
.field-error { min-height: 1.2em; margin: .25rem 0 0; color: var(--cream); font-size: .7rem; }
.contact-form button { display: flex; justify-content: space-between; width: 100%; min-height: 48px; margin-top: .6rem; padding: 1rem 0; border: 0; border-bottom: 1px solid var(--moss); background: transparent; color: var(--cream); cursor: pointer; font-size: .78rem; font-weight: 620; letter-spacing: .05em; }
.contact-form button[disabled] { cursor: wait; opacity: .62; }
.form-status { min-height: 1.4em; margin: 0; color: var(--cream); font-size: .72rem; }
.inquiry-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.consent-field { padding-top: .35rem; }
.consent-field label { display: grid; grid-template-columns: 1.15rem 1fr; gap: .75rem; align-items: start; cursor: pointer; font-size: .72rem; line-height: 1.7; }
.consent-field input { width: 1rem; height: 1rem; margin: .18rem 0 0; accent-color: var(--moss); }

.site-footer { display: grid; grid-template-columns: 1fr auto auto; gap: 3rem; align-items: start; padding: 4rem var(--page-pad) 2rem; border-top: var(--hairline); background: var(--cream); }
.footer-brand strong { font-size: .85rem; letter-spacing: .24em; }
.footer-brand p { margin: .6rem 0 0; font-size: .75rem; }
.site-footer nav { display: flex; gap: 2rem; font-size: .72rem; }
.site-footer nav a:hover { text-decoration: underline; text-underline-offset: .35rem; }
.footer-contact { display: grid; gap: .45rem; justify-items: end; font-size: .7rem; }
.footer-contact a { padding-bottom: .1rem; border-bottom: 1px solid transparent; }
.footer-contact a:hover { border-color: currentColor; }
.copyright { grid-column: 1 / -1; margin: 4rem 0 0; font-size: .6rem; letter-spacing: .14em; }

/* Founder story */
.about-header { position: absolute; color: var(--ink); }
.about-header .site-nav a[aria-current="page"] { text-decoration-color: var(--moss); }
.about-hero { min-height: 100svh; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(22rem, .85fr); gap: clamp(2rem, 6vw, 7rem); align-items: center; width: min(100%, var(--max-width)); margin: 0 auto; padding: clamp(8rem, 14vh, 11rem) var(--page-pad) max(8vh, 4rem); }
.about-hero-copy h1 { max-width: 16ch; margin: 0; font-size: clamp(3.8rem, 6.5vw, 7.25rem); font-weight: 225; letter-spacing: -.04em; line-height: 1.08; word-break: keep-all; text-wrap: balance; }
.about-hero-copy > p:last-child { margin: 2rem 0 0; font-size: clamp(1rem, 1.35vw, 1.25rem); }
.founder-portrait { position: relative; min-height: min(72vh, 46rem); margin: 0; overflow: hidden; border: var(--hairline); background: var(--moss); }
.founder-portrait > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 52% 28%; filter: saturate(.82) contrast(1.02); }
.founder-portrait::after { position: absolute; inset: 0; background: linear-gradient(0deg, color-mix(in srgb, var(--ink) 72%, transparent), transparent 45%); content: ""; }
.portrait-mark { display: none; }
.founder-portrait figcaption { position: absolute; z-index: 1; right: 1.25rem; bottom: 1.25rem; left: 1.25rem; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: .35rem 1rem; padding-top: 1rem; border-top: 1px solid var(--cream); color: var(--cream); }
.founder-portrait figcaption span { font-size: .62rem; font-weight: 650; letter-spacing: .16em; text-transform: uppercase; }
.founder-portrait figcaption strong { grid-row: 1 / 3; grid-column: 2; font-size: .82rem; font-weight: 600; }
.founder-portrait figcaption small { font-size: .68rem; }
.story-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(19rem, .72fr); gap: clamp(4rem, 11vw, 12rem); align-items: start; }
.story-heading { position: sticky; top: 12vh; }
.founder-story .display-title { max-width: 10ch; }
.story-body { padding-top: 3.2rem; }
.story-body p { max-width: 28rem; margin: 0 0 2rem; word-break: keep-all; }
.story-body .story-lede { margin-bottom: 3rem; font-size: clamp(1.4rem, 2.1vw, 2.1rem); font-weight: 330; line-height: 1.55; }
.founder-quote { min-height: 100svh; display: flex; align-items: center; background: var(--ink); color: var(--cream); }
.founder-quote blockquote { width: min(100%, 74rem); margin: 0 auto; }
.founder-quote p { margin: 0; font-size: clamp(3rem, 6.7vw, 7.1rem); font-weight: 225; letter-spacing: -.04em; line-height: 1.08; word-break: keep-all; text-wrap: balance; }
.timeline-list { margin: 0; padding: 0; border-top: 1px solid var(--green); list-style: none; }
.timeline-list li { display: grid; grid-template-columns: minmax(9rem, .35fr) 1fr; gap: clamp(2rem, 7vw, 8rem); padding: clamp(2.25rem, 5vw, 4.5rem) 0; border-bottom: 1px solid var(--green); }
.timeline-list > li > span { padding-top: .4rem; font-size: .68rem; font-weight: 650; letter-spacing: .14em; }
.timeline-list h3 { margin: 0; font-size: clamp(1.8rem, 3.5vw, 3.8rem); font-weight: 300; letter-spacing: -.045em; line-height: 1.1; }
.timeline-list p { margin: 1.25rem 0 0; font-size: .86rem; opacity: .75; }
.founder-promise { min-height: 100svh; display: flex; align-items: center; background: var(--moss); color: var(--cream); }
.founder-promise h2 { max-width: 18ch; margin: 0; font-size: clamp(3.4rem, 7.2vw, 7.8rem); font-weight: 225; letter-spacing: -.04em; line-height: 1.08; word-break: keep-all; text-wrap: balance; }
.founder-promise a { display: inline-flex; justify-content: space-between; gap: 4rem; min-width: 15rem; min-height: 44px; margin-top: 3rem; padding: .9rem 0; border-bottom: 1px solid var(--cream); font-size: .78rem; font-weight: 620; }

/* Product catalog */
.interior-header { position: absolute; color: var(--ink); }
.interior-header .site-nav a[aria-current="page"] { text-decoration-color: var(--moss); }
.catalog-hero { min-height: 100svh; display: grid; grid-template-columns: minmax(0, 1fr) minmax(20rem, .48fr); gap: clamp(3rem, 10vw, 12rem); align-items: center; width: min(100%, var(--max-width)); margin: 0 auto; padding: clamp(8rem, 15vh, 12rem) var(--page-pad) max(8vh, 4rem); }
.catalog-hero h1 { max-width: 16ch; margin: 0; font-size: clamp(4rem, 8vw, 8.75rem); font-weight: 225; letter-spacing: -.04em; line-height: 1.08; word-break: keep-all; text-wrap: balance; }
.catalog-hero-copy > p:last-child { margin: 2rem 0 0; font-size: clamp(1rem, 1.3vw, 1.25rem); }
.catalog-index { display: grid; align-content: space-between; min-height: min(58vh, 38rem); padding: 1.5rem; border: 1px solid var(--cream); outline: var(--hairline); outline-offset: .7rem; background: var(--moss); color: var(--cream); }
.catalog-index span, .catalog-index small { font-size: .65rem; font-weight: 650; letter-spacing: .15em; text-transform: uppercase; }
.catalog-index strong { font-size: clamp(9rem, 18vw, 18rem); font-weight: 180; letter-spacing: -.09em; line-height: .75; }
.catalog-index small { justify-self: end; }
.catalog-products { background: var(--cream); }
.catalog-products .display-title { max-width: 15ch; }
.featured-product-slot { margin-bottom: var(--section-space); }
.featured-product { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(24rem, .92fr); overflow: hidden; background: var(--cream); }
.featured-product-media { min-height: min(82vh, 54rem); overflow: hidden; border-right: var(--hairline); background: var(--cream); }
.featured-product-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.74) contrast(1.02); }
.featured-product-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(2.25rem, 5vw, 6rem); }
.featured-product-content h3 { max-width: 13ch; margin: 0; font-size: clamp(2.5rem, 4.3vw, 4.8rem); font-weight: 245; letter-spacing: -.04em; line-height: 1.08; word-break: keep-all; text-wrap: balance; }
.featured-tagline { margin: 2.5rem 0 0; padding-top: 1.4rem; border-top: 1px solid var(--green); font-size: clamp(1.25rem, 1.8vw, 1.8rem); font-weight: 380; word-break: keep-all; }
.featured-highlights { display: grid; gap: .8rem; margin: 2.25rem 0 0; padding-left: 1.35rem; font-size: .86rem; }
.featured-highlights li { padding-left: .45rem; }
.featured-product-footer { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; margin-top: 3rem; }
.featured-product-footer strong { font-size: 1rem; }
.featured-buy-link { min-width: 10rem; }
.curated-heading { display: grid; grid-template-columns: minmax(12rem, .4fr) 1fr; gap: 2rem; align-items: start; padding-top: 2rem; border-top: var(--hairline); }
.curated-heading .kicker { padding-top: .35rem; }
.curated-heading h3 { max-width: 17ch; margin: 0; font-size: clamp(2rem, 4vw, 4.5rem); font-weight: 250; letter-spacing: -.047em; line-height: 1.08; word-break: keep-all; }
.product-grid--catalog { margin-top: max(8vh, 4rem); }
.store-link { display: inline-flex; justify-content: space-between; gap: 4rem; min-width: 16rem; min-height: 44px; margin-top: max(8vh, 4rem); padding: 1rem 0; border-bottom: var(--hairline); cursor: pointer; font-size: .78rem; font-weight: 620; letter-spacing: .05em; }
.catalog-note { margin: 2rem 0 0; font-size: .7rem; }

/* Contact */
.contact-page-hero { min-height: 100svh; display: grid; grid-template-columns: minmax(0, .72fr) minmax(30rem, 1fr); gap: clamp(4rem, 10vw, 11rem); align-items: center; width: min(100%, var(--max-width)); margin: 0 auto; padding: clamp(9rem, 16vh, 13rem) var(--page-pad) max(10vh, 6rem); }
.contact-page-intro h1 { max-width: 16ch; margin: 0; font-size: clamp(4rem, 7.4vw, 8rem); font-weight: 225; letter-spacing: -.04em; line-height: 1.08; word-break: keep-all; text-wrap: balance; }
.contact-page-intro > p:last-child { margin: 2rem 0 0; font-size: clamp(1rem, 1.3vw, 1.2rem); }
.inquiry-panel { padding: clamp(1.5rem, 3.5vw, 3.5rem); border: var(--hairline); background: color-mix(in srgb, var(--cream) 93%, var(--moss)); }
.inquiry-panel__head { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: var(--hairline); }
.inquiry-panel__head .kicker { margin-bottom: .8rem; }
.inquiry-panel__head h2 { margin: 0; font-size: clamp(1.8rem, 3vw, 3rem); font-weight: 470; letter-spacing: -.035em; }
.inquiry-panel__head > p:last-child { margin: .75rem 0 0; font-size: .78rem; opacity: .72; }
.contact-form--light .field input,
.contact-form--light .field textarea { border-color: color-mix(in srgb, var(--ink) 42%, transparent); color: var(--ink); }
.contact-form--light .field input::placeholder,
.contact-form--light .field textarea::placeholder { color: color-mix(in srgb, var(--ink) 46%, transparent); }
.contact-form--light .field-error,
.contact-form--light .form-status { color: var(--ink); }
.contact-form--light button { border-color: var(--ink); background: var(--ink); color: var(--cream); }
.contact-form--light button:hover { background: var(--moss); color: var(--cream); }
.contact-channels { padding-top: max(9vh, 5rem); }
.contact-channels .display-title { max-width: 18ch; }
.contact-actions { border-top: var(--hairline); }
.contact-action { min-height: clamp(9rem, 18vh, 12rem); display: grid; grid-template-columns: minmax(5rem, .28fr) 1fr; grid-template-rows: 1fr auto; gap: .5rem 2rem; align-items: center; padding: 1.5rem 0; border-bottom: var(--hairline); cursor: pointer; }
.contact-action:hover { background: var(--moss); color: var(--cream); }
.contact-action > span { align-self: start; padding-top: .25rem; font-size: .64rem; font-weight: 650; letter-spacing: .16em; text-transform: uppercase; }
.contact-action > strong { font-size: clamp(1.5rem, 2.8vw, 3.2rem); font-weight: 270; letter-spacing: -.04em; line-height: 1.12; overflow-wrap: anywhere; }
.contact-action > small { grid-column: 2; align-self: end; font-size: .7rem; letter-spacing: .06em; }

.reveal { opacity: 0; transform: translateY(1.6rem); transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 820px) {
  :root { --page-pad: 1.25rem; --section-space: max(15vh, 6.5rem); }
  .site-header { height: 4.75rem; }
  .menu-button { position: relative; z-index: 32; display: grid; place-content: center; gap: 6px; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; color: var(--ivory); cursor: pointer; }
  .menu-button > span:not(.sr-only) { display: block; width: 23px; height: 1px; background: currentColor; }
  .menu-button[aria-expanded="true"] { color: var(--cream); }
  .menu-button[aria-expanded="true"] > span:nth-of-type(2) { transform: translateY(3.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-of-type(3) { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav { position: fixed; z-index: 30; inset: 0; display: none; flex-direction: column; justify-content: center; align-items: center; gap: 1.5rem; background: var(--ink); color: var(--cream); font-size: 1.35rem; letter-spacing: .06em; }
  .site-nav.is-open { display: flex; }
  .hero-scrim { background: linear-gradient(0deg, color-mix(in srgb, var(--ink) 90%, transparent) 0%, color-mix(in srgb, var(--ink) 38%, transparent) 58%, color-mix(in srgb, var(--ink) 22%, transparent) 100%); }
  .hero-content { padding-bottom: 3.25rem; }
  .hero h1 { font-size: clamp(4rem, 20vw, 6.5rem); }
  .hero-meta { display: none; }
  .section-head { grid-template-columns: 1fr; }
  .section-head .kicker { padding: 0; }
  .intro-grid { grid-template-columns: 1fr; gap: 2.5rem; margin-left: 0; }
  .principles { grid-template-columns: 1fr; }
  .principles > div { display: grid; grid-template-columns: 8rem 1fr; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--green); }
  .principles dt { margin: 0; }
  .product-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-page-hero { grid-template-columns: 1fr; gap: max(10vh, 5rem); min-height: auto; padding-top: 9rem; padding-bottom: var(--section-space); }
}

@media (max-width: 520px) {
  .display-title { font-size: clamp(3rem, 15vw, 4.4rem); }
  .hero-image { object-position: 64% center; }
  .hero h1 { max-width: 8ch; }
  .collection-visual img { height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: center; }
  .product-crop { height: 24rem; }
  .feature > .feature-image--portrait { object-fit: cover; object-position: 52% 28%; }
  .journal-card a { grid-template-columns: 1fr auto; gap: 1rem; }
  .journal-card time { grid-column: 1 / -1; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer nav { flex-wrap: wrap; }
  .footer-contact { justify-items: start; }
  .copyright { grid-column: auto; }
  .contact-page-intro h1 { font-size: clamp(3.5rem, 16vw, 5.2rem); }
  .contact-action { min-height: 9rem; grid-template-columns: 1fr; grid-template-rows: auto 1fr auto; gap: .65rem; }
  .contact-action > span { padding-top: 0; }
  .contact-action > strong { font-size: clamp(1.45rem, 7vw, 2.2rem); }
  .contact-action > small { grid-column: 1; }
  .about-header .menu-button span:not(.sr-only) { background: var(--ink); }
  .about-header .site-nav { color: var(--cream); }
  .about-hero { grid-template-columns: 1fr; gap: 3.5rem; min-height: auto; padding-top: 9rem; padding-bottom: var(--section-space); }
  .about-hero-copy h1 { max-width: 11ch; font-size: clamp(3.25rem, 14vw, 5rem); }
  .founder-portrait { min-height: 31rem; }
  .founder-portrait figcaption { grid-template-columns: 1fr; }
  .founder-portrait figcaption strong { grid-row: auto; grid-column: auto; }
  .story-layout { grid-template-columns: 1fr; gap: 3rem; }
  .story-heading { position: static; }
  .story-body { padding-top: 0; }
  .story-body p { max-width: 23rem; }
  .founder-quote { min-height: 100svh; }
  .founder-quote p { font-size: clamp(3rem, 13vw, 4.5rem); }
  .timeline-list li { grid-template-columns: 1fr; gap: 1.2rem; }
  .founder-promise h2 { font-size: clamp(3.2rem, 13vw, 5rem); }
  .interior-header .menu-button span:not(.sr-only) { background: var(--ink); }
  .interior-header .site-nav { color: var(--cream); }
  .about-header .menu-button[aria-expanded="true"] span:not(.sr-only),
  .interior-header .menu-button[aria-expanded="true"] span:not(.sr-only) { background: var(--cream); }
  .catalog-hero { grid-template-columns: 1fr; gap: 3.5rem; min-height: auto; padding-top: 9rem; padding-bottom: var(--section-space); }
  .catalog-hero h1 { max-width: 8ch; font-size: clamp(3.5rem, 16vw, 5.2rem); }
  .catalog-index { min-height: 24rem; }
  .store-product-body h3 { min-height: auto; }
  .product-tagline { min-height: auto; }
  .featured-product { grid-template-columns: 1fr; }
  .featured-product-media { min-height: 0; aspect-ratio: 4 / 5; border-right: 0; border-bottom: 1px solid var(--green); }
  .featured-product-content { padding: 2rem 1.25rem; }
  .featured-product-content h3 { font-size: clamp(2.4rem, 11vw, 3.6rem); }
  .featured-product-footer { align-items: stretch; flex-direction: column; }
  .featured-buy-link { width: 100%; }
  .curated-heading { grid-template-columns: 1fr; gap: 1.25rem; }
  .curated-heading .kicker { padding-top: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  /* Accessibility override: reduced motion must defeat every component animation and transition. */
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-image { transform: none; }
}

@media (forced-colors: active) { * { forced-color-adjust: auto; } }
