@font-face {
  font-family: "InterFace";
  src: url("assets/interface-light.ttf") format("truetype");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --marine: #082f2c;
  --marine-2: #134e4a;
  --turquoise: #14b8a6;
  --limon: #84cc16;
  --yuzu: #eab308;
  --rose: #f43f5e;
  --paper: #ffffff;
  --ink: #14201f;
  --muted: #5f6f6c;
  --line: rgba(8, 47, 44, 0.14);
  --shadow: 0 24px 70px rgba(8, 47, 44, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: "InterFace", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 300;
}

button {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.page {
  display: grid;
  gap: clamp(40px, 7vw, 88px);
  min-height: 100vh;
}

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: grid;
  gap: 12px;
  padding: clamp(14px, 2.2vw, 24px) clamp(18px, 4vw, 56px);
  color: #fff;
}

.announcement {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.nav,
.header-tools {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.brand span {
  padding-top: 2px;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand strong {
  color: #fff;
}

.brand-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.nav {
  gap: clamp(12px, 2.4vw, 28px);
}

.nav a,
.header-tools button {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

.header-tools {
  gap: 8px;
}

.lang-toggle,
.bag-button {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.bag-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  margin-left: 6px;
  border-radius: 999px;
  background: #fff;
  color: var(--marine);
  font-size: 0.78rem;
}

.lang-toggle:hover,
.bag-button:hover {
  background: rgba(255, 255, 255, 0.88);
  color: var(--marine);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  align-items: end;
  overflow: hidden;
  padding: clamp(120px, 14vw, 180px) clamp(18px, 4vw, 56px) clamp(54px, 8vw, 96px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 47, 44, 0.34);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: opacity 420ms ease;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-video[hidden] {
  display: none;
}

.hero-bg.is-changing {
  opacity: 0.42;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(2.65rem, 6.3vw, 5.9rem);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 500;
}

.hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.55;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.02);
}

.button:hover,
.button.secondary:hover {
  background: rgba(255, 255, 255, 0.88);
  color: var(--marine);
  border-color: rgba(255, 255, 255, 0.88);
}

.dark-button {
  border-color: var(--marine);
  background: var(--marine);
  color: #fff;
}

.dark-button:hover {
  background: var(--marine-2);
  color: #fff;
}

.editorial-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-inline: clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  padding-bottom: clamp(24px, 4vw, 48px);
}

.editorial-intro h2 {
  max-width: 760px;
  margin: 0;
  color: var(--marine);
  font-size: clamp(2.1rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 0.98;
}

.editorial-intro p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.55;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--line);
  margin-inline: clamp(18px, 4vw, 56px);
}

.product-strip article {
  position: relative;
  min-height: 170px;
  padding: 20px 24px;
  background: #fff;
}

.product-strip article::before {
  content: "";
  display: block;
  width: 32px;
  height: 5px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--marker);
}

.category-textiles {
  --marker: var(--rose);
}

.category-flavours {
  --marker: var(--yuzu);
}

.category-craft {
  --marker: var(--limon);
}

.category-turquoise {
  --marker: var(--turquoise);
}

.category-rose {
  --marker: var(--rose);
}

.category-yuzu {
  --marker: var(--yuzu);
}

.category-limon {
  --marker: var(--limon);
}

.product-strip span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.product-strip h2 {
  margin: 34px 0 8px;
  color: var(--marine);
  font-size: 1.18rem;
  font-weight: 500;
}

.product-strip p,
.origin p {
  color: var(--muted);
  line-height: 1.42;
}

.product-strip p {
  margin: 0;
  font-size: 0.95rem;
}

.products-section {
  display: grid;
  gap: 24px;
  margin-inline: clamp(18px, 4vw, 56px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.section-heading > div:first-child {
  display: grid;
  gap: 8px;
}

.section-heading h2 {
  margin: 0;
  color: var(--marine);
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  font-weight: 500;
  line-height: 1;
}

.eyebrow.dark {
  color: var(--marine);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-row button {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  background: #fff;
  color: var(--marine);
  cursor: pointer;
  font-weight: 500;
}

.filter-row button.is-active,
.filter-row button:hover {
  background: var(--marine);
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}

.curated-showcase {
  display: grid;
  gap: clamp(26px, 4vw, 46px);
}

.curated-category {
  display: grid;
  gap: 18px;
  border-top: 4px solid var(--marine);
  padding-top: 20px;
}

.curated-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.curated-heading span,
.curated-card span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.curated-heading h3 {
  margin: 6px 0 0;
  color: var(--marine);
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  font-weight: 500;
}

.more-link {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 13px;
  background: #fff;
  color: var(--marine);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 500;
}

.more-link:hover {
  border-color: var(--marine);
  background: var(--marine);
  color: #fff;
}

.curated-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}

.curated-card {
  display: grid;
  grid-template-columns: minmax(160px, 0.48fr) minmax(0, 1fr);
  gap: clamp(16px, 2vw, 26px);
  align-items: stretch;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(12px, 1.6vw, 18px);
  background: #fff;
  cursor: pointer;
}

.curated-card:hover img,
.curated-card:hover .product-placeholder {
  transform: translateY(-3px);
}

.curated-card:focus-visible {
  outline: 2px solid var(--marine);
  outline-offset: 6px;
}

.curated-media {
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 100%;
  min-height: 240px;
  border-radius: 6px;
  background: #fff;
}

.curated-media img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: contain;
  transition: transform 180ms ease;
}

.curated-card.is-compact-media {
  grid-template-columns: minmax(140px, 0.38fr) minmax(0, 1fr);
  gap: clamp(14px, 1.8vw, 22px);
}

.curated-card.is-compact-media .curated-media {
  min-height: 190px;
}

.curated-card.is-compact-media .curated-media img {
  max-height: 280px;
}

.curated-card > div {
  display: grid;
  align-content: center;
  gap: 12px;
}

.curated-card h3 {
  margin: 0;
  color: var(--marine);
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  font-weight: 500;
  line-height: 1.12;
}

.curated-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.curated-card footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.curated-card strong {
  color: var(--marine);
  font-size: 1.08rem;
  font-weight: 500;
}

.product-card {
  display: grid;
  gap: 14px;
  min-width: 0;
  cursor: pointer;
}

.product-card:hover img,
.product-card:hover .product-placeholder {
  transform: translateY(-3px);
}

.product-card:focus-visible {
  outline: 2px solid var(--marine);
  outline-offset: 6px;
}

.product-media {
  display: grid;
  place-items: center;
  overflow: hidden;
  justify-self: start;
  width: min(100%, 210px);
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  background: #fff;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  object-fit: contain;
  background: #fff;
  transition: transform 180ms ease;
}

.product-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(20, 184, 166, 0.14), rgba(234, 179, 8, 0.14)),
    #f6f7f4;
  transition: transform 180ms ease;
}

.product-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.86rem;
}

.product-card .product-media {
  display: grid;
  margin-bottom: 0;
  color: inherit;
}

.product-card h3 {
  margin: 0 0 10px;
  color: var(--marine);
  font-size: 1.08rem;
  font-weight: 500;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.product-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}

.product-card strong {
  color: var(--marine);
  font-size: 1.15rem;
  font-weight: 500;
}

.product-card small {
  color: var(--muted);
}

.product-action,
.cart-add {
  min-height: 42px;
  border: 1px solid var(--marine);
  border-radius: 999px;
  padding: 10px 16px;
  background: transparent;
  color: var(--marine);
  cursor: pointer;
  font-weight: 500;
}

.product-action {
  width: fit-content;
  min-height: 34px;
  margin-top: 14px;
  padding: 7px 13px;
  font-size: 0.88rem;
}

.product-action:hover,
.cart-add:hover {
  background: var(--marine);
  color: #fff;
}

.feature-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-inline: clamp(18px, 4vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 42px);
  background: #f8faf5;
}

.feature-band h2 {
  max-width: 820px;
  margin: 0;
  color: var(--marine);
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1.05;
}

.origin {
  max-width: 850px;
  margin-inline: clamp(18px, 4vw, 56px);
}

.origin p:not(.eyebrow) {
  margin: 0;
  color: var(--marine);
  font-size: clamp(1.45rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.12;
}

.page-video {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(320px, 1fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  margin-inline: clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  padding-top: clamp(24px, 4vw, 52px);
}

.page-video[hidden] {
  display: none;
}

.page-video h2 {
  margin: 0 0 14px;
  color: var(--marine);
  font-size: clamp(1.45rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.08;
}

.page-video p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.page-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: var(--marine);
  object-fit: cover;
}

.maker-story {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  margin-inline: clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(28px, 5vw, 64px) 0;
}

.maker-story[hidden] {
  display: none;
}

.maker-story-media {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.maker-story-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.maker-story-copy {
  display: grid;
  gap: 16px;
}

.maker-story-copy h2 {
  margin: 0;
  color: var(--marine);
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  font-weight: 500;
  line-height: 1;
}

.maker-story-copy > p:not(.eyebrow):not(.maker-signature) {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.maker-signature {
  display: grid;
  gap: 4px;
  margin: 8px 0 0;
  color: var(--marine);
}

.maker-signature strong {
  font-weight: 500;
}

.maker-signature span {
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-inline: clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  padding: 28px 0 48px;
  color: var(--marine);
}

.site-footer strong {
  font-weight: 500;
}

.site-footer p {
  max-width: 420px;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.site-footer a {
  color: var(--marine);
  font-weight: 500;
  text-decoration: none;
}

.product-modal,
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: rgba(8, 47, 44, 0.42);
  cursor: pointer;
}

.modal-card,
.cart-panel {
  position: relative;
  z-index: 1;
  background: #fff;
  box-shadow: var(--shadow);
}

.modal-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.75fr);
  gap: 0;
  width: min(1040px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  margin: 16px auto;
  overflow: auto;
  border-radius: 8px;
}

.close-button {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--marine);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.modal-media img,
.modal-media .product-placeholder {
  width: 100%;
  height: clamp(360px, 62vh, 560px);
  min-height: 0;
  aspect-ratio: auto;
  border-radius: 0;
  object-fit: contain;
}

.modal-gallery {
  display: grid;
  gap: 10px;
  background: #fff;
}

.modal-main-image {
  display: block;
  background: #fff;
  transition: transform 180ms ease;
}

.modal-main-image.is-zoomed {
  transform: scale(1.7);
  object-fit: cover;
}

.modal-main-frame {
  position: relative;
  display: block;
  overflow: hidden;
  width: min(100%, 460px);
  margin: 0 auto;
  border: 0;
  padding: 0;
  background: #fff;
  cursor: zoom-in;
}

.modal-main-frame span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--marine);
  font-size: 0.82rem;
  font-weight: 500;
}

.modal-main-frame:has(.is-zoomed) {
  cursor: zoom-out;
}

.modal-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 0 10px 10px;
}

.modal-thumbs button {
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.modal-thumbs button.is-active {
  border-color: var(--marine);
}

.modal-thumbs img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 5px;
  object-fit: cover;
}

.modal-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(24px, 5vw, 58px);
}

.modal-copy span {
  color: var(--muted);
}

.modal-copy h2 {
  margin: 0;
  color: var(--marine);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1;
}

.modal-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.modal-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.modal-meta strong {
  color: var(--marine);
  font-size: 1.3rem;
  font-weight: 500;
}

.modal-meta small {
  color: var(--muted);
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cart-panel {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 18px;
  width: min(560px, 100vw);
  height: 100%;
  margin-left: auto;
  padding: 24px;
  overflow: auto;
}

.cart-panel header,
.cart-panel footer,
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cart-panel header {
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.cart-panel h2 {
  margin: 0;
  color: var(--marine);
  font-size: 2rem;
  font-weight: 500;
}

.cart-panel .close-button {
  position: static;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: auto;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.cart-item img,
.cart-item .product-placeholder {
  width: 64px;
  height: 78px;
  border-radius: 6px;
  object-fit: cover;
}

.cart-item h3 {
  margin: 0 0 4px;
  color: var(--marine);
  font-size: 1rem;
  font-weight: 500;
}

.cart-item span,
.cart-total span {
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-item button {
  border: 0;
  background: transparent;
  color: var(--rose);
  cursor: pointer;
}

.cart-panel footer {
  display: grid;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.cart-total strong {
  color: var(--marine);
  font-size: 1.4rem;
  font-weight: 500;
}

.cart-summary {
  display: grid;
  gap: 8px;
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

.cart-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-summary dt,
.cart-summary dd {
  margin: 0;
  font-size: 0.92rem;
}

.cart-summary dt {
  color: var(--muted);
}

.cart-summary dd {
  color: var(--marine);
  font-weight: 500;
}

.checkout-button {
  width: 100%;
}

.continue-shopping {
  width: 100%;
  border-color: rgba(8, 47, 44, 0.18);
  background: transparent;
  color: var(--marine);
}

.continue-shopping:hover {
  background: var(--wash);
}

.checkout-form {
  display: grid;
  gap: 14px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.checkout-grid label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.88rem;
}

.checkout-grid .wide {
  grid-column: 1 / -1;
}

.checkout-grid input,
.checkout-grid textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 11px;
  color: var(--ink);
  font: inherit;
}

.checkout-grid textarea {
  resize: vertical;
}

.checkout-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.checkout-mail {
  color: var(--marine);
  font-size: 0.92rem;
  font-weight: 500;
  text-align: center;
}

.checkout-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

@media (max-width: 920px) {
  .header-main {
    align-items: flex-start;
    flex-direction: column;
  }

  .editorial-intro,
  .modal-card,
  .maker-story,
  .page-video {
    grid-template-columns: 1fr;
  }

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

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

  .curated-products,
  .curated-card {
    grid-template-columns: 1fr;
  }

  .curated-media {
    min-height: 240px;
  }

  .hero {
    min-height: 760px;
  }

  .modal-media img,
  .modal-media .product-placeholder {
    height: 320px;
  }
}

@media (max-width: 520px) {
  .nav,
  .header-tools {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    font-size: clamp(2.8rem, 16vw, 4.4rem);
  }

  .button {
    width: 100%;
  }

  .section-heading {
    display: grid;
  }

  .filter-row {
    justify-content: flex-start;
  }

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

  .curated-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .more-link {
    width: 100%;
  }

  .feature-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .cart-panel {
    width: 100vw;
  }

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