:root {
  --ink: #0b1220;
  --navy: #12243c;
  --deep: #071018;
  --cyan: #4ec6e6;
  --cyan-deep: #2aa8cc;
  --mist: #d7f1f8;
  --amber: #c9a45a;
  --cream: #f4f0e6;
  --paper: #fbf8f1;
  --white: #ffffff;
  --muted: #5d6876;
  --line: rgba(11, 18, 32, 0.12);
  --shadow: 0 24px 60px rgba(7, 16, 24, 0.18);
  --radius: 22px;
  --header: 84px;
  --max: 1120px;
  --font: "Outfit", system-ui, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  letter-spacing: -0.01em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

button,
input,
textarea {
  font: inherit;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 100;
  padding: 8px 12px;
  background: var(--cyan);
  color: var(--deep);
}

.skip:focus {
  top: 12px;
}

.wrap {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan-deep);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}

h1,
.display {
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.lede {
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.12rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-solid {
  background: var(--cyan);
  color: var(--deep);
}

.btn-solid:hover {
  background: #7ad7f0;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-ink {
  background: var(--ink);
  color: var(--white);
}

.btn-ink:hover {
  background: var(--navy);
}

.btn-line {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.btn-line:hover {
  border-color: var(--ink);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  background: rgba(251, 248, 241, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-text span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--navy);
}

.nav a[aria-current="page"],
.nav a:hover {
  color: var(--cyan-deep);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--header));
  background:
    radial-gradient(circle at 80% 20%, rgba(78, 198, 230, 0.18), transparent 28%),
    linear-gradient(160deg, #071018 0%, #102038 58%, #16324c 100%);
  color: var(--white);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - var(--header));
  padding: 48px 0 32px;
}

.hero h1 {
  margin: 14px 0 18px;
  font-size: clamp(3.2rem, 8vw, 6.4rem);
}

.hero .lede {
  color: rgba(255, 255, 255, 0.74);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  isolation: isolate;
}

.hero-glow {
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 198, 230, 0.35), transparent 68%);
  filter: blur(12px);
  animation: glow-pulse 6s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.9; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.hero-bottle {
  position: relative;
  z-index: 2;
  width: min(360px, 78%);
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.45));
  animation:
    bottle-enter 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both,
    bottle-float 6s ease-in-out 1.6s infinite;
}

@keyframes bottle-enter {
  from {
    opacity: 0;
    transform: translateY(90px) scale(0.94) rotate(-2deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
  }
}

@keyframes bottle-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.ripple-stage {
  position: absolute;
  left: 50%;
  bottom: 6%;
  width: 320px;
  height: 90px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
}

.ripple-ring {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 140px;
  height: 40px;
  border: 1px solid rgba(78, 198, 230, 0.55);
  border-radius: 50%;
  transform: translateX(-50%) scale(0.5);
  opacity: 0;
  animation: ripple 3.6s ease-out infinite;
}

.ripple-ring:nth-child(2) { animation-delay: 1.2s; }
.ripple-ring:nth-child(3) { animation-delay: 2.4s; }

@keyframes ripple {
  0%   { opacity: 0; transform: translateX(-50%) scale(0.5); }
  15%  { opacity: 0.55; }
  100% { opacity: 0; transform: translateX(-50%) scale(2.4); }
}

.bubbles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 3;
}

.bubble {
  position: absolute;
  bottom: 14%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(200, 235, 250, 0.35) 60%, transparent 75%);
  box-shadow: 0 0 6px rgba(78, 198, 230, 0.35);
  opacity: 0;
  animation-name: bubble-up;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

.bubble.b1 { left: 40%; width: 6px;  height: 6px;  animation-duration: 3.4s; animation-delay: 0.6s; }
.bubble.b2 { left: 46%; width: 10px; height: 10px; animation-duration: 4.2s; animation-delay: 1.2s; }
.bubble.b3 { left: 53%; width: 7px;  height: 7px;  animation-duration: 3.6s; animation-delay: 1.8s; }
.bubble.b4 { left: 58%; width: 9px;  height: 9px;  animation-duration: 4.4s; animation-delay: 2.5s; }
.bubble.b5 { left: 44%; width: 5px;  height: 5px;  animation-duration: 3.2s; animation-delay: 3.1s; }
.bubble.b6 { left: 55%; width: 6px;  height: 6px;  animation-duration: 3.8s; animation-delay: 3.7s; }

@keyframes bubble-up {
  0%   { opacity: 0; transform: translateY(20px) scale(0.5); }
  18%  { opacity: 0.85; }
  85%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-320px) scale(1.1); }
}

.reveal {
  animation: reveal-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal.r1 { animation-delay: 0.05s; }
.reveal.r2 { animation-delay: 0.15s; }
.reveal.r3 { animation-delay: 0.3s; }
.reveal.r4 { animation-delay: 0.45s; }

@keyframes reveal-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bottle,
  .reveal,
  .hero-glow {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .bubbles,
  .ripple-stage {
    display: none;
  }
}

/* Full-bleed landscape band */
.landmark {
  position: relative;
  width: 100%;
  height: clamp(280px, 52vh, 520px);
  overflow: hidden;
  background: var(--deep);
}

.landmark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}

.landmark::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(to bottom, transparent, rgba(7, 16, 24, 0.55));
  pointer-events: none;
}

.landmark-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  z-index: 2;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
}

/* Sections */
.section {
  padding: 88px 0;
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 40px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.frame {
  overflow: hidden;
  border-radius: var(--radius);
}

.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brew-frame {
  min-height: 460px;
}

.founder-frame {
  min-height: 440px;
  background: var(--cream);
}

.founder-frame img {
  object-position: center 35%;
}

.founder-copy h2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
}

.founder-copy p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.05rem;
}

.founder-copy .actions a {
  color: var(--ink);
}

.muted {
  color: var(--muted);
}

.note {
  margin-top: 18px;
  color: var(--muted);
}

.benefit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.benefit {
  padding: 26px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.benefit h3 {
  margin: 8px 0 10px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.benefit p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* Flavors */
.flavor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.flavor {
  position: relative;
  min-height: 360px;
  padding: 20px 22px 22px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.flavor::before {
  content: "";
  position: absolute;
  inset: 0 0 38% 0;
  background: radial-gradient(circle at 50% 65%, color-mix(in srgb, var(--accent) 18%, white), white 78%);
  pointer-events: none;
  z-index: 0;
}

.flavor:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 55%, white);
  box-shadow: 0 22px 44px rgba(7, 16, 24, 0.09);
}

.flavor-dragon {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 62%;
  max-width: 180px;
  height: auto;
  z-index: 1;
  filter: drop-shadow(0 10px 22px rgba(7, 16, 24, 0.14));
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.flavor:hover .flavor-dragon {
  transform: translateX(-50%) rotate(-4deg) scale(1.05);
}

.flavor-fruit {
  position: relative;
  z-index: 2;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.flavor h3 {
  position: relative;
  z-index: 2;
  margin: 8px 0 10px;
  font-family: var(--serif);
  font-size: 2.15rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1;
}

.flavor p {
  position: relative;
  z-index: 2;
  color: var(--muted);
  font-size: 0.96rem;
}

.flavor-breath { --accent: #d4453a; }
.flavor-gold   { --accent: #d4a83a; }
.flavor-azure  { --accent: #2aa8cc; }
.flavor-ember  { --accent: #2ea855; }

/* Trait cards (About page, no dragon) */
.trait-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trait {
  padding: 26px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid color-mix(in srgb, var(--accent) 65%, transparent);
  border-radius: var(--radius);
}

.trait-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.trait h3 {
  margin: 10px 0 10px;
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1;
}

.trait p {
  color: var(--muted);
  font-size: 0.96rem;
}

.trait-tea     { --accent: #2aa8cc; }
.trait-ferment { --accent: #d4453a; }
.trait-fruit   { --accent: #d4a83a; }
.trait-home    { --accent: #2ea855; }

.flavor-detail {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  padding: 28px;
  margin-bottom: 18px;
  align-items: center;
}

.flavor-mark {
  display: grid;
  place-items: center;
  border-radius: 18px;
  padding: 18px;
  background: radial-gradient(circle at 50% 45%, color-mix(in srgb, var(--accent) 22%, var(--cream)), var(--cream) 80%);
}

.flavor-mark img {
  width: 100%;
  height: auto;
  max-width: 150px;
  filter: drop-shadow(0 8px 18px rgba(7, 16, 24, 0.14));
}

.flavor-detail h2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
}

.tasting {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tasting span {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--cream);
  font-size: 0.82rem;
  font-weight: 500;
}

/* Band / CTA */
.band {
  background: var(--ink);
  color: var(--white);
}

.band .lede,
.band .muted {
  color: rgba(255, 255, 255, 0.72);
}

.bottle-stage {
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 40%, rgba(78, 198, 230, 0.2), transparent 55%),
    var(--navy);
}

.bottle-stage img {
  width: min(280px, 70%);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
}

.email-card {
  padding: 36px 32px;
}

.email-card a.mail {
  display: inline-block;
  margin: 18px 0 10px;
  color: var(--cyan-deep);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-decoration: none;
  word-break: break-word;
}

.form {
  display: grid;
  gap: 14px;
  padding: 32px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid var(--cyan);
  border-color: transparent;
}

.form-status {
  min-height: 1.4em;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Footer */
.site-footer {
  padding: 42px 0 28px;
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  font-weight: 500;
}

.legal {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.86rem;
}

/* Page heroes */
.page-hero {
  padding: 72px 0 20px;
}

.page-hero h1 {
  margin-top: 12px;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
}

.about-body {
  display: grid;
  gap: 18px;
  max-width: 42rem;
}

.about-body p {
  font-size: 1.08rem;
}

/* 404 */
.missing {
  min-height: calc(100vh - 220px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 20px;
}

@media (max-width: 960px) {
  .hero-inner,
  .split,
  .contact-grid,
  .flavor-detail {
    grid-template-columns: 1fr;
  }

  .flavor-grid,
  .trait-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: unset;
  }

  .hero-inner {
    min-height: unset;
    padding-bottom: 56px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-bottle {
    width: min(240px, 68%);
  }

  .bubble.b1 { left: 36%; }
  .bubble.b2 { left: 44%; }
  .bubble.b3 { left: 52%; }
  .bubble.b4 { left: 60%; }
  .bubble.b5 { left: 42%; }
  .bubble.b6 { left: 58%; }

  .flavor-mark {
    min-height: 120px;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    padding: 18px 20px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .nav.open {
    display: flex;
  }

  .flavor-grid,
  .trait-grid,
  .benefit-list {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }
}
