:root {
  --ink: #102a43;
  --ink-soft: #40566b;
  --navy: #0a3b68;
  --teal: #109da0;
  --teal-dark: #087a7e;
  --coral: #d96f5d;
  --cream: #f8f5ef;
  --sand: #eee7dc;
  --white: #fff;
  --line: rgba(16, 42, 67, 0.14);
  --shadow: 0 22px 70px rgba(16, 42, 67, 0.12);
  --radius: 20px;
  --serif: Iowan Old Style, Baskerville, 'Times New Roman', serif;
  --sans:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fffdf9;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll {
  overflow: hidden;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}
h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  text-wrap: balance;
}
.container {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}
.sr-only {
  position: absolute;
  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;
  left: 12px;
  top: -80px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--ink);
  color: white;
  border-radius: 6px;
}
.skip-link:focus {
  top: 12px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 22px;
  height: 1px;
  background: currentColor;
  content: '';
}

.announcement {
  position: relative;
  z-index: 50;
  background: var(--ink);
  color: white;
  font-size: 0.76rem;
  letter-spacing: 0.035em;
}
.announcement__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.announcement p {
  margin: 0;
}
.announcement a {
  color: #b9e7e4;
  font-weight: 650;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 45;
  background: rgba(255, 253, 249, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition:
    box-shadow 0.3s,
    border-color 0.3s;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(16, 42, 67, 0.06);
}
.header__inner {
  height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 46px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}
.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}
.brand__text {
  display: grid;
  line-height: 1;
  text-transform: uppercase;
}
.brand__text strong {
  font-family: var(--serif);
  font-size: 1.18rem;
  letter-spacing: 0.08em;
}
.brand__text small {
  margin-top: 5px;
  color: var(--teal-dark);
  font-size: 0.61rem;
  font-weight: 750;
  letter-spacing: 0.32em;
}
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 40px);
}
.desktop-nav a {
  position: relative;
  padding: 28px 0;
  color: var(--ink-soft);
  font-size: 0.83rem;
  font-weight: 650;
}
.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 1.5px;
  background: var(--teal);
  content: '';
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s;
}
.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.desktop-nav a.active {
  color: var(--ink);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.icon-button,
.cart-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.icon-button {
  width: 42px;
  height: 42px;
}
.icon-button svg,
.cart-button svg {
  width: 21px;
  height: 21px;
}
.cart-button {
  gap: 8px;
  height: 44px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.cart-button__label {
  font-size: 0.8rem;
  font-weight: 700;
}
.count-badge {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  place-items: center;
  border-radius: 99px;
  background: var(--coral);
  color: white;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
}
.cart-button .count-badge {
  position: static;
}
.menu-button {
  display: none;
}
.menu-button span {
  position: absolute;
  width: 21px;
  height: 1.5px;
  background: currentColor;
  transition: 0.25s;
}
.menu-button span:first-child {
  transform: translateY(-4px);
}
.menu-button span:last-child {
  transform: translateY(4px);
}

main {
  min-height: 70vh;
}
.page-enter {
  animation: pageIn 0.55s cubic-bezier(0.22, 0.7, 0.2, 1) both;
}
@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
}
.hero {
  overflow: hidden;
  background: var(--cream);
}
.hero__grid {
  height: clamp(540px, calc(100svh - 116px), 760px);
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: stretch;
  overflow: hidden;
}
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 86px clamp(30px, 5vw, 78px) 86px
    max(24px, calc((100vw - 1240px) / 2));
}
.hero h1 {
  max-width: 640px;
  margin: 22px 0 24px;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 3.6vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}
.hero h1 em {
  color: var(--teal-dark);
  font-weight: 400;
}
.hero__lead {
  max-width: 520px;
  color: var(--ink-soft);
  font-size: 1.03rem;
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.2s,
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(16, 42, 67, 0.14);
}
.button--outline {
  background: transparent;
  color: var(--ink);
}
.button--outline:hover {
  background: var(--ink);
  color: white;
}
.button--light {
  border-color: white;
  background: white;
  color: var(--ink);
}
.button--full {
  width: 100%;
}
.button--small {
  min-height: 42px;
  padding: 0 17px;
  font-size: 0.7rem;
}
.hero__proof {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 54px;
  color: var(--ink-soft);
  font-size: 0.78rem;
}
.proof-number {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}
.proof-divider {
  width: 1px;
  height: 34px;
  background: var(--line);
}
.hero__visual {
  position: relative;
  min-height: 0;
  height: 100%;
  overflow: hidden;
}
.hero__visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--cream) 0, transparent 20%),
    linear-gradient(0deg, rgba(16, 42, 67, 0.16), transparent 45%);
  content: '';
  pointer-events: none;
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}
.hero__badge {
  position: absolute;
  right: 6%;
  bottom: 7%;
  z-index: 2;
  display: grid;
  width: 126px;
  height: 126px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.89);
  box-shadow: var(--shadow);
  color: var(--ink);
  text-align: center;
  backdrop-filter: blur(8px);
}
.hero__badge strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1;
}
.hero__badge small {
  display: block;
  margin-top: 6px;
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: white;
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 24px 26px;
  border-left: 1px solid var(--line);
}
.trust-item:last-child {
  border-right: 1px solid var(--line);
}
.trust-item svg {
  width: 26px;
  height: 26px;
  color: var(--teal-dark);
}
.trust-item strong {
  display: block;
  font-size: 0.8rem;
}
.trust-item span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.68rem;
}
.section {
  padding: 108px 0;
}
.section--cream {
  background: var(--cream);
}
.section--ink {
  background: var(--ink);
  color: white;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}
.section-heading h2 {
  max-width: 640px;
  margin: 11px 0 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}
.category-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 20px;
}
.category-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sand);
}
.category-card:nth-child(n + 2) {
  min-height: 420px;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.category-card:hover img {
  transform: scale(1.035);
}
.category-card__overlay {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 30px;
  background: linear-gradient(transparent, rgba(7, 26, 43, 0.76));
  color: white;
}
.category-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}
.category-card span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.circle-arrow {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  font-size: 1.2rem;
  transition:
    transform 0.2s,
    background 0.2s,
    color 0.2s;
}
.category-card:hover .circle-arrow {
  transform: rotate(-35deg);
  background: white;
  color: var(--ink);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px 18px;
}
.product-card {
  position: relative;
  min-width: 0;
}
.product-card__image {
  position: relative;
  aspect-ratio: 0.74;
  overflow: hidden;
  border-radius: 14px;
  background: var(--sand);
}
.product-card__image > a {
  display: block;
  width: 100%;
  height: 100%;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.product-card:hover .product-card__image img {
  transform: scale(1.03);
}
.wishlist-button {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.91);
  color: var(--ink);
  cursor: pointer;
  backdrop-filter: blur(5px);
  transition:
    transform 0.2s,
    background 0.2s,
    color 0.2s;
}
.wishlist-button:hover {
  transform: scale(1.08);
}
.wishlist-button.active {
  background: var(--coral);
  color: white;
}
.wishlist-button svg {
  width: 18px;
  height: 18px;
}
.product-badge {
  position: absolute;
  top: 16px;
  left: 14px;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 99px;
  background: var(--ink);
  color: white;
  font-size: 0.59rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.quick-add {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.25s,
    transform 0.25s,
    background 0.2s,
    color 0.2s;
}
.quick-add:hover {
  background: var(--ink);
  color: white;
}
.product-card:hover .quick-add,
.quick-add:focus {
  opacity: 1;
  transform: translateY(0);
}
.product-card__info {
  padding: 16px 3px 0;
}
.product-card__meta {
  margin-bottom: 5px;
  color: var(--teal-dark);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.product-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.24rem;
  font-weight: 500;
}
.product-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}
.price {
  font-size: 0.84rem;
  font-weight: 750;
}
.old-price {
  margin-left: 5px;
  color: #8996a3;
  font-weight: 450;
  text-decoration: line-through;
}
.swatches {
  display: flex;
  gap: 5px;
}
.swatch {
  display: inline-block;
  width: 13px;
  height: 13px;
  border: 2px solid white;
  border-radius: 50%;
  outline: 1px solid rgba(16, 42, 67, 0.18);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}
.story-visual {
  position: relative;
  min-height: 600px;
}
.story-visual__main {
  width: 78%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
}
.story-visual__small {
  position: absolute;
  right: 0;
  bottom: -35px;
  width: 46%;
  height: 280px;
  object-fit: cover;
  border: 10px solid #fffdf9;
  border-radius: var(--radius);
}
.story-seal {
  position: absolute;
  top: 35px;
  right: 5%;
  display: grid;
  width: 110px;
  height: 110px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  text-align: center;
  transform: rotate(6deg);
}
.story-seal strong {
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 0.9;
}
.story-seal small {
  display: block;
  margin-top: 5px;
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.story-copy h2,
.wholesale-home h2 {
  margin: 17px 0 25px;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4.4vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.02;
}
.story-copy p {
  color: var(--ink-soft);
}
.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 36px 0;
  padding: 26px 0;
  border-block: 1px solid var(--line);
}
.story-stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
}
.story-stats span {
  color: var(--ink-soft);
  font-size: 0.68rem;
}
.wholesale-home {
  position: relative;
  overflow: hidden;
}
.wholesale-home::after {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: '';
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.025),
    0 0 0 140px rgba(255, 255, 255, 0.02);
}
.wholesale-home__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 70px;
}
.wholesale-home p {
  max-width: 580px;
  color: #c7d4df;
}
.capacity-card {
  display: grid;
  min-height: 330px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
  backdrop-filter: blur(8px);
}
.capacity-card strong {
  display: block;
  color: #78d2cf;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 500;
  line-height: 0.9;
}
.capacity-card span {
  display: block;
  margin-top: 18px;
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.newsletter {
  background: #e2f1ef;
}
.newsletter__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 70px;
  padding: 64px 0;
}
.newsletter h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 3.7rem);
  font-weight: 500;
  line-height: 1;
}
.newsletter-form {
  display: flex;
  gap: 10px;
}
.newsletter-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 20px;
  border: 1px solid rgba(16, 42, 67, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  outline: none;
}
.newsletter-form input:focus {
  border-color: var(--teal-dark);
  box-shadow: 0 0 0 3px rgba(16, 157, 160, 0.12);
}

.page-hero {
  padding: 84px 0 64px;
  background: var(--cream);
  text-align: center;
}
.page-hero h1 {
  margin: 13px 0 15px;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}
.page-hero p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--ink-soft);
}
.shop-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 50px;
}
.shop-sidebar {
  align-self: start;
  position: sticky;
  top: 115px;
}
.filter-block {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.filter-block:first-child {
  padding-top: 0;
}
.filter-block h3 {
  margin-bottom: 14px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.filter-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 7px 0;
  border: 0;
  background: none;
  color: var(--ink-soft);
  font-size: 0.82rem;
  text-align: left;
  cursor: pointer;
}
.filter-option:hover,
.filter-option.active {
  color: var(--teal-dark);
}
.filter-option.active::before {
  width: 5px;
  height: 5px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--teal);
  content: '';
}
.filter-option span {
  margin-left: auto;
  color: #8a99a6;
}
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.shop-toolbar p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
}
.shop-toolbar select {
  padding: 9px 30px 9px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  color: var(--ink);
  font-size: 0.76rem;
}
.shop-products.products-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.empty-state {
  grid-column: 1/-1;
  padding: 80px 20px;
  text-align: center;
}
.empty-state svg {
  width: 45px;
  height: 45px;
  margin: 0 auto 18px;
  color: var(--teal-dark);
}
.empty-state h2 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 2.3rem;
  font-weight: 500;
}
.empty-state p {
  color: var(--ink-soft);
}

.product-detail {
  padding: 70px 0 110px;
}
.breadcrumbs {
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 0.72rem;
}
.breadcrumbs a:hover {
  color: var(--teal-dark);
}
.product-detail__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(50px, 7vw, 100px);
  align-items: start;
}
.product-gallery {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
}
.gallery-thumbs {
  display: grid;
  align-content: start;
  gap: 12px;
}
.gallery-thumb {
  overflow: hidden;
  aspect-ratio: 0.75;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--sand);
  cursor: pointer;
}
.gallery-thumb.active {
  border-color: var(--ink);
}
.gallery-thumb img,
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-main {
  aspect-ratio: 0.75;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sand);
}
.product-detail__info {
  position: sticky;
  top: 120px;
}
.product-detail__info h1 {
  margin: 8px 0 13px;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}
.product-detail__price {
  margin-bottom: 20px;
  font-size: 1.05rem;
  font-weight: 750;
}
.rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: #b9822f;
  font-size: 0.75rem;
}
.rating span {
  color: var(--ink-soft);
}
.product-detail__description {
  margin-bottom: 28px;
  color: var(--ink-soft);
}
.option-group {
  margin: 25px 0;
}
.option-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.75rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.option-label button {
  border: 0;
  border-bottom: 1px solid;
  background: none;
  color: var(--ink-soft);
  font-size: 0.67rem;
  cursor: pointer;
}
.size-options,
.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.size-option {
  min-width: 48px;
  height: 44px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
  cursor: pointer;
}
.size-option.active {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}
.color-option {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px 0 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  font-size: 0.7rem;
  cursor: pointer;
}
.color-option i {
  width: 25px;
  height: 25px;
  border: 2px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
}
.color-option.active {
  border-color: var(--ink);
}
.purchase-row {
  display: grid;
  grid-template-columns: 110px 1fr 52px;
  gap: 10px;
  margin-top: 30px;
}
.quantity {
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.quantity button {
  border: 0;
  background: none;
  cursor: pointer;
}
.quantity span {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
}
.detail-wishlist {
  border: 1px solid var(--line);
  border-radius: 50%;
}
.detail-wishlist.active {
  background: var(--coral);
  color: white;
}
.product-benefits {
  display: grid;
  gap: 11px;
  margin-top: 28px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}
.product-benefits div {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink-soft);
  font-size: 0.75rem;
}
.product-benefits svg {
  width: 20px;
  height: 20px;
  color: var(--teal-dark);
}
.accordion {
  margin-top: 25px;
  border-top: 1px solid var(--line);
}
.accordion-item {
  border-bottom: 1px solid var(--line);
}
.accordion-button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0;
  border: 0;
  background: none;
  font-size: 0.75rem;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}
.accordion-content {
  display: none;
  padding: 0 0 17px;
  color: var(--ink-soft);
  font-size: 0.77rem;
}
.accordion-item.open .accordion-content {
  display: block;
}
.accordion-item.open .accordion-button span {
  transform: rotate(45deg);
}

.content-page {
  padding: 100px 0;
}
.about-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.display-title {
  margin: 14px 0 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.3vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.95;
}
.lead-copy {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 2.3rem);
  line-height: 1.4;
}
.about-image-wide {
  width: 100%;
  height: 610px;
  margin: 80px 0;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--radius);
}
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}
.timeline::before {
  position: absolute;
  top: 17px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
  content: '';
}
.timeline-item {
  position: relative;
  padding-top: 48px;
}
.timeline-item::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 15px;
  height: 15px;
  border: 5px solid #fffdf9;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 1px var(--teal);
  content: '';
}
.timeline-item strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 1.7rem;
}
.timeline-item p {
  color: var(--ink-soft);
  font-size: 0.84rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.value-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}
.value-card span {
  color: var(--teal-dark);
  font-family: var(--serif);
  font-size: 2.4rem;
}
.value-card h3 {
  margin: 22px 0 10px;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
}
.value-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.wholesale-hero {
  display: grid;
  height: clamp(500px, calc(100svh - 116px), 680px);
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--ink);
  color: white;
}
.wholesale-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px max(30px, calc((100vw - 1240px) / 2));
  padding-right: clamp(40px, 6vw, 100px);
}
.wholesale-hero__copy .eyebrow {
  color: #78d2cf;
}
.wholesale-hero h1 {
  margin: 18px 0 25px;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 6vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.9;
}
.wholesale-hero p {
  color: #c4d0db;
}
.wholesale-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 50px;
  background: var(--line);
  border: 1px solid var(--line);
}
.process-card {
  padding: 36px 28px;
  background: #fffdf9;
}
.process-card span {
  color: var(--teal-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.process-card h3 {
  margin: 36px 0 10px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}
.process-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}
.inquiry-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  padding: 60px;
  border-radius: var(--radius);
  background: var(--cream);
}
.inquiry-panel h2 {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 8vw, 120px);
}
.contact-details {
  display: grid;
  gap: 28px;
  margin-top: 40px;
}
.contact-detail {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.contact-detail small {
  display: block;
  margin-bottom: 5px;
  color: var(--teal-dark);
  font-size: 0.63rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-detail a,
.contact-detail p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.4;
}
.form-card {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field {
  display: grid;
  gap: 7px;
}
.form-field--full {
  grid-column: 1/-1;
}
.form-field label {
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
  color: var(--ink);
  outline: none;
}
.form-field textarea {
  min-height: 130px;
  resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(16, 157, 160, 0.1);
}
.form-note {
  color: var(--ink-soft);
  font-size: 0.68rem;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: start;
}
.checkout-section {
  margin-bottom: 42px;
}
.checkout-section h2 {
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
}
.payment-option {
  display: flex;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--teal);
  border-radius: 10px;
  background: rgba(16, 157, 160, 0.05);
}
.payment-option input {
  margin-top: 4px;
  accent-color: var(--teal);
}
.payment-option strong {
  display: block;
  font-size: 0.84rem;
}
.payment-option span {
  color: var(--ink-soft);
  font-size: 0.72rem;
}
.order-summary {
  position: sticky;
  top: 120px;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--cream);
}
.order-summary h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}
.summary-items {
  display: grid;
  gap: 16px;
  margin: 25px 0;
}
.summary-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 13px;
  align-items: center;
}
.summary-item__image {
  position: relative;
  width: 64px;
  height: 82px;
}
.summary-item__image img {
  width: 100%;
  height: 100%;
  border-radius: 7px;
  object-fit: cover;
}
.summary-item__image span {
  position: absolute;
  top: -6px;
  right: -6px;
  display: grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 0.6rem;
}
.summary-item h3 {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 500;
}
.summary-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.65rem;
}
.summary-item > span {
  font-size: 0.75rem;
  font-weight: 700;
}
.totals {
  display: grid;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.total-row {
  display: flex;
  justify-content: space-between;
  color: var(--ink-soft);
  font-size: 0.78rem;
}
.total-row--grand {
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}
.confirmation {
  max-width: 700px;
  margin: 0 auto;
  padding: 120px 24px;
  text-align: center;
}
.confirmation__icon {
  display: grid;
  width: 82px;
  height: 82px;
  margin: 0 auto 25px;
  place-items: center;
  border-radius: 50%;
  background: #dcefeb;
  color: var(--teal-dark);
  font-size: 2rem;
}
.confirmation h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
}
.confirmation p {
  color: var(--ink-soft);
}
.confirmation__number {
  display: inline-block;
  margin: 15px 0 30px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--cream);
  font-weight: 800;
  letter-spacing: 0.08em;
}
.info-page {
  max-width: 800px;
}
.info-page h2 {
  margin-top: 42px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}
.info-page p,
.info-page li {
  color: var(--ink-soft);
}

.site-footer {
  padding-top: 76px;
  background: #0b2237;
  color: white;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 90px;
  padding-bottom: 65px;
}
.brand--footer img {
  width: 58px;
  height: 58px;
}
.brand--footer .brand__text small {
  color: #79d0cd;
}
.footer__brand > p {
  max-width: 400px;
  margin: 26px 0;
  color: #aebdca;
  font-size: 0.8rem;
}
.social-row {
  display: flex;
  gap: 20px;
}
.social-row a {
  border-bottom: 1px solid #658094;
  color: #d9e5ed;
  font-size: 0.72rem;
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
.footer__links h3 {
  margin-bottom: 18px;
  color: white;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer__links a {
  display: block;
  margin: 10px 0;
  color: #aebdca;
  font-size: 0.76rem;
  transition:
    color 0.2s,
    transform 0.2s;
}
.footer__links a:hover {
  color: white;
  transform: translateX(3px);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8ea2b2;
  font-size: 0.66rem;
}
.footer__bottom p {
  margin: 0;
}

.overlay {
  position: fixed;
  z-index: 80;
  inset: 0;
  background: rgba(6, 24, 39, 0.48);
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(3px);
  transition:
    opacity 0.3s,
    visibility 0.3s;
}
.overlay.open {
  opacity: 1;
  visibility: visible;
}
.side-drawer {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  display: grid;
  width: min(470px, 100%);
  height: 100%;
  grid-template-rows: auto 1fr auto;
  background: #fffdf9;
  box-shadow: -20px 0 60px rgba(8, 30, 50, 0.16);
  transform: translateX(102%);
  transition: transform 0.4s cubic-bezier(0.22, 0.75, 0.18, 1);
}
.side-drawer.open {
  transform: translateX(0);
}
.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 28px;
  border-bottom: 1px solid var(--line);
}
.drawer__header h2 {
  margin: 4px 0 0;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
}
.drawer__header h2 small {
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 0.7rem;
}
.drawer-close {
  font-size: 1.8rem;
}
.drawer__body {
  overflow-y: auto;
  padding: 20px 28px;
}
.drawer__footer {
  padding: 22px 28px 28px;
  border-top: 1px solid var(--line);
}
.cart-line {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 15px;
  padding: 14px 0 20px;
  border-bottom: 1px solid var(--line);
}
.cart-line img {
  width: 88px;
  height: 116px;
  border-radius: 8px;
  object-fit: cover;
}
.cart-line__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.cart-line h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.04rem;
  font-weight: 500;
}
.remove-button {
  padding: 0;
  border: 0;
  background: none;
  color: #7e8c98;
  font-size: 0.65rem;
  text-decoration: underline;
  cursor: pointer;
}
.cart-line__variant {
  margin: 5px 0 11px;
  color: var(--ink-soft);
  font-size: 0.66rem;
}
.cart-line__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.quantity--small {
  width: 92px;
  height: 34px;
}
.quantity--small button {
  height: 32px;
}
.cart-line__price {
  font-size: 0.76rem;
  font-weight: 750;
}
.drawer-progress {
  margin-bottom: 20px;
}
.drawer-progress p {
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 0.68rem;
}
.progress-track {
  height: 4px;
  overflow: hidden;
  border-radius: 5px;
  background: var(--sand);
}
.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--teal);
  transition: width 0.35s;
}
.drawer-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  font-weight: 800;
}
.drawer-note {
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 0.65rem;
}
.drawer-empty {
  display: grid;
  height: 100%;
  place-items: center;
  text-align: center;
}
.drawer-empty svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 15px;
  color: var(--teal-dark);
}
.drawer-empty h3 {
  margin-bottom: 7px;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
}
.drawer-empty p {
  color: var(--ink-soft);
  font-size: 0.78rem;
}
.search-panel {
  position: fixed;
  z-index: 95;
  top: 0;
  right: 0;
  left: 0;
  max-height: 85vh;
  overflow-y: auto;
  background: #fffdf9;
  box-shadow: 0 22px 70px rgba(8, 30, 50, 0.18);
  transform: translateY(-105%);
  transition: transform 0.4s cubic-bezier(0.22, 0.75, 0.18, 1);
}
.search-panel.open {
  transform: translateY(0);
}
.search-panel__inner {
  padding: 38px 0 44px;
}
.search-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.search-panel__top .icon-button {
  font-size: 1.8rem;
}
.search-input-wrap {
  position: relative;
  display: block;
  margin-top: 25px;
}
.search-input-wrap input {
  width: 100%;
  padding: 10px 55px 15px 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
  outline: none;
}
.search-input-wrap svg {
  position: absolute;
  right: 6px;
  bottom: 23px;
  width: 28px;
  height: 28px;
}
.search-results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
}
.search-result {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 12px;
  align-items: center;
}
.search-result img {
  width: 62px;
  height: 76px;
  border-radius: 6px;
  object-fit: cover;
}
.search-result h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 0.93rem;
  font-weight: 500;
}
.search-result p {
  margin: 3px 0 0;
  color: var(--ink-soft);
  font-size: 0.65rem;
}
.mobile-nav {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  padding: 25px 25px 40px;
  background: var(--ink);
  color: white;
  transform: translateX(-102%);
  transition: transform 0.4s cubic-bezier(0.22, 0.75, 0.18, 1);
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  color: #9eb2c2;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.mobile-nav__top button {
  color: white;
  font-size: 2rem;
}
.mobile-nav > a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--serif);
  font-size: clamp(2rem, 9vw, 2rem);
  line-height: 1;
}
.mobile-nav > a span {
  color: #78d2cf;
  font-family: var(--sans);
  font-size: 0.63rem;
}
.mobile-nav__contact {
  margin-top: auto;
  color: #9eb2c2;
}
.mobile-nav__contact small {
  display: block;
  font-size: 0.65rem;
}
.mobile-nav__contact a {
  color: white;
  font-family: var(--serif);
  font-size: 1.4rem;
}
.toast {
  position: fixed;
  z-index: 120;
  right: 22px;
  bottom: 22px;
  max-width: 350px;
  padding: 13px 18px;
  border-radius: 9px;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
  font-size: 0.76rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: 0.3s;
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1050px) {
  .desktop-nav {
    gap: 18px;
  }
  .desktop-nav a {
    font-size: 0.74rem;
  }
  .brand__text {
    display: none;
  }
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .story-grid {
    gap: 55px;
  }
  .story-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .shop-products.products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .search-results {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  .container {
    width: min(calc(100% - 32px), 680px);
  }
  .announcement__inner {
    justify-content: center;
  }
  .announcement a {
    display: none;
  }
  .header__inner {
    height: 70px;
    grid-template-columns: 44px 1fr auto;
    gap: 8px;
  }
  .menu-button {
    display: inline-flex;
  }
  .brand {
    justify-self: center;
  }
  .brand img {
    width: 47px;
    height: 47px;
  }
  .desktop-nav,
  .hide-mobile,
  .cart-button__label {
    display: none;
  }
  .cart-button {
    width: 42px;
    padding: 0;
    border: 0;
  }
  .cart-button .count-badge {
    position: absolute;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
  }
  .hero__grid {
    height: auto;
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    overflow: visible;
  }
  .hero__content {
    min-width: 0;
    max-width: 100vw;
    padding: 72px 24px 50px;
    overflow: hidden;
  }
  .hero__lead {
    max-width: 100%;
  }
  .hero h1 {
    font-size: clamp(2.7rem, 11vw, 4rem);
    line-height: 0.94;
  }
  .hero__visual {
    min-height: 560px;
  }
  .hero__visual::after {
    background: linear-gradient(0deg, rgba(16, 42, 67, 0.18), transparent 55%);
  }
  .hero__badge {
    width: 105px;
    height: 105px;
  }
  .trust-strip {
    overflow-x: auto;
  }
  .trust-strip__grid {
    width: max-content;
    grid-template-columns: repeat(4, 230px);
  }
  .section {
    padding: 78px 0;
  }
  .section-heading {
    align-items: start;
    flex-direction: column;
    margin-bottom: 30px;
  }
  .category-grid {
    grid-template-columns: 1fr;
  }
  .category-card,
  .category-card:nth-child(n + 2) {
    min-height: 450px;
  }
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .story-grid,
  .wholesale-home__grid,
  .newsletter__inner,
  .about-intro,
  .contact-grid,
  .inquiry-panel,
  .checkout-layout {
    grid-template-columns: 1fr;
  }
  .story-grid {
    gap: 80px;
  }
  .story-visual {
    min-height: 530px;
  }
  .story-visual__main {
    height: 500px;
  }
  .story-visual__small {
    height: 220px;
  }
  .newsletter__inner {
    gap: 30px;
  }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .shop-sidebar {
    position: static;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 5px;
  }
  .filter-block {
    display: contents;
  }
  .filter-block h3,
  .filter-block:nth-child(n + 2) {
    display: none;
  }
  .filter-option {
    width: auto;
    flex: 0 0 auto;
    padding: 8px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
  }
  .filter-option span {
    display: none;
  }
  .filter-option.active {
    background: var(--ink);
    color: white;
  }
  .product-detail__grid {
    grid-template-columns: 1fr;
  }
  .product-detail__info {
    position: static;
  }
  .wholesale-hero {
    height: auto;
    grid-template-columns: 1fr;
    overflow: visible;
  }
  .wholesale-hero__copy {
    padding: 80px 24px;
  }
  .wholesale-hero__image {
    min-height: 520px;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .inquiry-panel {
    gap: 30px;
    padding: 36px 24px;
  }
  .about-image-wide {
    height: 480px;
  }
  .timeline {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .timeline::before {
    top: 0;
    bottom: 0;
    left: 7px;
    width: 1px;
    height: auto;
  }
  .timeline-item {
    padding: 0 0 20px 40px;
  }
  .timeline-item::before {
    top: 5px;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .order-summary {
    position: static;
  }
}

@media (max-width: 520px) {
  .hero__proof {
    gap: 13px;
  }
  .hero__proof .proof-divider:nth-of-type(2),
  .hero__proof div:last-child {
    display: none;
  }
  .hero__visual {
    min-height: 460px;
  }
  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero__actions .button {
    width: 100%;
  }
  .products-grid,
  .shop-products.products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 10px;
  }
  .product-card__info {
    padding-top: 10px;
  }
  .product-card h3 {
    font-size: 1rem;
  }
  .product-card__meta {
    font-size: 0.55rem;
  }
  .product-card__row {
    align-items: start;
    flex-direction: column;
    gap: 5px;
  }
  .quick-add {
    display: none;
  }
  .story-visual__main {
    width: 88%;
  }
  .story-seal {
    right: 0;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .footer__links {
    grid-template-columns: 1fr 1fr;
  }
  .footer__links div:last-child {
    grid-column: 1/-1;
  }
  .footer__bottom {
    align-items: start;
    flex-direction: column;
    gap: 5px;
  }
  .page-hero {
    padding: 60px 0 45px;
  }
  .shop-toolbar {
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }
  .product-detail {
    padding-top: 35px;
  }
  .product-gallery {
    grid-template-columns: 1fr;
  }
  .gallery-thumbs {
    grid-row: 2;
    grid-template-columns: repeat(3, 70px);
  }
  .purchase-row {
    grid-template-columns: 100px 1fr 48px;
  }
  .form-card {
    padding: 25px 18px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-field--full {
    grid-column: auto;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .search-results {
    grid-template-columns: 1fr;
  }
  .search-panel__inner {
    padding-top: 22px;
  }
  .search-input-wrap input {
    font-size: 1.8rem;
  }
  .about-image-wide {
    height: 380px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
