@charset "UTF-8";

:root {
  --paper: #f7f0df;
  --paper-light: #fffaf0;
  --paper-deep: #eee3cc;
  --ink: #272822;
  --ink-soft: #56574d;
  --line: rgba(39, 40, 34, 0.24);
  --pink: #cf6f7c;
  --pink-dark: #a84f5c;
  --olive: #666b43;
  --sun: #e7b84c;
  --apricot: #e7c8ad;
  --sans: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", YuGothic,
    Meiryo, sans-serif;
  --heading: var(--sans);
  --latin: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --hero-position-y: 53%;
  --heading-line-height: 1.25;
  --season-label-size: 11px;
  --season-title-size: 48px;
  --hero-background: #f7f0df;
  --hero-text: #272822;
  --hero-accent: #cf6f7c;
  --delivery-background: #fffaf0;
  --delivery-text: #272822;
  --delivery-accent: #a84f5c;
  --season-background: #f7f0df;
  --season-text: #272822;
  --season-accent: #a84f5c;
  --products-background: #f7f0df;
  --products-text: #272822;
  --products-accent: #a84f5c;
  --craft-background: #e7c8ad;
  --craft-text: #272822;
  --craft-accent: #666b43;
  --approach-background: #f7f0df;
  --approach-text: #272822;
  --approach-accent: #a84f5c;
  --gift-background: #fffaf0;
  --gift-text: #272822;
  --gift-accent: #272822;
  --archive-background: #f7f0df;
  --archive-text: #272822;
  --archive-accent: #666b43;
  --final-background: #616548;
  --final-text: #fffaf0;
  --final-accent: #efe4b8;
  --final-button: #cf6f7c;
  --footer-background: #262721;
  --footer-text: #f7f0df;
  --footer-accent: #d6c89b;
  --content: min(1240px, calc(100vw - 96px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3 {
  font-family: var(--heading);
}

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

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--pink-dark);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
}

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

.section-shell {
  width: var(--content);
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--olive);
  font-family: var(--latin);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 54px;
}

.section-heading h2,
.craft-copy h2,
.philosophy h2,
.gift-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(32px, 3.2vw, 52px);
  font-weight: 500;
  letter-spacing: 0.035em;
  line-height: var(--heading-line-height);
}

.section-intro {
  max-width: 520px;
  margin: 0 0 4px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 2;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid transparent;
  padding: 14px 22px 14px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button span,
.text-link span,
.line-link span {
  font-family: var(--latin);
  font-size: 16px;
}

.button-primary {
  background: var(--pink);
  color: #fff;
}

.button-primary:hover {
  background: var(--pink-dark);
}

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

.button-outline:hover {
  background: var(--ink);
  color: #fff;
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.button-dark:hover {
  background: var(--pink-dark);
}

.text-link,
.line-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border-bottom: 1px solid currentColor;
  padding: 10px 0 8px;
  font-size: 13px;
  font-weight: 700;
}

.text-link:hover,
.line-link:hover {
  color: var(--pink-dark);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 74px;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 240, 223, 0.96);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: grid;
  width: var(--content);
  height: 100%;
  margin: 0 auto;
  grid-template-columns: 180px 1fr auto;
  gap: 36px;
  align-items: center;
}

.brand-link {
  display: block;
  width: 120px;
}

.brand-link img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 3vw, 54px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.desktop-nav a,
.footer-links a {
  position: relative;
}

.desktop-nav a::after,
.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.header-shop-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--pink);
  padding: 8px 14px 8px 17px;
  color: var(--pink-dark);
  font-size: 12px;
  font-weight: 700;
}

.header-shop-link:hover {
  background: var(--pink);
  color: #fff;
}

.mobile-nav {
  display: none;
}

/* Hero */

.hero {
  display: grid;
  min-height: calc(100svh - 74px);
  grid-template-columns: minmax(440px, 46%) minmax(0, 54%);
  border-bottom: 1px solid var(--line);
  background: var(--hero-background);
  color: var(--hero-text);
}

.hero .eyebrow {
  color: var(--hero-accent);
}

.hero-image {
  position: relative;
  min-height: 630px;
  grid-column: 2;
  grid-row: 1;
  overflow: hidden;
  background: #d0ab8f;
}

.hero-image > img {
  object-fit: cover;
  object-position: center var(--hero-position-y);
}

.hero-image-note {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
  font-family: var(--latin);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-shadow: 0 1px 9px rgba(0, 0, 0, 0.5);
}

.hero-copy {
  display: flex;
  width: 100%;
  max-width: 620px;
  min-width: 0;
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(40px, 4vw, 64px);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(38px, 3.2vw, 44px);
  font-weight: 500;
  letter-spacing: 0.015em;
  line-height: var(--heading-line-height);
}

.hero-lead {
  margin: 34px 0 0;
  color: var(--hero-text);
  font-size: 14px;
  line-height: 2.15;
  opacity: 0.76;
}

.hero .button-primary {
  background: var(--hero-accent);
}

.hero-actions {
  display: flex;
  margin-top: 44px;
  align-items: center;
  gap: 32px;
}

/* Delivery */

.shipping-note {
  display: grid;
  min-height: 64px;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  padding: 12px max(48px, calc((100vw - 1240px) / 2));
  background: var(--delivery-background);
  color: var(--delivery-text);
}

.shipping-note-label {
  color: var(--delivery-accent);
  font-family: var(--latin);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.shipping-note p {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
}

.shipping-note a {
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 700;
}

/* Seasonal feature */

.season-feature {
  padding-block: 124px 136px;
  background: var(--season-background);
  box-shadow: 0 0 0 100vmax var(--season-background);
  clip-path: inset(0 -100vmax);
  color: var(--season-text);
}

.season-heading h2 {
  color: var(--season-accent);
  font-size: var(--season-title-size);
}

.season-heading .eyebrow {
  color: var(--season-accent);
  font-size: var(--season-label-size);
}

.season-feature .line-link {
  color: var(--season-accent);
}

.season-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(220px, 0.75fr);
  gap: 42px;
  align-items: end;
}

.season-photo {
  position: relative;
  display: block;
  overflow: hidden;
  background: #dfc5ae;
}

.season-photo-large {
  aspect-ratio: 1.55 / 1;
}

.season-photo img {
  object-fit: cover;
  transition: transform 500ms ease;
}

.season-photo:hover img,
.product-image:hover img {
  transform: scale(1.018);
}

.season-aside {
  padding-bottom: 4px;
}

.season-intro {
  margin: 0 0 30px;
  color: var(--season-text);
  font-size: 14px;
  line-height: 2;
  opacity: 0.76;
}

.season-spec {
  margin: 0 0 34px;
  border-top: 1px solid var(--line);
}

.season-spec div {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 17px 0;
}

.season-spec dt {
  color: var(--season-accent);
  font-family: var(--latin);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.season-spec dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
}

.line-link {
  width: 100%;
}

/* Products */

.products-section {
  padding-block: 124px 138px;
  border-top: 1px solid var(--line);
  background: var(--products-background);
  box-shadow: 0 0 0 100vmax var(--products-background);
  clip-path: inset(0 -100vmax);
  color: var(--products-text);
}

.products-section .eyebrow,
.products-section .product-meta,
.products-section .product-footer a {
  color: var(--products-accent);
}

.products-section .section-intro,
.products-section .product-description {
  color: var(--products-text);
  opacity: 0.76;
}

.products-section .button-outline {
  border-color: var(--products-accent);
  color: var(--products-accent);
}

.products-section .button-outline:hover {
  background: var(--products-accent);
  color: var(--products-background);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.product-card {
  min-width: 0;
}

.product-image {
  position: relative;
  display: block;
  aspect-ratio: 0.86 / 1;
  overflow: hidden;
  background: var(--paper-deep);
}

.product-image img {
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-card:nth-child(2) .product-image img {
  object-position: center 48%;
}

.product-card:nth-child(3) .product-image img {
  object-position: center bottom;
  transform: scale(2);
  transform-origin: center bottom;
}

.product-card:nth-child(3) .product-image:hover img {
  transform: scale(2.04);
}

.product-index {
  position: absolute;
  top: 10px;
  left: 10px;
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  background: var(--paper-light);
  font-family: var(--latin);
  font-size: 9px;
  font-weight: 700;
}

.product-meta {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--olive);
  font-family: var(--latin);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.4;
}

.product-meta p {
  margin: 0;
}

.product-meta p:last-child {
  text-align: right;
}

.product-card h3 {
  margin: 20px 0 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.75;
}

.product-card h3 a:hover {
  color: var(--pink-dark);
}

.product-description {
  min-height: 80px;
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.85;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  margin-top: 14px;
  padding-top: 14px;
  font-size: 12px;
  font-weight: 700;
}

.product-footer a {
  color: var(--pink-dark);
  font-size: 11px;
}

.section-action {
  display: flex;
  margin-top: 58px;
  justify-content: center;
}

/* Craft */

.craft-section {
  background: var(--craft-background);
  color: var(--craft-text);
}

.craft-section .eyebrow {
  color: var(--craft-accent);
}

.craft-inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.35fr);
  gap: clamp(54px, 7vw, 104px);
  padding-block: 128px;
}

.craft-copy {
  align-self: center;
}

.craft-copy > p:not(.eyebrow) {
  margin: 34px 0 0;
  color: var(--craft-text);
  font-size: 14px;
  line-height: 2.15;
}

.craft-keywords {
  display: grid;
  margin: 46px 0 0;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(39, 40, 34, 0.3);
  border-left: 1px solid rgba(39, 40, 34, 0.3);
}

.craft-keywords div {
  border-right: 1px solid rgba(39, 40, 34, 0.3);
  border-bottom: 1px solid rgba(39, 40, 34, 0.3);
  padding: 14px 16px;
}

.craft-keywords dt {
  font-family: var(--latin);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.craft-keywords dd {
  margin: 5px 0 0;
  font-size: 12px;
}

.craft-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, 240px);
  gap: 14px;
}

.craft-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #b58f77;
}

.craft-photo-tall {
  grid-row: 1 / 3;
}

.craft-photo img {
  object-fit: cover;
}

.craft-photo figcaption {
  position: absolute;
  right: 10px;
  bottom: 9px;
  left: 10px;
  color: #fff;
  font-family: var(--latin);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}

/* Philosophy */

.philosophy {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.3fr);
  gap: clamp(60px, 8vw, 126px);
  padding-block: 136px 148px;
  background: var(--approach-background);
  box-shadow: 0 0 0 100vmax var(--approach-background);
  clip-path: inset(0 -100vmax);
  color: var(--approach-text);
}

.philosophy .eyebrow,
.philosophy .process-number,
.philosophy .process-label {
  color: var(--approach-accent);
}

.philosophy-title-block > p:last-child {
  margin: 32px 0 0;
  color: var(--approach-text);
  font-size: 14px;
  line-height: 2.15;
}

.philosophy .process-list p {
  color: var(--approach-text);
  opacity: 0.76;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  min-height: 132px;
  grid-template-columns: 50px 105px minmax(150px, 0.65fr) 1fr;
  gap: 20px;
  align-items: baseline;
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-number {
  color: var(--pink-dark);
  font-family: var(--latin);
  font-size: 18px;
  font-weight: 500;
}

.process-label {
  color: var(--olive);
  font-family: var(--latin);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.process-list h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.process-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.9;
}

/* Gift */

.gift-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  background: var(--gift-background);
  color: var(--gift-text);
}

.gift-section .eyebrow,
.gift-copy li::before {
  color: var(--gift-accent);
}

.gift-image {
  position: relative;
  min-height: 720px;
  background: #c6b197;
}

.gift-image img {
  object-fit: cover;
}

.gift-copy {
  display: flex;
  max-width: 600px;
  flex-direction: column;
  justify-content: center;
  padding: 90px clamp(48px, 7vw, 112px);
}

.gift-copy > p:not(.eyebrow) {
  margin: 34px 0 0;
  color: var(--gift-text);
  font-size: 14px;
  line-height: 2.15;
}

.gift-copy ul {
  margin: 34px 0 42px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.gift-copy li {
  border-bottom: 1px solid var(--line);
  padding: 11px 0;
  font-size: 12px;
}

.gift-copy li::before {
  margin-right: 12px;
  content: "—";
}

.gift-section .button-dark {
  background: var(--gift-accent);
}

/* Archive */

.archive-section {
  padding-block: 132px 146px;
  background: var(--archive-background);
  box-shadow: 0 0 0 100vmax var(--archive-background);
  clip-path: inset(0 -100vmax);
  color: var(--archive-text);
}

.archive-section .eyebrow,
.archive-section .archive-meta {
  color: var(--archive-accent);
}

.archive-section .section-intro,
.archive-card > p {
  color: var(--archive-text);
  opacity: 0.76;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.archive-card {
  min-width: 0;
}

.archive-image {
  position: relative;
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  background: var(--paper-deep);
}

.archive-image img {
  object-fit: cover;
  filter: saturate(0.78);
}

.archive-card:nth-child(1) .archive-image img,
.archive-card:nth-child(3) .archive-image img,
.archive-card:nth-child(4) .archive-image img {
  object-position: center 65%;
  transform: scale(1.65);
}

.sold-out {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  padding: 4px 9px;
  background: rgba(39, 40, 34, 0.68);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.archive-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding: 12px 0 10px;
  color: var(--olive);
  font-family: var(--latin);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.archive-card h3 {
  margin: 17px 0 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}

.archive-card > p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.8;
}

/* Final CTA and footer */

.final-cta {
  display: grid;
  min-height: 590px;
  grid-template-columns: minmax(380px, 58%) minmax(0, 42%);
  background: var(--final-background);
  color: var(--final-text);
}

.final-cta-copy {
  display: flex;
  min-width: 0;
  max-width: none;
  flex-direction: column;
  justify-content: center;
  padding-block: 88px;
  padding-left: max(48px, calc((100vw - 1240px) / 2));
  padding-right: clamp(48px, 6vw, 112px);
}

.final-cta .eyebrow {
  color: var(--final-accent);
}

.final-cta .button-primary {
  background: var(--final-button);
  color: var(--final-text);
}

.final-cta-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 30px 0 0;
  color: var(--final-text);
  font-size: 13px;
}

.final-actions {
  display: flex;
  margin-top: 40px;
  align-items: center;
  gap: 30px;
}

.final-cta-image {
  position: relative;
  min-height: 590px;
  background: #c58f72;
}

.final-cta-image img {
  object-fit: cover;
}

.site-footer {
  padding: 70px max(48px, calc((100vw - 1240px) / 2)) 24px;
  background: var(--footer-background);
  color: var(--footer-text);
}

.footer-main {
  display: grid;
  grid-template-columns: 0.82fr 1.6fr;
  gap: 80px;
  padding-bottom: 68px;
}

.footer-brand img {
  width: 134px;
  height: auto;
  filter: invert(1) brightness(2.6) saturate(0);
}

.footer-brand p {
  max-width: 300px;
  margin: 24px 0 0;
  color: var(--footer-text);
  font-size: 12px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.footer-links > div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.footer-links p {
  margin: 0 0 9px;
  color: var(--footer-accent);
  font-family: var(--latin);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.footer-links a {
  color: var(--footer-text);
  font-size: 11px;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(247, 240, 223, 0.2);
  padding-top: 20px;
  color: var(--footer-text);
  font-family: var(--latin);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1100px) {
  :root {
    --content: min(100% - 64px, 960px);
  }

  .header-inner {
    grid-template-columns: 140px 1fr auto;
    gap: 22px;
  }

  .desktop-nav {
    gap: 24px;
  }

  .hero {
    grid-template-columns: minmax(360px, 47%) minmax(0, 53%);
  }

  .hero-copy {
    padding-inline: 40px;
  }

  .hero-copy h1 {
    font-size: clamp(36px, 3.7vw, 41px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .product-grid,
  .archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 56px;
  }

  .product-image {
    aspect-ratio: 1.05 / 1;
  }

  .product-description {
    min-height: auto;
  }

  .process-list li {
    grid-template-columns: 42px 88px 1fr;
  }

  .process-list p {
    grid-column: 3;
  }

  .gift-image {
    min-height: 620px;
  }

  .gift-copy {
    padding-inline: 52px;
  }

  .shipping-note,
  .site-footer,
  .final-cta-copy {
    padding-inline: 32px;
  }
}

@media (max-width: 899px) {
  :root {
    --content: calc(100% - 40px);
  }

  html {
    scroll-padding-top: 65px;
  }

  body {
    font-size: 14px;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 9px;
  }

  .section-heading {
    display: block;
    margin-bottom: 34px;
  }

  .section-heading h2,
  .craft-copy h2,
  .philosophy h2,
  .gift-copy h2,
  .final-cta h2 {
    font-size: clamp(28px, 8.5vw, 38px);
    line-height: var(--heading-line-height);
  }

  .season-heading h2 {
    font-size: min(var(--season-title-size), 38px);
  }

  .season-heading .eyebrow {
    font-size: min(var(--season-label-size), 18px);
  }

  .section-intro {
    margin-top: 22px;
    font-size: 13px;
    line-height: 1.9;
  }

  .site-header {
    height: 64px;
  }

  .header-inner {
    display: flex;
    width: calc(100% - 32px);
    justify-content: space-between;
    gap: 18px;
  }

  .brand-link {
    width: 102px;
  }

  .desktop-nav,
  .header-shop-link {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .mobile-menu-button {
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 0;
    background: transparent;
  }

  .mobile-menu-button span {
    width: 22px;
    height: 1px;
    background: var(--ink);
  }

  .mobile-nav nav {
    position: absolute;
    top: 63px;
    right: 0;
    left: 0;
    display: flex;
    border-bottom: 1px solid var(--line);
    padding: 28px 20px 32px;
    background: var(--paper-light);
    flex-direction: column;
  }

  .mobile-nav nav a {
    border-bottom: 1px solid var(--line);
    padding: 13px 4px;
    font-size: 13px;
    font-weight: 700;
  }

  .mobile-nav nav a:last-child {
    margin-top: 18px;
    border: 0;
    background: var(--pink);
    color: #fff;
    text-align: center;
  }

  .hero {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .hero-image {
    width: 100%;
    min-height: 0;
    aspect-ratio: 1 / 0.94;
    order: 1;
  }

  .hero-image > img {
    object-position: center 52%;
  }

  .hero-image-note {
    right: 14px;
    bottom: 12px;
    left: 14px;
    font-size: 7px;
  }

  .hero-image-note span:last-child {
    max-width: 54%;
    text-align: right;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
    order: 2;
    padding: 44px 20px 56px;
  }

  .hero-copy h1 {
    font-size: clamp(27px, 7.3vw, 30px);
    line-height: var(--heading-line-height);
  }

  .hero-lead {
    margin-top: 25px;
    font-size: 13px;
    line-height: 2;
  }

  .desktop-break {
    display: none;
  }

  .hero-actions {
    margin-top: 32px;
    flex-direction: column;
    gap: 14px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .shipping-note {
    display: flex;
    padding: 18px 20px 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .shipping-note p {
    font-size: 11px;
  }

  .season-feature,
  .products-section,
  .archive-section {
    padding-block: 80px 88px;
  }

  .season-grid {
    display: flex;
    flex-direction: column;
    gap: 26px;
  }

  .season-photo-large {
    width: 100%;
    aspect-ratio: 1 / 0.78;
  }

  .season-aside {
    width: 100%;
  }

  .season-intro {
    font-size: 13px;
    line-height: 1.9;
  }

  .product-grid,
  .archive-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .product-image {
    aspect-ratio: 1 / 1;
  }

  .product-card h3 {
    font-size: 15px;
  }

  .product-description {
    font-size: 12px;
  }

  .section-action {
    margin-top: 44px;
  }

  .section-action .button {
    width: 100%;
  }

  .craft-inner {
    display: flex;
    padding-block: 80px 88px;
    flex-direction: column;
    gap: 48px;
  }

  .craft-copy > p:not(.eyebrow) {
    margin-top: 25px;
    font-size: 13px;
    line-height: 2;
  }

  .craft-keywords {
    margin-top: 34px;
  }

  .craft-photos {
    grid-template-rows: repeat(2, 175px);
    gap: 8px;
  }

  .philosophy {
    display: block;
    padding-block: 88px 94px;
  }

  .philosophy-title-block > p:last-child {
    margin-top: 25px;
    font-size: 13px;
    line-height: 2;
  }

  .process-list {
    margin-top: 52px;
  }

  .process-list li {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 4px 12px;
    padding: 24px 0;
  }

  .process-number {
    grid-row: 1 / 4;
  }

  .process-label,
  .process-list h3,
  .process-list p {
    grid-column: 2;
  }

  .process-list h3 {
    margin-top: 7px;
  }

  .process-list p {
    margin-top: 8px;
  }

  .gift-section {
    display: flex;
    flex-direction: column;
  }

  .gift-image {
    min-height: 0;
    aspect-ratio: 1 / 0.88;
  }

  .gift-copy {
    max-width: none;
    padding: 72px 20px 82px;
  }

  .gift-copy > p:not(.eyebrow) {
    margin-top: 25px;
    font-size: 13px;
    line-height: 2;
  }

  .gift-copy .button {
    width: 100%;
  }

  .archive-image {
    aspect-ratio: 1 / 0.94;
  }

  .final-cta {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .final-cta-copy {
    max-width: none;
    padding: 76px 20px 80px;
  }

  .final-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .final-actions .button {
    width: 100%;
  }

  .final-cta-image {
    min-height: 0;
    aspect-ratio: 1 / 0.86;
  }

  .site-footer {
    padding: 58px 20px 22px;
  }

  .footer-main {
    display: block;
    padding-bottom: 50px;
  }

  .footer-links {
    margin-top: 50px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 24px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

@media (min-width: 600px) and (max-width: 899px) {
  :root {
    --content: calc(100% - 64px);
  }

  .header-inner {
    width: calc(100% - 48px);
  }

  .hero-image {
    aspect-ratio: 1.5 / 1;
  }

  .hero-copy {
    padding: 60px 32px 70px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-actions {
    max-width: 440px;
  }

  .season-photo-large {
    aspect-ratio: 1.45 / 1;
  }

  .product-grid,
  .archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-image,
  .archive-image {
    aspect-ratio: 1 / 1.05;
  }

  .craft-photos {
    grid-template-rows: repeat(2, 220px);
  }

  .gift-image,
  .final-cta-image {
    aspect-ratio: 1.45 / 1;
  }

  .gift-copy,
  .final-cta-copy {
    padding-inline: 32px;
  }

  .footer-links {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}


/* WordPress-rendered images use the same fill layout as the local preview. */
.hero-image > img,
.season-photo > img,
.product-image > img,
.craft-photo > img,
.gift-image > img,
.archive-image > img,
.final-cta-image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.latest-notice {
  display: grid;
  width: var(--content);
  margin: 24px auto 0;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
  font-size: 12px;
}

.latest-notice > span {
  color: var(--pink-dark);
  font-family: var(--latin);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.latest-notice time {
  color: var(--ink-soft);
  font-family: var(--latin);
  font-size: 9px;
}

.latest-notice p {
  margin: 0;
}

.journal-main {
  width: var(--content);
  min-height: 60vh;
  margin-inline: auto;
  padding-block: 110px 140px;
}

.journal-header,
.journal-entry {
  max-width: 820px;
}

.journal-header h1,
.journal-entry h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 500;
  line-height: var(--heading-line-height);
}

.journal-list {
  margin-top: 64px;
  border-top: 1px solid var(--line);
}

.journal-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.journal-card time,
.journal-entry-meta {
  color: var(--ink-soft);
  font-family: var(--latin);
  font-size: 11px;
}

.journal-card h2 {
  margin: 0;
  font-size: 18px;
}

.journal-entry-content {
  margin-top: 48px;
  font-size: 15px;
}

.journal-entry-content img {
  height: auto;
}

.journal-back {
  margin-top: 64px;
}

@media (max-width: 899px) {
  .latest-notice {
    grid-template-columns: auto 1fr;
    gap: 8px 16px;
  }

  .latest-notice time {
    grid-column: 2;
  }

  .journal-main {
    padding-block: 72px 92px;
  }

  .journal-card {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
