/* ============================================
   RAYYAN WATER - rayyanwater.ae
   Premium bottled water delivery, UAE
   Palette: deep ocean navy / aqua / sand-gold
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..700;1,9..144,300..700&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy-950: #041e33;
  --navy-900: #062c4a;
  --navy-800: #0a3d63;
  --navy-700: #0f5183;
  --aqua-500: #22b8d4;
  --aqua-400: #3fd2ec;
  --aqua-300: #7ee4f5;
  --aqua-100: #dff7fc;
  --ice-50:   #f2fafc;
  --white:    #ffffff;
  --sand-400: #d9b678;
  --sand-500: #c9a05a;
  --ink:      #10222f;
  --ink-soft: #46606f;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', -apple-system, sans-serif;

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 10px 40px rgba(6, 44, 74, 0.10);
  --shadow-lift: 0 20px 60px rgba(6, 44, 74, 0.18);
  --container: 1160px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ice-50);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--navy-950);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aqua-500);
  margin-bottom: 18px;
}
.eyebrow.gold { color: var(--sand-500); }

.lead { font-size: 18.5px; color: var(--ink-soft); max-width: 60ch; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: linear-gradient(135deg, #041e33, #0a3d63);
  box-shadow: 0 6px 24px rgba(4,30,51,0.35);
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding: 16px 0;
}
.site-header.scrolled {
  background: rgba(4,30,51,0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(126,228,245,0.12), 0 8px 30px rgba(4,30,51,0.35);
  padding: 10px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 140px; height: 140px;
  flex: 0 0 140px;
  object-fit: contain;
  transition: width .35s ease, height .35s ease, flex-basis .35s ease;
}
.site-header.scrolled .brand-mark {
  width: 76px; height: 76px;
  flex: 0 0 76px;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 600;
  color: var(--navy-950);
  line-height: 1;
}
.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--aqua-500);
  margin-top: 4px;
}
.site-header.on-dark:not(.scrolled) .brand-name { color: var(--white); }
.site-header.on-dark:not(.scrolled) .brand-name small { color: var(--aqua-300); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  font-size: 21px;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color .25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--aqua-500);
  border-radius: 2px;
  transition: width .3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy-900); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.site-header.on-dark .nav-links a { color: rgba(255,255,255,0.78); }
.site-header.on-dark .nav-links a:hover,
.site-header.on-dark .nav-links a.active { color: var(--white); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--aqua-500), #1a9fc0);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(34,184,212,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(34,184,212,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--navy-900);
  box-shadow: inset 0 0 0 2px rgba(6,44,74,0.2);
}
.btn-outline:hover { box-shadow: inset 0 0 0 2px var(--aqua-500); color: var(--aqua-500); transform: translateY(-2px); }
.btn-light {
  background: var(--white);
  color: var(--navy-900);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.btn-light:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--sand-400), var(--sand-500));
  color: var(--navy-950);
  box-shadow: 0 8px 24px rgba(201,160,90,0.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(201,160,90,0.5); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .btn { padding: 11px 22px; font-size: 14px; }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px; height: 44px;
  position: relative;
  z-index: 210;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy-900);
  margin: 5px auto;
  border-radius: 2px;
  transition: transform .3s, opacity .3s, background .3s;
}
.site-header.on-dark .nav-toggle span { background: var(--white); }
.nav-toggle.open span { background: var(--white); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(34,184,212,0.25), transparent 60%),
    radial-gradient(800px 500px at -10% 110%, rgba(34,184,212,0.18), transparent 55%),
    linear-gradient(168deg, var(--navy-950) 0%, var(--navy-900) 45%, var(--navy-800) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 215px 0 120px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(700px 500px at 70% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(700px 500px at 70% 40%, black, transparent);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(42px, 5.6vw, 72px);
  color: var(--white);
  font-weight: 450;
}
.hero h1 em {
  font-style: italic;
  color: var(--aqua-300);
}
.hero .lead { color: rgba(255,255,255,0.72); margin: 24px 0 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 44px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.stat .num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 550;
  color: var(--aqua-300);
}
.stat .lbl {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

/* Hero bottle visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-visual svg,
.hero-visual .hero-bottle-img { width: min(380px, 80vw); height: auto; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.35)); }
.droplet-ring {
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  border: 1px dashed rgba(126,228,245,0.35);
  animation: spin 40s linear infinite;
}
.droplet-ring::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  width: 12px; height: 12px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--aqua-300);
}
@keyframes spin { to { transform: rotate(360deg); } }

.float { animation: floaty 6s ease-in-out infinite; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* Wave divider */
.wave-divider {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
}
.wave-divider svg { width: 100%; height: 90px; display: block; }

/* ---------- Sections ---------- */
section { padding: 100px 0; }
.section-head { max-width: 640px; margin-bottom: 60px; }
.section-head h2 { font-size: clamp(30px, 3.6vw, 46px); margin-bottom: 16px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .lead { margin: 0 auto; }

/* ---------- Cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(6,44,74,0.06);
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.card .icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--aqua-100), #c8f0f9);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--navy-800);
}
.card h3 { font-size: 22px; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 15.5px; }

/* ---------- Product cards ---------- */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(6,44,74,0.06);
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.product-media {
  background: linear-gradient(160deg, var(--aqua-100), #eef9fc 70%);
  padding: 40px 20px 30px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 230px;
  position: relative;
}
.product-media svg { height: 170px; width: auto; transition: transform .4s ease; }
.product-card:hover .product-media svg { transform: scale(1.06) translateY(-4px); }
.product-media.photo { padding: 0; min-height: 0; }
.product-media.photo img {
  width: 100%; height: 280px;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.product-card:hover .product-media.photo img { transform: scale(1.05); }

/* Nutrition table */
.nutri-table { width: 100%; border-collapse: collapse; }
.nutri-table td {
  padding: 10px 4px;
  font-size: 15px;
  color: var(--ink-soft);
  border-bottom: 1px dashed rgba(6,44,74,0.1);
}
.nutri-table td:last-child { text-align: right; font-weight: 700; color: var(--navy-900); }
.nutri-table tr:last-child td { border-bottom: none; }

/* Certification badges */
.cert-strip { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.cert-badge {
  display: flex; align-items: center; gap: 14px;
  background: var(--white);
  border: 1px solid rgba(6,44,74,0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 18px 26px;
  font-weight: 700;
  color: var(--navy-900);
}
.cert-badge small { display: block; font-weight: 600; color: var(--ink-soft); font-size: 12.5px; }
.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--navy-900);
  color: var(--aqua-300);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.product-badge.gold { background: linear-gradient(135deg, var(--sand-400), var(--sand-500)); color: var(--navy-950); }
.product-body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 21px; }
.product-body .size { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--aqua-500); margin: 4px 0 10px; }
.product-body p { color: var(--ink-soft); font-size: 14.5px; flex: 1; }
.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(6,44,74,0.08);
}
.price { font-family: var(--font-display); font-size: 24px; font-weight: 550; color: var(--navy-900); }
.price small { font-family: var(--font-body); font-size: 12px; font-weight: 600; color: var(--ink-soft); }
.product-foot .btn { padding: 10px 20px; font-size: 13.5px; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.step {
  position: relative;
  padding-left: 0;
}
.step .step-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 300;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--aqua-400);
  line-height: 1;
  margin-bottom: 18px;
}
.step h3 { font-size: 21px; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 15px; }

/* ---------- Dark band / CTA ---------- */
.band-dark {
  background:
    radial-gradient(900px 500px at 90% 0%, rgba(34,184,212,0.2), transparent 55%),
    linear-gradient(150deg, var(--navy-950), var(--navy-900));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 70px 60px;
  position: relative;
  overflow: hidden;
}
.band-dark h2 { color: var(--white); font-size: clamp(28px, 3.4vw, 42px); }
.band-dark p { color: rgba(255,255,255,0.7); }
.band-dark .eyebrow { color: var(--aqua-300); }

/* ---------- Plans ---------- */
.plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 42px 36px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(6,44,74,0.08);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
}
.plan-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.plan-card.featured {
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  transform: scale(1.04);
}
.plan-card.featured:hover { transform: scale(1.04) translateY(-8px); }
.plan-card.featured h3, .plan-card.featured .plan-price { color: var(--white); }
.plan-card.featured .plan-desc, .plan-card.featured li { color: rgba(255,255,255,0.75); }
.plan-tag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--sand-400), var(--sand-500));
  color: var(--navy-950);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan-card h3 { font-size: 22px; }
.plan-desc { font-size: 14.5px; color: var(--ink-soft); margin: 6px 0 22px; }
.plan-price {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  color: var(--navy-900);
  line-height: 1;
}
.plan-price small { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: inherit; opacity: .6; }
.plan-card ul {
  list-style: none;
  margin: 26px 0 30px;
  flex: 1;
}
.plan-card li {
  padding: 9px 0 9px 30px;
  position: relative;
  font-size: 15px;
  color: var(--ink-soft);
  border-bottom: 1px dashed rgba(6,44,74,0.08);
}
.plan-card.featured li { border-bottom-color: rgba(255,255,255,0.12); }
.plan-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--aqua-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f5183' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/10px no-repeat;
}
.plan-card.featured li::before { background-color: rgba(126,228,245,0.2); }

/* ---------- Testimonials ---------- */
.quote-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(6,44,74,0.06);
}
.quote-card .stars { color: var(--sand-500); letter-spacing: 3px; font-size: 15px; margin-bottom: 16px; }
.quote-card blockquote { font-size: 15.5px; color: var(--ink-soft); font-style: italic; }
.quote-card .who { margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.quote-card .avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aqua-400), var(--navy-700));
  color: var(--white);
  font-weight: 800;
  font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.quote-card .who b { display: block; font-size: 14.5px; color: var(--navy-900); }
.quote-card .who span { font-size: 12.5px; color: var(--ink-soft); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.contact-info-card {
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  color: var(--white);
  position: sticky;
  top: 110px;
}
.contact-info-card h3 { color: var(--white); font-size: 26px; margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,0.65); font-size: 15px; margin-bottom: 30px; }
.contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-row:last-of-type { border-bottom: none; }
.contact-row .icon {
  width: 44px; height: 44px;
  flex: 0 0 44px;
  border-radius: 12px;
  background: rgba(126,228,245,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--aqua-300);
}
.contact-row b { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,0.5); margin-bottom: 3px; }
.contact-row a, .contact-row span.val { color: var(--white); font-size: 16px; font-weight: 600; }
.contact-row a:hover { color: var(--aqua-300); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(6,44,74,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--navy-900);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(6,44,74,0.15);
  background: var(--ice-50);
  transition: border-color .25s, box-shadow .25s;
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--aqua-500);
  box-shadow: 0 0 0 4px rgba(34,184,212,0.14);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 120px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.65);
  padding: 70px 0 30px;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { font-size: 14.5px; transition: color .25s; }
.site-footer a:hover { color: var(--aqua-300); }
.footer-brand p { font-size: 14.5px; margin-top: 14px; max-width: 34ch; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 26px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.45);
  transition: transform .3s ease;
}
.wa-float:hover { transform: scale(1.1) translateY(-3px); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(800px 400px at 80% -20%, rgba(34,184,212,0.22), transparent 60%),
    linear-gradient(160deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  padding: 235px 0 110px;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { color: var(--white); font-size: clamp(36px, 4.6vw, 58px); font-weight: 450; }
.page-hero h1 em { font-style: italic; color: var(--aqua-300); }
.page-hero .lead { color: rgba(255,255,255,0.7); margin-top: 18px; }

/* ---------- Misc ---------- */
.alt-bg { background: var(--white); }
.center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-visual { order: -1; margin-bottom: 10px; }
  .hero-visual svg,
  .hero-visual .hero-bottle-img { width: min(240px, 60vw); }
}

@media (max-width: 860px) {
  section { padding: 70px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .plan-card.featured { transform: none; }
  .plan-card.featured:hover { transform: translateY(-8px); }
  .band-dark { padding: 50px 30px; }

  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(4,30,51,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
    z-index: 200;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .nav-links a { font-size: 24px; }
  .site-header.on-dark .nav-links a { color: rgba(255,255,255,0.85); }
  .site-header.on-dark .nav-links a.active { color: var(--aqua-300); }
  .header-cta .btn-outline { display: none; }
}

@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 170px 0 100px; }
  .hero h1 { font-size: 34px; }
  .brand-mark { width: 100px; height: 100px; flex: 0 0 100px; }
  .hero-stats { gap: 26px; }
  .band-dark { padding: 44px 24px; }
  .contact-form, .contact-info-card { padding: 32px 24px; }
}
