@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Crimson+Pro:ital,wght@0,400;0,500;0,600;1,400&display=swap");

:root {
  --ink: #1a2433;
  --ink-soft: #766b5f;
  --navy: #112035;
  --navy-2: #1c2f49;
  --parchment: #f5f1e8;
  --parchment-2: #ece3d3;
  --card: #f1eadc;
  --line: #d0bfa4;
  --line-dark: #806f58;
  --gold: #c4922f;
  --gold-2: #dfb55a;
  --green: #365c45;
  --white: #fffaf0;
  --shadow: 0 12px 36px rgba(28, 23, 17, 0.16);
  --header-height: 80px;
  font-family: "Crimson Pro", Georgia, serif;
  color: var(--ink);
  background: var(--parchment);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--parchment);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
}

img {
  max-width: 100%;
  height: auto;
}

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

a:hover {
  color: var(--gold);
}

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(196, 146, 47, 0.7);
  outline-offset: 3px;
}

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

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  width: auto;
  height: auto;
  clip: auto;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: var(--navy);
}

.shell {
  width: min(100% - 2rem, 1280px);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  background: rgba(17, 32, 53, 0.97);
  border-bottom: 1px solid rgba(196, 146, 47, 0.2);
  backdrop-filter: blur(10px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--white);
  min-width: 210px;
  transition: color 180ms ease;
}

.brand-mark {
  width: 38px;
  height: 38px;
  color: var(--gold);
  flex: 0 0 auto;
  transform-origin: 50% 14%;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.12));
  transition: color 180ms ease, filter 180ms ease, transform 180ms ease;
}

.brand:hover {
  color: var(--white);
}

.brand:hover .brand-mark {
  color: var(--gold-2);
  animation: anchor-sway 620ms ease both;
  filter: drop-shadow(0 4px 8px rgba(223, 181, 90, 0.22));
}

.brand:hover .brand-sub {
  color: var(--gold-2);
}

@keyframes anchor-sway {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  35% {
    transform: translateY(-2px) rotate(-8deg);
  }

  70% {
    transform: translateY(-1px) rotate(5deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand:hover .brand-mark {
    animation: none;
    transform: translateY(-1px);
  }
}

.brand-main {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1;
}

.brand-sub {
  display: block;
  margin-top: -0.05rem;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  line-height: 1;
  transition: color 180ms ease;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.4rem, 2.4vw, 2.4rem);
  color: rgba(255, 250, 240, 0.82);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links a {
  position: relative;
  padding: 0.35rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 1px;
  background: var(--gold-2);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-links a.is-active {
  color: var(--gold-2);
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  color: var(--white);
  background: transparent;
  align-items: center;
  justify-content: center;
}

.mobile-panel {
  display: none;
}

.icon-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--white);
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 2px;
  display: none;
  min-width: 1.2rem;
  height: 1.2rem;
  padding: 0 0.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font: 700 0.72rem/1 Arial, sans-serif;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0.78rem 1.7rem;
  background: var(--gold);
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  color: var(--navy);
  background: var(--gold-2);
  transform: translateY(-1px);
}

.button-outline {
  border-color: var(--gold);
  background: transparent;
  color: var(--gold);
}

.button-outline:hover {
  background: rgba(196, 146, 47, 0.12);
  color: var(--gold-2);
}

.button-parchment {
  background: var(--parchment);
  color: var(--navy);
}

.button-wide {
  width: 100%;
}

.section {
  padding: 5.5rem 0;
}

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

.section-muted {
  background: var(--card);
}

.section-title {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  line-height: 1.12;
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

h3 {
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
}

.lead {
  margin: 1.4rem 0 0;
  color: var(--ink-soft);
  font-size: 1.22rem;
}

p,
li,
blockquote {
  overflow-wrap: break-word;
}

.shell,
.hero-content,
.section-title,
.article,
.product-hero-copy,
.product-card-body,
.note-card,
.form-card {
  min-width: 0;
}

.text-gold {
  color: var(--gold);
}

.hero {
  min-height: 88svh;
  display: grid;
  place-items: center;
  padding-top: var(--header-height);
  position: relative;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  background: var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 32, 53, 0.72), rgba(17, 32, 53, 0.58) 42%, rgba(17, 32, 53, 0.96)),
    url("/assets/hero-captain-cooks-kava.jpg") center / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 900px);
  padding: 4rem 0 3rem;
}

.hero h1 span {
  display: block;
  color: var(--gold-2);
}

.hero h1 {
  overflow-wrap: break-word;
}

.hero-quote {
  margin: 2rem auto 2.3rem;
  max-width: 760px;
  color: rgba(255, 250, 240, 0.88);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  font-style: italic;
  line-height: 1.45;
}

.hero cite {
  display: block;
  margin-top: 0.9rem;
  color: var(--gold);
  font-family: "Crimson Pro", Georgia, serif;
  font-size: 0.88rem;
  font-style: normal;
  letter-spacing: 0.08em;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}

.framed-image {
  position: relative;
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

.framed-image img {
  width: 100%;
}

.story-copy {
  position: relative;
}

.story-section {
  position: relative;
  overflow: hidden;
}

.story-watermark {
  position: absolute;
  right: 0;
  top: 16%;
  width: min(34vw, 430px);
  aspect-ratio: 0.75;
  background: url("/assets/kava-botanical.webp") center / contain no-repeat;
  opacity: 0.06;
  pointer-events: none;
}

.story-copy::after,
.article-band::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4rem;
  width: 46%;
  aspect-ratio: 0.75;
  background: url("/assets/kava-botanical.webp") center / contain no-repeat;
  opacity: 0.06;
  pointer-events: none;
}

.story-section .story-copy::after {
  display: none;
}

.copy-block {
  position: relative;
  z-index: 1;
}

.story-section h1 {
  font-size: clamp(2.45rem, 4.2vw, 4.4rem);
}

.copy-block p {
  color: var(--ink-soft);
  margin: 1.2rem 0;
  font-size: 1.16rem;
}

.story-figure {
  overflow: hidden;
}

.story-figure::before,
.story-figure::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 6rem;
  height: 6rem;
  border-color: rgba(196, 146, 47, 0.32);
  pointer-events: none;
}

.story-figure::before {
  top: -0.9rem;
  left: -0.9rem;
  border-top: 1px solid;
  border-left: 1px solid;
}

.story-figure::after {
  right: -0.9rem;
  bottom: -0.9rem;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.story-figure figcaption {
  position: absolute;
  left: 1.6rem;
  right: 1.6rem;
  bottom: 1.55rem;
  z-index: 2;
  color: var(--ink-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.95rem;
  font-style: italic;
  text-align: center;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.stat {
  min-width: 120px;
  padding-right: 1.5rem;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.85rem;
  line-height: 1;
}

.stat span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.story-who {
  margin-top: 6rem;
}

.story-who .section-title {
  margin-bottom: 0;
}

.story-who-copy {
  margin-top: 1.75rem;
}

.story-who-copy p {
  color: var(--ink-soft);
  font-size: 1.16rem;
}

.story-signoff {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.3rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}

.story-signoff span {
  width: 3rem;
  height: 1px;
  background: rgba(196, 146, 47, 0.45);
}

.story-signoff p {
  margin: 0;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.95rem;
  font-style: italic;
}

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

.product-grid-single {
  grid-template-columns: minmax(0, 624px);
  justify-content: center;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--card);
  box-shadow: 0 2px 12px rgba(28, 23, 17, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover {
  border-color: rgba(196, 146, 47, 0.58);
  box-shadow: 0 12px 28px rgba(28, 23, 17, 0.13);
  transform: translateY(-2px);
}

.product-card.dark {
  background: var(--navy);
  color: var(--white);
  border-color: rgba(196, 146, 47, 0.4);
}

.product-card-media {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--parchment-2);
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

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

.product-card.product-sample-kava-100g .product-card-media img {
  object-position: center;
  transform: scale(1.08);
}

.product-card.product-sample-kava-100g:hover .product-card-media img {
  transform: scale(1.12);
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(1.35rem, 3vw, 2rem);
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.round-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(196, 146, 47, 0.18);
  color: var(--gold);
  flex: 0 0 auto;
}

.product-tag {
  color: var(--ink-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dark .product-tag {
  color: rgba(255, 250, 240, 0.68);
}

.price-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0.55rem 0;
}

.price {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
}

.compare {
  color: rgba(118, 107, 95, 0.68);
  text-decoration: line-through;
}

.dark .compare {
  color: rgba(255, 250, 240, 0.46);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.55rem;
  padding: 0.15rem 0.55rem;
  border-radius: 4px;
  background: rgba(196, 146, 47, 0.18);
  color: var(--gold);
  font: 700 0.72rem/1.1 Arial, sans-serif;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0 0.55rem;
}

.product-size-badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.7rem;
  border: 1px solid rgba(196, 146, 47, 0.34);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  background: rgba(196, 146, 47, 0.1);
  color: var(--gold);
  font: 700 0.76rem/1.1 Arial, sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card p {
  margin: 0.7rem 0;
  color: var(--ink-soft);
}

.dark p {
  color: rgba(255, 250, 240, 0.72);
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: auto;
  padding-top: 1.2rem;
}

.journey-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}

.timeline {
  display: grid;
  gap: 1.55rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 1.15rem;
}

.timeline-year {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
}

.timeline-item h3 {
  color: var(--white);
  font-size: 1.3rem;
}

.timeline-item p {
  margin: 0.35rem 0 0;
  color: rgba(255, 250, 240, 0.68);
}

.page-hero {
  padding: calc(var(--header-height) + 6rem) 0 5rem;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.page-hero.light {
  background: var(--parchment);
  color: var(--ink);
}

.page-hero .lead {
  color: rgba(255, 250, 240, 0.72);
}

.page-hero.light .lead {
  color: var(--ink-soft);
}

.product-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 3rem) 0 4rem;
  background: linear-gradient(180deg, var(--navy), var(--navy-2));
  color: var(--white);
}

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

.product-hero-region {
  isolation: isolate;
  background: var(--navy);
}

.product-hero-region::before,
.product-hero-region::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.product-hero-region::before {
  z-index: -2;
  background: var(--product-region-image) center / cover no-repeat;
  transform: scale(1.02);
}

.product-hero-region::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(17, 32, 53, 0.93), rgba(17, 32, 53, 0.76) 44%, rgba(17, 32, 53, 0.52)),
    linear-gradient(180deg, rgba(17, 32, 53, 0.62), rgba(17, 32, 53, 0.32) 48%, rgba(17, 32, 53, 0.92));
}

.product-hero-region .product-hero-copy {
  text-shadow: 0 2px 16px rgba(8, 15, 27, 0.42);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 2rem;
  color: var(--gold);
  font-size: 0.96rem;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.product-media-stack {
  display: grid;
  gap: 1rem;
}

.product-hero-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--parchment-2);
  border: 1px solid rgba(196, 146, 47, 0.25);
  box-shadow: var(--shadow);
}

.product-hero-region .product-hero-image {
  border-color: rgba(223, 181, 90, 0.36);
  box-shadow: 0 22px 54px rgba(8, 15, 27, 0.42);
}

.product-hero-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-hero.product-sample-kava-100g .product-hero-image img {
  object-position: center;
  transform: scale(1.04);
}

.product-receive-gallery {
  display: grid;
  gap: 0.85rem;
}

.product-receive-card {
  display: grid;
  grid-template-columns: minmax(112px, 148px) minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 0.9rem;
  border: 1px solid rgba(196, 146, 47, 0.28);
  border-radius: 4px;
  background: rgba(255, 250, 240, 0.94);
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(8, 15, 27, 0.18);
}

.product-receive-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 3px;
  background: #fff;
}

.product-receive-card figcaption {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.45;
}

.product-hero-region .product-receive-card {
  border-color: rgba(223, 181, 90, 0.36);
  background: rgba(255, 250, 240, 0.96);
}

.product-profile {
  margin: 2rem 0;
  padding: 1.55rem 0;
  border-block: 1px solid rgba(196, 146, 47, 0.25);
}

.origin-caption {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.55rem;
  margin: 0.9rem 0 0;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(223, 181, 90, 0.28);
  border-radius: 4px;
  background: rgba(17, 32, 53, 0.42);
  color: rgba(255, 250, 240, 0.84);
  font-size: 0.95rem;
  backdrop-filter: blur(8px);
}

.origin-caption .icon {
  color: var(--gold-2);
}

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

.profile-grid .round-icon {
  margin: 0 auto 0.45rem;
  background: transparent;
}

.profile-grid span {
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.95rem;
}

.product-quote {
  margin: 1.75rem 0 1.45rem;
  padding: 1.25rem 1.35rem;
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  background: rgba(255, 250, 240, 0.07);
}

.product-quote p {
  margin: 0;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  font-style: italic;
  line-height: 1.35;
}

.product-quote cite {
  display: block;
  margin-top: 0.75rem;
  color: var(--gold-2);
  font-family: "Crimson Pro", Georgia, serif;
  font-size: 0.9rem;
  font-style: normal;
  letter-spacing: 0.08em;
}

.product-free-shipping {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 0 0 1rem;
  padding: 0.82rem 1.05rem;
  border: 1px solid rgba(223, 181, 90, 0.5);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(196, 146, 47, 0.24), rgba(17, 32, 53, 0.48));
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(8, 15, 27, 0.22);
}

.product-free-shipping .icon,
.product-free-shipping strong {
  color: var(--gold-2);
}

.product-trust-line,
.checkout-reassurance {
  margin: 0.85rem 0 0;
  color: rgba(255, 250, 240, 0.68);
  font-size: 0.96rem;
}

.article-band {
  position: relative;
  overflow: hidden;
}

.article {
  width: min(100% - 2rem, 840px);
  margin: 0 auto;
}

.article.wide {
  width: min(100% - 2rem, 1080px);
}

.article h2,
.article h3 {
  margin-top: 2.5rem;
  color: var(--ink);
}

.article h2:first-child,
.article h3:first-child {
  margin-top: 0;
}

.article p,
.article li {
  color: var(--ink-soft);
}

.article p {
  margin: 1rem 0;
}

.history-intro {
  margin-bottom: 3rem;
}

.history-intro p:first-child {
  color: var(--ink);
  font-size: 1.28rem;
}

.history-intro p:first-child::first-letter {
  float: left;
  margin: 0.12rem 0.45rem 0 0;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4rem;
  line-height: 0.82;
}

.history-section {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}

.history-section h2:first-child {
  margin-top: 0;
}

.history-section h3 {
  color: var(--gold);
  font-size: 1.42rem;
}

.history-section em {
  color: var(--gold);
}

.history-quote {
  margin: 1.7rem 0;
  padding: 1.4rem 1.6rem;
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  background: rgba(196, 146, 47, 0.09);
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.45;
}

.history-quote.final {
  font-size: 1.5rem;
}

.history-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.2rem 0 0;
  padding-left: 1.35rem;
}

.article ul,
.article ol {
  margin: 1rem 0 0;
  padding-left: 1.35rem;
}

.article li {
  margin: 0.55rem 0;
}

.local-kava-page {
  background:
    linear-gradient(90deg, rgba(196, 146, 47, 0.08), transparent 32%, transparent 68%, rgba(17, 32, 53, 0.04)),
    var(--parchment);
}

.local-language-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.local-language-panel {
  min-width: 0;
  padding: clamp(1.3rem, 2.8vw, 2.2rem) 0 0;
  border-top: 1px solid var(--line);
}

.local-language-panel h2 {
  margin-top: 2.4rem;
  color: var(--ink);
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
}

.local-language-panel h2:first-of-type {
  margin-top: 0;
}

.local-language-panel p,
.local-language-panel li {
  color: var(--ink-soft);
}

.local-language-panel p {
  margin: 1rem 0;
}

.local-language-panel ul,
.local-language-panel ol {
  margin: 1rem 0 0;
  padding-left: 1.35rem;
}

.local-language-panel li {
  margin: 0.58rem 0;
}

.local-language-panel strong {
  color: var(--ink);
}

.local-language-panel-el {
  border-top-color: rgba(17, 32, 53, 0.28);
}

.local-language-panel-el .eyebrow {
  color: var(--green);
}

.local-cta .lead {
  color: rgba(255, 250, 240, 0.74);
}

.note-card,
.form-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--card);
  padding: clamp(1.35rem, 3vw, 2rem);
  box-shadow: 0 2px 12px rgba(28, 23, 17, 0.07);
}

.prep-note {
  margin: 1.25rem 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(196, 146, 47, 0.28);
  border-radius: 4px;
  background: rgba(196, 146, 47, 0.09);
}

.prep-note strong {
  display: block;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.prep-note p {
  margin: 0.35rem 0 0;
}

.product-compliance-note ul {
  margin: 0.55rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.product-compliance-note li + li {
  margin-top: 0.25rem;
}

.captains-note {
  border-color: rgba(54, 92, 69, 0.32);
  background: rgba(54, 92, 69, 0.08);
}

.captains-note strong {
  color: var(--green);
}

.checkout-reassurance {
  color: var(--ink-soft);
}

.checkout-free-shipping {
  margin: 0.7rem 0 1rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(196, 146, 47, 0.28);
  border-radius: 4px;
  background: rgba(196, 146, 47, 0.09);
  color: var(--green);
  font-weight: 600;
}

.reviews-section {
  border-top: 1px solid rgba(128, 111, 88, 0.22);
}

.reviews-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.5fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.reviews-copy .lead {
  max-width: 680px;
}

.review-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.review-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(128, 111, 88, 0.24);
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.46);
  box-shadow: 0 8px 24px rgba(28, 23, 17, 0.06);
}

.review-card h3 {
  margin-top: 0.35rem;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.review-card p {
  margin: 0.65rem 0 0;
}

.review-meta,
.review-rating,
.review-help,
.review-empty {
  color: var(--ink-soft);
}

.review-meta {
  font-size: 0.95rem;
}

.review-rating {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.review-card img {
  grid-column: 1 / -1;
  width: min(100%, 420px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(128, 111, 88, 0.24);
  border-radius: 4px;
}

.review-form {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
}

.review-form h3 {
  margin-bottom: 1.25rem;
}

.field label span {
  color: var(--ink-soft);
  font-family: "Crimson Pro", Georgia, serif;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0;
}

.review-help {
  margin: 0.9rem 0 0;
  font-size: 0.95rem;
}

.review-honeypot,
.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

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

.prep-item {
  text-align: center;
}

.prep-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 4px;
  margin-bottom: 0.8rem;
}

.contact-grid,
.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.38fr);
  gap: 2rem;
  align-items: start;
}

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

.field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

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

.field label {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.78rem 0.9rem;
  background: rgba(255, 250, 240, 0.62);
  color: var(--ink);
}

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

.checkout-summary {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
}

.summary-line,
.cart-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(208, 191, 164, 0.7);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
}

.status-message {
  min-height: 1.5rem;
  margin-top: 0.9rem;
  color: var(--green);
}

.status-message.error {
  color: #9c2d27;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: none;
  background: rgba(8, 15, 27, 0.48);
}

.cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 200;
  width: min(100%, 440px);
  display: flex;
  flex-direction: column;
  background: var(--card);
  color: var(--ink);
  transform: translateX(100%);
  transition: transform 220ms ease;
  box-shadow: -14px 0 40px rgba(0, 0, 0, 0.22);
}

.cart-open .drawer-backdrop {
  display: block;
}

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

.cookie-banner {
  position: fixed;
  left: max(1rem, env(safe-area-inset-left));
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 160;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookies-set .cookie-banner,
.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner-panel {
  width: min(100%, 760px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(128, 111, 88, 0.24);
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.98);
  color: var(--ink);
  box-shadow: 0 14px 36px rgba(28, 23, 17, 0.18);
  pointer-events: auto;
}

.cookie-banner-copy {
  min-width: 0;
}

.cookie-banner h2 {
  margin: 0 0 0.25rem;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.05;
}

.cookie-banner p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.4;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex: 0 0 auto;
}

.cookie-choice {
  appearance: none;
  display: inline-flex;
  min-width: 128px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.5rem 0.9rem;
  color: var(--ink);
  font: 700 0.72rem/1 Arial, sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.cookie-choice:hover,
.cookie-choice:focus-visible {
  border-color: var(--gold);
  color: var(--navy);
  background: rgba(196, 146, 47, 0.12);
  transform: translateY(-1px);
}

.cookie-choice-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.cookie-choice-primary:hover,
.cookie-choice-primary:focus-visible {
  background: var(--gold-2);
  color: var(--navy);
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem;
  border-bottom: 1px solid var(--line);
}

.drawer-shipping-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0.7rem 0 0;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(196, 146, 47, 0.35);
  border-radius: 4px;
  background: rgba(196, 146, 47, 0.12);
  color: var(--green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.drawer-shipping-badge strong {
  color: var(--gold);
}

.drawer-body {
  flex: 1;
  overflow: auto;
  padding: 1.35rem;
}

.drawer-foot {
  padding: 1.35rem;
  border-top: 1px solid var(--line);
}

.cart-item {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(208, 191, 164, 0.65);
}

.cart-item img {
  width: 78px;
  height: 78px;
  object-fit: cover;
  border-radius: 4px;
  background: var(--parchment-2);
}

.cart-item h4 {
  font-size: 1.05rem;
}

.cart-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 0.7rem;
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.qty-btn,
.remove-btn,
.close-btn {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
}

.remove-btn {
  width: auto;
  padding: 0 0.6rem;
  color: #8c2a24;
  font-size: 0.9rem;
}

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

.site-footer {
  background: var(--navy);
  color: rgba(255, 250, 240, 0.75);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(200px, 0.55fr) minmax(240px, 0.75fr);
  gap: 4rem;
  padding: 4.5rem 0;
}

.footer-main h3 {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 1.25rem;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 250, 240, 0.12);
  color: rgba(255, 250, 240, 0.52);
  font-size: 0.95rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hidden {
  display: none !important;
}

@media (max-width: 1160px) {
  .nav-links,
  .nav-actions .button {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .mobile-panel {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: none;
    max-height: calc(100svh - var(--header-height));
    overflow-y: auto;
    background: var(--navy);
    border-top: 1px solid rgba(196, 146, 47, 0.2);
    padding: 1rem;
    box-shadow: 0 18px 36px rgba(8, 15, 27, 0.28);
  }

  .mobile-open .mobile-panel {
    display: block;
  }

  .mobile-panel nav {
    display: grid;
    gap: 0.25rem;
  }

  .mobile-panel a {
    padding: 0.9rem 0;
    color: rgba(255, 250, 240, 0.84);
    border-bottom: 1px solid rgba(196, 146, 47, 0.12);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.9rem;
  }

  .mobile-panel a.is-active {
    color: var(--gold-2);
  }

  .split,
  .journey-grid,
  .product-hero-grid,
  .contact-grid,
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
  }
}

@media (max-width: 780px) {
  :root {
    --header-height: 72px;
  }

  h1 {
    font-size: 2.35rem;
  }

  body {
    font-size: 17px;
  }

  .shell {
    width: min(100% - 1.25rem, 1280px);
  }

  .header-inner {
    gap: 0.6rem;
    min-width: 0;
  }

  .cookie-banner {
    left: 0.7rem;
    right: 0.7rem;
    bottom: max(0.7rem, env(safe-area-inset-bottom));
  }

  .cookie-banner-panel {
    display: grid;
    gap: 0.8rem;
    padding: 0.85rem;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-choice {
    flex: 1;
  }

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

  .brand > span {
    min-width: 0;
  }

  .brand-main {
    font-size: 1.05rem;
  }

  .brand-sub {
    font-size: 0.72rem;
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    min-height: 86svh;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(17, 32, 53, 0.78), rgba(17, 32, 53, 0.64) 46%, rgba(17, 32, 53, 0.96)),
      url("/assets/hero-captain-cooks-kava.jpg") 44% center / cover no-repeat;
  }

  .hero-content {
    padding: 3rem 0 2.4rem;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .hero .eyebrow {
    letter-spacing: 0.18em;
  }

  .hero-quote {
    max-width: 22rem;
    font-size: 1.12rem;
    overflow-wrap: break-word;
  }

  .hero-actions,
  .product-actions {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

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

  .product-grid,
  .prep-grid,
  .local-language-grid,
  .reviews-grid,
  .field-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .product-card-media {
    aspect-ratio: 4 / 3;
  }

  .page-hero {
    padding: calc(var(--header-height) + 3.75rem) 0 3.25rem;
  }

  .page-hero .lead {
    font-size: 1.08rem;
  }

  .product-hero {
    padding: calc(var(--header-height) + 2rem) 0 3rem;
  }

  .product-hero-region::before {
    background-position: 37% center;
  }

  .product-hero-region::after {
    background:
      linear-gradient(180deg, rgba(17, 32, 53, 0.86), rgba(17, 32, 53, 0.64) 42%, rgba(17, 32, 53, 0.96)),
      linear-gradient(90deg, rgba(17, 32, 53, 0.86), rgba(17, 32, 53, 0.52));
  }

  .back-link {
    margin-bottom: 1.35rem;
  }

  .product-hero-grid {
    gap: 1.75rem;
  }

  .product-hero-copy {
    display: contents;
  }

  .product-hero-grid > *,
  .product-hero-copy > * {
    min-width: 0;
    width: min(100%, calc(100vw - 1.25rem));
    max-width: 100%;
    justify-self: stretch;
  }

  .product-hero-copy > .eyebrow {
    order: 1;
  }

  .product-hero-copy > h1 {
    order: 2;
  }

  .product-media-stack {
    order: 3;
    margin: 0.2rem 0 0.35rem;
  }

  .product-hero-copy > .price-line {
    order: 4;
  }

  .product-hero-copy > .product-badges {
    order: 5;
  }

  .product-hero-copy > p:not([class]) {
    order: 6;
    overflow-wrap: anywhere;
  }

  .product-hero-copy > .origin-caption {
    order: 7;
    flex-wrap: wrap;
    overflow-wrap: anywhere;
  }

  .product-free-shipping {
    width: 100%;
  }

  .product-hero-copy > .product-free-shipping {
    order: 8;
  }

  .product-hero-copy > .button {
    order: 9;
    margin-top: 0.45rem;
  }

  .product-hero-copy > .product-trust-line {
    order: 10;
  }

  .product-profile {
    order: 11;
  }

  .product-quote {
    order: 12;
  }

  .product-hero-image img {
    aspect-ratio: 4 / 3;
  }

  .product-receive-card {
    grid-template-columns: 96px minmax(0, 1fr);
    padding: 0.75rem;
  }

  .product-receive-card figcaption {
    font-size: 0.92rem;
  }

  .product-profile {
    margin: 1.35rem 0;
    padding: 1.2rem 0;
  }

  .profile-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    text-align: left;
  }

  .profile-grid div {
    display: flex;
    align-items: center;
    gap: 0.85rem;
  }

  .profile-grid .round-icon {
    margin: 0;
  }

  .product-hero .button,
  #checkout-submit {
    width: 100%;
  }

  .product-trust-line {
    text-align: center;
  }

  .origin-caption {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .checkout-grid {
    gap: 1.2rem;
  }

  .checkout-summary {
    order: -1;
  }

  .review-form {
    position: static;
  }

  .note-card,
  .form-card {
    padding: 1.25rem;
  }

  .local-language-panel {
    padding-top: 1.25rem;
  }

  .local-language-panel-el {
    margin-top: 1.5rem;
  }

  .story-figure figcaption {
    position: static;
    margin-top: 0.8rem;
    color: var(--ink-soft);
  }

  .footer-bottom {
    display: grid;
  }

  .footer-main {
    gap: 2rem;
  }

  .timeline-item {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .stat-row {
    gap: 1rem;
  }

  .stat {
    width: calc(50% - 0.5rem);
    min-width: 0;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.35rem;
  }

  .hero .eyebrow {
    font-size: 0.74rem;
    letter-spacing: 0.14em;
  }

  .hero {
    min-height: 82svh;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(17, 32, 53, 0.8), rgba(17, 32, 53, 0.66) 44%, rgba(17, 32, 53, 0.96)),
      url("/assets/hero-captain-cooks-kava.jpg") 42% center / cover no-repeat;
  }

  .hero-content {
    padding: 2.2rem 0 2rem;
  }

  .hero-quote {
    margin: 1.35rem auto 1.6rem;
    font-size: 1.05rem;
  }

  .hero cite {
    font-size: 0.78rem;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .brand-main {
    font-size: 0.98rem;
  }

  .brand-sub {
    letter-spacing: 0.22em;
  }

  .nav-actions {
    gap: 0.15rem;
  }

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

  .button {
    min-height: 46px;
    padding-inline: 1rem;
    letter-spacing: 0.08em;
  }

  .section {
    padding: 3.25rem 0;
  }

  .section-title {
    margin-bottom: 2rem;
  }

  .page-hero {
    padding: calc(var(--header-height) + 3rem) 0 2.6rem;
  }

  .lead,
  .copy-block p,
  .story-who-copy p {
    font-size: 1.06rem;
  }

  .framed-image {
    padding: 0.65rem;
  }

  .product-card-body {
    padding: 1.15rem;
  }

  .product-meta {
    gap: 0.65rem;
    margin-bottom: 0.75rem;
  }

  .round-icon {
    width: 38px;
    height: 38px;
  }

  .product-tag {
    font-size: 0.76rem;
    letter-spacing: 0.12em;
  }

  .product-actions {
    gap: 0.65rem;
    padding-top: 1rem;
  }

  .product-badges {
    gap: 0.4rem;
  }

  .product-size-badge {
    min-height: 1.55rem;
    padding-inline: 0.55rem;
    font-size: 0.68rem;
  }

  .product-quote {
    padding: 1rem 1.05rem;
  }

  .product-quote p,
  .history-quote {
    font-size: 1.2rem;
  }

  .review-card {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1rem;
  }

  .review-rating {
    white-space: normal;
  }

  .prep-note,
  .checkout-free-shipping {
    padding: 0.85rem;
  }

  .field {
    margin-bottom: 0.8rem;
  }

  .field input,
  .field select,
  .field textarea {
    min-width: 0;
    padding: 0.72rem 0.8rem;
  }

  .summary-line,
  .cart-line {
    align-items: flex-start;
    gap: 0.75rem;
  }

  .summary-total {
    font-size: 1.3rem;
  }

  .drawer-head,
  .drawer-body {
    padding: 1rem;
  }

  .drawer-foot {
    padding: 1rem;
    padding-bottom: max(1rem, env(safe-area-inset-bottom));
  }

  .cart-item {
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 0.8rem;
  }

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

  .history-intro p:first-child::first-letter {
    font-size: 3.25rem;
  }

  .profile-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .profile-grid div {
    display: flex;
    align-items: center;
    gap: 0.85rem;
  }

  .profile-grid .round-icon {
    margin: 0;
  }

  .stat {
    width: 100%;
    border-right: 0;
  }

  .story-signoff {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
  }
}
