:root {
  --ivory: #fcfaf6;
  --paper: #f5f1e8;
  --sand: #f2ede4;
  --ink: #20201d;
  --terracotta: #a55f4d;
  --sage: #7b806b;
  --taupe: #cdbda9;
  --line: rgba(32, 32, 29, 0.13);
  --serif: "Bodoni Moda", Georgia, serif;
  --italic: "Cormorant Garamond", Georgia, serif;
  --sans: "Karla", "Helvetica Neue", sans-serif;
  --page: min(100% - 68px, 1612px);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ivory);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
::selection { color: var(--ink); background: var(--taupe); }
:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; }

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

.section-space { padding-block: clamp(76px, 8vw, 130px); }

.eyebrow {
  margin: 0;
  color: var(--sage);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

.line-label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.line-label::before {
  width: 34px;
  height: 1px;
  background: var(--taupe);
  content: "";
}

.site-navigation { display: contents; }

.wordmark {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 34px;
  border-bottom: 1px solid rgba(32, 32, 29, 0.08);
  background: rgba(252, 250, 246, 0.86);
  backdrop-filter: blur(16px);
}

.site-header__actions,
.site-header__quick {
  display: flex;
  align-items: center;
}

.site-header__actions { gap: 28px; }
.site-header__quick { gap: 24px; }

.site-header__quick a {
  color: var(--sage);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-header__quick a:hover { color: var(--ink); }

.menu-button,
.menu-panel__close {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 11px;
  padding: 9px 18px;
  border: 1px solid rgba(32, 32, 29, 0.22);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.menu-button:hover {
  color: var(--ivory);
  border-color: var(--ink);
  background: var(--ink);
}

.menu-button__icon { display: grid; gap: 4px; }
.menu-button__icon i { display: block; width: 16px; height: 1px; background: currentColor; }

.menu-panel {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  min-height: 100dvh;
  padding: 80px 8vw;
  color: var(--paper);
  background: var(--ink);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0.5s;
}

.menu-panel.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.menu-panel__close {
  position: absolute;
  top: 22px;
  right: 30px;
  color: var(--paper);
  border-color: rgba(245, 241, 232, 0.3);
}

.menu-panel__nav { display: grid; gap: 0; }

.menu-panel__nav a {
  width: fit-content;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 82px);
  line-height: 1.12;
}

.menu-panel__nav a:hover { color: var(--taupe); }

.menu-panel > p {
  max-width: 30ch;
  margin: 44px 0 0;
  color: var(--taupe);
  font-family: var(--italic);
  font-size: 19px;
  font-style: italic;
}

.flash-wrap {
  position: fixed;
  z-index: 70;
  top: 96px;
  right: 24px;
}

.flash {
  width: fit-content;
  max-width: 420px;
  margin: 0 0 10px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(32, 32, 29, 0.12);
  font-size: 14px;
}

.flash--alert { color: #7a2f22; background: #fff3ef; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.94fr);
  gap: 6vw;
  align-items: end;
  padding-top: clamp(50px, 5vw, 90px);
}

.hero__copy { padding-bottom: clamp(60px, 6vw, 105px); }

.hero h1,
.shop-hero h1,
.journal-hero h1 {
  margin: 25px 0 0;
  font-family: var(--serif);
  font-size: clamp(62px, 10.2vw, 166px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.91;
}

.hero h1 em,
.shop-hero h1 em,
.journal-hero h1 em {
  color: var(--terracotta);
  font-weight: 400;
}

.hero h1 {
  font-size: clamp(68px, 10.8vw, 176px);
  letter-spacing: -0.035em;
}

.hero__intro {
  max-width: 45ch;
  margin: 30px 0 0;
  color: rgba(32, 32, 29, 0.74);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.7;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 29px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.button--dark { color: var(--paper); background: var(--ink); }
.button--dark:hover { background: var(--terracotta); }
.button--outline { border-color: rgba(32, 32, 29, 0.25); }
.button--outline:hover { border-color: var(--ink); background: var(--paper); }
.button--light-outline { color: var(--paper); border-color: rgba(245, 241, 232, 0.35); }
.button--light-outline:hover { color: var(--ink); background: var(--paper); }

.hero__visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding-bottom: clamp(45px, 5vw, 90px);
}

.hero__image {
  width: min(100%, 620px);
  height: min(72vh, 760px);
  min-height: 560px;
  border-radius: 2px;
  object-fit: cover;
}

.hero__detail {
  position: absolute;
  bottom: 11vw;
  left: -1vw;
  width: clamp(120px, 12vw, 190px);
  aspect-ratio: 1 / 1.24;
  border-radius: 2px;
  box-shadow: 0 24px 60px rgba(32, 32, 29, 0.16);
  object-fit: cover;
}

.marquee {
  overflow: hidden;
  padding: 15px 0;
  border-block: 1px solid rgba(32, 32, 29, 0.1);
  background: var(--paper);
}

.marquee > div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 36px;
  animation: marquee 48s linear infinite;
  color: var(--sage);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.marquee i { color: var(--taupe); font-size: 8px; }
.marquee em { color: var(--terracotta); font-family: var(--italic); font-size: 17px; letter-spacing: 0.04em; text-transform: none; }

@keyframes marquee { to { transform: translateX(-50%); } }

.about-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(50px, 7vw, 120px);
  align-items: start;
}

.portrait-frame { overflow: hidden; aspect-ratio: 4 / 5; border-radius: 2px; }
.portrait-frame img { height: 100%; object-fit: cover; }

.about-section blockquote {
  max-width: 30ch;
  margin: 28px 0;
  font-family: var(--italic);
  font-size: clamp(26px, 2.75vw, 43px);
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.34;
}

.about-section blockquote + p {
  max-width: 54ch;
  color: rgba(32, 32, 29, 0.72);
  font-size: 16px;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  margin-top: 20px;
  border-bottom: 1px solid var(--taupe);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.text-link:hover { color: var(--terracotta); border-color: var(--terracotta); }

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 44px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.section-heading h2,
.edit-section h2,
.partnerships h2,
.newsletter-section h2,
.collections-feature h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 3.6vw, 56px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.section-heading--split { align-items: end; border: 0; }
.section-heading--split > p { max-width: 36ch; margin: 0; color: rgba(32, 32, 29, 0.58); font-size: 14px; line-height: 1.65; }

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3.4vw, 58px);
}

.article-card { display: block; }
.article-card__image { overflow: hidden; margin-bottom: 21px; aspect-ratio: 4 / 5; border-radius: 2px; background: var(--paper); }
.article-card__image img { height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.article-card:hover .article-card__image img { transform: scale(1.02); }
.article-card h3 { margin: 10px 0; font-family: var(--serif); font-size: clamp(22px, 2vw, 31px); font-weight: 400; line-height: 1.18; }
.article-card > p:last-child { margin: 0; color: rgba(32, 32, 29, 0.66); font-size: 15px; line-height: 1.65; }

.places-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-block: 1px solid rgba(32, 32, 29, 0.09);
  background: var(--paper);
}

.place { border-right: 1px solid rgba(32, 32, 29, 0.09); }
.place:last-child { border: 0; }
.place__copy { padding: clamp(48px, 6vw, 110px); }
.place__copy h2 { margin: 14px 0 17px; font-family: var(--serif); font-size: clamp(48px, 5vw, 78px); font-weight: 400; letter-spacing: -0.03em; }
.place__copy > p:last-child { max-width: 38ch; margin: 0; color: rgba(32, 32, 29, 0.72); font-size: 16px; line-height: 1.72; }
.place__image { position: relative; aspect-ratio: 1; }
.place__image > img:first-child { height: 100%; object-fit: cover; }
.place__floating {
  position: absolute;
  right: -5vw;
  bottom: -5vw;
  z-index: 2;
  width: clamp(130px, 13vw, 210px);
  aspect-ratio: 3 / 4;
  box-shadow: 0 26px 70px rgba(32, 32, 29, 0.2);
  object-fit: cover;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 64px) clamp(20px, 2.6vw, 44px);
}

.product-card__link { display: flex; flex-direction: column; gap: 16px; }
.product-card__image { position: relative; overflow: hidden; aspect-ratio: 4 / 5; background: var(--sand); }
.product-card__image img { height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.product-card:hover .product-card__image img { transform: scale(1.025); }
.product-card__image > span { position: absolute; top: 12px; left: 12px; padding: 7px 9px; color: var(--ink); background: rgba(252, 250, 246, 0.9); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; }
.product-card__meta h3 { margin: 9px 0; font-family: var(--serif); font-size: 20px; font-weight: 400; line-height: 1.25; }
.product-card__meta > p:not(.eyebrow) { min-height: 68px; margin: 0; color: rgba(32, 32, 29, 0.62); font-size: 13.5px; line-height: 1.62; }
.product-card__meta > div { display: flex; justify-content: space-between; gap: 12px; margin-top: 14px; padding-top: 13px; border-top: 1px solid var(--line); font-size: 11px; }
.product-card__meta > div strong { font-weight: 500; }
.product-card__meta > div span { color: var(--terracotta); text-transform: uppercase; }
.section-link { margin-top: 42px; }

.chapter-section {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  color: var(--paper);
  background: var(--ink);
}

.chapter-section__image { min-height: 620px; }
.chapter-section__image img { height: 100%; object-fit: cover; object-position: center 32%; }
.chapter-section__copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(58px, 7vw, 120px); }
.chapter-section__copy .eyebrow { color: var(--taupe); }
.chapter-section__copy h2 { max-width: 13ch; margin: 20px 0; font-family: var(--serif); font-size: clamp(38px, 4vw, 62px); font-weight: 400; line-height: 1.04; }
.chapter-section__copy p:not(.eyebrow) { max-width: 42ch; margin: 0; color: rgba(245, 241, 232, 0.7); font-size: 16px; line-height: 1.7; }
.chapter-section__copy .button { margin-top: 36px; }

.partnerships {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(54px, 6vw, 110px);
  align-items: start;
}

.partnerships h2 {
  max-width: 14ch;
  margin: 16px 0 22px;
  font-size: clamp(30px, 3vw, 48px);
  letter-spacing: -0.015em;
  line-height: 1.06;
}

.partnerships__intro > p:not(.eyebrow) {
  max-width: 34ch;
  margin: 0;
  color: rgba(32, 32, 29, 0.7);
  font-size: 15.5px;
  line-height: 1.7;
}

.partnerships__intro .text-link { margin-top: 30px; }
.partnerships__work { border-top: 1px solid var(--line); }

.partnerships__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.partnerships__row strong {
  font-family: var(--serif);
  font-size: clamp(22px, 2.1vw, 32px);
  font-weight: 400;
  line-height: 1.15;
}

.partnerships__row span {
  color: rgba(32, 32, 29, 0.58);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-align: right;
}

.partnerships__note {
  margin: 22px 0 0;
  color: rgba(32, 32, 29, 0.5);
  font-size: 13px;
  line-height: 1.6;
}

.newsletter-section {
  display: block;
  padding: clamp(110px, 8vw, 165px) 34px;
  color: var(--ivory);
  background: var(--terracotta);
  text-align: center;
}

.newsletter-section .eyebrow { color: #eadbd0; }
.newsletter-section h2 {
  max-width: none;
  margin: 22px 0 20px;
  font-size: clamp(42px, 4.2vw, 68px);
  letter-spacing: -0.02em;
  line-height: 1.04;
}
.newsletter-section > div { max-width: 1120px; margin-inline: auto; }
.newsletter-section > div > p:last-child { max-width: 50ch; margin: 0 auto; color: rgba(252, 250, 246, 0.86); font-size: 16.5px; line-height: 1.72; }

.newsletter-form {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: min(100%, 680px);
  margin: 38px auto 0;
}

.newsletter-form__field { flex: 1; min-width: 0; }

.newsletter-form input[type="email"] {
  width: 100%;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(252, 250, 246, 0.42);
  border-radius: 999px;
  color: var(--ivory);
  background: rgba(252, 250, 246, 0.08);
}

.newsletter-form input::placeholder { color: rgba(252, 250, 246, 0.82); }
.newsletter-form input[type="submit"] { min-width: 170px; min-height: 52px; padding: 0 30px; border: 0; border-radius: 999px; color: var(--ink); background: var(--ivory); cursor: pointer; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; transition: color 0.25s, background 0.25s; }
.newsletter-form input[type="submit"]:hover { color: var(--ivory); background: var(--ink); }
.newsletter-form__field small { display: block; margin-top: 6px; color: #fff0ea; }
.newsletter-success { width: fit-content; margin: 38px auto 0; padding: 17px 24px; border: 1px solid rgba(252, 250, 246, 0.35); border-radius: 999px; color: var(--ivory); }
.newsletter-success span { margin-right: 8px; }

.site-footer {
  padding: clamp(90px, 7vw, 120px) max(34px, calc((100vw - 1612px) / 2)) 40px;
  background: var(--ivory);
}

.site-footer__statement {
  margin: 0 0 clamp(70px, 6vw, 100px);
  font-family: var(--serif);
  font-size: clamp(64px, 9.6vw, 154px);
  letter-spacing: -0.035em;
  line-height: 0.9;
}

.site-footer__columns {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: clamp(34px, 4vw, 72px);
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.site-footer__brand { font-family: var(--serif); font-size: 13px; letter-spacing: 0.32em; text-transform: uppercase; }
.site-footer__lead p { max-width: 30ch; margin: 14px 0 0; color: rgba(32, 32, 29, 0.62); font-size: 14px; line-height: 1.7; }
.site-footer__nav { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; font-size: 14px; }
.site-footer__nav > a { color: rgba(32, 32, 29, 0.78); }
.site-footer__nav > a:hover { color: var(--terracotta); }
.site-footer__language { display: flex; align-items: center; gap: 8px; margin-top: 10px; color: var(--sage); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }
.site-footer__language strong { color: var(--ink); font-weight: 600; }
.site-footer__language span:nth-child(2) { opacity: 0.4; }
.site-footer__base { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(32, 32, 29, 0.09); color: rgba(32, 32, 29, 0.5); font-size: 12.5px; }
.site-footer__legal { display: flex; gap: 18px; white-space: nowrap; }

/* Shop and collections */
.shop-hero {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.42fr);
  gap: 8vw;
  align-items: end;
  padding-block: clamp(54px, 6vw, 100px);
}

.shop-hero h1 { max-width: 11ch; font-size: clamp(52px, 7.4vw, 112px); }
.shop-hero > div > p:last-child { max-width: 48ch; color: rgba(32, 32, 29, 0.67); font-size: 16px; line-height: 1.7; }
.shop-hero > img { height: min(44vw, 610px); min-height: 400px; object-fit: cover; }

.shop-catalog { padding-block: 24px clamp(74px, 7vw, 120px); }
.category-filter { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; padding-block: 28px; border-block: 1px solid var(--line); margin-bottom: 46px; }
.category-filter a { display: inline-flex; min-height: 42px; align-items: center; padding: 0 18px; border: 1px solid rgba(32, 32, 29, 0.18); border-radius: 999px; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; }
.category-filter a.is-active, .category-filter a:hover { color: var(--paper); border-color: var(--ink); background: var(--ink); }
.category-filter > span { margin-left: auto; color: var(--sage); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; }

.collections-feature { border-top: 1px solid var(--line); }
.collection-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(32px, 5vw, 80px); }
.collection-card > div { overflow: hidden; margin-bottom: 22px; aspect-ratio: 16 / 10; }
.collection-card img { height: 100%; object-fit: cover; transition: transform 0.5s; }
.collection-card:hover img { transform: scale(1.02); }
.collection-card h3 { margin: 10px 0; font-family: var(--serif); font-size: clamp(28px, 3vw, 46px); font-weight: 400; }
.collection-card > p:not(.eyebrow) { max-width: 54ch; margin: 0; color: rgba(32, 32, 29, 0.65); line-height: 1.65; }
.collection-card > span { display: inline-block; margin-top: 18px; color: var(--terracotta); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }

.disclosure { padding-block: 40px 80px; border-top: 1px solid var(--line); }
.disclosure > p:nth-child(2) { max-width: 72ch; color: rgba(32, 32, 29, 0.65); line-height: 1.7; }
.social-pills { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 21px; }
.social-pills a { display: inline-flex; min-height: 42px; align-items: center; padding: 0 16px; border: 1px solid rgba(32, 32, 29, 0.18); border-radius: 999px; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; }
.social-pills a:hover { color: var(--paper); background: var(--ink); }

.collection-show__hero { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: 7vw; align-items: center; padding-block: clamp(58px, 7vw, 115px); }
.collection-show__hero h1 { margin: 16px 0; font-family: var(--serif); font-size: clamp(52px, 7vw, 110px); font-weight: 400; letter-spacing: -0.04em; line-height: 0.98; }
.collection-show__hero > div > p:not(.eyebrow) { max-width: 50ch; color: rgba(32, 32, 29, 0.68); font-size: 17px; line-height: 1.7; }
.collection-show__hero > img { height: min(66vw, 780px); object-fit: cover; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 23px; }
.tag-row span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--sage); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; }

/* Journal */
.journal-hero { max-width: 1050px; padding-block: clamp(80px, 10vw, 160px); text-align: center; }
.journal-hero .line-label { justify-content: center; }
.journal-hero h1 { font-size: clamp(64px, 9vw, 138px); }
.journal-hero > p:last-child { max-width: 52ch; margin: 28px auto 0; color: rgba(32, 32, 29, 0.67); font-family: var(--italic); font-size: 23px; font-style: italic; line-height: 1.5; }
.journal-index { padding-bottom: clamp(80px, 9vw, 145px); }
.article-grid--index .article-card:first-child { grid-column: span 2; }
.article-grid--index .article-card:first-child .article-card__image { aspect-ratio: 16 / 10; }
.newsletter-section--journal { background: var(--ink); }

.article-show__header { max-width: 1030px; padding-block: clamp(70px, 8vw, 130px) 58px; text-align: center; }
.article-show__header > .eyebrow:first-child { display: block; width: fit-content; margin: 0 auto 44px; color: var(--sage); }
.article-show__header h1 { margin: 18px auto 22px; font-family: var(--serif); font-size: clamp(48px, 7vw, 100px); font-weight: 400; letter-spacing: -0.04em; line-height: 1.02; }
.article-show__header > p:not(.eyebrow) { max-width: 60ch; margin: 0 auto; color: rgba(32, 32, 29, 0.65); font-family: var(--italic); font-size: 22px; font-style: italic; line-height: 1.5; }
.article-show__header time { display: block; margin-top: 24px; color: var(--sage); font-size: 10px; letter-spacing: 0.17em; text-transform: uppercase; }
.article-show__image { max-width: 1320px; height: min(69vw, 820px); }
.article-show__image img { height: 100%; object-fit: cover; }
.prose { max-width: 720px; margin: 0 auto; padding: clamp(70px, 8vw, 120px) 24px; }
.prose p { margin: 0 0 1.6em; font-family: Georgia, serif; font-size: 19px; line-height: 1.85; }
.prose p:first-child::first-letter { float: left; margin: 0.06em 0.08em 0 0; color: var(--terracotta); font-family: var(--serif); font-size: 4.6em; line-height: 0.8; }
.related { border-top: 1px solid var(--line); }
.related .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* Links page */
.links-body { background: var(--sand); }
.links-body > main { min-height: 100vh; }
.links-page { position: relative; min-height: 100vh; overflow: hidden; background: var(--sand); }
.links-page__cover { position: absolute; top: 0; right: 0; left: 0; height: 330px; opacity: 0.48; }
.links-page__cover::after { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(242, 237, 228, 0.25), var(--sand) 84%); content: ""; }
.links-page__cover img { height: 100%; object-fit: cover; }
.links-card { position: relative; z-index: 2; width: min(100% - 40px, 560px); margin: 0 auto; padding: 52px 0 64px; }
.links-profile { display: flex; flex-direction: column; align-items: center; text-align: center; }
.links-profile__avatar { width: 132px; height: 164px; border-radius: 2px; box-shadow: 0 26px 60px rgba(32, 32, 29, 0.18); object-fit: cover; }
.links-profile h1 { margin: 25px 0 0; font-family: var(--serif); font-size: clamp(32px, 7vw, 42px); font-weight: 400; letter-spacing: 0.02em; text-transform: uppercase; }
.links-profile .eyebrow { display: flex; align-items: center; gap: 10px; margin-top: 15px; }
.links-profile .eyebrow span { width: 22px; height: 1px; background: var(--taupe); }
.links-profile blockquote { max-width: 27ch; margin: 17px 0 0; font-family: var(--italic); font-size: 20px; font-style: italic; line-height: 1.5; }
.links-profile .social-pills { justify-content: center; }
.links-divider { display: flex; align-items: center; gap: 16px; margin: 44px 0 21px; color: var(--sage); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; }
.links-divider i { flex: 1; height: 1px; background: var(--line); }
.bio-links { display: grid; gap: 13px; }
.bio-link { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 17px; align-items: center; padding: 13px; border: 1px solid rgba(32, 32, 29, 0.1); border-radius: 2px; background: var(--ivory); box-shadow: 0 1px rgba(32, 32, 29, 0.03); transition: 0.25s; }
.bio-link:hover { transform: translateY(-2px); border-color: rgba(32, 32, 29, 0.2); box-shadow: 0 20px 44px rgba(32, 32, 29, 0.1); }
.bio-link > img { width: 66px; height: 82px; object-fit: cover; }
.bio-link > span { display: grid; }
.bio-link small { color: var(--terracotta); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; }
.bio-link strong { margin-top: 5px; font-family: var(--serif); font-size: 20px; font-weight: 400; line-height: 1.2; }
.bio-link em { margin-top: 5px; color: rgba(32, 32, 29, 0.6); font-size: 13px; font-style: normal; }
.bio-link > i { padding-right: 4px; color: var(--sage); font-style: normal; }
.links-newsletter { margin-top: 42px; padding: 33px 25px; color: var(--paper); background: var(--ink); }
.links-newsletter .eyebrow { color: var(--taupe); }
.links-newsletter h2 { margin: 12px 0; font-family: var(--serif); font-size: 32px; font-weight: 400; }
.links-newsletter > p:not(.eyebrow) { color: rgba(245, 241, 232, 0.7); font-size: 14px; line-height: 1.6; }
.links-newsletter .newsletter-form { margin-top: 22px; }
.links-footer { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 42px; text-align: center; }
.links-footer p { margin: 0; color: rgba(32, 32, 29, 0.42); font-size: 9px; letter-spacing: 0.17em; text-transform: uppercase; }
.links-footer .text-link { margin: 0; }

.empty-state { padding: 60px; color: var(--sage); background: var(--paper); text-align: center; }

/* Authentication and admin */
.admin-body { background: #f1ede5; }
.admin-shell { display: grid; min-height: 100vh; grid-template-columns: 250px minmax(0, 1fr); }
.admin-sidebar { position: sticky; top: 0; display: flex; height: 100vh; flex-direction: column; padding: 30px 22px; color: var(--paper); background: var(--ink); }
.admin-brand { display: grid; padding: 0 10px 28px; border-bottom: 1px solid rgba(245, 241, 232, 0.14); font-family: var(--serif); text-transform: uppercase; }
.admin-brand span { letter-spacing: 0.16em; }
.admin-brand small { margin-top: 5px; color: var(--taupe); font-family: var(--sans); font-size: 9px; letter-spacing: 0.3em; }
.admin-nav { display: grid; gap: 4px; margin-top: 25px; }
.admin-nav__link { padding: 11px 12px; border-radius: 2px; color: rgba(245, 241, 232, 0.68); font-size: 13px; }
.admin-nav__link:hover, .admin-nav__link.is-active { color: var(--paper); background: rgba(245, 241, 232, 0.1); }
.admin-sidebar__footer { display: grid; gap: 9px; margin-top: auto; padding: 22px 10px 0; border-top: 1px solid rgba(245, 241, 232, 0.14); font-size: 12px; }
.text-button { padding: 0; border: 0; color: var(--taupe); background: transparent; cursor: pointer; }
.admin-main { width: 100%; max-width: 1440px; padding: 42px; }
.admin-header { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 32px; }
.admin-header h1 { margin: 5px 0 0; font-family: var(--serif); font-size: 43px; font-weight: 400; }
.admin-header p { margin: 0; color: var(--sage); }
.admin-button { display: inline-flex; min-height: 42px; align-items: center; justify-content: center; padding: 0 16px; border: 1px solid var(--ink); border-radius: 2px; color: var(--paper); background: var(--ink); cursor: pointer; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.admin-button:hover { border-color: var(--terracotta); background: var(--terracotta); }
.admin-button--secondary { color: var(--ink); background: transparent; }
.admin-button--danger { border-color: #8d4538; color: #8d4538; background: transparent; }
.admin-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.stat-card, .admin-panel { padding: 24px; border: 1px solid rgba(32, 32, 29, 0.1); background: var(--ivory); }
.stat-card strong { display: block; font-family: var(--serif); font-size: 46px; font-weight: 400; }
.stat-card span { color: var(--sage); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }
.admin-panel { margin-top: 28px; }
.admin-panel h2 { margin: 0 0 20px; font-family: var(--serif); font-size: 28px; font-weight: 400; }
.admin-table { width: 100%; border-collapse: collapse; background: var(--ivory); }
.admin-table th, .admin-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: middle; }
.admin-table th { color: var(--sage); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; }
.admin-table td { font-size: 13px; }
.admin-table td strong { font-weight: 600; }
.admin-table__actions { display: flex; gap: 12px; justify-content: flex-end; }
.admin-table__actions a { color: var(--terracotta); }
.status { display: inline-flex; padding: 5px 7px; border-radius: 99px; color: #355442; background: #e5f0e8; font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; }
.status--draft { color: #755b30; background: #f3ead8; }

.admin-form { max-width: 920px; padding: 28px; border: 1px solid rgba(32, 32, 29, 0.1); background: var(--ivory); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { color: var(--sage); font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.field input:not([type="checkbox"]), .field textarea, .field select { width: 100%; min-height: 45px; padding: 10px 12px; border: 1px solid rgba(32, 32, 29, 0.2); border-radius: 2px; color: var(--ink); background: white; }
.field textarea { min-height: 130px; resize: vertical; line-height: 1.55; }
.field small { color: var(--terracotta); }
.check-row, .check-grid { display: flex; flex-wrap: wrap; gap: 12px 22px; }
.check-row label, .check-grid label { display: inline-flex; align-items: center; gap: 7px; color: var(--ink); font-size: 13px; letter-spacing: 0; text-transform: none; }
.check-grid { padding: 15px; border: 1px solid var(--line); }
.form-actions { display: flex; gap: 10px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); }
.error-list { margin: 0 0 22px; padding: 14px 18px 14px 34px; color: #812e23; background: #fff0ec; }
.admin-show { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 32px; }
.admin-show__content, .admin-show__aside { padding: 28px; background: var(--ivory); }
.admin-show__content h2 { margin: 0 0 20px; font-family: var(--serif); font-size: 36px; font-weight: 400; }
.admin-show__content p { line-height: 1.7; }
.admin-show__aside img { margin-bottom: 20px; }
.admin-show__aside dl { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; font-size: 12px; }
.admin-show__aside dt { color: var(--sage); }
.admin-show__aside dd { margin: 0; text-align: right; }

body:not(.admin-body) > main > form,
body:not(.admin-body) > main > h1,
body:not(.admin-body) > main > p {
  width: min(100% - 40px, 520px);
  margin-inline: auto;
}

body:not(.admin-body) > main > h1 { margin-top: 80px; font-family: var(--serif); font-size: 46px; font-weight: 400; }
body:not(.admin-body) > main > form { display: grid; gap: 15px; margin-block: 30px 100px; }
body:not(.admin-body) > main > form input { width: 100%; min-height: 48px; padding: 0 13px; border: 1px solid var(--line); }
body:not(.admin-body) > main > form input[type="submit"] { color: var(--paper); background: var(--ink); cursor: pointer; }

@media (max-width: 1080px) {
  :root { --page: min(100% - 44px, 1000px); }
  .hero { grid-template-columns: 1fr; gap: 20px; }
  .hero__copy { padding-bottom: 0; }
  .hero__visual { justify-content: center; }
  .hero__image { width: 100%; height: 72vw; min-height: 440px; }
  .hero__detail { left: 3vw; bottom: 12vw; }
  .about-section { grid-template-columns: 0.6fr 1fr; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 48px; }
  .chapter-section { grid-template-columns: 1fr; }
  .chapter-section__image { min-height: 70vw; }
  .site-footer__columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  :root { --page: calc(100% - 36px); }
  .site-header { min-height: 72px; padding: 14px 18px; }
  .wordmark { font-size: 13px; letter-spacing: 0.24em; }
  .site-header__quick { display: none; }
  .menu-panel { justify-content: center; padding: 82px 24px 42px; }
  .menu-panel__close { top: 16px; right: 18px; }
  .menu-panel__nav a { font-size: clamp(40px, 12vw, 54px); line-height: 1.08; }
  .menu-panel > p { margin-top: 34px; font-size: 18px; }
  .hero h1 { font-size: clamp(62px, 20vw, 100px); }
  .hero__intro { font-size: 16px; }
  .button-row, .button-row .button { width: 100%; }
  .hero__image { height: 112vw; }
  .hero__detail { display: none; }
  .about-section { grid-template-columns: 1fr; }
  .about-section .portrait-frame { max-width: 80%; }
  .article-grid, .article-grid--index, .related .article-grid { grid-template-columns: 1fr; }
  .article-grid--index .article-card:first-child { grid-column: auto; }
  .article-grid--index .article-card:first-child .article-card__image { aspect-ratio: 4 / 5; }
  .section-heading, .section-heading--split { align-items: flex-start; flex-direction: column; }
  .places-section { grid-template-columns: 1fr; }
  .place { border-right: 0; border-bottom: 1px solid var(--line); }
  .place--reverse { display: flex; flex-direction: column-reverse; }
  .place__floating { display: none; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 38px 14px; overflow: visible; }
  .product-card { min-width: 0; }
  .product-card__link { gap: 12px; }
  .product-card__image > span { top: 8px; left: 8px; padding: 6px 7px; font-size: 8px; }
  .product-card__meta .eyebrow { font-size: 8px; line-height: 1.5; }
  .product-card__meta h3 { margin: 7px 0; font-size: 17px; }
  .product-card__meta > p:not(.eyebrow) { min-height: 0; font-size: 12px; line-height: 1.55; }
  .product-card__meta > div { gap: 6px; margin-top: 11px; padding-top: 10px; font-size: 9px; }
  .chapter-section__image { min-height: 105vw; }
  .partnerships { grid-template-columns: 1fr; gap: 50px; }
  .partnerships__row { align-items: flex-start; flex-direction: column; gap: 8px; padding: 22px 0; }
  .partnerships__row span { text-align: left; }
  .newsletter-section { padding: 96px 18px; }
  .newsletter-section h2 { font-size: clamp(42px, 13vw, 58px); }
  .newsletter-form { align-items: stretch; flex-direction: column; }
  .newsletter-form input[type="submit"] { width: 100%; }
  .site-footer { padding: 76px 20px 30px; }
  .site-footer__statement { margin-bottom: 70px; font-size: clamp(58px, 18vw, 86px); line-height: 0.94; }
  .site-footer__columns { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 42px 28px; }
  .site-footer__lead { grid-column: 1 / -1; }
  .site-footer__base { align-items: flex-start; flex-direction: column; line-height: 1.55; }
  .site-footer__legal { flex-wrap: wrap; }
  .shop-hero { grid-template-columns: 1fr; }
  .shop-hero h1 { font-size: 15vw; }
  .shop-hero > img { height: 108vw; }
  .category-filter > span { width: 100%; margin: 8px 0 0; }
  .collection-grid { grid-template-columns: 1fr; }
  .collection-show__hero { grid-template-columns: 1fr; }
  .collection-show__hero > img { height: 110vw; }
  .article-show__image { width: 100%; height: 80vw; }
  .bio-link em { display: none; }
  .links-card { width: calc(100% - 32px); padding-top: 38px; }
  .links-profile__avatar { width: 112px; height: 140px; }
  .links-newsletter { padding: 28px 20px; }
  .admin-shell { display: block; }
  .admin-sidebar { position: static; height: auto; }
  .admin-nav { grid-template-columns: repeat(2, 1fr); }
  .admin-sidebar__footer { margin-top: 22px; }
  .admin-main { padding: 24px 16px; }
  .admin-grid, .form-grid, .admin-show { grid-template-columns: 1fr; }
  .admin-header { align-items: flex-start; flex-direction: column; }
  .admin-table { display: block; overflow-x: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
