:root {
  --ink: #17231e;
  --muted: #5f6c65;
  --forest: #173d31;
  --forest-deep: #0d2d24;
  --forest-soft: #dce8df;
  --clay: #c96f43;
  --clay-dark: #9f4f2e;
  --gold: #d5a653;
  --cream: #f5ead8;
  --paper: #fffaf2;
  --white: #ffffff;
  --line: rgba(23, 61, 49, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(26, 41, 34, 0.12);
  --shadow-soft: 0 14px 36px rgba(26, 41, 34, 0.08);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shell: min(1240px, calc(100vw - 48px));
  --display: Georgia, "Times New Roman", serif;
  --body: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

svg {
  display: block;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

::selection {
  color: var(--white);
  background: var(--clay-dark);
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--forest-deep);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.preview-ribbon {
  position: relative;
  z-index: 80;
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 6px 44px 6px 20px;
  color: #fff7ed;
  background: var(--forest-deep);
  font-size: 13px;
  letter-spacing: 0.01em;
}

.preview-ribbon span {
  padding: 1px 8px;
  color: var(--forest-deep);
  background: var(--gold);
  border-radius: 999px;
  font-weight: 800;
  text-transform: uppercase;
}

.preview-ribbon p {
  margin: 0;
}

.ribbon-close {
  position: absolute;
  top: 2px;
  right: 14px;
  padding: 0 8px;
  color: var(--cream);
  background: transparent;
  cursor: pointer;
  font-size: 24px;
}

.site-header {
  position: sticky;
  z-index: 70;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.94);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-shell {
  width: var(--shell);
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--cream);
  background: var(--forest);
  border-radius: 50% 50% 50% 14%;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.brand-mark span {
  color: var(--gold);
}

.brand-name {
  color: var(--forest-deep);
  font-family: var(--display);
  font-size: 21px;
  line-height: 1;
}

.brand-name strong {
  color: var(--clay-dark);
  font-weight: 600;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 32px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 27px 0 24px;
  color: #31433b;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 15px;
  left: 50%;
  height: 2px;
  content: "";
  background: var(--clay);
  transition: left 180ms ease, right 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  right: 0;
  left: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.icon-button {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--forest-deep);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.icon-button:hover {
  background: rgba(23, 61, 49, 0.08);
  transform: translateY(-1px);
}

.icon-button svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.cart-count {
  position: absolute;
  top: 1px;
  right: 0;
  display: grid;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  place-items: center;
  color: var(--white);
  background: var(--clay-dark);
  border: 2px solid var(--paper);
  border-radius: 99px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  color: var(--white);
  background: var(--clay-dark);
  border: 1px solid var(--clay-dark);
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  background: #7f3d23;
  border-color: #7f3d23;
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 9px 17px;
  font-size: 13px;
}

.button-secondary {
  color: var(--forest-deep);
  background: var(--cream);
  border-color: var(--cream);
}

.button-secondary:hover {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.button-outline {
  color: var(--forest-deep);
  background: transparent;
  border-color: rgba(23, 61, 49, 0.42);
}

.button-outline:hover {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.button-light {
  color: var(--forest-deep);
  background: var(--cream);
  border-color: var(--cream);
}

.button-dark {
  color: var(--cream);
  background: var(--forest-deep);
  border-color: var(--forest-deep);
}

.button-full {
  width: 100%;
}

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

main {
  min-height: 60vh;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section-tight {
  padding: 64px 0;
}

.section-cream {
  background: var(--cream);
}

.section-forest {
  color: var(--white);
  background: var(--forest-deep);
}

.section-clay {
  color: var(--white);
  background: var(--clay-dark);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  color: var(--clay-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  content: "";
  background: currentColor;
}

.eyebrow-light {
  color: var(--gold);
}

.display-title {
  max-width: 780px;
  margin-bottom: 20px;
  color: var(--forest-deep);
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section-title {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--forest-deep);
  font-family: var(--display);
  font-size: clamp(34px, 4.3vw, 56px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.section-forest .section-title,
.section-clay .section-title {
  color: var(--cream);
}

.section-copy {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.section-forest .section-copy,
.section-clay .section-copy {
  color: rgba(255, 255, 255, 0.74);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--clay-dark);
  font-weight: 800;
}

.text-link::after {
  content: "→";
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(9, 29, 23, 0.99) 0%, rgba(9, 29, 23, 0.91) 38%, rgba(9, 29, 23, 0.27) 69%, rgba(9, 29, 23, 0.08) 100%),
    url("assets/pplus-hero-concept.webp") 60% center / cover no-repeat;
}

.hero::after {
  position: absolute;
  top: -190px;
  left: -160px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(213, 166, 83, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 74px rgba(213, 166, 83, 0.035), 0 0 0 148px rgba(213, 166, 83, 0.025);
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: var(--shell);
  min-height: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 96px 0 110px;
}

.hero-content {
  width: min(660px, 58vw);
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(52px, 6.5vw, 88px);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.96;
}

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

.hero-copy {
  max-width: 560px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.79);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.7;
}

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

.hero-note {
  position: absolute;
  right: 0;
  bottom: 34px;
  display: flex;
  width: min(390px, 38vw);
  gap: 14px;
  padding: 16px 18px;
  color: var(--forest-deep);
  background: rgba(245, 234, 216, 0.92);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hero-note strong {
  display: block;
  margin-bottom: 2px;
  font-family: var(--display);
  font-size: 20px;
}

.hero-note p {
  margin: 0;
  color: #4b5f55;
  font-size: 13px;
  line-height: 1.45;
}

.hero-note-number {
  color: var(--clay-dark);
  font-family: var(--display);
  font-size: 45px;
  line-height: 1;
}

.trust-strip {
  position: relative;
  z-index: 4;
  color: var(--forest-deep);
  background: var(--cream);
  border-bottom: 1px solid rgba(23, 61, 49, 0.1);
}

.trust-grid {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 20px;
  border-right: 1px solid rgba(23, 61, 49, 0.12);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.trust-item:first-child {
  border-left: 1px solid rgba(23, 61, 49, 0.12);
}

.trust-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--forest);
  background: rgba(23, 61, 49, 0.1);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 18px;
}

.category-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 20px;
}

.category-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  padding: 32px;
  color: var(--white);
  background: var(--forest);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.category-card::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background: var(--card-image) var(--position, center) / cover no-repeat;
  transition: transform 500ms ease;
}

.category-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(13, 45, 36, 0.06) 30%, rgba(13, 45, 36, 0.92) 100%);
}

.category-card:hover::before {
  transform: scale(1.04);
}

.category-card-content {
  position: absolute;
  right: 32px;
  bottom: 30px;
  left: 32px;
}

.category-card h3 {
  margin-bottom: 7px;
  color: var(--cream);
  font-family: var(--display);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.05;
}

.category-card p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.card-arrow {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--forest-deep);
  background: var(--cream);
  border-radius: 50%;
  font-size: 22px;
  transition: transform 160ms ease;
}

.category-card:hover .card-arrow {
  transform: translateX(4px);
}

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

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

.product-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1.08;
  margin-bottom: 17px;
  background: #e8ddcc;
  border-radius: var(--radius);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--object-position, center);
  transition: transform 450ms ease;
}

.product-card:hover .product-image {
  transform: scale(1.045);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  color: var(--forest-deep);
  background: rgba(255, 250, 242, 0.92);
  border-radius: 99px;
  box-shadow: 0 4px 16px rgba(13, 45, 36, 0.1);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-quick {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  min-height: 44px;
  color: var(--white);
  background: rgba(13, 45, 36, 0.94);
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.product-card:hover .product-quick,
.product-quick:focus-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.product-card h3 {
  margin-bottom: 3px;
  color: var(--forest-deep);
  font-family: var(--display);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.2;
}

.product-card h3 a:hover {
  color: var(--clay-dark);
}

.product-category {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-price {
  margin: 1px 0 0;
  flex: 0 0 auto;
  color: var(--forest-deep);
  font-size: 14px;
  font-weight: 900;
  text-align: right;
}

.product-price small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.occasion-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 72px;
}

.occasion-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.filter-pill,
.chip {
  min-height: 42px;
  padding: 9px 16px;
  color: var(--forest-deep);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.filter-pill:hover,
.filter-pill.active,
.chip:hover,
.chip.active {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.budget-panel {
  position: relative;
  overflow: hidden;
  padding: 48px;
  color: var(--white);
  background: var(--forest);
  border-radius: var(--radius-lg);
}

.budget-panel::after {
  position: absolute;
  top: -110px;
  right: -80px;
  width: 330px;
  height: 330px;
  content: "";
  border: 1px solid rgba(213, 166, 83, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(213, 166, 83, 0.05), 0 0 0 108px rgba(213, 166, 83, 0.03);
}

.budget-panel > * {
  position: relative;
  z-index: 1;
}

.budget-panel h3 {
  max-width: 500px;
  margin-bottom: 13px;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 500;
  line-height: 1.08;
}

.budget-panel p {
  max-width: 510px;
  color: rgba(255, 255, 255, 0.72);
}

.budget-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.budget-links button {
  min-height: 56px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  cursor: pointer;
  font-weight: 800;
}

.budget-links button:hover {
  color: var(--forest-deep);
  background: var(--cream);
}

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  background: var(--forest-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.feature-image {
  min-height: 580px;
  background: url("assets/pplus-collection-concept.webp") center / cover no-repeat;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(48px, 6vw, 84px);
  color: var(--white);
}

.feature-copy h2 {
  margin-bottom: 20px;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.02;
}

.feature-copy p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 72px;
}

.story-number {
  color: var(--clay-dark);
  font-family: var(--display);
  font-size: clamp(110px, 15vw, 210px);
  line-height: 0.78;
}

.story-number span {
  display: block;
  margin-top: 22px;
  color: var(--forest-deep);
  font-family: var(--body);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.logo-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.logo-cloud span {
  display: grid;
  min-width: 92px;
  height: 54px;
  padding: 0 16px;
  place-items: center;
  color: #5b6a62;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.proof-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.impact-preview {
  position: relative;
  overflow: hidden;
}

.impact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 72px;
}

.impact-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.impact-stat {
  min-height: 200px;
  padding: 28px;
  color: var(--forest-deep);
  background: var(--cream);
  border-radius: var(--radius);
}

.impact-stat:nth-child(2) {
  margin-top: 24px;
  color: var(--white);
  background: var(--clay-dark);
}

.impact-stat strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: 42px;
  font-weight: 500;
}

.impact-stat p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.testimonial {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.testimonial blockquote {
  margin: 0 0 26px;
  color: var(--forest-deep);
  font-family: var(--display);
  font-size: clamp(29px, 4vw, 46px);
  font-style: italic;
  line-height: 1.28;
}

.testimonial cite {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.closing-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 56px 64px;
  color: var(--white);
  background: var(--clay-dark);
  border-radius: var(--radius-lg);
}

.closing-cta h2 {
  max-width: 730px;
  margin: 0;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.06;
}

.closing-cta p {
  max-width: 650px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 70px;
  color: var(--white);
  background: var(--forest-deep);
}

.page-hero::after {
  position: absolute;
  right: -90px;
  bottom: -190px;
  width: 480px;
  height: 480px;
  content: "";
  border: 1px solid rgba(213, 166, 83, 0.26);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(213, 166, 83, 0.04), 0 0 0 140px rgba(213, 166, 83, 0.025);
}

.page-hero .shell {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 850px;
  margin-bottom: 20px;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 78px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.page-hero p {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.page-hero-actions {
  margin-top: 28px;
}

.shop-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: start;
  gap: 36px;
}

.shop-sidebar {
  position: sticky;
  top: 104px;
  padding: 26px;
  background: var(--cream);
  border-radius: var(--radius);
}

.shop-sidebar h2 {
  margin: 0 0 16px;
  color: var(--forest-deep);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
}

.filter-group + .filter-group {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.filter-group legend {
  margin-bottom: 11px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 9px 0;
  cursor: pointer;
  font-size: 14px;
}

.filter-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--forest);
}

.shop-main {
  min-width: 0;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.shop-count {
  color: var(--muted);
  font-size: 14px;
}

.toolbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.select-field,
.search-field {
  min-height: 46px;
  padding: 10px 14px;
  color: var(--forest-deep);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
}

.search-field {
  width: min(260px, 26vw);
}

.filter-mobile-trigger {
  display: none;
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 24px;
}

.active-filter {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px;
  color: var(--forest-deep);
  background: var(--forest-soft);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 800;
}

.active-filter button {
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}

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

.empty-state h2 {
  margin-bottom: 8px;
  color: var(--forest-deep);
  font-family: var(--display);
  font-size: 32px;
  font-weight: 500;
}

.product-page {
  padding: 72px 0 96px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb a:hover {
  color: var(--clay-dark);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: start;
  gap: clamp(42px, 6vw, 84px);
}

.product-gallery {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 14px;
}

.gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gallery-thumb {
  overflow: hidden;
  aspect-ratio: 1;
  padding: 0;
  background: #e8ddcc;
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
}

.gallery-thumb.active {
  border-color: var(--clay-dark);
}

.gallery-thumb img,
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-main {
  overflow: hidden;
  aspect-ratio: 1 / 1.05;
  background: #e8ddcc;
  border-radius: var(--radius-lg);
}

.product-info {
  padding-top: 8px;
}

.product-info h1 {
  margin-bottom: 12px;
  color: var(--forest-deep);
  font-family: var(--display);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.detail-price {
  margin-bottom: 22px;
  color: var(--clay-dark);
  font-size: 22px;
  font-weight: 900;
}

.detail-price small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.detail-description {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 17px;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
}

.availability::before {
  width: 8px;
  height: 8px;
  content: "";
  background: #3c8768;
  border-radius: 50%;
}

.option-group {
  margin-bottom: 22px;
}

.option-group label,
.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--forest-deep);
  font-size: 14px;
  font-weight: 850;
}

.option-hint {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.text-input,
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--forest-deep);
  background: var(--white);
  border: 1px solid rgba(23, 61, 49, 0.24);
  border-radius: 10px;
  outline: none;
}

.field textarea {
  min-height: 126px;
  resize: vertical;
}

.text-input:focus,
.field input:focus,
.field select:focus,
.field textarea:focus,
.select-field:focus,
.search-field:focus {
  border-color: var(--clay-dark);
  box-shadow: 0 0 0 3px rgba(201, 111, 67, 0.14);
}

.quantity-row {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin: 26px 0 18px;
}

.quantity-control {
  display: grid;
  grid-template-columns: 40px 38px 40px;
  align-items: center;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.quantity-control button {
  height: 50px;
  background: transparent;
  cursor: pointer;
  font-size: 20px;
}

.quantity-control span {
  text-align: center;
  font-weight: 850;
}

.quantity-row .button {
  flex: 1;
}

.delivery-note {
  display: flex;
  gap: 13px;
  padding: 15px 16px;
  color: #3c4f46;
  background: var(--cream);
  border-radius: 12px;
  font-size: 13px;
}

.delivery-note strong {
  display: block;
  color: var(--forest-deep);
}

.detail-accordions {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

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

.detail-accordions summary {
  padding: 17px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 850;
}

.detail-accordions p,
.detail-accordions ul {
  margin: -2px 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card {
  padding: 30px;
  background: var(--cream);
  border-radius: var(--radius);
}

.info-card-number {
  display: block;
  margin-bottom: 20px;
  color: var(--clay-dark);
  font-family: var(--display);
  font-size: 42px;
  line-height: 1;
}

.info-card h3 {
  margin-bottom: 10px;
  color: var(--forest-deep);
  font-family: var(--display);
  font-size: 27px;
  font-weight: 500;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.audience-card {
  padding: 28px 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.audience-card h3 {
  margin-bottom: 8px;
  color: var(--cream);
  font-family: var(--display);
  font-size: 25px;
  font-weight: 500;
}

.audience-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.rfq-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(48px, 7vw, 92px);
}

.form-card {
  padding: clamp(26px, 4vw, 46px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field-full {
  grid-column: 1 / -1;
}

.field-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 13px;
}

.field-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
  accent-color: var(--forest);
}

.form-status {
  display: none;
  padding: 24px;
  color: var(--forest-deep);
  background: var(--forest-soft);
  border-radius: var(--radius);
}

.form-status.show {
  display: block;
}

.form-status h3 {
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
}

.form-status p {
  margin-bottom: 14px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 17px;
  background: var(--cream);
  border-radius: 14px;
}

.contact-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--cream);
  background: var(--forest);
  border-radius: 50%;
  font-family: var(--display);
  font-weight: 700;
}

.contact-item strong {
  display: block;
  color: var(--forest-deep);
}

.contact-item p,
.contact-item a {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.programme-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.programme-card {
  min-height: 380px;
  padding: clamp(32px, 5vw, 54px);
  color: var(--white);
  background: var(--forest);
  border-radius: var(--radius-lg);
}

.programme-card:nth-child(2) {
  color: var(--forest-deep);
  background: var(--cream);
}

.programme-label {
  display: block;
  margin-bottom: 54px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.programme-card:nth-child(2) .programme-label {
  color: var(--clay-dark);
}

.programme-card h2 {
  margin-bottom: 14px;
  color: inherit;
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 500;
}

.programme-card p {
  max-width: 520px;
  margin-bottom: 24px;
  color: inherit;
  opacity: 0.75;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.value-card {
  padding: 30px 26px;
  border-top: 3px solid var(--clay);
  background: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-soft);
}

.value-card h3 {
  margin-bottom: 10px;
  color: var(--forest-deep);
  font-family: var(--display);
  font-size: 25px;
  font-weight: 500;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
}

.timeline-item {
  position: relative;
  padding: 36px 25px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.timeline-item::before {
  position: absolute;
  top: -6px;
  left: 0;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
}

.timeline-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--cream);
  font-family: var(--display);
  font-size: 27px;
  font-weight: 500;
}

.timeline-item p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #091f19;
}

.footer-shell {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 42px;
  padding: 72px 0 54px;
}

.brand-light .brand-name {
  color: var(--cream);
}

.brand-light .brand-mark {
  color: var(--forest-deep);
  background: var(--cream);
}

.footer-intro p {
  max-width: 300px;
  margin: 21px 0 18px;
  font-size: 14px;
}

.footer-whatsapp {
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
}

.footer-column h2 {
  margin-bottom: 8px;
  color: var(--cream);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column button,
.footer-column p {
  padding: 0;
  color: rgba(255, 255, 255, 0.64);
  background: transparent;
  font-size: 13px;
  line-height: 1.6;
  text-align: left;
}

.footer-column a:hover,
.footer-column button:hover {
  color: var(--gold);
  cursor: pointer;
}

.footer-column p {
  margin: 0 0 5px;
}

.footer-column span {
  color: rgba(255, 255, 255, 0.45);
}

.footer-base {
  width: var(--shell);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 30px;
  border-top: 1px solid var(--line-light);
}

.footer-base p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.whatsapp-fab {
  position: fixed;
  z-index: 65;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  padding: 10px 17px 10px 13px;
  color: var(--white);
  background: #176b4c;
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(9, 31, 25, 0.3);
  font-size: 13px;
  font-weight: 850;
  transition: transform 160ms ease;
}

.whatsapp-fab:hover {
  transform: translateY(-3px);
}

.whatsapp-fab svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.drawer-backdrop,
.modal-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  background: rgba(9, 31, 25, 0.64);
  opacity: 0;
  transition: opacity 200ms ease;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.drawer-backdrop.open,
.modal-backdrop.open {
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  z-index: 110;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(460px, 100vw);
  display: flex;
  flex-direction: column;
  background: var(--paper);
  box-shadow: -20px 0 70px rgba(9, 31, 25, 0.22);
  transform: translateX(105%);
  transition: transform 260ms ease;
}

.cart-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 27px 28px 23px;
  border-bottom: 1px solid var(--line);
}

.drawer-header .eyebrow {
  margin-bottom: 3px;
}

.drawer-header h2 {
  margin: 0;
  color: var(--forest-deep);
  font-family: var(--display);
  font-size: 32px;
  font-weight: 500;
}

.drawer-close,
.modal-close {
  font-size: 28px;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 22px 28px;
}

.cart-empty {
  display: grid;
  min-height: 300px;
  place-items: center;
  color: var(--muted);
  text-align: center;
}

.cart-empty h3 {
  margin-bottom: 5px;
  color: var(--forest-deep);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
}

.cart-item {
  display: grid;
  grid-template-columns: 78px 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 78px;
  height: 86px;
  object-fit: cover;
  border-radius: 10px;
}

.cart-item h3 {
  margin-bottom: 3px;
  color: var(--forest-deep);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
}

.cart-item p {
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 12px;
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 8px;
  background: var(--cream);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 800;
}

.cart-qty button,
.cart-remove {
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.cart-price {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: space-between;
  color: var(--forest-deep);
  font-size: 13px;
  font-weight: 900;
}

.cart-remove {
  color: var(--muted);
  font-size: 12px;
  text-decoration: underline;
}

.cart-summary {
  padding: 22px 28px 28px;
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

.summary-total {
  padding-top: 12px;
  margin-top: 10px;
  color: var(--forest-deep);
  border-top: 1px solid var(--line);
  font-size: 17px;
  font-weight: 900;
}

.summary-note {
  margin: 12px 0 16px;
  color: var(--muted);
  font-size: 11px;
}

.modal-backdrop {
  display: grid;
  padding: 20px;
  place-items: center;
}

.modal {
  position: relative;
  width: min(640px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow-y: auto;
  padding: clamp(30px, 5vw, 52px);
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transform: translateY(14px) scale(0.98);
  transition: transform 200ms ease;
}

.modal-backdrop.open .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
}

.modal h2 {
  margin-bottom: 13px;
  color: var(--forest-deep);
  font-family: var(--display);
  font-size: 38px;
  font-weight: 500;
}

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

.search-modal-form {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.search-modal-form input {
  flex: 1;
  min-width: 0;
}

.policy-list {
  padding-left: 20px;
  color: var(--muted);
}

.toast {
  position: fixed;
  z-index: 200;
  right: 24px;
  bottom: 88px;
  max-width: min(360px, calc(100vw - 48px));
  padding: 13px 17px;
  color: var(--white);
  background: var(--forest-deep);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--forest-deep);
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 18px 24px 24px;
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: 0 24px 40px rgba(9, 31, 25, 0.16);
  }

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

  .mobile-menu > a:not(.button) {
    padding: 13px 2px;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 22px;
  }

  .mobile-menu .button {
    margin-top: 18px;
  }

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

  .category-card:first-child {
    grid-column: 1 / -1;
    min-height: 480px;
  }

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

  .footer-shell {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

  .footer-intro {
    grid-row: span 2;
  }

  .audience-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 680px);
  }

  .preview-ribbon {
    justify-content: flex-start;
    padding-left: 16px;
  }

  .preview-ribbon p {
    overflow: hidden;
    max-width: 62vw;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-shell {
    height: 70px;
  }

  .mobile-menu {
    top: 70px;
  }

  .header-quote,
  .account-trigger {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  .hero,
  .hero-shell {
    min-height: 690px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(9, 29, 23, 0.96) 0%, rgba(9, 29, 23, 0.79) 55%, rgba(9, 29, 23, 0.5) 100%),
      url("assets/pplus-hero-concept.webp") 69% center / cover no-repeat;
  }

  .hero-content {
    width: 100%;
  }

  .hero-note {
    right: auto;
    bottom: 24px;
    left: 0;
    width: min(390px, 100%);
  }

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

  .trust-item,
  .trust-item:first-child {
    border: 0;
    border-bottom: 1px solid rgba(23, 61, 49, 0.12);
  }

  .trust-item:nth-child(odd) {
    border-right: 1px solid rgba(23, 61, 49, 0.12);
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .category-grid,
  .occasion-layout,
  .feature-split,
  .story-grid,
  .impact-grid,
  .closing-cta,
  .shop-layout,
  .product-detail,
  .rfq-layout,
  .contact-layout,
  .programme-grid {
    grid-template-columns: 1fr;
  }

  .category-card:first-child {
    grid-column: auto;
    min-height: 420px;
  }

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

  .feature-image {
    min-height: 420px;
  }

  .story-grid {
    gap: 46px;
  }

  .impact-grid {
    gap: 44px;
  }

  .closing-cta {
    gap: 28px;
    padding: 42px 34px;
  }

  .shop-sidebar {
    position: static;
    display: none;
  }

  .shop-sidebar.open {
    display: block;
    margin-bottom: 24px;
  }

  .filter-mobile-trigger {
    display: inline-flex;
  }

  .shop-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .toolbar-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .search-field {
    width: 100%;
    flex: 1 1 220px;
  }

  .product-detail {
    gap: 42px;
  }

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

  .gallery-thumbs {
    grid-row: 2;
    flex-direction: row;
  }

  .gallery-thumb {
    width: 72px;
  }

  .info-cards {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr 1fr;
    gap: 36px 0;
  }

  .footer-shell {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-intro {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  .preview-ribbon span {
    flex: 0 0 auto;
  }

  .preview-ribbon p {
    font-size: 11px;
  }

  .brand-name {
    display: none;
  }

  .header-shell {
    gap: 8px;
  }

  .hero,
  .hero-shell {
    min-height: 660px;
  }

  .hero-shell {
    padding-top: 66px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 64px);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-note {
    width: 100%;
  }

  .trust-item {
    min-height: 82px;
    padding: 14px 8px;
    flex-direction: column;
    gap: 5px;
    font-size: 12px;
  }

  .section {
    padding: 62px 0;
  }

  .section-title {
    font-size: 37px;
  }

  .category-grid,
  .product-grid,
  .impact-stat-grid,
  .audience-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 390px;
  }

  .product-grid {
    gap: 30px;
  }

  .product-quick {
    opacity: 1;
    transform: none;
  }

  .occasion-layout {
    gap: 42px;
  }

  .budget-panel {
    padding: 34px 25px;
  }

  .budget-links {
    grid-template-columns: 1fr;
  }

  .feature-image {
    min-height: 340px;
  }

  .feature-copy {
    padding: 38px 25px;
  }

  .impact-stat:nth-child(2) {
    margin-top: 0;
  }

  .closing-cta {
    padding: 34px 24px;
  }

  .closing-cta .cta-row,
  .closing-cta .button {
    width: 100%;
  }

  .page-hero {
    padding: 62px 0 54px;
  }

  .page-hero h1 {
    font-size: 48px;
  }

  .product-page {
    padding-top: 44px;
  }

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

  .quantity-row {
    align-items: stretch;
    flex-direction: column;
  }

  .quantity-control {
    align-self: flex-start;
  }

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

  .field-full,
  .field-check {
    grid-column: auto;
  }

  .programme-card {
    min-height: 330px;
  }

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

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 56px;
  }

  .footer-intro {
    grid-column: auto;
  }

  .footer-base {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .whatsapp-fab {
    right: 14px;
    bottom: 14px;
    width: 52px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-fab span {
    display: none;
  }

  .search-modal-form {
    flex-direction: column;
  }

  .cart-item {
    grid-template-columns: 68px 1fr;
  }

  .cart-item img {
    width: 68px;
    height: 76px;
  }

  .cart-price {
    grid-column: 2;
    align-items: center;
    flex-direction: row;
  }
}

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

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