@font-face {
  font-family: "SF Pro Display";
  src: url("assets/fonts/SF-Pro-Display-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PP Editorial";
  src: url("assets/fonts/PPEditorialNew-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --ink: #142019;
  --deep: #07130d;
  --green: #214b36;
  --leaf: #5f8d50;
  --sage: #dfe8d8;
  --rice: #f8f1df;
  --cream: #fffaf0;
  --gold: #c5a24d;
  --plum: #4d285c;
  --copper: #a15d3a;
  --muted: #657066;
  --line: rgba(20, 32, 25, 0.14);
  --glass: rgba(255, 250, 240, 0.56);
  --glass-strong: rgba(255, 250, 240, 0.76);
  --dark-glass: rgba(8, 19, 13, 0.48);
  --shadow: 0 24px 80px rgba(20, 32, 25, 0.16);
  --radius: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(95, 141, 80, 0.2), transparent 28rem),
    radial-gradient(circle at 92% 2%, rgba(77, 40, 92, 0.14), transparent 26rem),
    linear-gradient(180deg, #fffaf0 0%, #f5f0e5 38%, #edf3e8 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.is-locked {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.skip-link:focus {
  z-index: 100;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  clip: auto;
  padding: 0.75rem 1rem;
  color: white;
  background: var(--green);
  border-radius: var(--radius);
}

.glass {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.26));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(26px) saturate(1.25);
}

.whatsapp-bar {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 0.45rem 1rem;
  color: #f6f1df;
  background: linear-gradient(90deg, var(--deep), #183829 55%, var(--plum));
  font-size: 0.82rem;
}

.whatsapp-bar a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
}

.whatsapp-bar span {
  color: var(--gold);
  text-transform: uppercase;
}

.whatsapp-bar p {
  margin: 0;
  color: rgba(255, 250, 240, 0.75);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.75rem 0;
  transition: transform 260ms var(--ease);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  min-width: 190px;
}

.logo-plate {
  display: grid;
  place-items: center;
  width: 174px;
  height: 54px;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.56);
}

.logo-plate img {
  width: 150px;
  max-height: 44px;
  object-fit: contain;
}

h1,
h2,
h3,
.brand-lockup strong,
.price-row strong,
.drawer-header h2,
.search-box label {
  font-family: "SF Pro Display", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  line-height: 0.98;
}

.site-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  color: rgba(20, 32, 25, 0.84);
  font-weight: 750;
  font-size: 0.94rem;
}

.site-menu > a,
.nav-group-trigger {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
}

.site-menu a,
.nav-group-trigger,
.site-footer button {
  border: 0;
  color: inherit;
  background: none;
  padding: 0;
}

.nav-group {
  position: relative;
}

.nav-group-trigger {
  gap: 0.35rem;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: -0.75rem;
  min-width: 180px;
  padding: 0.45rem;
  border: 1px solid rgba(20, 32, 25, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.96);
  box-shadow: 0 18px 48px rgba(20, 32, 25, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  transition: opacity 220ms ease, transform 220ms var(--ease), visibility 220ms ease;
}

.nav-group.is-open .nav-dropdown,
.nav-group:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.nav-dropdown a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 6px;
}

.nav-dropdown a:hover {
  background: rgba(255, 250, 240, 0.62);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.icon-button,
.bag-button,
.quantity-control button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: transform 220ms var(--ease), background 220ms ease;
}

.icon-button:hover,
.bag-button:hover,
.quantity-control button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.76);
}

.bag-button {
  position: relative;
}

.bag-button svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bag-button [data-cart-count] {
  position: absolute;
  right: -3px;
  bottom: -3px;
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  color: white;
  background: var(--plum);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
}

.search-svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: none;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 2px;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-lines::before {
  top: -6px;
}

.menu-lines::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-lines::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines::after {
  transform: translateY(-6px) rotate(-45deg);
}

.section-panel {
  position: relative;
  overflow: clip;
  scroll-margin-top: 110px;
}

.hero {
  min-height: 78svh;
  display: grid;
  align-items: center;
  color: white;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 19, 13, 0.88) 0%, rgba(7, 19, 13, 0.62) 48%, rgba(7, 19, 13, 0.12) 100%),
    linear-gradient(0deg, rgba(7, 19, 13, 0.76) 0%, transparent 40%);
}

.hero-orbit {
  position: absolute;
  right: -16vw;
  top: 20%;
  width: 40vw;
  aspect-ratio: 1;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(197, 162, 77, 0.22);
  animation: drift 10s ease-in-out infinite alternate;
}

.hero-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 4rem 0 3.5rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6.7rem);
}

.hero h1 span,
.section-heading h2 span,
.promise-copy h2 span {
  font-family: "PP Editorial", Georgia, serif;
  font-weight: 400;
  font-style: italic;
}

.hero-content > p:not(.eyebrow) {
  max-width: 660px;
  margin: 1.2rem 0 0;
  color: rgba(255, 250, 240, 0.82);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 220ms var(--ease), box-shadow 220ms ease, background 220ms ease, color 220ms ease;
}

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

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--green), #102d20);
  box-shadow: 0 16px 34px rgba(7, 19, 13, 0.18);
}

.button.secondary,
.button.ghost {
  color: var(--ink);
  background: rgba(255, 250, 240, 0.9);
  border-color: rgba(255, 250, 240, 0.72);
}

.hero .button.secondary {
  color: white;
  background: rgba(255, 255, 255, 0.16);
}

.hero-proof {
  position: absolute;
  right: max(16px, calc((100% - 1180px) / 2));
  bottom: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  overflow: hidden;
  color: white;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.hero-proof span {
  display: grid;
  gap: 0.25rem;
  min-height: 84px;
  align-content: center;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 250, 240, 0.74);
  font-size: 0.82rem;
}

.hero-proof span:last-child {
  border-right: 0;
}

.hero-proof strong {
  display: block;
  color: white;
  font-family: "SF Pro Display", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.45rem;
  line-height: 1;
}

.marquee-strip {
  overflow: hidden;
  border-block: 1px solid rgba(20, 32, 25, 0.08);
  background: rgba(255, 250, 240, 0.5);
}

.marquee-strip div {
  width: max-content;
  display: flex;
  gap: 2.2rem;
  padding: 1rem 0;
  color: rgba(20, 32, 25, 0.6);
  font-family: "SF Pro Display", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.05rem;
  animation: marquee 24s linear infinite;
}

.marquee-strip span {
  white-space: nowrap;
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 6rem 0;
}

.split,
.promise-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.section-heading {
  max-width: 820px;
}

.section-heading.centered {
  margin: 0 auto;
  text-align: center;
}

.section-heading h2,
.section-copy h2,
.promise-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
}

.section-heading p:not(.eyebrow),
.story-card p,
.promise-copy p,
.contact-copy p {
  max-width: 700px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.story-card {
  padding: 1.2rem;
  border: 1px solid rgba(20, 32, 25, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.82);
  box-shadow: 0 18px 54px rgba(20, 32, 25, 0.08);
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.mini-metrics span {
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.45);
  color: var(--muted);
}

.mini-metrics strong {
  color: var(--ink);
}

.products-section {
  background:
    linear-gradient(180deg, rgba(223, 232, 216, 0.72), rgba(255, 250, 240, 0.2)),
    radial-gradient(circle at 84% 10%, rgba(197, 162, 77, 0.14), transparent 24rem);
}

.product-controls {
  margin: 1.8rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem;
  border: 1px solid rgba(20, 32, 25, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.82);
}

.tabs {
  display: inline-grid;
  grid-template-columns: repeat(3, minmax(78px, 1fr));
  gap: 0.35rem;
}

.tab {
  min-height: 40px;
  padding: 0.5rem 0.85rem;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font-weight: 800;
  transition: background 220ms ease, color 220ms ease;
}

.tab.is-active {
  color: white;
  background: var(--green);
}

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

.product-card {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.92);
  box-shadow: 0 18px 58px rgba(20, 32, 25, 0.1);
  transition: transform 320ms var(--ease), box-shadow 320ms ease, opacity 220ms ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 90px rgba(20, 32, 25, 0.18);
}

.product-card.is-hidden {
  display: none;
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--sage);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms var(--ease);
}

.product-card:hover .product-media img {
  transform: scale(1.05);
}

.variant-pill {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 0.36rem 0.65rem;
  color: white;
  background: rgba(7, 19, 13, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
}

.product-content {
  display: grid;
  gap: 0.75rem;
  padding: 1.1rem;
}

.vendor {
  margin: 0;
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-content h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.02;
}

.product-content p:not(.vendor) {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.price-row {
  display: grid;
  gap: 0.15rem;
}

.price-row strong {
  font-size: 1.18rem;
}

.price-row small {
  color: var(--muted);
}

.card-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.text-button {
  min-height: 42px;
  border: 0;
  padding: 0;
  color: var(--green);
  background: transparent;
  font-weight: 800;
}

.promise-section,
.contact-section {
  color: white;
  background:
    radial-gradient(circle at 18% 10%, rgba(197, 162, 77, 0.18), transparent 28rem),
    radial-gradient(circle at 84% 18%, rgba(77, 40, 92, 0.24), transparent 26rem),
    linear-gradient(135deg, #07130d 0%, #173325 62%, #0a1710 100%);
}

.promise-copy p,
.contact-copy p {
  color: rgba(255, 250, 240, 0.7);
}

.promise-stack {
  display: grid;
  gap: 0.9rem;
}

.promise-stack article,
.process-timeline article {
  padding: 1.2rem;
  border-radius: var(--radius);
}

.promise-stack article {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.promise-stack span,
.process-timeline span {
  color: var(--gold);
  font-weight: 800;
}

.promise-stack h3 {
  margin: 0.45rem 0;
  font-size: 1.5rem;
}

.promise-stack p,
.process-timeline p {
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
}

.process-timeline {
  position: relative;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-timeline article {
  background: rgba(255, 250, 240, 0.62);
}

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

.contact-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.contact-card > a {
  color: white;
  font-family: "SF Pro Display", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  overflow-wrap: anywhere;
}

.contact-card > p {
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.social-icon {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: transform 220ms var(--ease), background 220ms ease;
}

.social-icon:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

.social-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.enquiry-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.5rem;
}

.enquiry-form label {
  display: grid;
  gap: 0.35rem;
  color: rgba(255, 250, 240, 0.72);
  font-weight: 800;
}

.enquiry-form input,
.enquiry-form textarea,
.search-box input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  padding: 0.85rem 0.9rem;
  color: var(--ink);
  background: rgba(255, 250, 240, 0.76);
  outline: none;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus,
.search-box input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(197, 162, 77, 0.16);
}

.form-status {
  min-height: 1.35em;
  margin: 0;
  color: var(--gold);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 2rem max(16px, calc((100% - 1180px) / 2));
  color: white;
  background: var(--deep);
}

.site-footer img {
  width: 150px;
  margin-bottom: 0.5rem;
}

.site-footer p,
.site-footer small {
  margin: 0;
  color: rgba(255, 250, 240, 0.68);
}

.site-footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
  color: rgba(255, 250, 240, 0.78);
  font-weight: 800;
}

.site-footer small {
  grid-column: 1 / -1;
}

.search-panel,
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  visibility: hidden;
  pointer-events: none;
}

.search-panel.is-open,
.cart-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.panel-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 19, 13, 0.56);
  opacity: 0;
  transition: opacity 240ms ease;
}

.is-open .panel-backdrop {
  opacity: 1;
}

.search-box,
.drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(460px, 100%);
  height: 100%;
  padding: 1.25rem;
  overflow: auto;
  border-left: 1px solid rgba(20, 32, 25, 0.12);
  background: var(--cream);
  box-shadow: -22px 0 70px rgba(20, 32, 25, 0.22);
  transform: translateX(100%);
  transition: transform 360ms var(--ease);
}

.search-panel.is-open .search-box,
.cart-drawer.is-open .drawer {
  transform: translateX(0);
}

.close-button {
  margin-left: auto;
  font-size: 1.45rem;
}

.search-box label {
  display: block;
  margin: 0 0 0.7rem;
  font-size: 2.2rem;
}

.search-results {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.search-result,
.cart-item {
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.66);
}

.search-result {
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem;
}

.search-result strong {
  font-family: "SF Pro Display", ui-sans-serif, system-ui, sans-serif;
}

.search-result small {
  color: var(--muted);
}

.drawer {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto auto;
  gap: 1rem;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.drawer-header h2 {
  margin: 0;
  font-size: 2rem;
}

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

.cart-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 0.8rem;
  padding: 0.8rem;
}

.cart-item img {
  width: 76px;
  height: 84px;
  object-fit: cover;
  border-radius: 6px;
}

.cart-item h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.15;
}

.cart-item p {
  margin: 0.2rem 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-item-controls button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.76);
}

.cart-empty {
  display: none;
  align-content: center;
  justify-items: start;
  gap: 0.8rem;
  min-height: 220px;
}

.cart-empty.is-visible {
  display: grid;
}

.cart-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.cart-summary strong {
  font-size: 1.35rem;
}

.checkout-button {
  width: 100%;
}

.product-dialog,
.policy-dialog {
  width: min(900px, calc(100% - 32px));
  padding: 1.2rem;
  border: 1px solid rgba(20, 32, 25, 0.12);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.product-dialog::backdrop,
.policy-dialog::backdrop {
  background: rgba(7, 19, 13, 0.58);
}

.dialog-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 1.3rem;
  align-items: center;
}

.dialog-grid img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
}

.dialog-grid h2,
.policy-dialog h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.dialog-grid p:not(.vendor),
.policy-dialog p,
.policy-dialog li {
  color: var(--muted);
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1rem 0;
}

.quantity-control span {
  min-width: 38px;
  text-align: center;
  font-family: "SF Pro Display", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.3rem;
}

.policy-dialog article {
  max-width: 760px;
}

.policy-dialog ul {
  padding-left: 1.1rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 100;
  min-width: 260px;
  max-width: calc(100% - 32px);
  padding: 0.9rem 1rem;
  color: white;
  background: var(--green);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  opacity: 0;
  transform: translate(-50%, 16px);
  pointer-events: none;
  transition: opacity 240ms ease, transform 240ms var(--ease);
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  filter: blur(10px);
  transition: opacity 760ms ease, transform 760ms var(--ease), filter 760ms ease;
}

.js .hero .reveal {
  opacity: 1;
  transform: none;
  filter: none;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes drift {
  from {
    transform: translate3d(0, -10px, 0) rotate(0deg);
  }

  to {
    transform: translate3d(-4vw, 16px, 0) rotate(12deg);
  }
}

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

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

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-grid;
  }

  .brand-lockup {
    min-width: 0;
  }

  .site-menu {
    position: fixed;
    top: 104px;
    left: 16px;
    right: 16px;
    display: grid;
    align-items: stretch;
    justify-content: stretch;
    gap: 0.25rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: var(--radius);
    background: rgba(255, 250, 240, 0.86);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px) scale(0.98);
    transition: opacity 220ms ease, transform 220ms var(--ease), visibility 220ms ease;
  }

  .site-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .site-menu > a,
  .nav-group-trigger {
    width: 100%;
    min-height: 46px;
    justify-content: space-between;
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    display: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.35);
  }

  .nav-group.is-open .nav-dropdown {
    display: block;
  }

  .split,
  .promise-grid,
  .contact-grid,
  .dialog-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .whatsapp-bar {
    justify-content: space-between;
    gap: 0.7rem;
    font-size: 0.72rem;
  }

  .whatsapp-bar p {
    display: none;
  }

  .nav-shell {
    width: min(100% - 20px, 1180px);
    min-height: 62px;
    padding: 0.45rem;
  }

  .logo-plate {
    width: 142px;
    height: 48px;
  }

  .logo-plate img {
    width: 126px;
  }

  .nav-actions {
    gap: 0.32rem;
  }

  .icon-button,
  .bag-button {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 78svh;
    align-items: end;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(7, 19, 13, 0.92) 0%, rgba(7, 19, 13, 0.7) 54%, rgba(7, 19, 13, 0.18) 100%);
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-content {
    padding: 2.6rem 0 6.2rem;
  }

  .hero-content > p:not(.eyebrow) {
    font-size: 0.96rem;
  }

  .hero-proof {
    left: 16px;
    right: 16px;
    bottom: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-proof span {
    min-height: 64px;
    padding: 0.65rem;
    font-size: 0.7rem;
  }

  .hero-proof strong {
    font-size: 1.1rem;
  }

  .section-shell {
    padding: 4.25rem 0;
  }

  .product-controls {
    display: grid;
  }

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

  .tabs {
    width: 100%;
  }

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

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