﻿:root {
  --cotton: #fbf7ef;
  --paper: #fffdf8;
  --reed: #e4d8c6;
  --clay: #9a5d43;
  --terracotta: #c8673d;
  --forest: #305f4a;
  --moss: #71835f;
  --indigo: #283d65;
  --ink: #27221d;
  --muted: #6f665d;
  --line: rgba(39, 34, 29, 0.16);
  --shadow: 0 22px 60px rgba(39, 34, 29, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, var(--cotton), #f3eee5 46%, #f9f7f1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--indigo);
  transform: translateY(-180%);
}

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

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

.site-header {
  min-height: auto;
  background:
    linear-gradient(90deg, rgba(251, 247, 239, 0.96) 0 44%, rgba(251, 247, 239, 0.7) 58%, rgba(251, 247, 239, 0.42)),
    url("../images/hero.webp") center / cover no-repeat,
    var(--cotton);
}

.category-hero {
  background:
    linear-gradient(90deg, rgba(251, 247, 239, 0.96), rgba(251, 247, 239, 0.82)),
    url("../images/hero.webp") center / cover no-repeat,
    var(--cotton);
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(255, 253, 248, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand-lockup,
.nav-links,
.hero-actions,
.form-actions {
  display: flex;
  align-items: center;
}

.brand-lockup {
  gap: 10px;
  color: var(--forest);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.brand-logo {
  width: clamp(156px, 18vw, 250px);
  height: 46px;
  object-fit: contain;
}

.nav-links {
  gap: 6px;
}

.nav-links a,
.category-tabs a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

[data-cart-count] {
  min-width: 20px;
  min-height: 20px;
  display: none;
  place-items: center;
  border-radius: 999px;
  color: var(--paper);
  background: var(--terracotta);
  font-size: 0.72rem;
  line-height: 1;
}

[data-cart-count].cart-count-active {
  display: inline-grid;
}

.nav-links a:hover,
.nav-links a:focus,
.category-tabs a:hover,
.category-tabs a:focus,
.category-tabs a.active {
  color: var(--paper);
  background: var(--forest);
}

.hero {
  min-height: calc(100vh - 75px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(52px, 8vw, 110px) clamp(18px, 6vw, 76px);
}

.category-title-band {
  padding: clamp(54px, 8vw, 110px) clamp(18px, 6vw, 76px);
}

.category-title-band h1 {
  max-width: 960px;
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 880px;
  color: var(--clay);
  font-size: clamp(3.5rem, 9vw, 8rem);
}

h2 {
  color: var(--ink);
  font-size: clamp(2.1rem, 5vw, 4.8rem);
}

.hero-text {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.primary-button,
.secondary-button,
.clear-button {
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 900;
}

.primary-button {
  color: var(--paper);
  background: var(--forest);
}

.secondary-button,
.clear-button {
  color: var(--forest);
  background: var(--paper);
  border-color: var(--line);
}

.primary-button:hover,
.secondary-button:hover,
.clear-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(48, 95, 74, 0.18);
}

.hero-media {
  border: 1px solid rgba(255, 253, 248, 0.72);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-story-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: stretch;
  margin-top: clamp(8px, 2vw, 18px);
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(255, 253, 248, 0.7);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.64);
  box-shadow: 0 18px 52px rgba(39, 34, 29, 0.1);
  backdrop-filter: blur(10px);
}

.hero-story-panel h2 {
  max-width: 780px;
  color: var(--clay);
  font-size: clamp(2rem, 4.7vw, 4.4rem);
}

.hero-story-panel p:not(.eyebrow) {
  max-width: 850px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

main {
  position: relative;
  z-index: 1;
}

.home-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.62fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  min-height: clamp(520px, 72vh, 760px);
  padding: clamp(56px, 8vw, 110px) clamp(18px, 6vw, 76px);
  background:
    linear-gradient(90deg, rgba(251, 247, 239, 0.96) 0 34%, rgba(251, 247, 239, 0.78) 58%, rgba(251, 247, 239, 0.52)),
    url("../images/hero.webp") center / cover no-repeat,
    var(--cotton);
  border-bottom: 1px solid var(--line);
}

.home-intro-copy {
  max-width: 920px;
}

.home-intro h1 {
  color: var(--clay);
}

.home-intro-copy p:not(.eyebrow) {
  max-width: 780px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2.1vw, 1.45rem);
  line-height: 1.7;
}

.home-intro-card {
  border: 1px solid rgba(255, 253, 248, 0.72);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.home-intro-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.initiative-resource-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(48px, 7vw, 88px) clamp(18px, 6vw, 76px);
  background: rgba(255, 253, 248, 0.86);
  border-bottom: 1px solid var(--line);
}

.initiative-copy {
  max-width: 620px;
}

.initiative-copy h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4.3vw, 4.2rem);
}

.initiative-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.initiative-copy strong {
  color: var(--ink);
}

.document-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.document-downloads a {
  min-width: 150px;
  display: grid;
  gap: 3px;
  border: 1px solid rgba(154, 93, 67, 0.2);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--paper);
  background: #a60008;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(166, 0, 8, 0.16);
}

.document-downloads a:hover,
.document-downloads a:focus-visible {
  background: var(--forest);
  transform: translateY(-2px);
}

.document-downloads span {
  font-weight: 950;
}

.document-downloads small {
  color: rgba(255, 253, 248, 0.82);
  font-weight: 800;
}

.initiative-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: clamp(12px, 2vw, 24px);
  align-items: start;
}

.initiative-process article {
  display: grid;
  gap: 10px;
}

.initiative-process img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 3px;
  object-fit: cover;
  background: var(--reed);
  box-shadow: 0 14px 36px rgba(39, 34, 29, 0.12);
}

.initiative-process article {
  min-width: 0;
}

.initiative-process article img[src*="/process/"] {
  border-radius: 2px;
  box-shadow: 0 12px 28px rgba(39, 34, 29, 0.1);
}

.initiative-process span {
  color: #a60008;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  font-style: italic;
  text-align: center;
  text-transform: uppercase;
}

.impact-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: clamp(22px, 4vw, 34px) clamp(18px, 6vw, 76px);
  background: var(--forest);
  border-bottom: 1px solid rgba(255, 253, 248, 0.18);
}

.impact-strip article {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
  padding: 18px;
  color: var(--paper);
  background: rgba(255, 253, 248, 0.08);
}

.impact-strip strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 0.98;
}

.impact-strip span {
  color: rgba(255, 253, 248, 0.84);
  font-weight: 850;
  line-height: 1.45;
}

.artisan-story-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(50px, 7vw, 92px) clamp(18px, 6vw, 76px);
  background:
    linear-gradient(90deg, rgba(251, 247, 239, 0.92), rgba(251, 247, 239, 0.78)),
    url("../images/hero.webp") center / cover no-repeat,
    var(--cotton);
  border-bottom: 1px solid var(--line);
}

.artisan-story-media {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 12px;
  align-items: end;
}

.artisan-story-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  object-fit: cover;
  background: var(--reed);
  box-shadow: var(--shadow);
}

.artisan-story-media img:first-child {
  margin-top: clamp(20px, 4vw, 46px);
}

.artisan-story-copy {
  max-width: 760px;
}

.artisan-story-copy h2 {
  color: var(--clay);
  font-size: clamp(2.4rem, 6vw, 6rem);
}

.artisan-story-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
  line-height: 1.75;
}

.home-product-teasers {
  padding: clamp(48px, 7vw, 88px) clamp(18px, 6vw, 76px);
  background: rgba(255, 253, 248, 0.72);
  border-bottom: 1px solid var(--line);
}

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

.home-shop-search {
  display: grid;
  gap: 10px;
  margin: 0 0 clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 14px 36px rgba(39, 34, 29, 0.08);
}

.home-shop-search label {
  color: var(--forest);
  font-size: 0.86rem;
  font-weight: 950;
}

.home-shop-search > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.featured-product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  background: var(--paper);
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(39, 34, 29, 0.08);
}

.featured-product-card:hover,
.featured-product-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(48, 95, 74, 0.16);
}

.featured-product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--reed);
}

.featured-product-card span,
.featured-product-card small {
  display: block;
  padding-inline: 16px;
}

.featured-product-card span {
  padding-top: 16px;
  color: var(--forest);
  font-size: 1.08rem;
  font-weight: 950;
}

.featured-product-card small {
  padding-top: 8px;
  padding-bottom: 16px;
  color: var(--muted);
  font-weight: 850;
}

.why-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: start;
  padding: clamp(52px, 7vw, 92px) clamp(18px, 6vw, 76px);
  background: rgba(255, 253, 248, 0.62);
  border-bottom: 1px solid var(--line);
}

.why-section h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 4rem);
}

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

.why-grid article {
  min-height: 180px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 14px 42px rgba(39, 34, 29, 0.08);
}

.why-grid strong {
  color: var(--forest);
  font-size: 1.05rem;
}

.why-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.why-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.62fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  min-height: calc(100vh - 75px);
  padding: clamp(56px, 8vw, 110px) clamp(18px, 6vw, 76px);
  background:
    linear-gradient(90deg, rgba(251, 247, 239, 0.96) 0 32%, rgba(251, 247, 239, 0.78) 62%, rgba(251, 247, 239, 0.5)),
    url("../images/hero.webp") center / cover no-repeat,
    var(--cotton);
  border-bottom: 1px solid var(--line);
}

.why-hero-copy {
  max-width: 900px;
}

.why-hero-copy h1 {
  color: var(--clay);
}

.why-hero-copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.7;
}

.why-hero-panel {
  border: 1px solid rgba(255, 253, 248, 0.72);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.why-hero-panel strong {
  display: block;
  color: var(--forest);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.why-hero-panel p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.why-detail-section,
.why-reasons-section {
  padding: clamp(52px, 7vw, 92px) clamp(18px, 6vw, 76px);
  border-bottom: 1px solid var(--line);
}

.why-detail-section {
  background: rgba(255, 253, 248, 0.72);
}

.why-detail-heading {
  max-width: 900px;
  margin-bottom: clamp(24px, 4vw, 42px);
}

.why-detail-heading p:not(.eyebrow) {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.why-stat-grid article {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--paper);
  box-shadow: 0 14px 42px rgba(39, 34, 29, 0.08);
}

.why-stat-grid span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 999px;
  color: var(--paper);
  background: var(--forest);
  font-weight: 950;
}

.why-stat-grid strong {
  display: block;
  color: var(--clay);
  font-size: 1.35rem;
}

.why-stat-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.why-reasons-section {
  background: #f8f5ed;
}

.why-reasons-section .why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.why-clean-page {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  padding: clamp(54px, 8vw, 104px) clamp(18px, 6vw, 76px);
  background: rgba(255, 253, 248, 0.74);
  border-bottom: 1px solid var(--line);
}

.why-clean-intro {
  max-width: 860px;
}

.why-clean-intro h1 {
  color: var(--clay);
  font-size: clamp(3.2rem, 7vw, 6.8rem);
}

.why-clean-intro p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.75;
}

.why-clean-image {
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.74);
  border-radius: 8px;
  background: var(--reed);
  box-shadow: var(--shadow);
}

.why-clean-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.why-clean-grid-section {
  padding: clamp(42px, 6vw, 80px) clamp(18px, 6vw, 76px);
  background: #f8f5ed;
  border-bottom: 1px solid var(--line);
}

.why-clean-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.why-clean-grid article {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--paper);
  box-shadow: 0 14px 42px rgba(39, 34, 29, 0.08);
}

.why-clean-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--clay);
  font-weight: 950;
  letter-spacing: 0.08em;
}

.why-clean-grid strong {
  display: block;
  color: var(--forest);
  font-size: 1.12rem;
}

.why-clean-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.partners-section {
  padding: clamp(52px, 7vw, 92px) clamp(18px, 6vw, 76px);
  background:
    linear-gradient(90deg, rgba(251, 247, 239, 0.94), rgba(251, 247, 239, 0.82)),
    url("../images/hero.webp") center / cover no-repeat,
    var(--cotton);
  border-bottom: 1px solid var(--line);
}

.standalone-section {
  min-height: calc(100vh - 75px);
}

.standalone-section h1 {
  max-width: 940px;
}

.offer-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: clamp(18px, 4vw, 34px) clamp(18px, 6vw, 76px) 0;
  border: 1px solid rgba(255, 253, 248, 0.78);
  border-radius: 8px;
  padding: clamp(16px, 3vw, 24px);
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(48, 95, 74, 0.96), rgba(154, 93, 67, 0.92)),
    var(--forest);
  box-shadow: var(--shadow);
  animation: reveal 0.55s ease both;
}

.category-page .offer-banner {
  margin-top: 18px;
}

.offer-banner p {
  margin: 6px 0 0;
  color: rgba(255, 253, 248, 0.86);
  line-height: 1.5;
}

.offer-banner.is-upcoming {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.95), rgba(228, 216, 198, 0.88)),
    var(--paper);
}

.offer-banner.is-upcoming p {
  color: var(--muted);
}

.offer-banner.is-upcoming .offer-percent {
  color: var(--paper);
  background: var(--forest);
}

.offer-banner strong {
  display: block;
  font-size: clamp(1.12rem, 3vw, 1.55rem);
}

.offer-percent {
  display: grid;
  place-items: center;
  min-width: 92px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 253, 248, 0.46);
  border-radius: 999px;
  color: var(--forest);
  background: var(--paper);
  font-size: 1.35rem;
  font-weight: 950;
  box-shadow: 0 16px 36px rgba(39, 34, 29, 0.18);
}

.partners-heading {
  max-width: 760px;
  margin-bottom: clamp(24px, 4vw, 42px);
}

.partners-heading h2 {
  color: var(--clay);
}

.partners-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(130px, 1fr));
  gap: 16px;
}

.partner-logo-grid article {
  min-height: 150px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 14px 42px rgba(39, 34, 29, 0.08);
}

.partner-logo-grid img {
  max-width: 100%;
  max-height: 96px;
  object-fit: contain;
}

.story-section,
.catalogue-shell,
.enquiry-section {
  padding: clamp(56px, 8vw, 105px) clamp(18px, 5vw, 70px);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: start;
}

.story-grid p,
.enquiry-copy p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.impact-panel,
.enquiry-form,
.product-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 14px 42px rgba(39, 34, 29, 0.08);
}

.impact-panel {
  padding: clamp(22px, 4vw, 38px);
}

.impact-panel h3 {
  margin: 0 0 12px;
  color: var(--indigo);
}

.impact-panel ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.catalogue-shell {
  background: #f8f5ed;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-categories {
  min-height: auto;
}

.catalogue-heading {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: end;
  margin-bottom: 24px;
}

.result-summary {
  margin: 0;
  color: var(--indigo);
  font-weight: 900;
}

.category-search-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
  margin-bottom: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 14px 36px rgba(39, 34, 29, 0.08);
}

.category-search-bar .result-summary {
  padding: 12px 0;
  white-space: nowrap;
}

.category-intro {
  max-width: 820px;
  margin: 12px 0 28px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.catalogue-tools {
  position: sticky;
  top: 74px;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(170px, 230px) minmax(170px, 230px) auto;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 14px 36px rgba(39, 34, 29, 0.08);
  backdrop-filter: blur(14px);
}

.search-field,
.select-field,
.enquiry-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--paper);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(40, 61, 101, 0.24);
  outline-offset: 2px;
}

.category-tabs {
  display: flex;
  gap: 8px;
  margin: 22px 0 30px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.category-tabs a {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: var(--paper);
}

.category-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  margin: 0 0 clamp(30px, 5vw, 54px);
}

.home-categories .category-card-grid {
  margin-bottom: 0;
}

.category-card {
  display: grid;
  grid-template-rows: 150px auto;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  background: var(--paper);
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(39, 34, 29, 0.08);
}

.category-card:hover,
.category-card:focus {
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(48, 95, 74, 0.16);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--reed);
}

.category-card-body {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.category-card-body strong {
  color: var(--forest);
  font-size: 1.08rem;
}

.category-card-body span,
.category-card-body small {
  color: var(--muted);
}

.category-section {
  scroll-margin-top: 170px;
  margin-top: clamp(34px, 6vw, 70px);
}

.category-section h3 {
  margin: 0 0 18px;
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 4vw, 3.5rem);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.product-card {
  display: grid;
  align-content: start;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(48, 95, 74, 0.16);
}

.product-card[hidden],
.category-section[hidden] {
  display: none;
}

.product-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--reed);
  object-fit: cover;
}

.product-image-wrap {
  position: relative;
  overflow: hidden;
  background: var(--reed);
}

.discount-chip {
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--paper);
  background: var(--terracotta);
  box-shadow: 0 10px 24px rgba(39, 34, 29, 0.22);
  font-size: 0.76rem;
  font-weight: 950;
}

.product-body {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.cart-button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  margin-top: 4px;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--forest);
  cursor: pointer;
  font-weight: 900;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.buy-now-button {
  min-height: 42px;
  border: 1px solid rgba(200, 103, 61, 0.3);
  border-radius: 999px;
  margin-top: 4px;
  padding: 10px 14px;
  color: var(--ink);
  background: #f6c15b;
  cursor: pointer;
  font-weight: 900;
}

.cart-button:hover,
.cart-button:focus-visible,
.buy-now-button:hover,
.buy-now-button:focus-visible {
  background: var(--indigo);
  color: var(--paper);
}

.sku {
  color: var(--indigo);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.06em;
}

.product-card h4 {
  margin: 0;
  min-height: 2.6em;
  font-size: 1.02rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
}

.chip {
  border-radius: 999px;
  padding: 5px 8px;
  background: #ece7dc;
}

.empty-state {
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 28px;
  color: var(--muted);
  text-align: center;
  background: var(--paper);
}

.enquiry-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1.22fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding: 18px;
}

.enquiry-form {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 4vw, 34px);
}

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

.enquiry-cart {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #f8f5ed;
}

.cart-head,
.cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-head h3 {
  margin: 0;
}

.cart-head button,
.cart-row button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--forest);
  background: var(--paper);
  cursor: pointer;
  font-weight: 800;
}

.cart-items {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.cart-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: var(--paper);
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart-empty,
.form-error {
  color: var(--muted);
}

.form-error {
  min-height: 1.2em;
  margin: 0;
  color: #a93226;
  font-weight: 900;
}

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

.inquiry-page {
  color: rgba(255, 253, 248, 0.9);
  background: #17143b;
}

.inquiry-page .category-hero,
.inquiry-page .top-nav {
  background: rgba(23, 20, 59, 0.96);
}

.inquiry-page .brand-lockup,
.inquiry-page .nav-links a {
  color: rgba(255, 253, 248, 0.82);
}

.inquiry-page .nav-links a:hover,
.inquiry-page .nav-links a:focus {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.12);
}

.inquiry-panel {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(28px, 6vw, 58px) clamp(18px, 5vw, 34px);
}

.inquiry-heading {
  margin-bottom: 24px;
}

.inquiry-heading h1 {
  color: var(--paper);
  font-size: clamp(2.6rem, 7vw, 5rem);
}

.inquiry-heading p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.68);
  font-size: 1.02rem;
  line-height: 1.65;
}

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

.inquiry-action {
  min-height: 112px;
  display: grid;
  place-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 120, 86, 0.3);
  border-radius: 18px;
  color: rgba(255, 253, 248, 0.8);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  text-align: center;
}

.inquiry-action:hover,
.inquiry-action:focus {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
}

.inquiry-action span {
  color: #ff8a44;
  font-weight: 950;
}

.inquiry-action-wide {
  grid-column: 1 / -1;
}

.inquiry-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin: 28px 0;
  color: rgba(255, 253, 248, 0.45);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inquiry-divider::before,
.inquiry-divider::after {
  height: 1px;
  content: "";
  background: rgba(255, 120, 86, 0.26);
}

.inquiry-cart-box {
  border: 1px solid rgba(255, 120, 86, 0.28);
  border-radius: 18px;
  margin-bottom: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.inquiry-cart-box h2 {
  color: var(--paper);
  font-family: inherit;
  font-size: 1.12rem;
  line-height: 1.2;
}

.inquiry-cart-box .cart-row {
  color: var(--ink);
}

.inquiry-cart-box .cart-row strong {
  display: block;
}

.inquiry-cart-box .cart-row span {
  color: var(--muted);
}

.inquiry-form-dark {
  display: grid;
  gap: 18px;
}

.inquiry-form-dark label {
  display: grid;
  gap: 9px;
  color: rgba(255, 253, 248, 0.54);
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inquiry-form-dark input,
.inquiry-form-dark textarea {
  border-color: rgba(255, 120, 86, 0.28);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.04);
}

.inquiry-form-dark input::placeholder,
.inquiry-form-dark textarea::placeholder {
  color: rgba(255, 253, 248, 0.38);
}

.inquiry-submit {
  min-height: 58px;
  border: 0;
  border-radius: 16px;
  color: var(--paper);
  background: linear-gradient(90deg, #ff673c, #ff9343);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 950;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}

.social-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 10px 18px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.07);
  text-decoration: none;
  font-weight: 900;
}

.social-mark {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #17143b;
  background: var(--paper);
  font-size: 0.8rem;
  font-weight: 950;
}

.cart-page,
.inquiry-page {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(251, 247, 239, 0.95), rgba(251, 247, 239, 0.78)),
    url("../images/hero.webp") center / cover fixed no-repeat,
    var(--cotton);
}

.cart-page .category-hero,
.cart-page .top-nav,
.inquiry-page .category-hero,
.inquiry-page .top-nav {
  background: rgba(255, 253, 248, 0.88);
}

.cart-page .brand-lockup,
.cart-page .nav-links a,
.inquiry-page .brand-lockup,
.inquiry-page .nav-links a {
  color: var(--muted);
}

.cart-page .brand-lockup,
.inquiry-page .brand-lockup {
  color: var(--forest);
}

.cart-page .nav-links a:hover,
.cart-page .nav-links a:focus,
.inquiry-page .nav-links a:hover,
.inquiry-page .nav-links a:focus {
  color: var(--paper);
  background: var(--forest);
}

.inquiry-panel,
.cart-page-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(36px, 7vw, 86px) clamp(16px, 5vw, 42px);
}

.inquiry-panel {
  max-width: 820px;
}

.inquiry-heading h1,
.cart-page-heading h1 {
  max-width: 960px;
  color: var(--clay);
  font-size: clamp(2.6rem, 6.6vw, 6.2rem);
}

.inquiry-heading p:not(.eyebrow),
.cart-page-heading p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.7;
}

.inquiry-action {
  min-height: 118px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--forest);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 14px 42px rgba(39, 34, 29, 0.08);
}

.inquiry-action:hover,
.inquiry-action:focus {
  color: var(--paper);
  background: var(--forest);
}

.contact-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
}

.contact-icon svg,
.floating-socials svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.inquiry-divider {
  color: var(--muted);
}

.inquiry-divider::before,
.inquiry-divider::after {
  background: var(--line);
}

.inquiry-form-dark,
.checkout-form {
  display: grid;
  gap: 16px;
}

.inquiry-form-dark label,
.checkout-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
}

.inquiry-form-dark input,
.inquiry-form-dark textarea {
  border-color: var(--line);
  color: var(--ink);
  background: var(--paper);
}

.inquiry-form-dark input::placeholder,
.inquiry-form-dark textarea::placeholder {
  color: rgba(111, 102, 93, 0.72);
}

.inquiry-submit {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  color: var(--paper);
  background: var(--forest);
  box-shadow: 0 14px 32px rgba(48, 95, 74, 0.18);
}

.inquiry-submit:hover,
.inquiry-submit:focus-visible {
  background: var(--indigo);
}

.inquiry-action[href*="wa.me"] .contact-icon {
  color: var(--paper);
  background: #25d366;
}

.inquiry-action[href^="tel:"] .contact-icon,
.inquiry-action[href^="mailto:"] .contact-icon {
  color: var(--paper);
  background: var(--forest);
}

@media (min-width: 981px) {
  .inquiry-heading h1 {
    max-width: none;
    font-size: clamp(2.8rem, 5vw, 5.1rem);
    white-space: nowrap;
  }
}

.checkout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(26px, 5vw, 46px);
}

.amazon-checkout .cart-page-heading h1 {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 18px;
  align-items: start;
  margin-top: clamp(24px, 4vw, 42px);
}

.checkout-main {
  display: grid;
  gap: 16px;
}

.order-summary-panel {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: var(--shadow);
}

.order-summary-panel h2 {
  color: var(--forest);
  font-family: inherit;
  font-size: 1.35rem;
  line-height: 1.2;
}

.checkout-summary dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.checkout-summary div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.checkout-summary dt {
  color: var(--muted);
  font-weight: 800;
}

.checkout-summary dd {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  text-align: right;
}

.continue-shopping {
  display: inline-flex;
  justify-content: center;
}

.account-mode {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}

.account-mode button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest);
  background: var(--paper);
  cursor: pointer;
  font-weight: 900;
}

.account-mode button.active {
  color: var(--paper);
  background: var(--forest);
}

.purchase-cart-items {
  gap: 12px;
}

.purchase-cart-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
}

.purchase-cart-row img {
  width: 88px;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
  background: var(--reed);
}

.purchase-cart-info {
  display: grid;
  gap: 5px;
}

.purchase-cart-info strong {
  color: var(--forest);
}

.purchase-cart-info span {
  color: var(--muted);
  font-size: 0.92rem;
}

.line-total {
  min-width: 100px;
  color: var(--clay);
  text-align: right;
}

.order-success {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(48, 95, 74, 0.2);
  border-radius: 8px;
  padding: 12px;
  color: var(--forest);
  background: rgba(48, 95, 74, 0.08);
}

.order-success strong,
.order-success span {
  display: block;
}

.checkout-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(16px, 3vw, 24px);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 14px 42px rgba(39, 34, 29, 0.08);
}

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

.panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.panel-head span {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--paper);
  background: var(--forest);
  font-size: 0.84rem;
  font-weight: 950;
}

.panel-head h2 {
  color: var(--forest);
  font-family: inherit;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.2;
}

.saved-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 12px;
  margin-bottom: 16px;
  border: 1px solid rgba(48, 95, 74, 0.16);
  border-radius: 8px;
  padding: 12px;
  color: var(--muted);
  background: #f8f5ed;
}

.saved-status strong {
  color: var(--forest);
}

.saved-status span {
  line-height: 1.5;
}

.saved-status.is-success {
  border-color: rgba(48, 95, 74, 0.28);
  background: rgba(48, 95, 74, 0.08);
}

.saved-status button {
  width: max-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--forest);
  background: var(--paper);
  cursor: pointer;
  font-weight: 850;
}

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

.payment-options-expanded {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.payment-method-groups {
  display: grid;
  gap: 16px;
}

.payment-method-group {
  min-width: 0;
  display: grid;
  gap: 12px;
  margin: 0;
  border: 1px solid rgba(48, 95, 74, 0.16);
  border-radius: 8px;
  padding: 14px;
  background: rgba(248, 245, 237, 0.72);
}

.payment-method-group legend {
  padding: 0 8px;
  color: var(--forest);
  font-weight: 950;
}

.payment-options label {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  background: var(--paper);
}

.gateway-options label {
  align-items: flex-start;
}

.gateway-options span {
  display: grid;
  gap: 4px;
  line-height: 1.2;
}

.gateway-options strong {
  color: var(--forest);
  font-size: 0.98rem;
}

.gateway-options small {
  color: var(--muted);
  font-size: 0.78rem;
}

.qr-payment-placeholder {
  display: grid;
  gap: 6px;
  border: 1px dashed rgba(48, 95, 74, 0.42);
  border-radius: 8px;
  padding: 14px;
  color: var(--forest);
  background: rgba(255, 253, 248, 0.86);
}

.qr-payment-placeholder[hidden] {
  display: none;
}

.qr-payment-placeholder p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.payment-options input {
  width: auto;
  min-height: auto;
  margin-top: 3px;
}

.checkout-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.checkout-submit {
  width: max-content;
  min-width: min(260px, 100%);
}

.floating-socials {
  position: fixed !important;
  right: max(22px, env(safe-area-inset-right)) !important;
  bottom: max(28px, env(safe-area-inset-bottom)) !important;
  z-index: 2147483647 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  pointer-events: auto !important;
  transform: translateZ(0);
}

.floating-socials a {
  width: 58px !important;
  height: 58px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 3px solid #fffdf8 !important;
  border-radius: 999px !important;
  color: #fffdf8 !important;
  background: #305f4a !important;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3) !important;
  text-decoration: none !important;
  line-height: 1 !important;
}

.floating-socials a:hover,
.floating-socials a:focus-visible {
  background: var(--indigo);
  transform: translateY(-2px);
}

.floating-socials svg {
  width: 29px !important;
  height: 29px !important;
  display: block !important;
  fill: currentColor !important;
}

.reveal {
  animation: reveal 0.55s ease both;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loader-rise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes logo-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

@media (max-width: 980px) {
  .home-intro,
  .initiative-resource-section,
  .artisan-story-section,
  .why-hero,
  .why-clean-page,
  .why-section,
  .hero,
  .hero-story-panel,
  .enquiry-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media img {
    aspect-ratio: 16 / 10;
  }

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

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

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

  .order-summary-panel {
    position: static;
  }

  .payment-options {
    grid-template-columns: 1fr;
  }

  .payment-options-expanded {
    grid-template-columns: 1fr;
  }

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

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

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

  .why-stat-grid,
  .why-clean-grid,
  .why-reasons-section .why-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  body {
    background: var(--cotton);
  }

  .top-nav {
    align-items: center;
    flex-direction: row;
    gap: 12px;
    padding: 10px 14px;
  }

  .nav-links {
    width: auto;
    max-width: 58vw;
    justify-content: flex-end;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    min-height: 42px;
    display: grid;
    place-items: center;
    padding: 9px 12px;
    font-size: 0.86rem;
  }

  .brand-logo {
    width: clamp(118px, 32vw, 154px);
    height: 42px;
  }

  .brand-lockup span {
    max-width: 116px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    padding-top: 44px;
  }

  .home-intro {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 44px;
  }

  .why-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 44px;
  }

  .why-clean-page {
    grid-template-columns: 1fr;
    padding-top: 38px;
  }

  .why-clean-image img {
    aspect-ratio: 16 / 10;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.7rem);
  }

  .home-intro-copy p:not(.eyebrow),
  .hero-text {
    font-size: 1rem;
    line-height: 1.58;
  }

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

  .catalogue-tools,
  .category-search-bar,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .catalogue-tools {
    position: static;
  }

  .catalogue-shell,
  .story-section,
  .initiative-resource-section,
  .artisan-story-section,
  .home-product-teasers,
  .enquiry-section,
  .why-section,
  .partners-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .initiative-resource-section {
    padding-top: 36px;
    padding-bottom: 42px;
  }

  .document-downloads {
    display: grid;
    grid-template-columns: 1fr;
  }

  .initiative-process {
    gap: 12px;
  }

  .impact-strip {
    padding: 12px;
  }

  .impact-strip article {
    min-height: 118px;
    padding: 14px;
  }

  .artisan-story-section,
  .home-product-teasers {
    padding-top: 36px;
    padding-bottom: 42px;
  }

  .artisan-story-media {
    grid-template-columns: 1fr 1fr;
  }

  .artisan-story-copy h2 {
    font-size: clamp(2.3rem, 12vw, 4.2rem);
  }

  .featured-product-grid {
    gap: 10px;
  }

  .home-shop-search > div {
    grid-template-columns: 1fr;
  }

  .initiative-process span {
    min-height: 2.2em;
    display: grid;
    place-items: center;
    font-size: 0.78rem;
  }

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

  .category-card {
    grid-template-rows: 118px auto;
    min-height: 230px;
  }

  .category-card-body,
  .product-body {
    padding: 12px;
  }

  .product-card h4 {
    min-height: 2.7em;
    font-size: 0.94rem;
  }

  .product-image {
    aspect-ratio: 1 / 1;
  }

  .meta-row {
    gap: 6px;
    font-size: 0.78rem;
  }

  .chip {
    padding: 4px 7px;
  }

  .offer-banner {
    grid-template-columns: 1fr;
    margin: 12px;
  }

  .offer-percent {
    min-width: 78px;
    justify-self: start;
    font-size: 1.12rem;
  }

  .partner-logo-grid {
    grid-template-columns: 1fr;
  }

  .cart-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .purchase-cart-row {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .purchase-cart-row img {
    width: 72px;
  }

  .purchase-cart-row .quantity-control,
  .purchase-cart-row .line-total {
    grid-column: 1 / -1;
  }

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

  .inquiry-action-grid {
    grid-template-columns: 1fr;
  }

  .floating-socials {
    right: max(12px, env(safe-area-inset-right)) !important;
    bottom: max(22px, env(safe-area-inset-bottom)) !important;
  }

  .floating-socials a {
    width: 50px !important;
    height: 50px !important;
  }

  .floating-socials svg {
    width: 25px !important;
    height: 25px !important;
  }
}

.cart-nav-link,
.cart-button,
.login-nav-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.cart-nav-link svg,
.cart-button svg,
.login-nav-button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: currentColor;
}

.login-nav-button {
  min-width: 44px;
  min-height: 42px;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 10px 13px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.login-nav-button:hover,
.login-nav-button:focus-visible {
  color: var(--paper);
  background: var(--forest);
}

.login-nav-button svg {
  width: 21px;
  height: 21px;
}

.cart-nav-link {
  min-width: 62px;
  justify-content: center;
}

.cart-nav-link span[data-cart-count] {
  min-width: 23px;
  height: 23px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--paper);
  background: var(--clay);
  font-size: 0.78rem;
  line-height: 1;
}

.account-settings {
  position: relative;
}

.settings-button,
.mobile-menu-toggle {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest);
  background: rgba(255, 253, 248, 0.9);
  cursor: pointer;
}

.settings-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
}

.settings-button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.settings-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  min-width: 180px;
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.settings-menu[hidden] {
  display: none;
}

.settings-menu a,
.settings-menu button {
  width: 100%;
  border: 0;
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  text-align: left;
  text-decoration: none;
}

.settings-menu a:hover,
.settings-menu button:hover,
.settings-menu a:focus,
.settings-menu button:focus {
  color: var(--paper);
  background: var(--forest);
}

.modal-open {
  overflow: hidden;
}

.login-modal[hidden] {
  display: none;
}

.login-modal {
  position: fixed;
  inset: 0;
  z-index: 2147483646;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: max(36px, 8vh) 18px 24px;
  overflow-y: auto;
}

.login-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(39, 34, 29, 0.42);
  backdrop-filter: blur(4px);
}

.login-dialog {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  max-height: calc(100dvh - 72px);
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 28px 80px rgba(39, 34, 29, 0.28);
}

.login-dialog-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.login-dialog-head h2 {
  color: var(--forest);
  font-family: inherit;
  font-size: 1.45rem;
  line-height: 1.15;
}

.login-dialog-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--paper);
  background: var(--forest);
}

.login-dialog-icon svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.login-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--paper);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
}

.login-message {
  margin: 0 0 14px;
  border: 1px solid rgba(48, 95, 74, 0.18);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--forest);
  background: rgba(48, 95, 74, 0.08);
  font-weight: 850;
}

.login-message[hidden] {
  display: none;
}

.mobile-menu-toggle,
.mobile-menu {
  display: none;
}

.coupon-box {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(48, 95, 74, 0.14);
  border-radius: 8px;
  padding: 14px;
  background: #f8f5ed;
}

.coupon-box label {
  color: var(--forest);
  font-weight: 900;
}

.coupon-box > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.coupon-box input {
  min-height: 42px;
  width: 100%;
}

.coupon-box button {
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  color: var(--paper);
  background: var(--forest);
  cursor: pointer;
  font-weight: 900;
}

.coupon-box p {
  margin: 0;
  color: var(--forest);
  font-size: 0.9rem;
  line-height: 1.45;
}

.coupon-box p.is-error {
  color: #a33a2a;
}

.checkout-summary .summary-total {
  border-bottom: 0;
  padding-top: 4px;
  padding-bottom: 0;
}

.checkout-summary .summary-total dt,
.checkout-summary .summary-total dd {
  color: var(--forest);
  font-size: 1.08rem;
}

.admin-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.admin-stat {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #f8f5ed;
}

.admin-stat span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
}

.admin-stat strong {
  display: block;
  margin-top: 6px;
  color: var(--forest);
  font-size: 1.7rem;
  line-height: 1;
}

.admin-orders-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  color: var(--ink);
}

.admin-orders-table th,
.admin-orders-table td {
  border-bottom: 1px solid var(--line);
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.admin-orders-table th {
  color: var(--forest);
  background: rgba(48, 95, 74, 0.07);
  font-weight: 950;
}

.inquiry-panel {
  width: min(1180px, calc(100vw - 32px));
  max-width: 1180px;
}

.inquiry-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.inquiry-heading h1 {
  margin-inline: auto;
  max-width: none;
  color: var(--clay);
  font-size: clamp(2rem, 3.2vw, 3.75rem);
  line-height: 1.02;
  text-align: center;
  white-space: nowrap;
}

.inquiry-heading p:not(.eyebrow) {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.inquiry-heading .eyebrow {
  text-align: center;
}

.inquiry-card {
  width: min(760px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: clamp(20px, 3vw, 34px);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--shadow);
}

.inquiry-card .inquiry-action-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.inquiry-action {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 118px;
  border-radius: 8px;
  color: var(--forest);
  background: #fffdf8;
  box-shadow: none;
}

.inquiry-action-wide {
  grid-column: auto;
}

.contact-icon {
  width: 50px;
  height: 50px;
}

.contact-icon svg {
  width: 29px;
  height: 29px;
}

@media (max-width: 680px) {
  .top-nav {
    position: relative;
  }

  .nav-links {
    width: auto;
    max-width: none;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    overflow: visible;
  }

  .nav-links a {
    display: none;
  }

  .nav-links .shop-nav-link,
  .nav-links .cart-nav-link,
  .nav-links .login-nav-button {
    min-height: 40px;
    display: inline-flex;
    padding: 8px 10px;
  }

  .nav-links .shop-nav-link {
    min-width: auto;
    color: var(--paper);
    background: var(--forest);
    font-size: 0.86rem;
    font-weight: 900;
  }

  .nav-links .cart-nav-link,
  .nav-links .login-nav-button {
    min-width: 44px;
    padding-right: 8px;
    padding-left: 8px;
  }

  .mobile-menu-toggle {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    gap: 4px;
    padding: 10px;
  }

  .mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: currentColor;
  }

  .mobile-menu {
    position: fixed;
    top: 66px;
    right: 12px;
    left: 12px;
    z-index: 200;
    display: grid;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    min-height: 46px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    padding: 10px 12px;
    color: var(--ink);
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-menu a:hover,
  .mobile-menu a:focus {
    color: var(--paper);
    background: var(--forest);
  }

  .checkout-layout,
  .checkout-main,
  .checkout-panel,
  .order-summary-panel {
    min-width: 0;
  }

  .saved-status {
    display: grid;
    justify-content: stretch;
  }

  .payment-options {
    grid-template-columns: 1fr;
  }

  .cart-page-shell {
    padding-right: 12px;
    padding-left: 12px;
  }

  .coupon-box > div {
    grid-template-columns: 1fr;
  }

  .admin-stat-grid {
    grid-template-columns: 1fr;
  }

  .inquiry-panel {
    width: min(100% - 24px, 1180px);
    padding-right: 0;
    padding-left: 0;
  }

  .inquiry-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .inquiry-heading h1 {
    font-size: clamp(1.18rem, 5.55vw, 2rem);
    line-height: 1.08;
    white-space: nowrap;
  }

  .inquiry-heading p:not(.eyebrow) {
    font-size: 0.95rem;
  }

  .inquiry-card {
    padding: 16px;
  }

  .inquiry-card .inquiry-action-grid {
    grid-template-columns: 1fr;
  }
}

@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;
  }
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: clamp(28px, 5vw, 54px) clamp(18px, 5vw, 70px);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(248, 245, 237, 0.98));
}

.site-footer-inner {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) minmax(180px, 0.8fr) auto;
  gap: 24px;
  align-items: start;
  margin: 0 auto;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  text-decoration: none;
  font-weight: 950;
}

.footer-brand img {
  width: min(210px, 58vw);
  height: 48px;
  object-fit: contain;
}

.site-footer p {
  max-width: 520px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--forest);
  background: var(--paper);
  text-decoration: none;
  font-weight: 850;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--paper);
  background: var(--forest);
}

.footer-copy {
  justify-self: end;
  text-align: right;
  font-size: 0.9rem;
}

.qr-payment-placeholder img {
  width: min(280px, 100%);
  max-height: 430px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: var(--paper);
}

/* Launch polish: clearer navigation, stronger story blocks, and mobile-first trust content. */
.top-nav {
  min-height: 76px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 10px 34px rgba(39, 34, 29, 0.08);
}

.nav-links {
  align-items: center;
  border: 1px solid rgba(39, 34, 29, 0.08);
  border-radius: 999px;
  padding: 5px;
  background: rgba(255, 253, 248, 0.78);
}

.nav-links a {
  color: #5f574f;
}

.nav-links .shop-nav-link {
  color: var(--paper);
  background: var(--forest);
}

.home-intro {
  align-items: center;
  min-height: clamp(650px, 82vh, 860px);
  background:
    linear-gradient(90deg, rgba(251, 247, 239, 0.98) 0 38%, rgba(251, 247, 239, 0.77) 62%, rgba(251, 247, 239, 0.42)),
    url("../images/hero.webp") center / cover no-repeat,
    var(--cotton);
}

.home-intro-card {
  overflow: hidden;
  padding: 0;
  background: rgba(255, 253, 248, 0.9);
}

.home-intro-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.home-intro-card .eyebrow,
.home-intro-card p:not(.eyebrow) {
  margin-inline: clamp(18px, 3vw, 28px);
}

.home-intro-card .eyebrow {
  margin-top: 22px;
}

.home-intro-card p:not(.eyebrow) {
  margin-bottom: 26px;
}

.hero-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero-trust-pills span {
  border: 1px solid rgba(48, 95, 74, 0.22);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--forest);
  background: rgba(255, 253, 248, 0.76);
  font-size: 0.86rem;
  font-weight: 900;
}

.impact-strip {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.impact-strip article {
  min-height: 148px;
}

.trust-proof-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 64px);
  padding: clamp(48px, 7vw, 88px) clamp(18px, 6vw, 76px);
  background: #f8f5ed;
  border-bottom: 1px solid var(--line);
}

.trust-proof-section h2 {
  color: var(--clay);
  font-size: clamp(2.2rem, 5vw, 5.4rem);
}

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

.trust-proof-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--paper);
  box-shadow: 0 14px 36px rgba(39, 34, 29, 0.08);
}

.trust-proof-grid strong {
  color: var(--forest);
  font-size: 1.05rem;
}

.trust-proof-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.story-hero {
  background:
    linear-gradient(90deg, rgba(251, 247, 239, 0.97), rgba(251, 247, 239, 0.68)),
    url("../images/hero.webp") center / cover no-repeat,
    var(--cotton);
}

.story-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  min-height: clamp(560px, 76vh, 780px);
  padding: clamp(56px, 8vw, 110px) clamp(18px, 6vw, 76px);
}

.story-hero-card {
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.74);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: var(--shadow);
}

.story-hero-card img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
}

.story-hero-card p {
  margin: 0;
  padding: 18px;
  color: var(--forest);
  font-weight: 950;
  line-height: 1.55;
}

.story-impact-band,
.lookbook-section,
.maker-section,
.story-doc-section {
  padding: clamp(48px, 7vw, 88px) clamp(18px, 6vw, 76px);
  border-bottom: 1px solid var(--line);
}

.story-impact-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  color: var(--paper);
  background: var(--forest);
}

.story-impact-band article {
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 253, 248, 0.08);
}

.story-impact-band strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.story-impact-band span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 253, 248, 0.84);
  font-weight: 850;
}

.lookbook-section,
.maker-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
  background: rgba(255, 253, 248, 0.74);
}

.lookbook-copy p:not(.eyebrow),
.maker-section p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.lookbook-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.lookbook-timeline article,
.maker-gallery {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 36px rgba(39, 34, 29, 0.08);
  overflow: hidden;
}

.lookbook-timeline img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.lookbook-timeline strong,
.lookbook-timeline p {
  display: block;
  padding-inline: 14px;
}

.lookbook-timeline strong {
  padding-top: 14px;
  color: var(--forest);
}

.lookbook-timeline p {
  padding-bottom: 14px;
  color: var(--muted);
  line-height: 1.55;
}

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

.maker-gallery img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.story-doc-section {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  background: #f8f5ed;
}

@media (max-width: 980px) {
  .impact-strip,
  .trust-proof-section,
  .story-hero-grid,
  .lookbook-section,
  .maker-section {
    grid-template-columns: 1fr;
  }

  .impact-strip,
  .story-impact-band,
  .trust-proof-grid,
  .lookbook-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .top-nav {
    min-height: 64px;
    padding: 8px 10px;
  }

  .brand-logo {
    width: clamp(130px, 38vw, 168px);
  }

  .nav-links {
    border: 0;
    padding: 0;
    background: transparent;
  }

  .nav-links .shop-nav-link {
    border-radius: 999px;
  }

  .home-intro {
    min-height: auto;
  }

  .home-intro-card {
    order: -1;
  }

  .impact-strip,
  .story-impact-band,
  .trust-proof-grid,
  .lookbook-timeline,
  .maker-gallery {
    grid-template-columns: 1fr;
  }

  .impact-strip article,
  .story-impact-band article {
    min-height: auto;
  }

  .story-hero-grid,
  .story-impact-band,
  .lookbook-section,
  .maker-section,
  .story-doc-section,
  .trust-proof-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .story-doc-section {
    display: grid;
    align-items: start;
  }
}

@media (max-width: 760px) {
  .site-footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-copy {
    justify-self: start;
    text-align: left;
  }
}
.simple-inquiry-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  align-items: center;
}

.office-info-card {
  display: grid;
  gap: 18px;
}

.whatsapp-only-action {
  min-height: 92px;
  justify-content: flex-start;
  color: var(--paper);
  background: var(--forest);
}

.whatsapp-only-action:hover,
.whatsapp-only-action:focus-visible {
  background: #244f3d;
}

.whatsapp-only-action .contact-icon {
  color: var(--forest);
  background: var(--paper);
}

.whatsapp-only-action span:last-child {
  display: grid;
  gap: 4px;
}

.whatsapp-only-action small {
  color: rgba(255, 253, 248, 0.86);
  font-weight: 850;
}

.office-detail-list {
  display: grid;
  gap: 14px;
}

.office-detail-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 253, 248, 0.72);
}

.office-detail-item > span {
  display: block;
  margin-bottom: 8px;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.office-detail-item a,
.office-detail-item p {
  margin: 0;
  color: var(--ink);
  line-height: 1.65;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.office-detail-item a {
  color: var(--forest);
  font-weight: 850;
}

.office-detail-item p + p {
  margin-top: 4px;
  color: var(--muted);
}

@media (max-width: 860px) {
  .simple-inquiry-layout {
    grid-template-columns: 1fr;
  }
}

/* Homepage layout fix: keep the PDF buttons and impact numbers polished on laptop widths. */
.initiative-resource-section {
  align-items: start;
  padding-bottom: clamp(34px, 5vw, 58px);
}

.document-downloads {
  max-width: 720px;
}

.document-downloads a {
  min-width: min(178px, 100%);
}

.impact-strip {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  padding-top: clamp(24px, 3vw, 36px);
  padding-bottom: clamp(24px, 3vw, 36px);
}

.impact-strip article {
  min-width: 0;
  min-height: 154px;
  padding: clamp(18px, 2vw, 24px);
  overflow: hidden;
}

.impact-strip strong {
  font-size: clamp(2.45rem, 3.2vw, 3.45rem);
  line-height: 0.96;
  overflow-wrap: anywhere;
}

.impact-strip span {
  max-width: 18rem;
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
}

@media (min-width: 1180px) {
  .impact-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 2200px) {
  .impact-strip {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .impact-strip strong {
    font-size: clamp(2.2rem, 2.7vw, 3.05rem);
  }
}

/* Resource pages and cleaner meeting-ready navigation. */
.top-nav {
  gap: 14px;
}

.nav-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  row-gap: 6px;
}

.nav-links a {
  padding: 8px 10px;
  font-size: 0.88rem;
  white-space: nowrap;
}

.initiative-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.resource-hero {
  background:
    linear-gradient(90deg, rgba(251, 247, 239, 0.98), rgba(251, 247, 239, 0.7)),
    url("../images/hero.webp") center / cover no-repeat,
    var(--cotton);
}

.resource-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(56px, 8vw, 104px) clamp(18px, 6vw, 76px);
}

.resource-hero h1 {
  color: var(--clay);
  font-size: clamp(2.6rem, 6vw, 6.5rem);
}

.resource-section h2 {
  max-width: 12em;
  color: var(--clay);
  font-size: clamp(2rem, 3.1vw, 3.6rem);
  line-height: 1.02;
}

.resource-hero-card,
.resource-card-grid article,
.resource-card-grid a,
.resource-list-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 18px 48px rgba(39, 34, 29, 0.08);
}

.resource-hero-card {
  overflow: hidden;
}

.resource-hero-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.resource-hero-card p {
  margin: 0;
  padding: 18px;
  color: var(--forest);
  font-weight: 950;
}

.resource-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.56fr) minmax(0, 1.44fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
  min-height: auto;
  padding: clamp(34px, 5vw, 66px) clamp(18px, 6vw, 76px);
  border-bottom: 1px solid var(--line);
}

.resource-copy p:not(.eyebrow) {
  max-width: 36rem;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.18vw, 1.12rem);
  line-height: 1.68;
}

.resource-card-grid,
.resource-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
}

.resource-card-grid article,
.resource-card-grid a,
.resource-list-grid article {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 0;
  padding: 18px;
  color: inherit;
  text-decoration: none;
}

.resource-card-grid strong,
.resource-list-grid strong {
  color: var(--forest);
  font-size: 1.08rem;
}

.resource-card-grid p,
.resource-card-grid span,
.resource-list-grid span {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.resource-card-grid a:hover,
.resource-card-grid a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(48, 95, 74, 0.16);
}

@media (max-width: 1100px) {
  .resource-section {
    grid-template-columns: 1fr;
  }

  .resource-section h2,
  .resource-copy p:not(.eyebrow) {
    max-width: 48rem;
  }

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

@media (max-width: 760px) {
  .resource-hero-grid,
  .resource-section {
    grid-template-columns: 1fr;
    padding-left: 12px;
    padding-right: 12px;
  }

  .resource-card-grid,
  .resource-list-grid {
    grid-template-columns: 1fr;
  }

  .resource-hero h1,
  .resource-section h2 {
    font-size: clamp(2.4rem, 13vw, 4.5rem);
  }

  .resource-section h2 {
    font-size: clamp(1.85rem, 9vw, 3rem);
  }
}

/* Final resource-page compaction: remove empty space below cards/images. */
.resource-page .resource-section {
  grid-template-columns: minmax(380px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(22px, 3.5vw, 46px);
  padding-top: clamp(26px, 4vw, 48px);
  padding-bottom: clamp(20px, 3vw, 34px);
}

.resource-page .resource-section h2 {
  max-width: 11em;
  font-size: clamp(1.9rem, 2.55vw, 3rem);
  line-height: 1.05;
}

.resource-page .resource-copy p:not(.eyebrow),
.resource-page .lookbook-copy p:not(.eyebrow) {
  max-width: 42rem;
  font-size: clamp(0.96rem, 1.05vw, 1.08rem);
  line-height: 1.58;
}

.resource-page .resource-card-grid,
.resource-page .resource-list-grid {
  align-content: start;
}

.resource-page .resource-card-grid article,
.resource-page .resource-card-grid a,
.resource-page .resource-list-grid article {
  padding: 16px;
}

.resource-page .lookbook-section,
.resource-page .story-doc-section {
  grid-template-columns: minmax(380px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(22px, 3.5vw, 46px);
  padding-top: clamp(26px, 4vw, 48px);
  padding-bottom: clamp(20px, 3vw, 34px);
}

.resource-page .lookbook-section h2,
.resource-page .story-doc-section h2 {
  max-width: 10em;
  font-size: clamp(2rem, 3.1vw, 3.8rem);
  line-height: 1.02;
}

.resource-page .lookbook-timeline {
  align-content: start;
}

.resource-page .lookbook-timeline article {
  align-self: start;
}

.resource-page .lookbook-timeline img {
  aspect-ratio: 4 / 3;
}

.resource-page .lookbook-timeline strong {
  padding-top: 12px;
}

.resource-page .lookbook-timeline p {
  padding-bottom: 12px;
  font-size: 0.96rem;
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .resource-page .resource-section,
  .resource-page .lookbook-section,
  .resource-page .story-doc-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .resource-page .resource-section,
  .resource-page .lookbook-section,
  .resource-page .story-doc-section {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .resource-page .resource-section h2,
  .resource-page .lookbook-section h2,
  .resource-page .story-doc-section h2 {
    font-size: clamp(1.8rem, 8vw, 2.85rem);
  }
}

.home-page .initiative-resource-section {
  padding-top: clamp(32px, 4.2vw, 58px);
  padding-bottom: clamp(28px, 3.4vw, 44px);
}

.home-page .initiative-resource-section h2 {
  font-size: clamp(2.4rem, 4.8vw, 5.4rem);
  line-height: 1.02;
}

.home-page .initiative-copy p:not(.eyebrow) {
  max-width: 43rem;
  line-height: 1.62;
}

.home-page .initiative-process {
  align-content: start;
}

.home-page .initiative-process img {
  aspect-ratio: 4 / 3;
}

/* Final gap cleanup: balance resource sections so cards/images fill the content height. */
.resource-page .resource-section,
.resource-page .lookbook-section,
.resource-page .story-doc-section {
  align-items: stretch;
  min-height: 0;
  padding-top: clamp(22px, 3.2vw, 42px);
  padding-bottom: clamp(18px, 2.6vw, 30px);
}

.resource-page .resource-copy,
.resource-page .lookbook-copy {
  align-self: start;
}

.resource-page .resource-section h2,
.resource-page .lookbook-section h2,
.resource-page .story-doc-section h2 {
  max-width: 12.5em;
  font-size: clamp(1.95rem, 2.65vw, 3.25rem);
  line-height: 1.04;
  margin-bottom: 16px;
}

.resource-page .resource-copy p:not(.eyebrow),
.resource-page .lookbook-copy p:not(.eyebrow) {
  margin-top: 14px;
  font-size: clamp(0.95rem, 1vw, 1.04rem);
  line-height: 1.52;
}

.resource-page .resource-card-grid,
.resource-page .resource-list-grid,
.resource-page .lookbook-timeline {
  align-self: stretch;
  height: 100%;
  align-content: stretch;
}

.resource-page .resource-card-grid,
.resource-page .resource-list-grid {
  grid-auto-rows: minmax(120px, 1fr);
}

.resource-page .resource-card-grid article,
.resource-page .resource-card-grid a,
.resource-page .resource-list-grid article,
.resource-page .lookbook-timeline article {
  height: 100%;
}

.resource-page .lookbook-timeline {
  grid-auto-rows: 1fr;
}

.resource-page .lookbook-timeline img {
  aspect-ratio: 16 / 10;
}

.home-page .initiative-resource-section {
  align-items: start;
  padding-top: clamp(28px, 3.8vw, 48px);
  padding-bottom: clamp(20px, 2.8vw, 34px);
}

.home-page .initiative-resource-section h2 {
  max-width: 11em;
  font-size: clamp(2.2rem, 4.25vw, 4.7rem);
}

.home-page .initiative-process {
  align-self: start;
}

.home-page .initiative-process img {
  aspect-ratio: 16 / 10;
}

@media (min-width: 1180px) {
  .resource-page .resource-section,
  .resource-page .lookbook-section,
  .resource-page .story-doc-section {
    grid-template-columns: minmax(360px, 0.58fr) minmax(0, 1.42fr);
  }

  .resource-page .resource-section h2,
  .resource-page .lookbook-section h2,
  .resource-page .story-doc-section h2 {
    font-size: clamp(2rem, 2.35vw, 3rem);
  }
}

@media (max-width: 760px) {
  .resource-page .resource-section,
  .resource-page .lookbook-section,
  .resource-page .story-doc-section,
  .home-page .initiative-resource-section {
    padding-top: 22px;
    padding-bottom: 24px;
  }

  .resource-page .resource-card-grid,
  .resource-page .resource-list-grid,
  .resource-page .lookbook-timeline {
    grid-auto-rows: auto;
  }
}

/* Full-width moving hero background, replacing the small hero image card. */
.home-intro {
  position: relative;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.28fr);
  overflow: hidden;
  background: var(--cotton);
}

.home-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(251, 247, 239, 0.98) 0 40%, rgba(251, 247, 239, 0.78) 62%, rgba(251, 247, 239, 0.56));
  pointer-events: none;
}

.home-intro-copy,
.hero-background-motion {
  position: relative;
  z-index: 1;
}

.hero-background-motion {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-background-motion img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.04) translateX(1.25%);
  animation: heroBackgroundMotion 44s infinite ease-in-out;
}

.hero-background-motion img:nth-child(1) { animation-delay: 0s; }
.hero-background-motion img:nth-child(2) { animation-delay: 11s; }
.hero-background-motion img:nth-child(3) { animation-delay: 22s; }
.hero-background-motion img:nth-child(4) { animation-delay: 33s; }

@keyframes heroBackgroundMotion {
  0% {
    opacity: 0;
    transform: scale(1.04) translateX(1.25%);
  }
  7%, 25% {
    opacity: 0.58;
  }
  32%, 100% {
    opacity: 0;
    transform: scale(1.1) translateX(-1.25%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-background-motion img {
    animation: none;
    opacity: 0;
    transform: none;
  }

  .hero-background-motion img:first-child {
    opacity: 0.5;
  }
}

@media (max-width: 900px) {
  .home-intro {
    grid-template-columns: 1fr;
  }

  .home-intro::before {
    background: linear-gradient(180deg, rgba(251, 247, 239, 0.96), rgba(251, 247, 239, 0.78));
  }
}

/* Hero cleanup: keep only Punarsutra text and show full motion banners without cropping. */
.home-page .home-intro {
  min-height: clamp(420px, 48vw, 620px);
  align-items: center;
}

.home-page .hero-title-only {
  max-width: none;
}

.home-page .hero-title-only h1 {
  display: inline-block;
  padding: 0.04em 0.14em 0.08em;
  border-radius: 8px;
  background: rgba(251, 247, 239, 0.42);
  backdrop-filter: blur(2px);
}

.home-page .hero-background-motion {
  background: #fbf7ef;
}

.home-page .hero-background-motion img {
  object-fit: contain;
  object-position: center;
}

.home-page .home-intro::before {
  background: linear-gradient(90deg, rgba(251, 247, 239, 0.88) 0 38%, rgba(251, 247, 239, 0.48) 62%, rgba(251, 247, 239, 0.28));
}

@media (max-width: 900px) {
  .home-page .home-intro {
    min-height: clamp(360px, 86vw, 540px);
  }

  .home-page .home-intro::before {
    background: linear-gradient(180deg, rgba(251, 247, 239, 0.78), rgba(251, 247, 239, 0.46));
  }
}

/* Header wordmark and logo load animation; hero title removed. */
.brand-lockup {
  gap: 14px;
}

.brand-name {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 1.7vw, 1.7rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand-logo {
  width: clamp(168px, 17vw, 285px);
  height: 58px;
  animation: logoLoadIn 900ms ease both;
}

@keyframes logoLoadIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.home-page .home-intro {
  display: block;
  min-height: clamp(430px, 43vw, 620px);
  padding: 0;
}

.home-page .home-intro::before {
  background: linear-gradient(90deg, rgba(251, 247, 239, 0.28), rgba(251, 247, 239, 0.12));
}

.home-page .hero-title-only,
.home-page .hero-title-only h1 {
  display: none;
}

@media (max-width: 760px) {
  .brand-lockup {
    gap: 8px;
  }

  .brand-logo {
    width: clamp(118px, 28vw, 158px);
    height: 44px;
  }

  .brand-name {
    font-size: 1rem;
    max-width: 104px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .home-page .home-intro {
    min-height: clamp(340px, 62vw, 460px);
  }
}

/* Larger About Initiative process images after removing text buttons. */
.home-page .initiative-resource-section {
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(28px, 4vw, 58px);
}

.home-page .initiative-process {
  gap: clamp(18px, 2.4vw, 34px);
}

.home-page .initiative-process img {
  aspect-ratio: 1.32 / 1;
  min-height: clamp(170px, 14vw, 255px);
  object-fit: cover;
}

.home-page .initiative-process span {
  margin-top: 8px;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
}

@media (max-width: 1100px) {
  .home-page .initiative-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home-page .initiative-resource-section {
    grid-template-columns: 1fr;
  }

  .home-page .initiative-process img {
    min-height: 150px;
  }
}

/* Meet the women video popup. */
.video-trigger-button {
  font: inherit;
}

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

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2147483646;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 36px);
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(39, 34, 29, 0.58);
  backdrop-filter: blur(5px);
  cursor: pointer;
}

.video-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: calc(100dvh - 42px);
  overflow: auto;
  border: 1px solid rgba(255, 253, 248, 0.34);
  border-radius: 10px;
  padding: clamp(14px, 2vw, 22px);
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(39, 34, 29, 0.34);
}

.video-dialog-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.video-dialog-head h2 {
  margin: 4px 0 0;
  color: var(--forest);
  font-family: inherit;
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
}

.video-close {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest);
  background: var(--paper);
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 900;
}

.video-dialog video {
  display: block;
  width: 100%;
  max-height: min(68dvh, 620px);
  border-radius: 8px;
  background: #111;
}

@media (max-width: 640px) {
  .video-modal {
    padding: 10px;
  }

  .video-dialog {
    border-radius: 8px;
    padding: 12px;
  }
}

/* Phone header polish: keep controls in one line and let the hero fill the phone viewport. */
@media (max-width: 760px) {
  .top-nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 6px;
    padding: 10px 10px;
  }

  .brand-lockup {
    flex: 0 1 auto;
    min-width: 0;
    gap: 0;
  }

  .brand-logo {
    width: clamp(140px, 42vw, 174px);
    height: 54px;
  }

  .brand-name {
    display: none;
  }

  .nav-links {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 5px;
    margin-left: auto;
    border: 0;
    padding: 0;
    overflow: visible;
  }

  .nav-links .shop-nav-link,
  .nav-links .cart-nav-link,
  .nav-links .login-nav-button {
    min-height: 42px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links .shop-nav-link {
    min-width: auto;
    padding: 9px 15px;
    font-size: 0.9rem;
    line-height: 1;
  }

  .nav-links .cart-nav-link,
  .nav-links .login-nav-button {
    min-width: 38px;
    width: 38px;
    padding: 8px 4px;
  }

  .nav-links .cart-nav-link svg,
  .nav-links .login-nav-button svg {
    width: 22px;
    height: 22px;
  }

  .nav-links .cart-nav-link span[data-cart-count] {
    min-width: 24px;
    height: 24px;
    margin-left: -4px;
    font-size: 0.82rem;
  }

  .mobile-menu-toggle {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
  }

  .mobile-menu {
    top: 84px;
  }

  .home-page .home-intro {
    min-height: clamp(360px, 72vw, 520px);
    margin-top: 0;
  }

  .home-page .hero-background-motion img {
    object-fit: cover;
    object-position: center center;
  }
}

@media (max-width: 420px) {
  .top-nav {
    min-height: 72px;
    gap: 4px;
    padding: 8px 8px;
  }

  .brand-logo {
    width: clamp(128px, 37vw, 150px);
    height: 50px;
  }

  .nav-links {
    gap: 3px;
  }

  .nav-links .shop-nav-link {
    padding-right: 12px;
    padding-left: 12px;
  }

  .nav-links .cart-nav-link,
  .nav-links .login-nav-button {
    min-width: 34px;
    width: 34px;
  }

  .mobile-menu-toggle {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .home-page .home-intro {
    min-height: clamp(330px, 78vw, 470px);
  }
}

/* Final mobile navigation adjustment: brand name returns, Shop/Login move into hamburger. */
@media (max-width: 760px) {
  .top-nav {
    min-height: 74px;
    gap: 6px;
    padding: 9px 10px;
  }

  .brand-lockup {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 96px);
    gap: 7px;
  }

  .brand-logo {
    width: clamp(102px, 30vw, 132px);
    height: 50px;
  }

  .brand-name {
    min-width: 0;
    max-width: none;
    display: inline-block;
    overflow: visible;
    color: var(--forest);
    font-size: clamp(1rem, 4vw, 1.18rem);
    line-height: 1;
    letter-spacing: 0;
    text-overflow: clip;
    white-space: nowrap;
  }

  .nav-links {
    flex: 0 0 auto;
    gap: 4px;
    margin-left: 0;
  }

  .nav-links .shop-nav-link,
  .nav-links .login-nav-button,
  .nav-links .account-settings {
    display: none !important;
  }

  .nav-links .cart-nav-link {
    width: 42px;
    min-width: 42px;
    height: 42px;
    padding: 6px 0;
  }

  .nav-links .cart-nav-link span[data-cart-count] {
    margin-left: -3px;
  }

  .mobile-menu-toggle {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
  }

  .mobile-menu {
    top: 82px;
  }

  .mobile-menu-login {
    min-height: 46px;
    border: 0;
    border-radius: 8px;
    padding: 10px 12px;
    color: var(--ink);
    background: transparent;
    font: inherit;
    font-weight: 900;
    text-align: left;
  }

  .mobile-menu-login:hover,
  .mobile-menu-login:focus-visible {
    color: var(--paper);
    background: var(--forest);
  }

  .home-page .home-intro {
    min-height: clamp(255px, 56vw, 390px);
  }

  .home-page .hero-background-motion img {
    object-fit: contain;
    object-position: center center;
  }
}

@media (max-width: 420px) {
  .top-nav {
    min-height: 70px;
    gap: 4px;
    padding: 8px 8px;
  }

  .brand-lockup {
    max-width: calc(100% - 88px);
    gap: 5px;
  }

  .brand-logo {
    width: clamp(92px, 27vw, 116px);
    height: 46px;
  }

  .brand-name {
    font-size: clamp(0.92rem, 3.8vw, 1.05rem);
  }

  .nav-links .cart-nav-link {
    width: 38px;
    min-width: 38px;
    height: 38px;
  }

  .mobile-menu-toggle {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .home-page .home-intro {
    min-height: clamp(235px, 60vw, 340px);
  }
}

/* Mobile cart spacing: separate the cart count from the hamburger button. */
@media (max-width: 760px) {
  .top-nav {
    gap: 10px;
  }

  .nav-links .cart-nav-link {
    width: 58px;
    min-width: 58px;
    gap: 4px;
    justify-content: center;
  }

  .nav-links .cart-nav-link span[data-cart-count] {
    margin-left: 3px;
  }

  .mobile-menu-toggle {
    margin-left: 0;
  }
}

@media (max-width: 420px) {
  .top-nav {
    gap: 7px;
  }

  .nav-links .cart-nav-link {
    width: 52px;
    min-width: 52px;
  }

  .nav-links .cart-nav-link span[data-cart-count] {
    margin-left: 2px;
  }
}

/* Content page polish: smaller clay headlines and fuller cards without empty gaps. */
.resource-page .resource-hero-grid {
  align-items: center;
  min-height: clamp(430px, 43vw, 620px);
}

.resource-page .resource-hero-grid h1 {
  max-width: 10.5em;
  font-size: clamp(3.1rem, 5.2vw, 6.2rem);
  line-height: 0.96;
}

.resource-page .resource-hero-grid .hero-text {
  max-width: 48rem;
  font-size: clamp(1.05rem, 1.55vw, 1.55rem);
  line-height: 1.55;
}

.resource-page .resource-section h2,
.resource-page .lookbook-section h2,
.resource-page .story-doc-section h2 {
  max-width: 12.8em;
  font-size: clamp(2rem, 2.15vw, 2.72rem);
  line-height: 1.05;
}

.resource-page .resource-copy p:not(.eyebrow),
.resource-page .lookbook-copy p:not(.eyebrow) {
  max-width: 43rem;
  font-size: clamp(0.98rem, 1vw, 1.06rem);
  line-height: 1.58;
}

.resource-page .resource-card-grid {
  align-items: stretch;
  grid-auto-rows: minmax(210px, 1fr);
}

.resource-page .resource-card-grid article,
.resource-page .resource-list-grid article {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 210px;
  padding: clamp(18px, 1.6vw, 26px);
}

.resource-page .resource-card-grid strong,
.resource-page .resource-list-grid strong {
  margin-bottom: 12px;
  line-height: 1.2;
}

.resource-page .resource-card-grid p,
.resource-page .resource-list-grid p {
  margin: 0;
  line-height: 1.58;
}

.why-clean-intro h1 {
  max-width: 8.8em;
  font-size: clamp(3.2rem, 5.6vw, 6.2rem);
  line-height: 0.98;
}

.why-clean-intro p:not(.eyebrow) {
  max-width: 52rem;
}

.why-clean-grid {
  align-items: stretch;
  grid-auto-rows: minmax(250px, 1fr);
}

.why-clean-grid article {
  min-height: 250px;
  padding: clamp(20px, 1.8vw, 30px);
}

.why-clean-grid p {
  line-height: 1.62;
}

@media (min-width: 1180px) {
  .resource-page .resource-section,
  .resource-page .lookbook-section,
  .resource-page .story-doc-section {
    grid-template-columns: minmax(360px, 0.52fr) minmax(0, 1.48fr);
  }
}

@media (max-width: 900px) {
  .resource-page .resource-hero-grid h1,
  .why-clean-intro h1 {
    font-size: clamp(2.6rem, 10vw, 4.3rem);
  }

  .resource-page .resource-card-grid,
  .why-clean-grid {
    grid-auto-rows: auto;
  }

  .resource-page .resource-card-grid article,
  .resource-page .resource-list-grid article,
  .why-clean-grid article {
    min-height: auto;
  }
}

/* Story award update */
.story-award-section {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 0.95fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: start;
  padding: clamp(30px, 4vw, 52px) clamp(18px, 6vw, 76px);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(251, 247, 239, 0.98), rgba(244, 238, 226, 0.84));
}

.story-award-copy h2 {
  max-width: 720px;
  color: var(--clay);
  font-size: clamp(1.9rem, 3.25vw, 3.9rem);
  line-height: 1.02;
  margin-bottom: 14px;
}

.story-award-copy p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(0.96rem, 1.05vw, 1.08rem);
  line-height: 1.55;
  margin: 0 0 10px;
}

.story-award-tags {
  color: var(--forest) !important;
  font-weight: 800;
}

.story-award-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 4px;
  padding: 10px 18px;
  border: 1px solid rgba(48, 95, 74, 0.22);
  border-radius: 999px;
  background: var(--forest);
  color: #fffdf8;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(34, 31, 27, 0.1);
}

.story-award-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.story-award-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(48, 95, 74, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(34, 31, 27, 0.12);
}

.story-award-gallery img:first-child {
  grid-row: auto;
}

@media (max-width: 900px) {
  .story-award-section {
    grid-template-columns: 1fr;
    padding-top: 26px;
    padding-bottom: 28px;
  }

  .story-award-gallery {
    grid-template-columns: 1fr;
  }

  .story-award-gallery img {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .story-award-copy h2 {
    font-size: clamp(1.85rem, 7.5vw, 2.7rem);
  }
}

/* Award section final compact layout */
.story-page .story-award-section {
  grid-template-columns: minmax(320px, 0.86fr) minmax(420px, 1.14fr);
  align-items: start;
  gap: clamp(18px, 2.6vw, 34px);
  padding-top: clamp(24px, 3.2vw, 42px);
  padding-bottom: clamp(24px, 3.2vw, 42px);
}

.story-page .story-award-copy h2 {
  max-width: 620px;
  font-size: clamp(2.05rem, 2.85vw, 3.25rem);
  line-height: 1.03;
  margin-bottom: 12px;
}

.story-page .story-award-copy p:not(.eyebrow) {
  font-size: clamp(0.94rem, 1vw, 1.03rem);
  line-height: 1.48;
  margin-bottom: 8px;
}

.story-page .story-award-copy .eyebrow {
  margin-bottom: 10px;
}

.story-page .story-award-gallery {
  align-self: start;
  margin-top: 6px;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

.story-page .story-award-gallery img {
  aspect-ratio: 16 / 11;
  object-position: center;
}

@media (max-width: 900px) {
  .story-page .story-award-section {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .story-page .story-award-copy h2 {
    font-size: clamp(1.9rem, 7vw, 2.55rem);
  }

  .story-page .story-award-gallery {
    margin-top: 0;
    grid-template-columns: 1fr;
  }
}

/* Award image call to action */
.story-page .story-award-gallery .story-award-link {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .story-page .story-award-gallery .story-award-link {
    justify-self: stretch;
  }
}


/* Unified menu structure: Home, Explore dropdown, Shop, Meet the women, Inquiry. */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-links .nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  border-radius: 999px;
  padding: 10px 1.25rem 10px 14px !important;
  color: #5f574f;
  background: transparent;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.nav-links .nav-dropdown-trigger:hover,
.nav-links .nav-dropdown-trigger:focus-visible {
  color: var(--paper);
  background: var(--forest);
}

.nav-dropdown-trigger {
  position: relative;
}

.nav-dropdown-trigger::after {
  content: "";
  position: absolute;
  right: 0.45rem;
  top: 50%;
  width: 0.42rem;
  height: 0.42rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  opacity: 0.75;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 70;
  display: grid;
  min-width: 235px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 22px 60px rgba(39, 34, 29, 0.16);
  transform: translate(-50%, 8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  justify-content: flex-start !important;
  width: 100%;
  padding: 10px 12px !important;
  border-radius: 7px;
  white-space: nowrap;
}

.nav-links .nav-video-button {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--forest);
  background: transparent;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.nav-links .nav-video-button:hover,
.nav-links .nav-video-button:focus-visible,
.mobile-menu-video:hover,
.mobile-menu-video:focus-visible {
  color: var(--paper);
  background: var(--forest);
}

.mobile-menu-group {
  display: grid;
  gap: 4px;
  padding: 4px 0 8px 14px;
  border-left: 2px solid rgba(48, 95, 74, 0.22);
}

.mobile-menu .mobile-menu-group a {
  font-size: 0.95rem;
  font-weight: 800;
}

.mobile-menu-video {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

@media (max-width: 760px) {
  .nav-links > a:not(.cart-nav-link),
  .nav-links .nav-dropdown,
  .nav-links .nav-video-button,
  .nav-links .inquiry-nav-link {
    display: none !important;
  }
}


/* Mobile Explore accordion for story pages. */
.mobile-menu-explore {
  position: relative;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  padding: 10px 38px 10px 12px;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.mobile-menu-explore::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 160ms ease;
}

.mobile-menu-explore[aria-expanded="true"]::after {
  transform: translateY(-30%) rotate(225deg);
}

.mobile-menu-explore:hover,
.mobile-menu-explore:focus-visible {
  color: var(--paper);
  background: var(--forest);
}

.mobile-menu-group[hidden] {
  display: none;
}
