:root {
  --ink: #18345a;
  --ink-deep: #102746;
  --sun: #ffd85a;
  --aqua: #b8e4dc;
  --coral: #c8423b;
  --cream: #fffaf2;
  --paper: #ffffff;
  --muted: #627086;
  --line: #dbe2ea;
  --shadow: 0 18px 44px rgba(16, 39, 70, 0.12);
  --radius: 26px;
  --page: min(1280px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-deep);
  background: var(--paper);
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

button,
input,
select {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.skip-link:focus {
  transform: none;
}

.announcement {
  padding: 8px 20px;
  color: var(--ink-deep);
  background: var(--sun);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.announcement span {
  padding: 0 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(24, 52, 90, 0.12);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.header-shell {
  width: var(--page);
  min-height: 78px;
  margin: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px 11px 17px 11px;
  color: var(--sun);
  background: var(--ink);
  font-family: "Avenir Next", Avenir, sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 38px);
  font-size: 0.9rem;
  font-weight: 700;
}

.desktop-nav a,
.header-shop,
.mobile-menu a {
  text-decoration: none;
}

.desktop-nav a {
  position: relative;
  padding: 26px 0 24px;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 3px;
  border-radius: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-shop {
  padding: 10px 18px;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle > span:not(.visually-hidden) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.mobile-menu {
  width: var(--page);
  height: calc(100vh - 112px);
  margin: auto;
  padding: 30px 0;
  background: white;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: Georgia, serif;
  font-size: 1.7rem;
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 128px) 0;
}

.kicker {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 7.4rem);
}

h2 {
  font-size: clamp(2.3rem, 4.2vw, 4.7rem);
}

h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.hero {
  min-height: calc(100vh - 112px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  background: var(--cream);
}

.hero__copy {
  display: flex;
  padding: clamp(56px, 8vw, 130px) clamp(28px, 6vw, 110px);
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  max-width: 740px;
  margin-bottom: 28px;
  color: var(--ink);
}

.hero h1 em {
  color: var(--coral);
  font-weight: 400;
}

.hero__lede {
  max-width: 640px;
  margin-bottom: 30px;
  color: #42536d;
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
}

.hero__actions,
.not-found div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.mini-buy {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover,
.mini-buy:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: white;
  background: var(--ink);
  box-shadow: 0 8px 18px rgba(24, 52, 90, 0.18);
}

.button--ghost {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.button--light {
  color: var(--ink-deep);
  background: white;
}

.hero__notes {
  display: flex;
  padding: 0;
  margin: 42px 0 0;
  flex-wrap: wrap;
  gap: 16px 28px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  list-style: none;
}

.hero__notes li::before {
  margin-right: 7px;
  color: var(--coral);
  content: "●";
  font-size: 0.66rem;
}

.hero__visual {
  position: relative;
  min-width: 0;
  min-height: 660px;
  overflow: hidden;
  background: var(--aqua);
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
}

.hero__badge {
  position: absolute;
  right: 26px;
  bottom: 26px;
  width: min(320px, calc(100% - 52px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero__badge span,
.hero__badge small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__badge strong {
  display: block;
  margin: 8px 0;
  line-height: 1.3;
}

.promise-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: white;
  background: var(--ink);
}

.promise-strip > div {
  position: relative;
  padding: 36px clamp(24px, 4vw, 62px);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.promise-strip span {
  position: absolute;
  top: 20px;
  right: 22px;
  color: var(--sun);
  font-size: 0.7rem;
  font-weight: 900;
}

.promise-strip strong {
  font-family: Georgia, serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.promise-strip p {
  max-width: 400px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.section-heading {
  display: flex;
  margin-bottom: 40px;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.section-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--ink);
}

.section-heading > p {
  max-width: 360px;
  margin-bottom: 6px;
  color: var(--muted);
}

.text-link {
  font-size: 0.9rem;
  font-weight: 900;
  white-space: nowrap;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.collection-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--ink-deep);
  background: var(--cream);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.collection-card:nth-child(1) {
  grid-column: span 5;
}

.collection-card:nth-child(2) {
  grid-column: span 4;
}

.collection-card:nth-child(3) {
  grid-column: span 3;
}

.collection-card__image {
  width: 100%;
  height: 68%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.collection-card:hover .collection-card__image {
  transform: scale(1.025);
}

.collection-card > div {
  padding: 24px;
}

.collection-card h3 {
  margin-bottom: 8px;
}

.collection-card p {
  margin-bottom: 12px;
  color: var(--muted);
}

.collection-card > div > span {
  font-size: 0.86rem;
  font-weight: 900;
}

.collection-card__count {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--sun);
  font-size: 0.74rem;
  font-weight: 900;
}

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

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 22px;
}

.product-card {
  min-width: 0;
}

.product-card__media {
  position: relative;
}

.product-card__image {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1.06;
  overflow: hidden;
  border-radius: 22px;
  background: #f2f6f7;
}

.product-card:nth-child(3n + 2) .product-card__image {
  background: #fff4cb;
}

.product-card:nth-child(3n + 3) .product-card__image {
  background: #f5eceb;
}

.product-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.product-card:hover .product-card__photo {
  transform: scale(1.025);
}

.product-card__eyebrow {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card__photo-count {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  color: white;
  background: rgba(17, 44, 54, 0.82);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.product-card__thumbs {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 7px;
  pointer-events: none;
}

.product-card__thumb {
  width: 42px;
  height: 42px;
  padding: 2px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 10px;
  background: white;
  box-shadow: 0 4px 18px rgba(17, 44, 54, 0.16);
  cursor: pointer;
  pointer-events: auto;
}

.product-card__thumb img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.product-card__thumb.is-active {
  border-color: var(--coral);
  box-shadow:
    0 0 0 2px white,
    0 4px 18px rgba(17, 44, 54, 0.2);
}

.product-card__thumb:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

.product-card__body {
  padding: 18px 4px 0;
}

.product-card__title {
  display: block;
  min-height: 2.9em;
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
}

.product-card__meta,
.product-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-card__meta {
  margin: 10px 0 16px;
  color: var(--muted);
  font-size: 0.84rem;
}

.product-card__meta span:first-child {
  color: var(--ink-deep);
  font-size: 1rem;
  font-weight: 900;
}

.mini-buy {
  min-height: 36px;
  padding: 7px 14px;
  color: var(--ink);
  background: var(--sun);
  font-size: 0.78rem;
}

.story-band {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 110px);
  display: grid;
  grid-template-columns: 0.4fr 1.25fr 0.8fr;
  align-items: center;
  gap: clamp(30px, 6vw, 90px);
  border-radius: 34px;
  color: white;
  background: var(--ink);
}

.story-band__number {
  color: var(--sun);
  font-family: Georgia, serif;
  font-size: clamp(8rem, 18vw, 15rem);
  line-height: 0.7;
  text-align: center;
}

.story-band h2 {
  margin-bottom: 22px;
  color: white;
}

.story-band .kicker {
  color: #ff8b82;
}

.story-band p:not(.kicker) {
  color: rgba(255, 255, 255, 0.78);
}

.story-band blockquote {
  margin: 0;
  padding-left: 26px;
  border-left: 3px solid var(--coral);
  font-family: Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.45;
}

.guide-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(44px, 8vw, 130px);
  align-items: center;
}

.guide-teaser h2 {
  color: var(--ink);
}

.guide-teaser > div > p:not(.kicker) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.12rem;
}

.guide-teaser ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

.guide-teaser li {
  display: grid;
  padding: 18px 0;
  grid-template-columns: 54px 1fr;
  border-bottom: 1px solid var(--line);
  font-family: Georgia, serif;
  font-size: 1.35rem;
}

.guide-teaser li span {
  color: var(--coral);
  font-family: "Avenir Next", sans-serif;
  font-size: 0.74rem;
  font-weight: 900;
}

.faq-preview {
  padding-top: 0;
}

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

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 24px 48px 24px 0;
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.faq-list details p {
  max-width: 820px;
  padding: 0 0 26px;
  color: var(--muted);
}

.site-footer {
  padding: clamp(60px, 8vw, 100px) max(24px, calc((100vw - min(1280px, calc(100vw - 48px))) / 2));
  color: white;
  background: var(--ink-deep);
}

.footer-intro {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr 1fr;
  gap: 48px;
}

.brand--footer {
  color: white;
}

.brand--footer .brand__mark {
  color: var(--ink);
  background: var(--sun);
}

.footer-intro > div:first-child p {
  max-width: 420px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-intro h2 {
  margin-bottom: 18px;
  color: var(--sun);
  font-family: "Avenir Next", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact a {
  display: block;
  width: fit-content;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-contact address {
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
}

.fine-print {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-footer .fine-print {
  color: rgba(255, 255, 255, 0.48);
}

.footer-map {
  margin-top: 46px;
}

.footer-map iframe,
.contact-grid iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 20px;
  filter: saturate(0.75) contrast(1.05);
}

.footer-bottom {
  display: flex;
  padding-top: 28px;
  margin-top: 28px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

.collection-hero,
.page-hero {
  padding: clamp(64px, 8vw, 115px) max(24px, calc((100vw - min(1280px, calc(100vw - 48px))) / 2));
  background: var(--cream);
}

.collection-hero h1,
.page-hero h1 {
  max-width: 1000px;
  margin: 14px 0 22px;
  color: var(--ink);
}

.collection-hero > p:not(.kicker),
.page-hero > p:not(.kicker) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.15rem;
}

.collection-hero > span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.breadcrumbs {
  display: flex;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--muted);
  font-size: 0.78rem;
}

.breadcrumbs a {
  text-decoration: none;
}

.catalog-shell {
  padding-top: 54px;
}

.catalog-tools {
  display: grid;
  margin-bottom: 34px;
  grid-template-columns: minmax(220px, 1fr) minmax(190px, 260px) auto;
  align-items: end;
  gap: 18px;
}

.catalog-tools label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-tools input,
.catalog-tools select {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  font-size: 0.95rem;
  text-transform: none;
}

.catalog-tools p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.84rem;
}

.empty-state {
  padding: 70px;
  border-radius: var(--radius);
  background: var(--cream);
  text-align: center;
}

.product-shell {
  width: var(--page);
  padding: 38px 0 90px;
  margin: auto;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
}

.product-gallery,
.product-summary {
  min-width: 0;
}

.gallery-main {
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 26px;
  background: #f2f6f7;
}

.gallery-main__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  display: flex;
  padding: 14px 2px 4px;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.gallery-thumb {
  width: 76px;
  min-width: 76px;
  aspect-ratio: 1;
  padding: 3px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 13px;
  background: white;
}

.gallery-thumb.is-active {
  border-color: var(--ink);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 9px;
}

.product-summary {
  position: sticky;
  top: 116px;
}

.product-summary h1 {
  margin: 8px 0 10px;
  color: var(--ink);
  font-size: clamp(2.5rem, 4vw, 4.8rem);
}

.product-ref,
.checkout-note {
  color: var(--muted);
  font-size: 0.8rem;
}

.product-price {
  margin: 24px 0 6px;
  font-family: Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
}

.availability {
  color: #315b4a;
  font-size: 0.84rem;
  font-weight: 800;
}

.availability span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  border-radius: 50%;
  background: #4d9675;
}

.product-intro {
  margin: 26px 0;
  color: #42536d;
  font-size: 1.04rem;
}

.product-summary > .button {
  width: 100%;
  min-height: 56px;
}

.checkout-note {
  margin: 10px 8px 22px;
  text-align: center;
}

.quick-facts {
  display: grid;
  margin: 26px 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 18px;
}

.quick-facts div {
  min-width: 0;
  padding: 14px;
  border-right: 1px solid var(--line);
}

.quick-facts div:last-child {
  border: 0;
}

.quick-facts dt {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 4px 0 0;
  overflow-wrap: anywhere;
  font-size: 0.85rem;
  font-weight: 800;
}

.product-accordions details {
  border-top: 1px solid var(--line);
}

.product-accordions details:last-child {
  border-bottom: 1px solid var(--line);
}

.product-accordions summary {
  padding: 18px 0;
  font-weight: 900;
}

.product-accordions p,
.product-accordions ul {
  color: var(--muted);
  font-size: 0.9rem;
}

.product-accordions ul {
  padding-left: 20px;
}

.zoom-dialog {
  width: min(94vw, 1080px);
  max-height: 92vh;
  padding: 54px 18px 18px;
  border: 0;
  border-radius: 20px;
  background: white;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.26);
}

.zoom-dialog::backdrop {
  background: rgba(16, 39, 70, 0.72);
}

.zoom-dialog img {
  width: 100%;
  max-height: calc(92vh - 80px);
  object-fit: contain;
}

.zoom-close {
  position: absolute;
  top: 12px;
  right: 14px;
  padding: 8px 13px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  font-weight: 800;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--sun);
}

.feature-band > div {
  padding: clamp(40px, 6vw, 84px);
  border-right: 1px solid rgba(16, 39, 70, 0.15);
}

.feature-band span {
  color: var(--coral);
  font-size: 0.74rem;
  font-weight: 900;
}

.feature-band h2 {
  margin: 16px 0;
  font-size: clamp(1.8rem, 2.8vw, 3rem);
}

.feature-band p {
  margin-bottom: 0;
}

.product-details {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(38px, 8vw, 120px);
}

.product-details h2 {
  color: var(--ink);
}

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

.detail-list li {
  padding: 16px 0 16px 32px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(var(--coral), var(--coral)) 3px 26px / 9px 9px no-repeat;
}

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

.sticky-buy {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 30;
  display: flex;
  width: min(900px, calc(100vw - 36px));
  padding: 12px 12px 12px 22px;
  margin: auto;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(24, 52, 90, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 46px rgba(16, 39, 70, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.sticky-buy.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.sticky-buy strong,
.sticky-buy span {
  display: block;
}

.sticky-buy strong {
  max-width: 580px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sticky-buy span {
  color: var(--muted);
  font-size: 0.82rem;
}

.page-content {
  width: min(940px, calc(100vw - 48px));
  min-height: 420px;
  padding: clamp(64px, 8vw, 110px) 0;
  margin: auto;
}

.page-content h2 {
  margin: 56px 0 18px;
  color: var(--ink);
  font-size: clamp(2rem, 3.3vw, 3.5rem);
}

.page-content p,
.page-content li {
  color: #42536d;
  font-size: 1.04rem;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
}

.editorial-grid h2 {
  margin-top: 0;
}

.editorial-grid aside {
  display: flex;
  padding: 48px;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--radius);
  color: white;
  background: var(--ink);
}

.editorial-grid aside span {
  margin-bottom: 22px;
  color: var(--sun);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.editorial-grid aside strong {
  font-family: Georgia, serif;
  font-size: 2.3rem;
  font-weight: 500;
}

.principles {
  display: grid;
  margin-top: 80px;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.principles article {
  padding: 26px;
  border-top: 4px solid var(--coral);
  background: var(--cream);
}

.principles h2 {
  margin-top: 18px;
  font-size: 1.8rem;
}

.principles span {
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 900;
}

.guide-page {
  width: var(--page);
}

.guide-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 760px);
  gap: clamp(48px, 8vw, 120px);
  justify-content: center;
}

.guide-nav {
  position: sticky;
  top: 116px;
  height: fit-content;
  padding: 22px;
  border-radius: 18px;
  background: var(--cream);
}

.guide-nav strong,
.guide-nav a {
  display: block;
}

.guide-nav strong {
  margin-bottom: 12px;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guide-nav a {
  padding: 9px 0;
  color: var(--muted);
  text-decoration: none;
}

.guide-copy section {
  scroll-margin-top: 120px;
}

.guide-copy section:first-child h2 {
  margin-top: 0;
}

.callout {
  padding: 30px;
  margin-top: 32px;
  border-radius: 20px;
  background: var(--sun);
}

.callout ol {
  margin-bottom: 0;
}

.faq-list--large summary {
  font-size: 1.55rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 54px;
  align-items: start;
}

.contact-grid h2:first-child {
  margin-top: 0;
}

.contact-grid address {
  font-style: normal;
}

.contact-grid iframe {
  height: 520px;
}

.not-found {
  width: var(--page);
  min-height: 70vh;
  padding: 100px 0;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.not-found h1 {
  margin-bottom: 20px;
  color: var(--ink);
}

@media (max-width: 980px) {
  :root {
    --page: min(100% - 34px, 760px);
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-shell {
    grid-template-columns: 44px 1fr auto;
    gap: 12px;
  }

  .brand {
    justify-self: center;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero__copy {
    padding: 72px max(24px, calc((100vw - min(100% - 34px, 760px)) / 2));
  }

  .hero__visual {
    min-height: min(760px, 100vw);
  }

  .collection-card:nth-child(n) {
    grid-column: span 6;
  }

  .collection-card:nth-child(3) {
    grid-column: 4 / span 6;
  }

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

  .story-band {
    grid-template-columns: 0.35fr 1fr;
  }

  .story-band blockquote {
    grid-column: 2;
  }

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

  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-summary {
    position: static;
  }

  .feature-band {
    grid-template-columns: 1fr;
  }

  .feature-band > div {
    border-right: 0;
    border-bottom: 1px solid rgba(16, 39, 70, 0.15);
  }
}

@media (max-width: 680px) {
  :root {
    --page: calc(100vw - 28px);
    --radius: 20px;
  }

  .announcement {
    padding: 7px 12px;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
  }

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

  .brand {
    font-size: 1.4rem;
  }

  .brand__mark {
    width: 32px;
    height: 32px;
  }

  .header-shop {
    padding: 8px 13px;
    font-size: 0.78rem;
  }

  .hero__copy {
    padding: 58px 20px 52px;
  }

  .hero h1 {
    font-size: clamp(3rem, 17vw, 4.5rem);
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__visual {
    min-height: 108vw;
  }

  .hero__badge {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }

  .promise-strip {
    grid-template-columns: 1fr;
  }

  .promise-strip > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

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

  .collection-grid {
    display: flex;
    margin-right: -14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .collection-card:nth-child(n) {
    width: 84vw;
    min-width: 84vw;
    min-height: 510px;
    scroll-snap-align: start;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .product-card__title {
    min-height: auto;
  }

  .story-band {
    width: 100%;
    padding: 58px 22px;
    grid-template-columns: 1fr;
    border-radius: 0;
  }

  .story-band__number {
    text-align: left;
  }

  .story-band blockquote {
    grid-column: auto;
  }

  .guide-teaser,
  .product-details,
  .editorial-grid,
  .contact-grid,
  .guide-layout {
    grid-template-columns: 1fr;
  }

  .footer-intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .platform-note {
    display: none;
  }

  .catalog-tools {
    grid-template-columns: 1fr;
  }

  .product-shell {
    padding-top: 24px;
  }

  .product-summary h1 {
    font-size: clamp(2.45rem, 12vw, 3.8rem);
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }

  .quick-facts div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-band > div {
    padding: 44px 22px;
  }

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

  .guide-nav {
    position: static;
  }

  .sticky-buy {
    padding: 10px;
  }

  .sticky-buy > div {
    display: none;
  }

  .sticky-buy .button {
    width: 100%;
  }
}

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

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

/* Journal */
.journal-hero,
.article-hero {
  width: var(--page);
  margin: 0 auto;
}

.journal-hero {
  padding: 72px 0 28px;
  max-width: 980px;
  margin-left: max(24px, calc((100vw - min(1280px, calc(100vw - 48px))) / 2));
}

.journal-hero h1,
.article-hero h1 {
  max-width: 980px;
  margin: 18px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.journal-hero > p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.2rem;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.journal-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(16, 39, 70, 0.08);
}

.journal-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
}

.journal-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.journal-card:hover .journal-card__image {
  transform: scale(1.025);
}

.journal-card__body {
  padding: 26px;
}

.journal-card h3 {
  margin: 8px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.journal-card h3 a {
  text-decoration: none;
}

.journal-card__body > p:not(.kicker) {
  color: var(--muted);
}

.journal-card__meta,
.article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.journal-card__meta {
  margin: 20px 0;
}

.journal-preview {
  background: linear-gradient(135deg, #f4faf8 0%, #fffaf2 100%);
}

.article-hero {
  padding-top: 52px;
}

.article-hero h1 {
  font-size: clamp(2.9rem, 6vw, 5.6rem);
}

.article-hero__dek {
  max-width: 820px;
  margin: 24px 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.7;
}

.article-hero__figure {
  margin: 42px 0 0;
}

.article-hero__image {
  width: 100%;
  max-height: 760px;
  aspect-ratio: 16 / 9;
  border-radius: 34px;
  object-fit: cover;
  background: var(--cream);
}

.article-hero figcaption,
.article-figure figcaption {
  max-width: 760px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.article-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(42px, 7vw, 96px);
  width: var(--page);
  margin: 72px auto 0;
  align-items: start;
}

.article-toc {
  position: sticky;
  top: 118px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--cream);
}

.article-toc strong,
.article-toc a {
  display: block;
}

.article-toc strong {
  margin-bottom: 12px;
  color: var(--ink-deep);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-toc a {
  padding: 7px 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
  text-decoration: none;
}

.article-toc a:hover {
  color: var(--coral);
}

.article-copy {
  width: 100%;
  min-width: 0;
  max-width: 920px;
}

.article-section,
.article-table-section,
.article-figure,
.article-products,
.article-callout,
.article-checklist,
.article-sources {
  margin: 0 0 76px;
  scroll-margin-top: 120px;
}

.article-copy h2 {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.article-section > p,
.article-sources > p {
  max-width: 72ch;
  margin: 0 0 22px;
  color: #30425d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.82;
}

.article-section:first-child > p:first-of-type::first-letter {
  float: left;
  margin: 0.06em 0.1em 0 0;
  color: var(--coral);
  font-size: 4em;
  font-weight: 700;
  line-height: 0.78;
}

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

.article-table-wrap table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: white;
}

.article-table-wrap caption {
  padding: 24px;
  color: white;
  background: var(--ink-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  text-align: left;
}

.article-table-wrap th,
.article-table-wrap td {
  padding: 17px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article-table-wrap th {
  color: var(--ink-deep);
  background: #f4f8fb;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.article-table-wrap td {
  color: #45556c;
  font-size: 0.9rem;
  line-height: 1.55;
}

.article-table__note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.86rem;
}

.article-figure {
  padding: 14px;
  border-radius: 26px;
  background: var(--cream);
}

.article-figure__image {
  width: 100%;
  max-height: 680px;
  border-radius: 18px;
  object-fit: cover;
}

.article-figure figcaption {
  padding: 2px 8px 6px;
}

.article-callout,
.article-checklist {
  padding: clamp(30px, 5vw, 54px);
  border-radius: 28px;
}

.article-callout {
  color: white;
  background: var(--ink-deep);
}

.article-callout .kicker {
  color: var(--sun);
}

.article-callout h2 {
  color: white;
}

.article-callout p:last-child {
  max-width: 68ch;
  color: rgba(255, 255, 255, 0.82);
}

.article-checklist {
  background: var(--aqua);
}

.article-checklist ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.article-checklist li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  line-height: 1.55;
}

.article-checklist li span {
  font-weight: 900;
}

.article-products {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #f7f9fc;
}

.article-products > p:not(.kicker) {
  max-width: 68ch;
  margin-bottom: 30px;
  color: var(--muted);
}

.article-products .product-grid {
  gap: 20px;
}

.article-products .product-card__body {
  padding: 18px;
}

.article-sources {
  padding-top: 46px;
  border-top: 1px solid var(--line);
}

.article-sources ol {
  display: grid;
  gap: 12px;
  padding-left: 22px;
}

.article-sources a {
  color: var(--coral);
}

.article-related {
  margin-top: 32px;
  background: var(--cream);
}

.article-related .journal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 900px;
}

@media (max-width: 980px) {
  .journal-grid {
    grid-template-columns: 1fr 1fr;
  }

  .journal-card:last-child {
    grid-column: 1 / -1;
    max-width: 620px;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .article-toc {
    position: static;
  }

  .article-toc nav {
    columns: 2;
    column-gap: 28px;
  }

  .article-toc strong {
    column-span: all;
  }
}

@media (max-width: 680px) {
  .journal-hero,
  .article-hero {
    width: calc(100vw - 28px);
    margin: 0 auto;
  }

  .journal-hero {
    padding-top: 48px;
  }

  .journal-grid,
  .article-related .journal-grid {
    grid-template-columns: 1fr;
  }

  .journal-card:last-child {
    grid-column: auto;
  }

  .article-hero__meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .article-hero__image {
    aspect-ratio: 4 / 3;
    border-radius: 20px;
  }

  .article-layout {
    width: calc(100vw - 28px);
    margin-top: 46px;
  }

  .article-toc nav {
    columns: 1;
  }

  .article-section,
  .article-table-section,
  .article-figure,
  .article-products,
  .article-callout,
  .article-checklist,
  .article-sources {
    margin-bottom: 54px;
  }

  .article-section > p,
  .article-sources > p {
    font-size: 1rem;
  }

  .article-products {
    padding: 22px 14px;
  }

  .article-table-wrap {
    margin-right: -14px;
  }
}
