:root {
  --forest: #1A3328;
  --forest-soft: #243D32;
  --forest-deep: #0E1F16;
  --green: #1A3328;
  --green-dark: #0E1F16;
  --gold: #C49A6C;
  --gold-light: #D4AC80;
  --gold-soft: #E2C8A6;
  --cream: #FDFBF6;
  --mist: #F0E9DA;
  --surface: #FDFBF6;
  --surface-strong: #EDE6D6;
  --ink: #162B20;
  --muted: #5c675f;
  --line: rgba(26, 51, 40, 0.10);
  --shadow-soft: 0 14px 40px rgba(14, 31, 22, 0.10);
  --shadow-card: 0 18px 46px rgba(14, 31, 22, 0.09);
  --header-height: 76px;
  --header-height-mobile: 124px;
}

@font-face {
  font-family: 'Cormorant Garamond Fallback';
  src: local('Times New Roman');
  size-adjust: 119%;
  ascent-override: 83%;
  descent-override: 20%;
  line-gap-override: 0%;
}

@font-face {
  font-family: 'Inter Fallback';
  src: local('Arial');
  size-adjust: 107%;
  ascent-override: 90%;
  descent-override: 22%;
  line-gap-override: 0%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

body.subpage {
  margin: 0;
  font-family: 'Inter', 'Inter Fallback', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(196, 154, 108, 0.10), transparent 30%),
    linear-gradient(180deg, #FDFBF6 0%, #F5EFE4 34%, #F0E9DA 100%);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  background: #111;
  color: #fff;
  border-radius: 8px;
  z-index: 12000;
}

.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10010;
  background: rgba(249, 247, 242, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(27, 38, 32, 0.08);
  box-shadow: 0 4px 16px rgba(27, 38, 32, 0.1);
  transition: box-shadow 0.24s ease, border-color 0.24s ease;
}

.sticky-nav.is-scrolled {
  box-shadow: 0 4px 16px rgba(27, 38, 32, 0.12);
  border-bottom-color: rgba(27, 38, 32, 0.14);
}

.nav-content {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(12px + env(safe-area-inset-top, 0px)) 4vw 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nav-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: 'Cormorant Garamond', 'Cormorant Garamond Fallback', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.07em;
  line-height: 1;
}

.nav-brand img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}

.nav-brand span {
  font: inherit;
  letter-spacing: inherit;
  color: inherit;
  line-height: inherit;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  gap: 12px;
}

.desktop-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
  padding-right: 2px;
}

.desktop-nav-links::-webkit-scrollbar {
  display: none;
}

.desktop-nav-link {
  position: relative;
  flex: 0 0 auto;
  text-decoration: none;
  color: rgba(10, 40, 23, 0.82);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 999px;
  transition: color 0.24s ease, background 0.24s ease;
}

.desktop-nav-link:hover {
  color: var(--green);
  background: rgba(27, 38, 32, 0.06);
}

.desktop-nav-link.active {
  color: var(--green);
  background: rgba(27, 38, 32, 0.09);
}

.desktop-nav-link.active::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.nav-cart-btn {
  border: 1px solid rgba(18, 53, 34, 0.2);
  background: var(--surface);
  color: var(--forest);
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 14px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.nav-cart-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(217, 197, 178, 0.8);
  box-shadow: 0 8px 22px rgba(27, 38, 32, 0.12);
}

.nav-cart-count {
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}

.page-main {
  position: relative;
  z-index: 1;
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: calc(var(--header-height-mobile) + 14px) 0 58px;
}

.page-toast {
  position: fixed;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 12020;
  background: linear-gradient(135deg, var(--forest), var(--forest-soft));
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 16px 38px rgba(13, 40, 28, 0.24);
  opacity: 0;
  visibility: hidden;
  transition: top 0.28s ease, opacity 0.28s ease;
}

.page-toast.show {
  top: calc(14px + env(safe-area-inset-top, 0px));
  opacity: 1;
  visibility: visible;
}

.page-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: center;
  text-align: center;
  border-radius: 30px;
  padding: 48px 48px;
  background:
    radial-gradient(circle at 20% 50%, rgba(157, 124, 42, 0.15), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(184, 148, 31, 0.1), transparent 40%),
    linear-gradient(135deg, #0E1F16 0%, #1A3328 42%, #1E3D2E 100%);
  color: #f7f4ed;
  box-shadow: var(--shadow-soft);
  margin-bottom: 28px;
}

.page-hero-story {
}

.page-hero-contact {
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: auto -100px -140px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 124, 42, 0.18), transparent 68%);
  pointer-events: none;
}

.hero-eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(223, 191, 154, 0.94);
}

.page-hero h1 {
  margin: 0;
  font-family: 'Cormorant Garamond', 'Cormorant Garamond Fallback', serif;
  font-size: clamp(2.2rem, 10vw, 3.6rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
  font-weight: 700;
  max-width: none;
}

.page-hero p {
  margin: 12px auto 0;
  max-width: 64ch;
  color: rgba(248, 243, 232, 0.84);
  font-size: clamp(0.9rem, 3.4vw, 0.98rem);
  font-weight: 300;
  line-height: 1.78;
}

.hero-pill-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  background: rgba(247, 243, 233, 0.12);
  border: 1px solid rgba(247, 243, 233, 0.18);
  color: rgba(247, 243, 233, 0.96);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.section-block {
  margin-top: 20px;
}

.story-clarity-section {
  margin-top: 12px;
}

.story-clarity-section .viscosity-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  padding: clamp(22px, 4vw, 36px);
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(27, 38, 32, 0.14);
  box-shadow: 0 4px 16px rgba(14, 31, 22, 0.08), 0 16px 40px rgba(14, 31, 22, 0.05);
  overflow: hidden;
}

.story-clarity-section .viscosity-copy {
  display: grid;
  align-content: start;
}

.story-clarity-section .section-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.story-clarity-section .section-title {
  max-width: 11ch;
  font-size: clamp(2.3rem, 5vw, 3.3rem);
  line-height: 0.98;
}

.story-clarity-section .lead {
  max-width: 40ch;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.78;
}

.story-clarity-section .viscosity-visual {
  position: relative;
  min-height: 320px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0) 18%),
    radial-gradient(circle at 64% 44%, rgba(196, 154, 108, 0.44) 0%, rgba(196, 154, 108, 0.08) 30%, transparent 62%),
    linear-gradient(135deg, rgba(253, 251, 246, 0.2), rgba(196, 154, 108, 0.48) 46%, rgba(170, 138, 110, 0.22) 100%);
}

.story-clarity-section .viscosity-visual::before {
  content: '';
  position: absolute;
  inset: -8% -10% 48% auto;
  width: 62%;
  border-radius: 999px 999px 60% 60%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 247, 242, 0.3) 25%, rgba(217, 197, 178, 0.94) 85%, rgba(178, 151, 127, 0.82));
  filter: blur(2px);
  box-shadow: 0 24px 46px rgba(132, 107, 86, 0.24);
  transform: rotate(14deg);
}

.story-clarity-section .viscosity-visual::after {
  content: '';
  position: absolute;
  inset: 34% 12% 14% 16%;
  border-radius: 44px;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.4), transparent 12%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(249, 247, 242, 0)),
    linear-gradient(120deg, rgba(150, 123, 100, 0.1), rgba(217, 197, 178, 0.16));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.story-clarity-section .viscosity-caption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(249, 247, 242, 0.72);
  color: rgba(24, 33, 29, 0.66);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-head {
  margin-bottom: 16px;
}

.section-head-centered {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  margin: 0;
  font-family: 'Cormorant Garamond', 'Cormorant Garamond Fallback', serif;
  font-size: clamp(1.95rem, 7vw, 2.9rem);
  line-height: 0.96;
  color: var(--forest);
  letter-spacing: -0.03em;
  font-weight: 700;
}

.section-copy {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.76;
  max-width: 760px;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-card {
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(27, 38, 32, 0.14);
  box-shadow: 0 4px 16px rgba(14, 31, 22, 0.08), 0 16px 40px rgba(14, 31, 22, 0.05);
  padding: 18px;
}

.page-card h2,
.page-card h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', 'Cormorant Garamond Fallback', serif;
  color: var(--forest);
  letter-spacing: -0.024em;
  font-weight: 700;
}

.page-card h2 {
  font-size: clamp(1.5rem, 6vw, 2rem);
}

.page-card h3 {
  font-size: clamp(1.25rem, 5vw, 1.7rem);
}

.page-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.76;
}

.journey-section .card-grid {
  align-items: stretch;
}

.promise-section > .page-card {
  padding: 22px;
}

.why-choose-grid {
  gap: 16px;
}

.why-choose-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 126px;
  border-radius: 18px;
}

.why-choose-card h3 {
  font-size: clamp(1.1rem, 3.2vw, 1.45rem);
}

.why-choose-card p {
  margin-top: 8px;
  font-size: 0.88rem;
  line-height: 1.7;
}

.info-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.info-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.8;
}

.info-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
}

.metric-row {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.metric {
  border-radius: 16px;
  padding: 12px;
  background: rgba(231, 218, 206, 0.5);
  border: 1px solid rgba(217, 197, 178, 0.34);
}

.metric strong {
  display: block;
  color: var(--forest);
  font-size: 1.28rem;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.action-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.action-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.action-btn.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--forest);
}

.action-btn.secondary {
  background: rgba(18, 53, 34, 0.08);
  color: var(--forest);
  border-color: rgba(18, 53, 34, 0.14);
}

.action-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(16, 36, 27, 0.14);
}

.combo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.combo-card {
  display: grid;
  gap: 14px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(27, 38, 32, 0.14);
  box-shadow: 0 4px 16px rgba(14, 31, 22, 0.08), 0 16px 40px rgba(14, 31, 22, 0.05);
  padding: 18px;
}

.combo-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.combo-name {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.9rem, 2.6vw, 1.02rem);
  line-height: 1.4;
  color: var(--forest);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.combo-tag {
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--forest), var(--forest-soft));
  padding: 7px 10px;
  white-space: nowrap;
}

.combo-lines {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.combo-lines li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--muted);
  border-bottom: 1px dashed rgba(18, 53, 34, 0.14);
  padding-bottom: 6px;
}

.combo-lines li strong {
  color: var(--forest);
  font-size: 0.86rem;
  font-weight: 600;
}

.combo-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.combo-price .now {
  font-size: clamp(1.6rem, 7vw, 2.5rem);
  font-weight: 800;
  color: var(--forest);
  line-height: 1;
}

.combo-price .was {
  color: #8a7a61;
  text-decoration: line-through;
  font-weight: 600;
  font-size: 0.95rem;
}

.combo-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.combo-save {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(34, 120, 72, 0.12);
  border: 1px solid rgba(34, 120, 72, 0.2);
  color: #1e6c42;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 7px 11px;
}

.combo-add-btn {
  min-height: 44px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--forest), var(--forest-soft));
  color: #fff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 18px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.combo-add-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(15, 37, 27, 0.2);
}

.contact-layout {
  display: grid;
  gap: 14px;
}

.contact-section {
  align-items: stretch;
}

.contact-card {
  padding: 22px;
}

.contact-intro {
  max-width: 46ch;
  margin-top: 10px;
  font-size: 0.92rem;
  line-height: 1.76;
}

.contact-link-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.contact-link-list a {
  color: var(--forest);
  font-weight: 700;
  text-decoration: none;
}

.contact-link-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(211, 201, 183, 0.7);
  background: rgba(250, 248, 244, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.contact-link-list a:hover {
  color: var(--gold);
}

.contact-link-pill:hover {
  border-color: rgba(196, 154, 108, 0.62);
  background: #fff;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.form-label {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(26, 51, 40, 0.8);
  margin-bottom: 4px;
}

.form-field {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(211, 201, 183, 0.7);
  background: rgba(250, 248, 244, 0.6);
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  font-weight: 300;
  padding: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-card-form .form-field {
  min-height: 46px;
}

.contact-card-form textarea.form-field {
  min-height: 112px;
  resize: vertical;
}

.form-field:focus {
  outline: none;
  border-color: rgba(196, 154, 108, 0.7);
  box-shadow: 0 0 0 3px rgba(196, 154, 108, 0.1);
  background: #fff;
}

.form-row {
  display: grid;
  gap: 10px;
}

.form-help {
  font-size: 12px;
  color: var(--muted);
}

.contact-hours {
  margin-top: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-hours .metric {
  padding: 14px 12px;
  background: rgba(244, 236, 226, 0.64);
}

.contact-hours .metric strong {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.contact-hours .metric span {
  margin-top: 7px;
  font-size: 0.8rem;
  line-height: 1.45;
}

.contact-action-row {
  margin-top: 4px;
}

.contact-card-form .action-btn.primary {
  background: linear-gradient(135deg, var(--forest), var(--forest-soft));
  color: #fff;
  min-width: 148px;
  box-shadow: 0 12px 24px rgba(14, 31, 22, 0.14);
}

.contact-card-form .action-btn.primary:hover {
  box-shadow: 0 14px 28px rgba(14, 31, 22, 0.18);
}

.site-footer {
  margin-top: 0;
  padding: 13px 20px;
  background: linear-gradient(135deg, #0E1F16, #1A3328);
  border-top: 2px solid rgba(196, 154, 108, 0.28);
  color: rgba(253, 251, 246, 0.52);
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  line-height: 1.6;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: rgba(212, 172, 128, 0.82);
  text-decoration: none;
  font-weight: 600;
}

.site-footer a:hover {
  color: var(--gold);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Combo page cart button — clean, independent of cart.css */
.combo-cart-btn {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(18,53,34,0.2);
  background: var(--surface, #f9f7f2);
  color: var(--forest, #1b2620);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease;
  user-select: none;
  position: relative;
}
.combo-cart-btn:hover { transform: translateY(-1px); border-color: rgba(18,53,34,0.4); }

.combo-cart-count {
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--gold, #c49a6c);
  color: var(--forest, #1a3d28);
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

.subpage.has-cart-items .combo-cart-btn {
  display: inline-flex !important;
}

@media (max-width: 768px) {
  .nav-content {
    padding: calc(10px + env(safe-area-inset-top, 0px)) 16px 10px;
  }

  .nav-brand {
    font-size: 20px;
    gap: 10px;
    letter-spacing: 0.08em;
  }

  .nav-brand img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .subpage.has-cart-items .combo-cart-btn .combo-cart-label {
    display: none;
  }
}

@media (min-width: 760px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-section .card-grid {
    gap: 18px;
  }

  .combo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-layout {
    grid-template-columns: 1.05fr 1fr;
    gap: 18px;
  }

  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-row .field-wide {
    grid-column: 1 / -1;
  }

  .metric-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .contact-hours.metric-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .page-hero h1 {
    max-width: none;
  }

  .story-clarity-section .viscosity-panel {
    grid-template-columns: 1fr;
  }

  .story-clarity-section .section-title,
  .story-clarity-section .lead {
    max-width: none;
  }

  .story-clarity-section .section-title {
    font-size: clamp(2.1rem, 8vw, 2.8rem);
  }

  .story-clarity-section .viscosity-visual {
    min-height: 250px;
  }

  .contact-card {
    padding: 20px;
  }
}

@media (min-width: 901px) {
  .nav-content {
    width: 100%;
    max-width: 1280px;
    padding: calc(12px + env(safe-area-inset-top, 0px)) 4vw 12px;
    gap: 12px;
  }

  .nav-top-row {
    gap: 16px;
  }

  .desktop-nav-links {
    overflow: visible;
    gap: 8px;
    padding-bottom: 0;
  }

  .nav-brand img {
    width: 48px;
    height: 48px;
  }

  .nav-brand {
    font-size: 26px;
    letter-spacing: 1.5px;
  }


  .page-main {
    width: min(1220px, 94vw);
    padding-top: calc(var(--header-height) + 42px);
  }

  .page-hero {
    padding: 44px 38px;
    margin-bottom: 34px;
  }

  .combo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* â”€â”€ Nav cart button (matches homepage) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nav-btn {
  padding: 8px 20px;
  border-radius: 999px;
  border: 2px solid var(--green, #1a3d28);
  background: white;
  color: var(--green, #1a3d28);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  white-space: nowrap;
}
.nav-btn.primary {
  background: var(--green, #1a3d28);
  color: white;
}
.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(27, 38, 32, 0.14);
}

/* Mobile compact cart icon (shown only â‰¤720px) */
.mobile-nav-cart {
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(18, 53, 34, 0.07);
  border: none;
  cursor: pointer;
  font-size: 18px;
  -webkit-tap-highlight-color: transparent;
}
.mnc-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--gold, #c49a6c);
  color: var(--green, #1a3d28);
  font-size: 10px;
  font-weight: 800;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.mnc-badge.has-items {
  display: flex;
}

/* Hide floating cart tab — nav buttons replace it */
.cart-tab {
  display: none !important;
}

/* â”€â”€ Mobile hamburger menu â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  padding: 9px;
  border-radius: 12px;
  background: rgba(18, 53, 34, 0.07);
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.hamburger-btn span {
  display: block;
  height: 2px;
  background: var(--green, #1a3d28);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.28s ease, opacity 0.2s ease, width 0.2s ease;
}
.hamburger-btn span:nth-child(3) { width: 65%; align-self: flex-end; }
.hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 100%; }
.hamburger-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 100%; align-self: auto; }

/* ── Mobile nav drawer ── */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 19000;
  background: rgba(0, 0, 0, 0);
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease, background 0.28s ease;
  overflow: hidden;
}
.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.52);
}
.mmo-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.mmo-inner {
  position: relative;
  z-index: 1;
  width: min(82vw, 300px);
  height: 100%;
  background: linear-gradient(170deg, #071510 0%, #0e2218 65%, #071510 100%);
  display: flex;
  flex-direction: column;
  padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 24px);
  transform: translateX(110%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.48);
}
.mobile-menu-overlay.open .mmo-inner {
  transform: translateX(0);
}
.mmo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(env(safe-area-inset-top, 0px) + 18px) 18px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}
.mmo-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mmo-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.mmo-brand-name-row {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.mmo-brand-name {
  font-family: 'Cormorant Garamond', 'Cormorant Garamond Fallback', serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
  line-height: 1;
}
.mmo-brand-tag {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: rgba(196, 154, 108, 0.7);
  font-weight: 500;
  letter-spacing: 0.06em;
}
.mmo-close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s ease;
  flex-shrink: 0;
}
.mmo-close:active { background: rgba(255, 255, 255, 0.14); }
.mmo-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 8px 0;
}
.mmo-link {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.16s ease, background 0.16s ease;
  -webkit-tap-highlight-color: transparent;
  letter-spacing: 0.01em;
}
.mmo-link:last-child { border-bottom: none; }
.mmo-link:active {
  color: var(--gold, #c9a96e);
  background: rgba(255, 255, 255, 0.04);
}
.mmo-link-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.mmo-footer {
  padding: 18px 18px calc(env(safe-area-inset-bottom, 0px) + 4px);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.mmo-cta-btn {
  display: block;
  text-align: center;
  padding: 13px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold, #C49A6C) 0%, #D4AC80 100%);
  color: #2a1800;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.02em;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.18s ease;
}
.mmo-cta-btn:active { opacity: 0.82; }
.mmo-footer-brand { display: none; }
.mmo-footer-sub {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.22);
  text-align: center;
  letter-spacing: 0.08em;
}

@media (max-width: 720px) {
  .hamburger-btn { display: flex; }
  .desktop-nav-links { display: none !important; }
  .nav-btn { display: none !important; }
  .mobile-nav-cart { display: flex; }
}

/* Disable cross-document view transitions on subpages; mobile browsers were
  occasionally leaving the previous page snapshot stuck during Home nav. */
@view-transition { navigation: none; }

.sticky-nav { view-transition-name: site-nav; }

::view-transition-old(site-nav),
::view-transition-new(site-nav) { animation: none; mix-blend-mode: normal; }
::view-transition-group(site-nav) { z-index: 2147483647; }

::view-transition-group(root) { z-index: 2147483646; }
::view-transition-old(root) {
  animation: vt-fade-out 0.2s ease-in both;
}
::view-transition-new(root) {
  animation: vt-fade-in 0.25s ease-out 0.08s both;
}

@keyframes vt-fade-out {
  to { opacity: 0; }
}
@keyframes vt-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
