:root {
  --blue: #0a3a8c;
  --blue-mid: #1a56c4;
  --blue-deep: #041e4a;
  --blue-soft: #c9dbff;
  --orange: #ff6a00;
  --orange-hot: #ff8a2a;
  --ink: #0f172a;
  --muted: #475569;
  --paper: #f4f7fc;
  --line: rgba(10, 58, 140, 0.11);
  --shadow: 0 20px 50px rgba(4, 30, 74, 0.14);
  --radius: 22px;
  --max: 1140px;
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Sora", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  background-color: var(--paper);
  background-image:
    radial-gradient(ellipse 900px 500px at 0% 0%, rgba(26, 86, 196, 0.16), transparent 60%),
    radial-gradient(ellipse 700px 420px at 100% 5%, rgba(255, 106, 0, 0.12), transparent 55%),
    radial-gradient(ellipse 800px 500px at 50% 100%, rgba(26, 86, 196, 0.08), transparent 60%),
    linear-gradient(180deg, #e8f0ff 0%, var(--paper) 28%, #ffffff 70%, #eef3fb 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--blue-mid);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--orange);
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip:focus {
  left: 12px;
  z-index: 100;
  background: #fff;
  padding: 8px 12px;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Nav */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(244, 247, 252, 0.82);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}

.site-nav.scrolled {
  box-shadow: 0 8px 28px rgba(4, 30, 74, 0.08);
}

.site-nav .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--blue-deep);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.brand img {
  width: 44px;
  height: 44px;
  transition: transform 0.35s ease;
}

.brand:hover img {
  transform: rotate(-8deg) scale(1.05);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2rem 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.35rem 0.15rem;
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--blue-mid));
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--blue-deep);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex !important;
  padding: 0.5rem 0.95rem !important;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-hot));
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(255, 106, 0, 0.28);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  color: #fff !important;
  filter: brightness(1.05);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 0.5rem 0.8rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(94vh, 920px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  transform: scale(1.06);
  animation: heroDrift 20s ease-in-out infinite alternate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 40% at 75% 25%, rgba(255, 106, 0, 0.22), transparent 55%),
    linear-gradient(115deg, rgba(4, 30, 74, 0.72) 0%, rgba(4, 30, 74, 0.35) 42%, rgba(4, 30, 74, 0.15) 62%, rgba(4, 30, 74, 0.75) 100%),
    linear-gradient(180deg, transparent 35%, rgba(4, 30, 74, 0.92) 100%);
}

.hero-copy {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 5.5rem 0 4rem;
  color: #fff;
  animation: riseIn 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.2vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.hero-brand img {
  width: clamp(52px, 8vw, 78px);
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
  animation: logoPulse 5s ease-in-out infinite;
}

.hero h1 {
  margin: 0 0 0.9rem;
  max-width: 15ch;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5.8vw, 3.85rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 800;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.hero-lead {
  margin: 0 0 1.75rem;
  max-width: 36ch;
  font-size: clamp(1.02rem, 2.2vw, 1.22rem);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.55;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.95rem 1.4rem;
  border-radius: 14px;
  border: 0;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, #ff8f2e 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(255, 106, 0, 0.35);
}

.btn-primary:hover {
  color: #fff;
  box-shadow: 0 18px 34px rgba(255, 106, 0, 0.42);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

/* Drink ribbon */
.drink-ribbon {
  position: relative;
  z-index: 2;
  margin-top: -2.5rem;
  margin-bottom: 0.5rem;
}

.drink-ribbon-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem 0 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.drink-ribbon-track::-webkit-scrollbar {
  height: 6px;
}

.drink-ribbon-track::-webkit-scrollbar-thumb {
  background: var(--blue-soft);
  border-radius: 99px;
}

.ribbon-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 110px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  padding: 0.85rem 0.5rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.ribbon-item:hover {
  transform: translateY(-6px);
  color: inherit;
}

.ribbon-item img {
  width: 78px;
  height: 92px;
  object-fit: contain;
  margin: 0 auto 0.4rem;
}

.ribbon-item span {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue-deep);
}

/* Sections */
.section {
  padding: clamp(3.75rem, 7vw, 6rem) 0;
  position: relative;
}

.section-band {
  background:
    linear-gradient(180deg, rgba(26, 86, 196, 0.05), rgba(255, 255, 255, 0.4) 40%, rgba(255, 106, 0, 0.04));
  border-block: 1px solid var(--line);
}

.section-band-warm {
  background:
    linear-gradient(180deg, rgba(255, 106, 0, 0.05), rgba(255, 255, 255, 0.5) 45%, rgba(26, 86, 196, 0.04));
}

.section-head {
  max-width: 42rem;
  margin-bottom: 2.15rem;
}

.section-head h2 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--blue-deep);
  position: relative;
  display: inline-block;
}

.section-head h2::after {
  content: "";
  display: block;
  width: 3.2rem;
  height: 4px;
  margin-top: 0.7rem;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--orange), var(--blue-mid));
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.prose p {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 68ch;
}

.prose h3 {
  margin: 1.85rem 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.22rem;
  color: var(--blue-deep);
}

.disclaimer {
  margin-top: 1rem;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--orange);
  border-radius: 0 14px 14px 0;
  background: linear-gradient(90deg, rgba(255, 106, 0, 0.1), rgba(255, 106, 0, 0.02));
  color: var(--muted);
  font-size: 0.92rem;
}

/* Popular picks */
.picks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.pick {
  text-align: center;
  padding: 1.5rem 1.15rem 1.65rem;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.95), transparent 45%),
    linear-gradient(165deg, #ffffff 0%, #eef4ff 100%);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(4, 30, 74, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
}

.pick::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 55%;
  background: radial-gradient(ellipse at center, rgba(255, 106, 0, 0.12), transparent 70%);
  pointer-events: none;
}

.pick:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.pick img {
  position: relative;
  width: min(230px, 100%);
  margin: 0 auto 1.1rem;
  filter: drop-shadow(0 16px 28px rgba(4, 30, 74, 0.2));
  animation: floatY 4.8s ease-in-out infinite;
}

.pick:nth-child(2) img {
  animation-delay: 0.45s;
}

.pick:nth-child(3) img {
  animation-delay: 0.9s;
}

.pick h3 {
  position: relative;
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.22rem;
  color: var(--blue-deep);
}

.pick p {
  position: relative;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  text-align: left;
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

th,
td {
  padding: 0.9rem 1.05rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
}

tr:last-child td {
  border-bottom: 0;
}

tbody tr {
  transition: background 0.2s ease;
}

tbody tr:hover td {
  background: rgba(26, 86, 196, 0.06);
}

tr:nth-child(even) td {
  background: rgba(10, 58, 140, 0.025);
}

/* Calculator */
.calc {
  display: grid;
  gap: 1.15rem;
  padding: 1.65rem;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, #ffffff 0%, #eef4ff 55%, #fff5eb 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.calc::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.18), transparent 70%);
  pointer-events: none;
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.field label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue-deep);
}

.field select,
.field input[type="number"] {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  background: rgba(255, 255, 255, 0.95);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field select:focus,
.field input[type="number"]:focus {
  outline: none;
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(26, 86, 196, 0.15);
}

.addons {
  display: grid;
  gap: 0.5rem;
}

.addons label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.95rem;
  padding: 0.45rem 0.6rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.55);
}

.calc-total {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  color: var(--blue-deep);
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px dashed rgba(10, 58, 140, 0.2);
}

.calc-note {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* Category lineup */
.cat-list {
  display: grid;
  gap: 1rem;
}

.cat-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1.35rem;
  align-items: center;
  padding: 1.2rem 1.35rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 8px 24px rgba(4, 30, 74, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.cat-row:nth-child(odd) {
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.95), rgba(232, 240, 255, 0.75));
}

.cat-row:nth-child(even) {
  background: linear-gradient(100deg, rgba(255, 248, 240, 0.9), rgba(255, 255, 255, 0.95));
}

.cat-row:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow);
  border-color: rgba(26, 86, 196, 0.18);
}

.cat-row img {
  width: 125px;
  height: 145px;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 12px 22px rgba(4, 30, 74, 0.16));
  transition: transform 0.3s ease;
}

.cat-row:hover img {
  transform: scale(1.06) rotate(-2deg);
}

.cat-row h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.22rem;
  color: var(--blue-deep);
}

.cat-row p {
  margin: 0 0 0.65rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.cat-row p:last-child {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .cat-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cat-row:hover {
    transform: translateY(-4px);
  }
}

/* Feature bands */
.feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.25rem;
  align-items: center;
}

.feature.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.feature.reverse .feature-visual {
  order: 2;
}

.feature-visual {
  display: flex;
  justify-content: center;
  padding: 1.75rem;
  border-radius: calc(var(--radius) + 4px);
  background:
    radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.95), transparent 55%),
    linear-gradient(155deg, #cfe0ff 0%, #fff 45%, #ffe8d2 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7), var(--shadow);
  position: relative;
  overflow: hidden;
}

.feature-visual::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  right: -40px;
  bottom: -50px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.2), transparent 70%);
}

.feature-visual img {
  position: relative;
  z-index: 1;
  width: min(290px, 100%);
  filter: drop-shadow(0 18px 34px rgba(4, 30, 74, 0.22));
  animation: floatY 5.5s ease-in-out infinite;
}

.feature-visual.wide img {
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  filter: none;
  animation: none;
  box-shadow: 0 16px 40px rgba(4, 30, 74, 0.18);
}

.list-clean {
  margin: 0.75rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.list-clean li {
  margin-bottom: 0.45rem;
}

.list-clean li::marker {
  color: var(--orange);
}

/* Tips */
.tip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.tip {
  padding: 1.4rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #fff, #f3f7ff);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(4, 30, 74, 0.05);
  transition: transform 0.25s ease;
}

.tip:hover {
  transform: translateY(-4px);
}

.tip h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--blue-deep);
}

.tip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* FAQ */
.faq {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 0.35rem 1.25rem 0.85rem;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.faq details:last-child {
  border-bottom: 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--blue-deep);
  font-family: var(--font-display);
  list-style: none;
  font-size: 1.05rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--orange);
  font-weight: 800;
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  margin: 0.7rem 0 0.2rem;
  color: var(--muted);
  padding-right: 1.5rem;
}

/* Footer */
.site-footer {
  padding: 3rem 0 3.25rem;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, transparent, rgba(10, 58, 140, 0.08)),
    linear-gradient(135deg, #041e4a 0%, #0a3a8c 55%, #163f7a 100%);
  color: rgba(255, 255, 255, 0.82);
}

.site-footer .brand {
  color: #fff;
}

.site-footer .inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: space-between;
  align-items: center;
}

.site-footer p {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  max-width: 52ch;
}

.site-footer .inner > p {
  margin: 0;
}

.updated {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--blue);
  font-weight: 700;
}

/* Motion */
@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.06) translateY(0);
  }
  to {
    transform: scale(1.12) translateY(-2%);
  }
}

@keyframes logoPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .picks,
  .feature,
  .feature.reverse,
  .tip-grid,
  .calc-grid {
    grid-template-columns: 1fr;
  }

  .feature.reverse .feature-visual {
    order: 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    padding: 0.5rem 0 0.75rem;
  }

  .site-nav.open .nav-links {
    display: flex;
  }

  .site-nav .inner {
    flex-wrap: wrap;
  }

  .pick p {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

.site-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
  margin: 0.85rem 0 0.5rem;
}

.site-footer .footer-links a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
}

.site-footer .footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer .footer-contact {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
}

.site-footer .footer-contact a {
  color: #fff;
}

.inner-page-hero {
  display: block;
  max-width: 260px;
  margin: 0 auto 1.75rem;
  filter: drop-shadow(0 14px 24px rgba(4, 30, 74, 0.18));
}

/* Inner pages */
.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
  color: #fff;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 55% 45% at 85% 15%, rgba(255, 106, 0, 0.28), transparent 55%),
    linear-gradient(125deg, rgba(4, 30, 74, 0.92) 0%, rgba(10, 58, 140, 0.78) 45%, rgba(4, 30, 74, 0.88) 100%);
}

.page-hero-inner {
  animation: riseIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #fff;
}

.page-badge {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.22);
  border: 1px solid rgba(255, 180, 120, 0.45);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-hero h1 {
  margin: 0 0 0.85rem;
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.page-lead {
  margin: 0 0 1.5rem;
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.6;
}

.page-hero-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 180px));
  gap: 0.85rem;
}

.page-hero-images figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.page-hero-images img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.page-shell {
  margin-top: -1.25rem;
  padding-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 1.5rem;
  align-items: start;
}

.page-main {
  min-width: 0;
}

.page-sidebar {
  position: sticky;
  top: 5.5rem;
  display: grid;
  gap: 1rem;
}

.sidebar-card {
  padding: 1.2rem 1.15rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(4, 30, 74, 0.06);
}

.sidebar-label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
}

.sidebar-card h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--blue-deep);
}

.sidebar-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-nav li {
  margin-bottom: 0.35rem;
}

.sidebar-nav a {
  display: block;
  padding: 0.45rem 0.65rem;
  border-radius: 10px;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.sidebar-nav li.active a,
.sidebar-nav a:hover {
  background: linear-gradient(90deg, rgba(255, 106, 0, 0.12), rgba(26, 86, 196, 0.08));
  color: var(--blue-deep);
}

.sidebar-cta p:last-of-type {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.sidebar-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.stat-pill {
  flex: 1 1 140px;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: linear-gradient(160deg, #fff, #eef4ff);
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(4, 30, 74, 0.05);
}

.stat-pill strong {
  display: block;
  font-family: var(--font-display);
  color: var(--blue-deep);
  font-size: 1.02rem;
}

.stat-pill span {
  color: var(--muted);
  font-size: 0.84rem;
}

.content-card {
  margin-bottom: 1.15rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(4, 30, 74, 0.06);
}

.content-card .section-head {
  margin-bottom: 1.15rem;
}

.content-card p,
.content-card li {
  color: var(--muted);
}

.content-card h3 {
  margin: 1.25rem 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--blue-deep);
}

.content-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.15rem;
  align-items: start;
}

.callout {
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.callout strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  color: var(--blue-deep);
}

.callout p {
  margin: 0;
  font-size: 0.94rem;
}

.callout-tip {
  background: linear-gradient(135deg, rgba(26, 86, 196, 0.08), rgba(255, 255, 255, 0.9));
  border-left: 4px solid var(--blue-mid);
}

.callout-warn {
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.1), rgba(255, 255, 255, 0.92));
  border-left: 4px solid var(--orange);
}

.callout-example {
  margin-top: 1rem;
  background: #f8faff;
}

.callout-note {
  margin-bottom: 1.15rem;
  background: #fff;
  color: var(--muted);
  font-size: 0.92rem;
}

.drink-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.drink-card {
  position: relative;
  padding: 1rem 1rem 1.05rem;
  border-radius: 16px;
  background: linear-gradient(165deg, #ffffff 0%, #f3f7ff 100%);
  border: 1px solid var(--line);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.drink-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(4, 30, 74, 0.08);
}

.drink-tag {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.12);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.drink-card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--blue-deep);
}

.drink-card p {
  margin: 0;
  font-size: 0.9rem;
}

.flavor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.flavor-tags span {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(26, 86, 196, 0.1), rgba(255, 106, 0, 0.08));
  border: 1px solid var(--line);
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 600;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: #f8faff;
  border: 1px solid var(--line);
  counter-increment: step;
}

.steps {
  counter-reset: step;
}

.steps li::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-hot));
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
  flex-shrink: 0;
}

.steps li strong {
  display: block;
  color: var(--blue-deep);
  font-family: var(--font-display);
}

.steps li span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-box {
  margin-top: 0.85rem;
  padding: 1.1rem 1.15rem;
  border-radius: 16px;
  background: linear-gradient(160deg, #f3f7ff, #fff);
  border: 1px solid var(--line);
}

.contact-email {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.contact-email a {
  text-decoration: none;
  color: var(--blue-deep);
}

.page-cta-band {
  padding: clamp(2rem, 4vw, 2.75rem) 0;
  background:
    linear-gradient(135deg, rgba(4, 30, 74, 0.96), rgba(10, 58, 140, 0.92)),
    radial-gradient(circle at 100% 0%, rgba(255, 106, 0, 0.25), transparent 45%);
  color: #fff;
}

.page-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.page-cta-inner h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
}

.page-cta-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  max-width: 42ch;
}

.related-strip {
  padding-top: 0.5rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.related-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 22px rgba(4, 30, 74, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  color: inherit;
}

.related-card img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.related-card strong {
  display: block;
  font-family: var(--font-display);
  color: var(--blue-deep);
  font-size: 0.95rem;
}

.related-card span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.related-home img {
  object-fit: contain;
  background: #f3f7ff;
  padding: 0.35rem;
}

@media (max-width: 960px) {
  .page-layout {
    grid-template-columns: 1fr;
  }

  .page-sidebar {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .page-hero h1 {
    max-width: none;
  }

  .page-hero-images {
    grid-template-columns: 1fr 1fr;
  }

  .content-split,
  .drink-grid,
  .sidebar-card,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .page-sidebar {
    grid-template-columns: 1fr;
  }
}
