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

.brand-mark {
  width: 34px;
  height: 34px;
  color: var(--gold);
  flex: 0 0 auto;
}

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

.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-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.38em;
  text-transform: uppercase;
}

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

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

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

.hero {
  min-height: 100svh;
  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.48) 42%, rgba(17, 32, 53, 0.96)),
    url("/assets/hero-ship.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);
}

.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-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.2em;
  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-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 {
  padding: calc(var(--header-height) + 3rem) 0 4rem;
  background: linear-gradient(180deg, var(--navy), var(--navy-2));
  color: var(--white);
}

.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-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-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

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

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

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

.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-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);
}

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

.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: 1050px) {
  .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;
    background: var(--navy);
    border-top: 1px solid rgba(196, 146, 47, 0.2);
    padding: 1rem;
  }

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

  .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.65rem;
  }

  body {
    font-size: 17px;
  }

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

  .brand {
    min-width: 0;
  }

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

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

  .section {
    padding: 4rem 0;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-content {
    padding-top: 3rem;
  }

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

  .hero-quote {
    font-size: 1.12rem;
  }

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

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

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

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

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

  .hero-quote {
    font-size: 1.05rem;
  }

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

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

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

  .nav-actions {
    gap: 0.15rem;
  }

  .button {
    padding-inline: 1rem;
    letter-spacing: 0.08em;
  }

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