:root {
  color-scheme: light;
  --paper: #f4efe6;
  --paper-deep: #e9e0d1;
  --cream: #fbf8f2;
  --ink: #25231f;
  --muted: #6e685e;
  --olive: #4f5947;
  --olive-dark: #394233;
  --gold: #bd8b32;
  --gold-soft: #e2c886;
  --line: rgba(37, 35, 31, 0.15);
  --white: #fff;
  --shadow: 0 24px 70px rgba(52, 43, 31, 0.16);
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

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

.narrow {
  max-width: 960px;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 239, 230, 0.93);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.wordmark > span:last-child > span {
  color: var(--gold);
}

.wordmark-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 20px;
  font-style: italic;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.main-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--ink);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid var(--olive-dark);
  border-radius: 3px;
  background: var(--olive-dark);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.25;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--olive);
  box-shadow: 0 10px 24px rgba(57, 66, 51, 0.2);
}

.button-small {
  min-height: 43px;
  padding: 9px 17px;
  font-size: 14px;
}

.button-light {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--olive-dark);
}

.button-light:hover {
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 86px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -240px;
  left: -280px;
  border: 1px solid rgba(189, 139, 50, 0.25);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.84fr);
  align-items: center;
  gap: clamp(48px, 8vw, 100px);
}

.eyebrow,
.section-number {
  margin: 0 0 17px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(48px, 6.2vw, 82px);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(37px, 4.5vw, 58px);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 12px;
  font-size: 25px;
  letter-spacing: -0.02em;
}

.hero-intro,
.lead {
  color: #4f4a43;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.55;
}

.hero-intro {
  max-width: 680px;
  margin: 0 0 34px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid currentColor;
  color: var(--olive-dark);
  font-weight: 800;
  text-decoration: none;
}

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

.shop-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.shop-note span {
  color: var(--gold);
}

.hero-image-wrap {
  position: relative;
  margin: 0;
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  z-index: -1;
  border: 1px solid var(--gold);
}

.hero-image-wrap img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-image-wrap figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 240px;
  padding: 13px 17px;
  background: rgba(37, 35, 31, 0.88);
  color: var(--cream);
  font-size: 12px;
  line-height: 1.45;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.2);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid p {
  margin: 0;
  padding: 26px 30px;
  border-left: 1px solid var(--line);
}

.trust-grid p:last-child {
  border-right: 1px solid var(--line);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  margin-bottom: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 600;
}

.trust-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.definition-section {
  padding: 86px 0;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.definition-grid {
  display: grid;
  grid-template-columns: 0.34fr 1.3fr;
  gap: clamp(40px, 8vw, 110px);
  align-items: start;
}

.definition-grid h2 {
  margin-bottom: 20px;
}

.definition-grid .lead {
  max-width: 880px;
  margin: 0 0 18px;
}

.definition-grid > div > p:last-child {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 110px 0;
  scroll-margin-top: 88px;
}

.intro-section .lead {
  max-width: 780px;
  margin: 0 0 48px;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.use-card {
  min-height: 290px;
  padding: 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.22);
}

.use-card:nth-child(2),
.use-card:nth-child(3) {
  background: rgba(233, 224, 209, 0.5);
}

.card-number {
  display: block;
  margin-bottom: 42px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.use-card p,
.origin-grid p,
.checklist-copy > p,
.care-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.type-section {
  background: var(--cream);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 50px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: var(--white);
}

th,
td {
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

thead th {
  background: var(--olive-dark);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

tbody th {
  width: 20%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 600;
}

tbody td {
  color: var(--muted);
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

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

.origin-grid article {
  padding: 32px;
  background: var(--cream);
}

.checklist-section {
  background: var(--olive-dark);
  color: var(--cream);
}

.checklist-grid {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: clamp(60px, 9vw, 120px);
}

.checklist-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}

.checklist-copy > p {
  color: rgba(251, 248, 242, 0.72);
}

.checklist-copy .text-link {
  margin-top: 18px;
  color: var(--gold-soft);
}

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

.checklist li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 27px 0;
  border-top: 1px solid rgba(251, 248, 242, 0.2);
}

.checklist li:last-child {
  border-bottom: 1px solid rgba(251, 248, 242, 0.2);
}

.checklist li > span {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.checklist strong {
  display: block;
  margin-bottom: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
}

.checklist p {
  margin: 0;
  color: rgba(251, 248, 242, 0.65);
  font-size: 15px;
}

.care-section {
  background: var(--paper-deep);
}

.care-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(50px, 9vw, 120px);
}

.care-grid .lead {
  max-width: 520px;
}

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

.care-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.care-list article > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.care-list h3 {
  margin-bottom: 5px;
}

.faq-section {
  background: var(--cream);
}

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

details {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  padding: 26px 58px 26px 0;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 21px;
  right: 8px;
  color: var(--gold);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 29px;
  font-weight: 300;
}

details[open] summary::after {
  content: "–";
}

details p {
  max-width: 760px;
  margin: -4px 0 28px;
  color: var(--muted);
}

.shop-cta {
  padding: 80px 0;
  background: var(--gold);
  color: var(--ink);
}

.shop-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 70px;
}

.shop-cta .eyebrow {
  color: var(--olive-dark);
}

.shop-cta h2 {
  max-width: 760px;
  margin-bottom: 18px;
}

.shop-cta p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: rgba(37, 35, 31, 0.72);
}

.site-footer {
  padding: 76px 0 28px;
  background: var(--ink);
  color: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.7fr 0.7fr;
  gap: 48px;
  align-items: start;
}

.footer-wordmark {
  color: var(--cream);
}

.footer-grid > div:first-child p {
  max-width: 390px;
  color: rgba(251, 248, 242, 0.58);
  font-size: 13px;
}

.footer-grid h2 {
  margin-bottom: 17px;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-grid address,
.footer-grid nav {
  color: rgba(251, 248, 242, 0.68);
  font-size: 14px;
  font-style: normal;
}

.footer-grid nav {
  display: grid;
  gap: 8px;
}

.footer-grid a:hover {
  color: var(--gold-soft);
}

.shop-logo {
  display: block;
  padding: 15px;
  background: var(--cream);
}

.shop-logo img {
  width: 100%;
  height: auto;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid rgba(251, 248, 242, 0.13);
  color: rgba(251, 248, 242, 0.42);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.mobile-shop-bar {
  display: none;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }

  .hero-grid,
  .definition-grid,
  .split-heading,
  .checklist-grid,
  .care-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-image-wrap {
    max-width: 680px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid p,
  .trust-grid p:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid p:last-child {
    border-bottom: 0;
  }

  .origin-grid {
    grid-template-columns: 1fr;
  }

  .checklist-copy {
    position: static;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  :root {
    --shell: min(100% - 28px, 1180px);
  }

  body {
    font-size: 16px;
    padding-bottom: 76px;
  }

  .site-header .button-small {
    display: none;
  }

  .header-inner {
    min-height: 66px;
  }

  .wordmark {
    font-size: 20px;
  }

  .wordmark-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    padding: 56px 0 64px;
  }

  .hero-grid {
    gap: 48px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  h2 {
    font-size: 38px;
  }

  .hero-intro,
  .lead {
    font-size: 19px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-actions .text-link {
    justify-content: center;
    border: 0;
  }

  .hero-image-wrap::before {
    inset: -10px 10px 10px -10px;
  }

  .section {
    padding: 80px 0;
  }

  .use-grid {
    grid-template-columns: 1fr;
  }

  .use-card {
    min-height: 0;
    padding: 30px;
  }

  .card-number {
    margin-bottom: 24px;
  }

  .split-heading {
    gap: 20px;
  }

  th,
  td {
    padding: 20px;
  }

  .checklist-grid,
  .care-grid {
    gap: 45px;
  }

  .shop-cta-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .shop-cta .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .shop-logo {
    max-width: 260px;
  }

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

  .mobile-shop-bar {
    position: fixed;
    z-index: 30;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 10px 14px;
    border-top: 1px solid var(--line);
    background: rgba(244, 239, 230, 0.96);
    backdrop-filter: blur(16px);
  }

  .mobile-shop-bar .button {
    width: 100%;
    min-height: 52px;
  }
}

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

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

@media print {
  .site-header,
  .hero-actions,
  .mobile-shop-bar,
  .shop-cta {
    display: none !important;
  }

  body {
    background: var(--white);
    color: #000;
  }

  .section {
    padding: 40px 0;
  }
}
