:root {
  --cream: #f4f0e8;
  --paper: #fbfaf6;
  --ink: #20332c;
  --green: #477c63;
  --green-soft: #3e725c;
  --coffee: #6a4633;
  --sand: #c5a477;
  --line: rgba(32, 51, 44, 0.17);
  --content-max: 1280px;
  --content-gutter: 5vw;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
[hidden] { display: none !important; }
.skip-link { position: fixed; z-index: 10000; top: -100px; left: 12px; padding: 10px 14px; background: white; color: var(--ink); }
.skip-link:focus { top: 12px; }
.admin-bar .site-header { top: 32px; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.topbar {
  min-height: 34px;
  padding: 8px 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--green);
  color: rgba(255,255,255,.78);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.topbar-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--sand); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 80px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(251,250,246,.91);
  border-bottom: 1px solid rgba(32,51,44,.09);
  backdrop-filter: blur(16px);
}
.brand {
  height: 68px;
  display: flex;
  align-items: center;
}
.brand img {
  width: 86px;
  height: 66px;
  object-fit: contain;
}
.nav { display: flex; align-items: center; gap: 34px; font-size: 13px; }
.nav a { position: relative; }
.nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--coffee);
  transition: width .25s ease;
}
.nav > a:hover::after { width: 100%; }
.nav-cta { padding: 12px 18px; border: 1px solid var(--green); transition: .25s ease; }
.nav-cta:hover { background: var(--green); color: white; }
.menu-button { display: none; }

.hero {
  min-height: calc(100vh - 114px);
  padding: 5vw 5vw 6vw;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 6vw;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 80%, rgba(197,164,119,.16), transparent 28%),
    var(--paper);
}
.eyebrow {
  margin: 0 0 20px;
  color: var(--green-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; display: inline-block; width: 25px; height: 1px; margin: 0 10px 3px 0; background: currentColor; }
.eyebrow.light { color: #d8c9ad; }
.hero h1, .section-heading h2, .products-topline h2, .about-copy h2,
.values h2, .contact h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.035em;
}
.hero h1 { max-width: 650px; font-size: clamp(55px, 6.3vw, 102px); line-height: .92; }
.hero h1 span { display: block; margin-top: 14px; color: var(--coffee); font-style: italic; }
.hero-intro { max-width: 570px; margin: 34px 0 0; color: #5b6863; font-size: 16px; line-height: 1.7; }
.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 28px; }
.button {
  border: 0;
  padding: 16px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--green); color: white; }
.button-primary:hover { background: var(--coffee); }
.text-link { padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 700; }
.hero-proof { margin-top: 42px; padding-top: 24px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.hero-proof div { display: flex; flex-direction: column; gap: 4px; }
.hero-proof strong { font-family: Georgia, "Times New Roman", serif; font-size: 24px; font-weight: 400; }
.hero-proof span { color: #74807b; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.hero-visual { position: relative; min-height: 610px; }
.hero-image-wrap { position: absolute; inset: 0 3vw 0 0; overflow: hidden; background: #d9d1c4; }
.hero-image-wrap > img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(19,42,35,.55)); }
.hero-label { position: absolute; z-index: 2; left: 34px; bottom: 32px; color: white; }
.hero-label span { display: block; margin-bottom: 8px; font-size: 10px; letter-spacing: .19em; text-transform: uppercase; opacity: .8; }
.hero-label strong { font-family: Georgia, "Times New Roman", serif; font-size: 28px; line-height: 1.15; font-weight: 400; }
.hero-orbit { position: absolute; z-index: -1; border: 1px solid rgba(55,109,93,.2); border-radius: 50%; }
.hero-orbit-one { width: 420px; height: 420px; right: -220px; top: -160px; }
.hero-orbit-two { width: 290px; height: 290px; right: -110px; top: -95px; }
.supply-card {
  position: absolute;
  right: 0;
  top: 34px;
  width: 240px;
  padding: 17px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(251,250,246,.94);
  box-shadow: 0 16px 50px rgba(25,47,40,.12);
}
.supply-icon { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: white; }
.supply-card strong, .supply-card small { display: block; }
.supply-card strong { font-size: 12px; }
.supply-card small { margin-top: 4px; color: #79837f; font-size: 9px; letter-spacing: .05em; text-transform: uppercase; }

.marquee { padding: 20px 5vw; overflow: hidden; background: var(--coffee); color: white; }
.marquee-track { display: flex; justify-content: space-around; gap: 30px; white-space: nowrap; font-family: Georgia, "Times New Roman", serif; font-size: 16px; letter-spacing: .02em; }
.marquee i { color: #d4b080; font-style: normal; }

.section { padding: 110px var(--content-gutter); }
.section-inner { width: 100%; max-width: var(--content-max); margin-inline: auto; }
.section-heading { margin-bottom: 52px; display: flex; align-items: end; justify-content: space-between; gap: 60px; }
.section-heading h2, .products-topline h2, .about-copy h2, .values h2, .contact h2 { font-size: clamp(42px, 5vw, 72px); line-height: 1.02; }
.section-heading > p, .process-heading > p { max-width: 480px; margin: 0 0 5px; color: #68746f; font-size: 15px; line-height: 1.75; }
.collections-section { background: var(--cream); }
.collection-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: 360px 300px; gap: 16px; }
.collection-card {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #d8d0c2;
  color: white;
  text-align: left;
  cursor: pointer;
}
.collection-card-1 { grid-column: span 7; }
.collection-card-2 { grid-column: span 5; }
.collection-card-3 { grid-column: span 5; }
.collection-card-4 { grid-column: span 7; }
.collection-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.collection-card:hover img { transform: scale(1.035); }
.collection-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,34,28,.06) 35%, rgba(13,34,28,.72)); }
.collection-number { position: absolute; top: 24px; left: 24px; font-size: 10px; letter-spacing: .18em; }
.collection-content { position: absolute; left: 26px; bottom: 25px; display: flex; flex-direction: column; gap: 7px; }
.collection-content strong { font-family: Georgia, "Times New Roman", serif; font-size: 27px; font-weight: 400; }
.collection-content small { color: rgba(255,255,255,.77); font-size: 11px; letter-spacing: .04em; }
.collection-arrow { position: absolute; right: 24px; bottom: 29px; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; font-size: 17px; }

.products-section { background: var(--paper); }
.products-topline { margin-bottom: 44px; }
.products-topline > div:first-child { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.filters { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 9px; }
.filters button { padding: 10px 16px; border: 1px solid var(--line); border-radius: 100px; background: transparent; color: #68736f; cursor: pointer; font-size: 11px; }
.filters button.active, .filters button:hover { border-color: var(--green); background: var(--green); color: white; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 44px 18px; }
.product-card { min-width: 0; }
.product-image { position: relative; display: block; height: 0; padding-top: 76%; overflow: hidden; background: #e8e3da; }
.product-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-image span { position: absolute; left: 50%; bottom: -45px; transform: translateX(-50%); width: max-content; padding: 11px 15px; background: var(--paper); font-size: 11px; font-weight: 700; transition: bottom .3s ease; }
.product-card:hover .product-image img { transform: scale(1.025); }
.product-card:hover .product-image span { bottom: 14px; }
.product-meta { padding-top: 17px; display: flex; justify-content: space-between; gap: 14px; }
.product-meta p { margin: 0 0 8px; color: #81908a; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.product-meta h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 17px; line-height: 1.3; font-weight: 400; }
.product-meta > span { flex: 0 0 auto; padding-top: 20px; color: #75807c; font-size: 9px; }
.catalog-note { margin: 52px 0 0; padding-top: 24px; border-top: 1px solid var(--line); color: #727d79; font-size: 12px; text-align: center; }
.catalog-note a { color: var(--green); font-weight: 700; }

.about { padding-inline: var(--content-gutter); background: var(--green); color: white; }
.about-inner { display: grid; grid-template-columns: 1.03fr .97fr; min-height: 720px; }
.about-image { position: relative; min-height: 600px; }
.about-image > img { width: 100%; height: 100%; object-fit: cover; }
.about-stamp { position: absolute; right: -55px; top: 60px; width: 110px; height: 110px; display: grid; place-content: center; border-radius: 50%; background: var(--coffee); color: white; text-align: center; box-shadow: 0 8px 25px rgba(0,0,0,.16); }
.about-stamp strong { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; }
.about-stamp span { font-family: Georgia, "Times New Roman", serif; font-size: 25px; }
.about-copy { padding: 8vw 8vw 7vw; display: flex; flex-direction: column; justify-content: center; }
.about-copy h2 { margin-bottom: 30px; }
.about-copy > p:not(.eyebrow) { max-width: 620px; margin: 0 0 17px; color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.8; }
.about-points { margin-top: 22px; display: grid; gap: 12px; }
.about-points span { padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.16); color: #e7e1d5; font-family: Georgia, "Times New Roman", serif; font-size: 16px; }
.about-points span::before { content: "✓"; margin-right: 12px; color: #c5a477; font-family: Arial, sans-serif; }

.process-section { background: var(--cream); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.process-grid article { padding-right: 18px; }
.process-grid article > span { color: var(--coffee); font-family: Georgia, "Times New Roman", serif; font-size: 15px; }
.process-line { position: relative; height: 1px; margin: 17px 0 27px; background: rgba(32,51,44,.22); }
.process-line::before { content: ""; position: absolute; left: 0; top: -3px; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.process-grid h3 { margin: 0 0 13px; font-family: Georgia, "Times New Roman", serif; font-size: 21px; font-weight: 400; }
.process-grid p { margin: 0; color: #707b77; font-size: 12px; line-height: 1.7; }

.values { padding: 110px var(--content-gutter); background: var(--coffee); color: white; }
.values-inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; }
.values h2 { font-size: clamp(40px, 4.2vw, 64px); }
.value-list { border-top: 1px solid rgba(255,255,255,.22); }
.value-list > div { padding: 26px 0; display: grid; grid-template-columns: 50px 1fr 1fr; gap: 20px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.22); }
.value-list span { color: #d4b080; font-size: 10px; }
.value-list strong { font-family: Georgia, "Times New Roman", serif; font-size: 18px; font-weight: 400; }
.value-list p { margin: 0; color: rgba(255,255,255,.62); font-size: 11px; line-height: 1.5; }

.contact { padding: 110px var(--content-gutter); background: #ece6da; }
.contact-inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; }
.contact h2 em { color: var(--coffee); font-weight: 400; }
.contact-copy > p:not(.eyebrow) { max-width: 460px; margin: 28px 0 0; color: #697570; font-size: 14px; line-height: 1.7; }
.contact-detail { margin-top: 55px; display: flex; flex-direction: column; align-items: flex-start; }
.contact-detail span { color: #7b8983; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.contact-detail strong { margin-top: 8px; font-family: Georgia, "Times New Roman", serif; font-size: 24px; font-weight: 400; }
.contact-detail small { margin-top: 6px; color: #87918d; font-size: 10px; }
.contact-form { padding: 42px; background: var(--paper); box-shadow: 0 20px 60px rgba(45,56,51,.08); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form label { margin-bottom: 21px; display: flex; flex-direction: column; gap: 9px; color: #63706b; font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 12px 2px; border: 0; border-bottom: 1px solid rgba(32,51,44,.24); outline: none; background: transparent; color: var(--ink); font-size: 13px; letter-spacing: 0; text-transform: none; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-bottom-color: var(--green); }
.contact-form .button { margin-top: 5px; }
.form-message { margin: 15px 0 0; color: var(--green-soft); font-size: 11px; line-height: 1.5; }
.form-error { color: #9e352e; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

footer { padding: 65px 5vw 28px; background: var(--green); color: white; text-align: center; }
.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
}
.footer-logo-mark {
  width: 150px;
  height: 94px;
  display: block;
  overflow: hidden;
}
.footer-logo-mark img {
  width: 150px;
  height: auto;
  transform: translateY(-2px);
}
.footer-brand strong {
  color: #f4f0e8;
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -.045em;
}
.footer-inner > p { margin: 22px 0 60px; color: rgba(255,255,255,.52); font-family: Georgia, "Times New Roman", serif; font-size: 15px; }
.footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.43); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }

@media (max-width: 1100px) {
  .nav { gap: 21px; }
  .hero { grid-template-columns: 1fr 1fr; gap: 4vw; }
  .hero h1 { font-size: clamp(52px, 6.7vw, 76px); }
  .hero-visual { min-height: 540px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .about-copy { padding-left: 8vw; padding-right: 5vw; }
}

@media (max-width: 820px) {
  .topbar { justify-content: flex-start; overflow: hidden; }
  .site-header { height: 68px; }
  .brand { height: 60px; }
  .brand img { width: 78px; height: 59px; }
  .menu-button { width: 42px; height: 42px; padding: 12px 8px; display: grid; gap: 7px; align-content: center; border: 0; background: transparent; }
  .menu-button span { display: block; width: 25px; height: 1px; background: var(--ink); }
  .nav { position: absolute; left: 0; right: 0; top: 68px; padding: 28px 5vw 35px; display: none; align-items: stretch; flex-direction: column; gap: 22px; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 20px 35px rgba(25,47,40,.08); }
  .nav.open { display: flex; }
  .nav-cta { text-align: center; }
  .hero { min-height: auto; padding-top: 70px; grid-template-columns: 1fr; gap: 60px; }
  .hero-copy { max-width: 700px; }
  .hero-visual { min-height: 590px; }
  .hero-image-wrap { right: 0; }
  .supply-card { right: 18px; }
  .section-heading { align-items: start; flex-direction: column; }
  .collection-grid { grid-template-rows: 320px 260px 260px; }
  .collection-card-1, .collection-card-4 { grid-column: span 12; }
  .collection-card-2, .collection-card-3 { grid-column: span 6; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .about-image { min-height: 580px; }
  .about-stamp { right: 30px; top: auto; bottom: -55px; }
  .about-copy { padding: 100px 7vw 80px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 50px 20px; }
  .values-inner, .contact-inner { grid-template-columns: 1fr; gap: 65px; }
}

@media (max-width: 560px) {
  .topbar { gap: 9px; font-size: 8px; letter-spacing: .12em; }
  .hero { padding: 58px 5vw 55px; }
  .hero h1 { font-size: clamp(48px, 14.5vw, 68px); }
  .hero-intro { font-size: 14px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-proof { gap: 15px; }
  .hero-proof strong { font-size: 21px; }
  .hero-proof span { font-size: 8px; line-height: 1.35; }
  .hero-visual { min-height: 440px; }
  .hero-label { left: 22px; bottom: 22px; }
  .hero-label strong { font-size: 23px; }
  .supply-card { top: 18px; right: 12px; width: 218px; }
  .marquee { overflow-x: auto; }
  .marquee-track { justify-content: flex-start; }
  .section { padding: 78px 5vw; }
  .section-heading h2, .products-topline h2, .about-copy h2, .values h2, .contact h2 { font-size: 44px; }
  .collection-grid { display: flex; flex-direction: column; }
  .collection-card { min-height: 280px; }
  .products-topline > div:first-child { align-items: start; flex-direction: column; }
  .filters { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 5px; }
  .filters button { flex: 0 0 auto; }
  .product-grid { grid-template-columns: 1fr; }
  .product-image { padding-top: 72%; }
  .about-image { min-height: 430px; }
  .about-copy { padding: 90px 5vw 70px; }
  .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .values, .contact { padding: 78px 5vw; }
  .value-list > div { grid-template-columns: 35px 1fr; }
  .value-list p { grid-column: 2; }
  .contact-form { padding: 30px 22px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-bottom { align-items: center; flex-direction: column; gap: 12px; line-height: 1.5; }
}

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

/* Product detail */
.detail-page { background: var(--paper); }
.detail-breadcrumb {
  padding: 22px 5vw;
  display: flex;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid var(--line);
  color: #84908b;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.detail-breadcrumb a:hover { color: var(--green); }
.detail-breadcrumb strong { color: var(--ink); font-weight: 700; }
.detail-hero {
  padding: 46px 5vw 105px;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 5vw;
  align-items: start;
}
.detail-gallery { display: grid; gap: 14px; }
.detail-gallery-main, .detail-gallery-small > div { position: relative; overflow: hidden; background: #e7e0d5; }
.detail-gallery-main { aspect-ratio: 1.32 / 1; }
.detail-gallery-main img, .detail-gallery-small img { width: 100%; height: 100%; object-fit: cover; }
.detail-gallery-main img { object-position: 55% center; }
.detail-gallery-small { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.detail-gallery-small > div { aspect-ratio: 1.22 / 1; }
.detail-image-label, .detail-gallery-small span {
  position: absolute;
  left: 16px;
  bottom: 14px;
  padding: 8px 10px;
  background: rgba(251,250,246,.9);
  color: var(--ink);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.detail-summary { position: sticky; top: 110px; padding-top: 10px; }
.detail-category { margin: 0 0 18px; color: var(--green-soft); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.detail-summary h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.3vw, 66px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.04em;
}
.detail-summary h1 em { color: var(--coffee); font-weight: 400; }
.detail-lead { margin: 27px 0; color: #65716c; font-size: 14px; line-height: 1.75; }
.detail-highlight-row { padding: 19px 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.detail-highlight-row div { display: flex; flex-direction: column; gap: 6px; }
.detail-highlight-row span, .detail-choice-heading span { color: #8b9591; font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.detail-highlight-row strong { font-size: 11px; font-weight: 700; }
.detail-choice { padding-top: 22px; }
.detail-choice-heading { margin-bottom: 11px; display: flex; align-items: center; justify-content: space-between; }
.detail-choice-heading strong { font-family: Georgia, "Times New Roman", serif; font-size: 15px; font-weight: 400; }
.detail-color-copy { margin: 0; color: #65716c; font-size: 12px; line-height: 1.6; }
.detail-swatches { display: flex; gap: 9px; }
.swatch { width: 25px; height: 25px; display: block; border: 3px solid var(--paper); border-radius: 50%; box-shadow: 0 0 0 1px rgba(32,51,44,.18); }
.swatch.titanium { background: #b9b2a5; }.swatch.silver { background: #d7d9d7; }.swatch.blue { background: #7290a4; }
.swatch.pink { background: #d9a9a4; }.swatch.purple { background: #9f8ba9; }.swatch.black { background: #1d211f; }
.swatch.white { background: #fff; }.swatch.coffee { background: #72503c; }.swatch.red { background: #a7352f; }
.detail-quote { width: 100%; margin-top: 28px; }
.detail-amazon { width: 100%; margin-top: 10px; }
.detail-note { margin: 11px 0 0; color: #8a9490; font-size: 9px; text-align: center; }
.detail-mini-services { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px 16px; color: #66736e; font-size: 9px; }

.detail-story { min-height: 690px; display: grid; grid-template-columns: .82fr 1.18fr; background: var(--green); color: white; }
.detail-story-copy { padding: 8vw 7vw 7vw 8vw; display: flex; justify-content: center; flex-direction: column; }
.detail-story h2, .detail-section-title h2, .detail-customize h2, .detail-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(43px, 4.7vw, 70px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.035em;
}
.detail-story-copy > p:not(.eyebrow) { margin: 26px 0 0; color: rgba(255,255,255,.69); font-size: 13px; line-height: 1.8; }
.detail-story-text { margin-top: 26px; color: rgba(255,255,255,.69); font-size: 13px; line-height: 1.8; }
.detail-story-text p { margin: 0 0 16px; }
.detail-story-tags { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 8px; }
.detail-story-tags span { padding: 9px 12px; border: 1px solid rgba(255,255,255,.2); border-radius: 100px; color: #e4ddd0; font-size: 9px; }
.detail-story-image { position: relative; min-height: 600px; }
.detail-story-image img { width: 100%; height: 100%; object-fit: cover; }
.detail-story-image span { position: absolute; right: 24px; bottom: 22px; padding: 10px 13px; background: rgba(23,63,53,.88); color: white; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }

.detail-spec-section { padding: 110px 5vw; display: grid; grid-template-columns: .72fr 1.28fr; gap: 10vw; background: var(--cream); }
.detail-specs { border-top: 1px solid rgba(32,51,44,.27); }
.detail-specs > div { padding: 19px 0; display: grid; grid-template-columns: .7fr 1.3fr; gap: 20px; border-bottom: 1px solid rgba(32,51,44,.18); }
.detail-specs span { color: #7d8984; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.detail-specs strong { font-size: 12px; font-weight: 500; line-height: 1.5; }

.detail-customize { padding: 110px 5vw; display: grid; grid-template-columns: .75fr 1.25fr; gap: 9vw; background: var(--coffee); color: white; }
.detail-customize-heading > p:not(.eyebrow) { max-width: 430px; margin-top: 25px; color: rgba(255,255,255,.65); font-size: 13px; line-height: 1.7; }
.detail-customize-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.2); border-left: 1px solid rgba(255,255,255,.2); }
.detail-customize-grid article { min-height: 210px; padding: 26px; border-right: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
.detail-customize-grid span { color: #d4b080; font-size: 10px; }
.detail-customize-grid h3 { margin: 36px 0 12px; font-family: Georgia, "Times New Roman", serif; font-size: 20px; font-weight: 400; }
.detail-customize-grid p { margin: 0; color: rgba(255,255,255,.6); font-size: 11px; line-height: 1.6; }

.detail-cta { padding: 105px 5vw; display: grid; grid-template-columns: 1fr 1fr; gap: 12vw; align-items: end; background: #ece6da; }
.detail-cta h2 em { color: var(--coffee); font-weight: 400; }
.detail-cta > div:last-child { padding-bottom: 4px; }
.detail-cta > div:last-child p { margin: 0 0 27px; color: #67736e; font-size: 14px; line-height: 1.75; }
.detail-related { padding: 100px 5vw 115px; }
.detail-related-heading { margin-bottom: 32px; display: flex; align-items: center; justify-content: space-between; }
.detail-related-heading .eyebrow { margin-bottom: 0; }
.detail-related-heading > a { padding-bottom: 4px; border-bottom: 1px solid var(--ink); font-size: 11px; }
.detail-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.detail-related-grid img { width: 100%; aspect-ratio: 1.42 / 1; object-fit: cover; }
.detail-related-grid span { margin-top: 15px; display: block; color: #84908b; font-size: 9px; letter-spacing: .11em; text-transform: uppercase; }
.detail-related-grid strong { margin-top: 7px; display: block; font-family: Georgia, "Times New Roman", serif; font-size: 18px; font-weight: 400; }

.catalog-header { padding-bottom: 70px; background: var(--cream); }
.catalog-header h1, .generic-content h1 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(54px, 7vw, 100px); font-weight: 400; line-height: .95; letter-spacing: -.04em; }
.catalog-header > p:last-child { max-width: 620px; margin: 30px 0 0; color: #66736e; font-size: 14px; line-height: 1.75; }
.catalog-list { padding-top: 75px; }
.content-page { min-height: 60vh; }
.generic-content { max-width: 1000px; margin: 0 auto; }
.generic-content article > *:not(h1) { line-height: 1.75; }

@media (max-width: 980px) {
  .detail-hero { grid-template-columns: 1fr; }
  .detail-summary { position: static; max-width: 720px; padding-top: 25px; }
  .detail-story { grid-template-columns: 1fr; }
  .detail-story-image { min-height: 480px; }
  .detail-spec-section, .detail-customize { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 650px) {
  .detail-breadcrumb { overflow-x: auto; white-space: nowrap; }
  .detail-hero { padding: 24px 5vw 75px; }
  .detail-gallery-main { aspect-ratio: .92 / 1; }
  .detail-gallery-main img { object-position: 62% center; }
  .detail-gallery-small { grid-template-columns: 1fr; }
  .detail-summary h1 { font-size: 47px; }
  .detail-highlight-row { gap: 12px; }
  .detail-story-copy { padding: 78px 5vw; }
  .detail-story-image { min-height: 340px; }
  .detail-spec-section, .detail-customize, .detail-cta, .detail-related { padding: 78px 5vw; }
  .detail-specs > div { grid-template-columns: 1fr; gap: 8px; }
  .detail-customize-grid { grid-template-columns: 1fr; }
  .detail-customize-grid article { min-height: 185px; }
  .detail-cta { grid-template-columns: 1fr; gap: 45px; }
  .detail-related-grid { grid-template-columns: 1fr; gap: 38px; }
}
