:root {
  --ink: #111111;
  --ink-soft: #585858;
  --paper: #ffffff;
  --warm: #f7f4ef;
  --warm-2: #eee9e1;
  --night: #0b0b0c;
  --line: #dedbd5;
  --white-line: rgba(255, 255, 255, 0.16);
  --danger: #9f3131;
  --max: 1180px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Work Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
  color-scheme: light;
}

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

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

h1, h2, h3, h4, p, blockquote { margin: 0; }
h1, h2, h3, h4, .serif {
  font-family: var(--serif);
  letter-spacing: -0.018em;
}

.wrap {
  width: min(var(--max), calc(100% - 56px));
  margin-inline: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow.light { color: #d5d5d5; }

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

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

/* Navigation */
.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(17, 17, 17, .08);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 30px;
}

.brand {
  width: max-content;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  text-decoration: none;
}

.main-nav, .nav-actions, .socials {
  display: flex;
  align-items: center;
}

.main-nav { gap: 28px; }
.nav-actions { justify-content: flex-end; gap: 18px; }
.socials { gap: 7px; }

.nav-link {
  position: relative;
  padding: 10px 0;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transition: transform .22s ease;
}

.nav-link:hover::after, .nav-link[aria-current="page"]::after { transform: scaleX(1); }

.social-link {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.social-link:hover { background: var(--ink); color: white; border-color: var(--ink); }
.social-link svg { width: 15px; height: 15px; fill: currentColor; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: var(--ink);
  color: white;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-outline { background: transparent; color: var(--ink); }
.button-outline:hover { background: var(--ink); color: white; }
.button-white { border-color: white; background: white; color: var(--ink); }
.button-large { min-height: 56px; padding-inline: 28px; font-size: 15px; }
.button svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; }

/* Store hero */
.store-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 92px;
}

.store-hero::after {
  position: absolute;
  z-index: -1;
  top: 48px;
  right: max(2vw, 20px);
  width: clamp(220px, 30vw, 420px);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(270px, .55fr);
  gap: 72px;
  align-items: end;
}

.store-hero h1 {
  max-width: 850px;
  font-size: clamp(46px, 7.4vw, 86px);
  font-weight: 600;
  line-height: .99;
}

.store-hero h1 em { font-style: italic; font-weight: 400; }

.hero-aside {
  padding-bottom: 9px;
}

.hero-aside p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.hero-aside a {
  display: inline-flex;
  margin-top: 24px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.promise-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--warm);
}

.promise-list {
  min-height: 74px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.promise {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 24px;
  border-right: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.promise:last-child { border-right: 0; }
.promise span { font-family: var(--serif); font-size: 20px; }

/* Products */
.products {
  padding: 108px 0 120px;
  background: #fbfaf8;
}

.section-head {
  max-width: 700px;
  margin-bottom: 52px;
}

.section-head h2 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 600;
  line-height: 1.08;
}

.section-head p {
  max-width: 590px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

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

.product-card {
  position: relative;
  min-height: 100%;
  display: grid;
  grid-template-columns: 42% 58%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: white;
  color: inherit;
  box-shadow: 0 10px 30px rgba(17, 17, 17, .035);
  text-decoration: none;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.product-card:hover {
  border-color: #aaa69f;
  box-shadow: 0 18px 44px rgba(17, 17, 17, .08);
  transform: translateY(-4px);
}
.product-card:hover .product-image img { transform: scale(1.025); }
.product-card:hover .arrow { transform: translate(4px, -4px); }

.product-image {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: var(--warm-2);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.image-date {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 2px;
  background: rgba(11, 11, 12, .94);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
}

.product-copy {
  display: flex;
  flex-direction: column;
  padding: 32px 30px 28px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
}

.pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.pill-dark { border-color: var(--ink); background: var(--ink); color: white; }
.pill-alert { border-color: #e6c4c4; background: #fbeded; color: var(--danger); }

.arrow {
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1;
  transition: transform .22s ease;
}

.product-card h3 {
  max-width: 310px;
  font-size: clamp(25px, 2.5vw, 34px);
  font-weight: 600;
  line-height: 1.1;
}

.product-description {
  margin: 18px 0 32px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.62;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.price {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
}

.price-old { color: #8d8d8d; font-size: 13px; text-decoration: line-through; }
.price-note { margin-left: auto; color: var(--ink-soft); font-size: 11px; font-weight: 600; }

.workshop-note {
  margin-bottom: 17px;
  color: var(--danger);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

/* Guide / chooser */
.chooser {
  padding: 100px 0;
  background: var(--warm);
}

.chooser-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
}

.chooser h2 {
  max-width: 420px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.12;
}

.chooser-list { border-top: 1px solid #cbc7c0; }

.chooser-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid #cbc7c0;
}

.chooser-row strong { font-family: var(--serif); font-size: 18px; }
.chooser-row p { color: var(--ink-soft); font-size: 14px; line-height: 1.55; }

.social-cta {
  padding: 92px 0;
  background: var(--night);
  color: white;
}

.social-cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.social-cta h2 { max-width: 700px; font-size: clamp(34px, 5vw, 58px); line-height: 1.08; }
.social-buttons { display: flex; flex-wrap: wrap; gap: 12px; }

/* Detail */
.breadcrumb {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
}

.breadcrumb a { text-underline-offset: 3px; }
.breadcrumb span { margin: 0 10px; color: #aaa; }

.detail-hero { padding: 72px 0 96px; }

.detail-grid {
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr);
  gap: clamp(54px, 8vw, 110px);
  align-items: center;
}

.detail-art {
  position: relative;
  padding: clamp(22px, 4vw, 46px);
  background: var(--warm);
}

.detail-art::before {
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(17, 17, 17, .18);
  content: "";
  pointer-events: none;
}

.detail-art img { position: relative; width: 100%; aspect-ratio: 1; object-fit: cover; box-shadow: 0 24px 46px rgba(17,17,17,.15); }

.detail-copy h1 {
  max-width: 680px;
  margin-top: 18px;
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 600;
  line-height: 1.02;
}

.detail-lead {
  max-width: 610px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.72;
}

.detail-price {
  display: flex;
  align-items: baseline;
  gap: 13px;
  margin-top: 34px;
}

.detail-price strong { font-family: var(--serif); font-size: 42px; }
.detail-price s { color: #838383; font-size: 15px; }
.save { color: var(--danger); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

.detail-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 27px; }

.microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 12px;
}

.microcopy span::before { margin-right: 6px; content: "✓"; color: var(--ink); font-weight: 700; }

.proof-strip {
  background: var(--night);
  color: white;
}

.proof-grid {
  min-height: 122px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.proof {
  min-height: 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6px 34px;
  border-right: 1px solid var(--white-line);
}

.proof:first-child { padding-left: 0; }
.proof:last-child { border-right: 0; }
.proof strong { font-family: var(--serif); font-size: 28px; }
.proof span { margin-top: 5px; color: #bdbdbd; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.detail-section { padding: 104px 0; }
.detail-section.warm { background: var(--warm); }

.detail-section-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 100px;
}

.detail-section h2 { max-width: 460px; font-size: clamp(34px, 4.5vw, 52px); line-height: 1.1; }
.detail-intro { margin-top: 20px; color: var(--ink-soft); font-size: 16px; line-height: 1.7; }

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

.benefit {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.benefit-num { padding-top: 4px; color: #8b8b8b; font-family: var(--serif); font-size: 15px; }
.benefit h3 { font-size: 23px; line-height: 1.25; }
.benefit p { margin-top: 8px; color: var(--ink-soft); font-size: 14px; line-height: 1.65; }

.chapter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 50px;
  border: 1px solid var(--line);
  background: var(--line);
}

.chapter {
  min-height: 190px;
  padding: 26px;
  background: white;
}

.chapter span { color: #8c8c8c; font-family: var(--serif); font-size: 14px; }
.chapter h3 { margin-top: 28px; font-size: 22px; line-height: 1.25; }
.chapter p { margin-top: 9px; color: var(--ink-soft); font-size: 13px; line-height: 1.55; }

.testimonial {
  max-width: 870px;
  margin-inline: auto;
  text-align: center;
}

.quote-mark { font-family: var(--serif); font-size: 62px; line-height: .7; }
.testimonial blockquote { margin-top: 24px; font-family: var(--serif); font-size: clamp(26px, 3.7vw, 40px); line-height: 1.35; }
.testimonial cite { display: block; margin-top: 24px; color: var(--ink-soft); font-style: normal; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.detail-final {
  padding: 98px 0;
  background: var(--night);
  color: white;
  text-align: center;
}

.detail-final h2 { max-width: 760px; margin: auto; font-size: clamp(38px, 5.2vw, 62px); line-height: 1.06; }
.detail-final p { max-width: 560px; margin: 20px auto 0; color: #c6c6c6; font-size: 16px; line-height: 1.65; }
.detail-final .button { margin-top: 30px; }

/* Footer */
.footer { padding: 42px 0; border-top: 1px solid var(--line); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.footer p { color: var(--ink-soft); font-size: 12px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 22px; }
.footer-links a { color: var(--ink-soft); font-size: 12px; text-underline-offset: 3px; }

@media (max-width: 1030px) {
  .nav {
    grid-template-columns: 1fr auto;
    gap: 10px 18px;
    padding: 13px 0 10px;
  }
  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    gap: 24px;
    padding-top: 2px;
    border-top: 1px solid rgba(17, 17, 17, .08);
  }
  .nav-actions { grid-column: 2; grid-row: 1; }
  .product-card { grid-template-columns: 1fr; }
  .product-image { min-height: auto; aspect-ratio: 4 / 3; }
  .chooser-grid, .detail-section-grid { gap: 55px; }
}

@media (max-width: 820px) {
  .wrap { width: min(var(--max), calc(100% - 36px)); }
  .nav { min-height: 72px; }
  .store-hero { padding: 74px 0 66px; }
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .store-hero h1 { max-width: 680px; }
  .hero-aside { max-width: 520px; }
  .products { padding: 78px 0 86px; }
  .product-grid { grid-template-columns: 1fr; }
  .chooser-grid, .detail-section-grid { grid-template-columns: 1fr; gap: 44px; }
  .social-cta-grid { align-items: flex-start; flex-direction: column; }
  .detail-grid { grid-template-columns: 1fr; gap: 54px; }
  .detail-art { max-width: 600px; }
  .proof-grid { grid-template-columns: 1fr; padding: 14px 0; }
  .proof { padding: 18px 0; border-right: 0; border-bottom: 1px solid var(--white-line); }
  .proof:last-child { border-bottom: 0; }
  .chapter-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .brand { font-size: 18px; }
  .main-nav { justify-content: space-between; gap: 12px; }
  .nav-link { font-size: 12px; }
  .nav-actions .button { min-height: 42px; padding: 10px 15px; font-size: 13px; }
  .socials { gap: 4px; }
  .social-link { width: 34px; height: 34px; }
  .store-hero h1 { font-size: 43px; }
  .promise-list { grid-template-columns: 1fr; padding: 8px 0; }
  .promise { justify-content: flex-start; min-height: 54px; border-right: 0; border-bottom: 1px solid var(--line); }
  .promise:last-child { border-bottom: 0; }
  .section-head { margin-bottom: 38px; }
  .product-copy { padding: 26px 22px 24px; }
  .product-card h3 { font-size: 28px; }
  .chooser { padding: 74px 0; }
  .chooser-row { grid-template-columns: 1fr; gap: 7px; }
  .social-cta { padding: 70px 0; }
  .detail-hero { padding: 42px 0 70px; }
  .detail-copy h1 { font-size: 40px; }
  .detail-actions { flex-direction: column; }
  .detail-actions .button { width: 100%; }
  .detail-section { padding: 76px 0; }
  .chapter-grid { grid-template-columns: 1fr; }
  .chapter { min-height: 0; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .footer-links { justify-content: flex-start; }
}

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