/* Whalebird Kombucha — archival replica of whalebirdkombucha.com
   Built June 2026 from the live site. Faithful to the brand: ocean teal,
   organic, central-coast feel. Shop links out (external Shopify), Instagram
   feed widget replaced with static note. */

:root {
  --teal: #0f5a63;
  --teal-dark: #0a3d44;
  --aqua: #2a9d8f;
  --sand: #f4efe6;
  --cream: #faf7f1;
  --coral: #e76f51;
  --ink: #233539;
  --ink-2: #4d6066;
  --ink-3: #80949a;
  --line: #e2dccf;
  --font-head: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Mulish", "Helvetica Neue", Arial, sans-serif;
  --maxw: 1100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--teal); }

/* ---------- archive banner ---------- */
.archive-banner {
  background: var(--teal-dark);
  color: #cfe3e3;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 8px 16px;
}
.archive-banner a { color: #fff; }

/* ---------- nav ---------- */
header {
  position: sticky; top: 0; z-index: 50;
  background: var(--teal);
  border-bottom: 1px solid var(--teal-dark);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.nav-logo img { height: 40px; width: auto; }
.nav-links { list-style: none; display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.nav-links > li { position: relative; }
.nav-links a {
  text-decoration: none; color: #eaf4f3;
  font-family: var(--font-head); font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.nav-links a:hover { color: #fff; }
.dropdown {
  display: none; position: absolute; top: 100%; left: -12px;
  background: var(--teal-dark); list-style: none; min-width: 180px; padding: 6px 0;
  border-radius: 4px;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a { display: block; padding: 9px 18px; font-size: 12px; }
.dropdown li a:hover { background: rgba(255,255,255,0.08); }
.nav-cta {
  background: var(--coral); color: #fff !important;
  padding: 9px 18px; border-radius: 4px;
}
.nav-cta:hover { background: #d65f43; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 62vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: var(--teal-dark); color: #fff; overflow: hidden;
}
.hero img.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.45;
}
.hero-inner { position: relative; z-index: 2; padding: 60px 24px; max-width: 760px; }
.hero h1 {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(34px, 6vw, 60px); line-height: 1.05; letter-spacing: 0.02em;
}
.hero p { margin-top: 16px; font-size: 18px; color: #dcebe9; }

/* ---------- sections ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: 64px 24px; }
.section.narrow { max-width: 800px; }
.section.center { text-align: center; }
h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(24px, 3.5vw, 36px); color: var(--teal); line-height: 1.15; margin-bottom: 14px; }
h3 { font-family: var(--font-head); font-weight: 600; font-size: 20px; color: var(--ink); margin-bottom: 8px; }
h4 { font-family: var(--font-head); font-weight: 600; font-size: 15px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--aqua); margin-bottom: 10px; }
p + p { margin-top: 1em; }
.section p { color: var(--ink-2); }
.kicker { font-family: var(--font-head); font-size: 13px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--coral); margin-bottom: 12px; }

.band { background: var(--sand); }
.band-teal { background: var(--teal); color: #eaf4f3; }
.band-teal h2 { color: #fff; }
.band-teal p { color: #cfe3e3; }

.btn {
  display: inline-block; font-family: var(--font-head); font-weight: 600;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; padding: 13px 28px; border-radius: 4px;
  background: var(--coral); color: #fff; transition: background 0.15s;
}
.btn:hover { background: #d65f43; }
.btn-outline { background: transparent; border: 2px solid #fff; color: #fff; }
.btn-outline:hover { background: #fff; color: var(--teal); }
.btn-teal { background: var(--teal); }
.btn-teal:hover { background: var(--teal-dark); }

/* ---------- benefit / icon grid ---------- */
.icon-row { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.icon-item { text-align: center; width: 150px; }
.icon-item img { width: 78px; height: 78px; margin: 0 auto 10px; }
.icon-item h4 { color: var(--ink); }

.feature-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 36px; }
.feature-3 .card { text-align: center; }
.feature-3 .card img { width: 64px; height: 64px; margin: 0 auto 14px; }

/* ---------- image + text rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split img { width: 100%; border-radius: 6px; box-shadow: 0 10px 30px rgba(15,90,99,0.12); }
.split:nth-child(even) .split-text { order: -1; }

.photo-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.photo-3 img { width: 100%; height: 240px; object-fit: cover; border-radius: 6px; }

/* ---------- logos strip ---------- */
.logos { display: flex; gap: 36px; justify-content: center; align-items: center; flex-wrap: wrap; opacity: 0.8; }
.logos img { height: 46px; width: auto; filter: grayscale(1); }

/* ---------- flavors ---------- */
.flavor { display: grid; grid-template-columns: 360px 1fr; gap: 40px; align-items: center; padding: 40px 0; border-top: 1px solid var(--line); }
.flavor:first-of-type { border-top: none; }
.flavor-wheel img { width: 100%; max-width: 360px; margin: 0 auto; }
.flavor h2 { margin-bottom: 6px; }
.flavor .badges { display: flex; gap: 14px; flex-wrap: wrap; margin: 14px 0; }
.flavor .badges .b { text-align: center; width: 64px; }
.flavor .badges .b img { width: 48px; height: 48px; margin: 0 auto 4px; }
.flavor .badges .b span { font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); }
.flavor .region { font-size: 14px; color: var(--ink-3); }
.flavor .ingredients { font-size: 14px; color: var(--ink-2); }

/* ---------- team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 36px; }
.team-member img { width: 100%; height: 380px; object-fit: cover; border-radius: 6px; }
.team-member h3 { margin-top: 16px; margin-bottom: 0; font-size: 22px; }
.team-member .role { font-family: var(--font-head); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); margin-bottom: 10px; }

/* ---------- testimonials ---------- */
.quote { max-width: 760px; margin: 0 auto 32px; text-align: center; }
.quote p { font-size: 18px; font-style: italic; color: #eaf4f3; line-height: 1.7; }
.quote .who { margin-top: 14px; font-family: var(--font-head); font-weight: 600; color: #fff; font-style: normal; }
.quote .who span { display: block; font-weight: 400; font-size: 13px; color: #b9d4d2; text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- faq ---------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  font-family: var(--font-head); font-weight: 600; font-size: 16px; color: var(--ink);
  padding: 18px 36px 18px 0; cursor: pointer; position: relative;
}
.faq-q::after { content: "+"; position: absolute; right: 6px; top: 15px; font-size: 22px; color: var(--coral); }
.faq-q.open::after { content: "\2013"; }
.faq-a { display: none; padding: 0 0 18px; color: var(--ink-2); }
.faq-a.open { display: block; }

/* ---------- article (policy / blog) ---------- */
.article { max-width: 800px; margin: 0 auto; padding: 56px 24px; }
.article h1 { font-family: var(--font-head); font-size: clamp(26px,4vw,36px); color: var(--teal); margin-bottom: 8px; }
.article h2 { font-size: 20px; margin: 28px 0 8px; }
.article p, .article li { color: var(--ink-2); margin-bottom: 14px; }
.article strong { color: var(--ink); }
.article ul, .article ol { margin: 0 0 16px 22px; }

/* ---------- contact ---------- */
.contact-box { max-width: 720px; margin: 0 auto; text-align: center; }
.contact-box .big { font-family: var(--font-head); font-size: 20px; font-weight: 600; color: var(--ink); margin: 8px 0; }

/* ---------- footer ---------- */
footer { background: var(--teal-dark); color: #bcd6d6; padding: 48px 24px 28px; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
footer h4 { color: #fff; }
footer a { color: #eaf4f3; }
.footer-bottom { max-width: var(--maxw); margin: 32px auto 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 13px; color: #8fb3b3; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: #bcd6d6; }

/* ---------- responsive ---------- */
@media (max-width: 880px) {
  .split, .feature-3, .flavor { grid-template-columns: 1fr; gap: 24px; }
  .split:nth-child(even) .split-text { order: 0; }
  .team-grid { grid-template-columns: 1fr; }
  .photo-3 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .flavor-wheel img { max-width: 280px; }
}
