:root {
  --ink: #1d2526;
  --ink-soft: #536062;
  --paper: #f7f9f8;
  --mist: #edf2f1;
  --mist-deep: #e1eae8;
  --line: rgba(29, 37, 38, 0.15);
  --line-strong: rgba(29, 37, 38, 0.28);
  --accent: #879d99;
  --accent-deep: #5f7773;
  --display: "Iowan Old Style", "Baskerville", "Times New Roman", "Yu Mincho", serif;
  --sans: Inter, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: radial-gradient(circle at 12% 4%, rgba(224, 235, 233, 0.85), transparent 27rem), linear-gradient(145deg, var(--paper) 0%, #f4f7f6 52%, #edf3f2 100%);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}
a { color: inherit; text-decoration: none; }
img { display: block; height: 100%; object-fit: cover; width: 100%; }
button { font: inherit; }

.site-header {
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(247, 249, 248, 0.68);
  border-bottom: 1px solid rgba(29, 37, 38, 0.09);
  display: flex;
  justify-content: space-between;
  padding: 20px clamp(22px, 4vw, 66px);
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
}
.brand { align-items: center; display: inline-flex; gap: 12px; }
.brand-mark { align-items: center; background: rgba(29, 37, 38, 0.93); color: var(--paper); display: inline-flex; font-family: var(--display); font-size: 14px; height: 31px; justify-content: center; letter-spacing: -0.04em; width: 31px; }
.brand-name { font-size: 13px; font-weight: 500; letter-spacing: 0.09em; }
.main-nav { display: flex; gap: 30px; font-size: 11px; letter-spacing: 0.1em; }
.main-nav a, .site-footer a { transition: color 180ms ease; }
.main-nav a:hover, .site-footer a:hover { color: var(--accent-deep); }
.menu-button { background: transparent; border: 0; cursor: pointer; display: none; padding: 8px; }
.menu-button span { background: var(--ink); display: block; height: 1px; margin: 5px 0; width: 22px; }

.hero { display: grid; gap: clamp(36px, 5vw, 100px); grid-template-columns: minmax(270px, 0.76fr) minmax(430px, 1.24fr); min-height: 810px; overflow: hidden; padding: 128px clamp(22px, 7vw, 120px) 100px; position: relative; }
.hero::before { background: radial-gradient(circle, rgba(255, 255, 255, 0.92) 0, rgba(255, 255, 255, 0) 68%); content: ""; height: 570px; pointer-events: none; position: absolute; right: 1%; top: 8%; width: 570px; }
.hero-copy { align-self: center; padding: 20px 0 30px; position: relative; z-index: 1; }
.eyebrow, .section-label, .image-caption, .look-meta { letter-spacing: 0.13em; text-transform: uppercase; }
.eyebrow { color: var(--accent-deep); font-size: 10px; margin: 0 0 27px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--display); font-weight: 400; letter-spacing: -0.055em; }
h1 { font-size: clamp(67px, 8.8vw, 126px); line-height: 0.86; margin-bottom: 35px; }
h1 em, h2 em { color: var(--accent-deep); font-style: italic; }
.hero-lead { color: var(--ink-soft); font-size: 16px; line-height: 2; margin-bottom: 31px; }
.hero-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 22px; }
.text-link { border-bottom: 1px solid var(--ink); display: inline-flex; font-size: 12px; gap: 24px; letter-spacing: 0.07em; padding-bottom: 7px; transition: border-color 180ms ease, color 180ms ease; }
.text-link:hover { border-color: var(--accent-deep); color: var(--accent-deep); }
.text-link span { font-size: 18px; line-height: 0.7; }
.button { background: rgba(29, 37, 38, 0.94); color: var(--paper); display: inline-flex; font-size: 11px; gap: 24px; letter-spacing: 0.1em; padding: 15px 19px; transition: background 180ms ease, transform 180ms ease; }
.button:hover { background: var(--accent-deep); transform: translateY(-2px); }
.button span { font-size: 16px; line-height: 0.9; }
.hero-note { align-items: center; color: var(--ink-soft); display: flex; font-size: 10px; gap: 12px; letter-spacing: 0.06em; margin-top: 75px; }
.note-line { background: var(--accent); display: inline-block; height: 1px; width: 38px; }
.hero-visual { align-self: center; position: relative; z-index: 1; }
.image-frame { aspect-ratio: 1.08 / 1; background: rgba(255, 255, 255, 0.55); border: 1px solid rgba(255, 255, 255, 0.95); box-shadow: 0 25px 70px rgba(75, 100, 97, 0.11); margin-left: auto; max-width: 660px; overflow: hidden; padding: 10px; }
.image-frame img { object-fit: contain; }
.image-caption { bottom: -28px; color: var(--ink-soft); font-size: 9px; position: absolute; right: 0; }

.category-strip { display: grid; grid-template-columns: 1fr 1fr; margin: 0 clamp(22px, 7vw, 120px) 110px; }
.category-card { background: rgba(255, 255, 255, 0.32); border: 1px solid var(--line); display: grid; gap: 8px 20px; grid-template-columns: auto 1fr auto; padding: 30px; transition: background 180ms ease, border-color 180ms ease, transform 180ms ease; }
.category-card + .category-card { border-left: 0; }
.category-card--dark { background: rgba(29, 37, 38, 0.92); color: var(--paper); }
.category-card:hover { background: rgba(255, 255, 255, 0.78); border-color: var(--line-strong); transform: translateY(-3px); }
.category-card--dark:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: var(--paper); }
.category-number { font-size: 10px; letter-spacing: 0.12em; }
.category-title { font-family: var(--display); font-size: clamp(24px, 3vw, 36px); letter-spacing: -0.04em; line-height: 1; }
.category-arrow { font-size: 25px; line-height: 0.8; }
.category-description { color: var(--ink-soft); font-size: 12px; grid-column: 2 / -1; }
.category-card--dark .category-description { color: rgba(247, 249, 248, 0.68); }

.section-rule { border-top: 1px solid var(--line); }
.intro, .journal { margin: 0 clamp(22px, 7vw, 120px); padding: 31px 0 116px; }
.section-label { color: var(--accent-deep); font-size: 10px; }
.intro-grid { display: grid; gap: 8vw; grid-template-columns: 1.1fr 0.9fr; margin-top: 64px; }
.intro h2, .journal h2 { font-size: clamp(43px, 5.3vw, 76px); line-height: 1.02; margin: 0; }
.intro-body { align-self: end; max-width: 410px; }
.intro-body p:first-child { font-size: 20px; line-height: 1.75; }
.muted { color: var(--ink-soft); font-size: 14px; }

.collection { background: rgba(232, 240, 238, 0.62); border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); padding: 106px clamp(22px, 7vw, 120px) 122px; }
.collection .section-label { color: var(--accent-deep); }
.collection-heading { align-items: end; display: flex; justify-content: space-between; margin-bottom: 63px; }
.collection h2 { font-size: clamp(54px, 6.5vw, 98px); line-height: 0.88; margin: 29px 0 0; }
.collection-heading > p { color: var(--ink-soft); font-size: 14px; line-height: 1.8; margin: 0 0 4px; text-align: right; }
.look-grid { align-items: start; display: grid; gap: clamp(20px, 3vw, 52px); grid-template-columns: 1.15fr 0.85fr 0.85fr; }
.look-card--large { margin-top: 46px; }
.look-image { aspect-ratio: 0.74; background: rgba(255, 255, 255, 0.65); overflow: hidden; }
.look-card--large .look-image { aspect-ratio: 0.72; }
.look-card img { filter: saturate(0.76); transition: filter 500ms ease, transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1); }
.look-card:hover img { filter: saturate(0.96); transform: scale(1.035); }
.look-meta { color: var(--ink-soft); display: flex; font-size: 9px; justify-content: space-between; margin: 18px 0 9px; }
.look-card h3 { font-family: var(--display); font-size: 25px; font-weight: 400; letter-spacing: -0.03em; margin: 0 0 7px; }
.look-card p { color: var(--ink-soft); font-size: 12px; margin-bottom: 0; }

.product-index { margin: 0 clamp(22px, 7vw, 120px); padding: 31px 0 126px; }
.product-index-heading { align-items: end; display: flex; justify-content: space-between; margin: 64px 0 63px; }
.product-index h2 { font-size: clamp(54px, 6.5vw, 98px); line-height: 0.88; margin: 0; }
.product-index-heading p { color: var(--ink-soft); font-size: 14px; line-height: 1.8; margin: 0 0 4px; text-align: right; }
.product-links { border-top: 1px solid var(--line); }
.product-links a { align-items: center; border-bottom: 1px solid var(--line); display: grid; gap: 20px; grid-template-columns: 55px 1fr auto; padding: 22px 0; transition: color 180ms ease, padding 180ms ease; }
.product-links a:hover { color: var(--accent-deep); padding-left: 8px; }
.product-links span, .product-links em { color: var(--ink-soft); font-size: 11px; font-style: normal; letter-spacing: 0.08em; }
.product-links strong { font-family: var(--display); font-size: 24px; font-weight: 400; }

.journal { padding-bottom: 126px; }
.journal-row { align-items: end; display: flex; justify-content: space-between; margin-top: 64px; }
.journal-copy { max-width: 400px; }
.journal-copy p { color: var(--ink-soft); font-size: 15px; margin-bottom: 28px; }
.closing-cta { background: rgba(224, 235, 233, 0.82); padding: 114px 22px 124px; text-align: center; }
.closing-cta .eyebrow { margin-bottom: 21px; }
.closing-cta h2 { font-size: clamp(50px, 7vw, 100px); line-height: 0.92; margin-bottom: 44px; }
.site-footer { display: flex; font-size: 10px; justify-content: space-between; letter-spacing: 0.08em; padding: 25px clamp(22px, 4vw, 66px); text-transform: uppercase; }
.site-footer span:nth-child(2) { color: var(--ink-soft); }

@media (max-width: 800px) {
  .site-header { padding-top: 18px; }
  .main-nav { background: rgba(247, 249, 248, 0.93); box-shadow: 0 12px 28px rgba(75, 100, 97, 0.1); display: none; flex-direction: column; gap: 15px; left: 22px; padding: 18px 20px; position: absolute; right: 22px; top: 62px; }
  .main-nav.is-open { display: flex; }
  .menu-button { display: block; }
  .hero { display: flex; flex-direction: column; min-height: 0; padding-top: 115px; }
  .hero-copy { padding: 22px 0 67px; }
  h1 { font-size: clamp(67px, 20vw, 112px); }
  .hero-note { margin-top: 55px; }
  .hero-visual { width: 100%; }
  .image-frame { max-width: none; }
  .category-strip { grid-template-columns: 1fr; margin-bottom: 80px; }
  .category-card + .category-card { border-left: 1px solid var(--line); border-top: 0; }
  .intro-grid { gap: 44px; grid-template-columns: 1fr; margin-top: 48px; }
  .intro-body { max-width: 520px; }
  .collection-heading { align-items: start; flex-direction: column; gap: 31px; }
  .collection-heading > p { text-align: left; }
  .look-grid { gap: 45px 18px; grid-template-columns: repeat(2, 1fr); }
  .look-card--large { grid-column: span 2; margin-top: 0; }
  .look-card--large .look-image { aspect-ratio: 0.9; }
  .product-index-heading { align-items: start; flex-direction: column; gap: 32px; }
  .product-index-heading p { text-align: left; }
  .product-links a { gap: 12px; grid-template-columns: 35px 1fr; }
  .product-links em { grid-column: 2; }
  .journal-row { align-items: start; flex-direction: column; gap: 44px; }
  .site-footer { flex-wrap: wrap; gap: 8px 24px; }
  .site-footer span:nth-child(2) { order: 3; width: 100%; }
}

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