/* ============================================================
   DADO'S SHAVE ICE — styles.css
   Fredoka display · Nunito Sans body · warm brand palette
   ============================================================ */


/* ── Custom Properties ────────────────────────────────────── */
:root {

  /* ── Brand palette ─────────────────────────────────────── */
  --dado-orange:      #ff7417;
  --dado-orange-dark: #d94a0b;
  --dado-coral:       #f24f5e;
  --dado-yellow:      #ffd447;
  --dado-green:       #49b97b;
  --dado-teal:        #25a9b8;
  --dado-blue:        #329bd6;

  --dado-cream:       #fff8ee;
  --dado-peach:       #fff0df;
  --dado-white:       #ffffff;

  --dado-brown:       #382318;
  --dado-brown-soft:  #65483a;
  --dado-border:      #eadfd5;

  /* ── Legacy aliases ─────────────────────────────────────── */
  --dado-off-white:   var(--dado-cream);
  --clr-border:       var(--dado-border);
  --clr-slate:        var(--dado-brown-soft);
  --clr-slate-mid:    var(--dado-brown-soft);
  --clr-slate-lt:     #a08070;
  --clr-white:        var(--dado-white);
  --clr-orange:       var(--dado-orange);

  /* ── Rainbow gradient (accent use only) ─────────────────── */
  --dado-rainbow: linear-gradient(
    135deg,
    var(--dado-coral)  0%,
    var(--dado-orange) 22%,
    var(--dado-yellow) 40%,
    var(--dado-green)  58%,
    var(--dado-teal)   73%,
    var(--dado-blue)   88%,
    #9b59b6            100%
  );

  /* ── Gradients ─────────────────────────────────────────── */
  --grad-header:  linear-gradient(100deg, #ff7417 0%, #ff8b1f 55%, #ffad2f 100%);
  --grad-booking: linear-gradient(135deg, #ff7417 0%, #ef493f 55%, #cf3158 100%);
  --grad-footer:  linear-gradient(135deg, #ff7417 0%, #f75d3e 50%, #e94269 100%);

  /* ── Font stacks ────────────────────────────────────────── */
  --font-display: "Fredoka",       system-ui, sans-serif;
  --font-body:    "Nunito Sans",   system-ui, sans-serif;
  --font-stencil: "Black Ops One", system-ui, sans-serif;

  /* ── Text colors ────────────────────────────────────────── */
  --text-primary:   var(--dado-brown);
  --text-secondary: var(--dado-brown-soft);

  /* ── Fluid type scale ──────────────────────────────────── */
  --text-xs:   clamp(0.8rem,   1.4vw,  0.875rem);
  --text-sm:   clamp(0.9rem,   1.6vw,  1rem);
  --text-base: clamp(0.95rem,  2vw,    1rem);
  --text-md:   clamp(1rem,     2.2vw,  1.125rem);
  --text-lg:   clamp(1.1rem,   2.5vw,  1.25rem);
  --text-xl:   clamp(1.25rem,  3vw,    1.5rem);
  --text-2xl:  clamp(1.5rem,   3.5vw,  2rem);
  --text-3xl:  clamp(2rem,     3vw,    3.25rem);
  --text-hero: clamp(3rem,     4.8vw,  5.25rem);

  /* ── Spacing ───────────────────────────────────────────── */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-section: clamp(64px, 8vw, 128px);

  /* ── Border radius ─────────────────────────────────────── */
  --r-sm:  0.375rem;
  --r-md:  0.75rem;
  --r-lg:  1rem;
  --r-xl:  1.5rem;
  --r-btn: 10px;

  /* ── Shadows ───────────────────────────────────────────── */
  --sh-xs:   0 1px 2px rgba(56,35,24,.06);
  --sh-sm:   0 2px 8px rgba(56,35,24,.08);
  --sh-md:   0 4px 20px rgba(56,35,24,.12);
  --sh-lg:   0 8px 36px rgba(56,35,24,.14);
  --sh-card: 0 8px 24px rgba(80,47,27,.08);
  --sh-btn:  0 6px 14px rgba(217,74,11,.20);

  /* ── Transitions ───────────────────────────────────────── */
  --ease:     cubic-bezier(.4,0,.2,1);
  --dur-fast: 150ms;
  --dur-mid:  240ms;
  --dur-slow: 400ms;

  /* ── Layout ─────────────────────────────────────────────── */
  --container-max: 1400px;
  --container-pad: clamp(1rem, 2.5vw, 1.5rem);
  --header-h: 66px;
}


/* ═══════════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--dado-brown);
  background: var(--dado-white);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

:focus-visible {
  outline: 3px solid var(--dado-orange);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}


/* ═══════════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section { padding-block: var(--sp-section); }
.section-alt { background: var(--dado-cream); }


/* ═══════════════════════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: var(--sp-12);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dado-orange);
  margin-bottom: var(--sp-3);
}

.section-tag--light { color: rgba(255,255,255,.85); }

.section-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-3xl);
  line-height: 1.1;
  color: var(--dado-brown);
  margin-bottom: var(--sp-4);
}

.section-heading--light { color: var(--dado-white); }

.section-sub {
  font-family: var(--font-body);
  font-size: var(--text-md);
  color: var(--dado-brown-soft);
  max-width: 56ch;
  margin-inline: auto;
  line-height: 1.7;
}

.section-sub--light { color: rgba(255,255,255,.82); }


/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-md);
  letter-spacing: 0.01em;
  line-height: 1;
  min-height: 46px;
  padding: 12px 24px;
  border-radius: var(--r-btn);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background   var(--dur-mid) var(--ease),
    color        var(--dur-mid) var(--ease),
    border-color var(--dur-mid) var(--ease),
    box-shadow   var(--dur-mid) var(--ease),
    transform    var(--dur-fast) var(--ease);
}

.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* ── Primary: orange gradient, white text ──────────────────── */
.btn-primary {
  background: linear-gradient(135deg, var(--dado-orange) 0%, #ff9826 100%);
  color: var(--dado-white);
  border-color: transparent;
  box-shadow: var(--sh-btn);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--dado-orange-dark) 0%, var(--dado-orange) 100%);
  box-shadow: 0 8px 20px rgba(217,74,11,.28);
}

/* ── Ghost: white bg, orange border (for dark/colored sections) */
.btn-ghost {
  background: var(--dado-white);
  color: var(--dado-orange-dark);
  border-color: var(--dado-orange);
}

.btn-ghost:hover {
  background: var(--dado-orange);
  color: var(--dado-white);
}

/* ── Teal accent (booking submit) ──────────────────────────── */
.btn-accent {
  background: var(--dado-teal);
  color: var(--dado-white);
  border-color: transparent;
  box-shadow: 0 6px 14px rgba(37,169,184,.25);
}

.btn-accent:hover {
  background: #1d8f9c;
  box-shadow: 0 8px 20px rgba(37,169,184,.35);
}

.btn-sm { font-size: 0.9rem; min-height: 40px; padding: 9px 18px; }
.btn-lg { font-size: 1.1rem; min-height: 52px; padding: 14px 28px; }


/* ═══════════════════════════════════════════════════════════
   HEADER — orange gradient
   ═══════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--grad-header);
  border-bottom: 3px solid rgba(255,255,255,.35);
  box-shadow: 0 4px 18px rgba(107,54,13,.14);
  transition: box-shadow var(--dur-mid) var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(107,54,13,.22);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  height: 100%;
}

/* ── Logo ─────────────────────────────────────────────────── */
.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 46px;
  width: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(255,255,255,.4), 0 2px 8px rgba(0,0,0,.2);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-dado {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--dado-white);
  letter-spacing: 0.01em;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.logo-plus { color: var(--dado-yellow); }

/* footer logo-img removed — no longer used */

/* ── Navigation ─────────────────────────────────────────────── */
.site-nav { margin-left: auto; }

.nav-list { display: none; gap: var(--sp-1); }

.nav-link {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dado-white);
  text-decoration: none;
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-sm);
  transition: background var(--dur-fast) var(--ease);
}

.nav-link:hover {
  background: rgba(255,255,255,.18);
  color: var(--dado-white);
}

.header-cta { display: none; }

/* Header CTA: white button, orange-dark text */
.site-header .btn-primary,
.header-cta {
  background: var(--dado-white);
  color: var(--dado-orange-dark);
  border: 2px solid rgba(255,255,255,.8);
  box-shadow: 0 5px 12px rgba(91,42,8,.16);
}

.site-header .btn-primary:hover,
.header-cta:hover {
  background: var(--dado-yellow);
  color: var(--dado-brown);
  border-color: var(--dado-yellow);
}

/* ── Hamburger ─────────────────────────────────────────────── */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: var(--r-sm);
  margin-left: auto;
  flex-shrink: 0;
  transition: background var(--dur-fast) var(--ease);
}
.menu-toggle:hover { background: rgba(255,255,255,.28); }

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 20px; height: 2px;
  background: var(--dado-white);
  border-radius: 2px;
  transition: transform var(--dur-mid) var(--ease), opacity var(--dur-mid) var(--ease);
}
.hamburger { position: relative; }
.hamburger::before, .hamburger::after {
  content: ''; position: absolute; left: 0;
}
.hamburger::before { top: -6px; }
.hamburger::after  { top:  6px; }

.site-header.nav-open .hamburger         { background: transparent; }
.site-header.nav-open .hamburger::before { transform: translateY(6px) rotate(45deg); }
.site-header.nav-open .hamburger::after  { transform: translateY(-6px) rotate(-45deg); }

/* ── Mobile nav overlay — warm dark orange ─────────────────── */
.site-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0;
  background: linear-gradient(170deg, #c85510 0%, #a83e08 100%);
  padding: var(--sp-8) var(--container-pad);
  flex-direction: column;
  gap: var(--sp-4);
  overflow-y: auto;
}

.site-nav.open { display: flex; }

.site-nav.open .nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.site-nav.open .nav-link {
  font-size: var(--text-lg);
  padding: var(--sp-4);
  border-radius: var(--r-md);
  border-left: 3px solid transparent;
  color: var(--dado-white);
}
.site-nav.open .nav-link:hover {
  border-left-color: var(--dado-yellow);
  background: rgba(255,255,255,.1);
}

/* ── Desktop nav ─────────────────────────────────────────────── */
@media (min-width: 768px) {
  .menu-toggle { display: none; }
  .header-cta  { display: inline-flex; }

  .site-nav {
    display: flex !important;
    position: static;
    background: transparent;
    padding: 0;
    flex-direction: row;
    align-items: center;
    inset: auto;
    overflow: visible;
  }

  .nav-list { display: flex !important; flex-direction: row; gap: var(--sp-1); }
}


/* ═══════════════════════════════════════════════════════════
   HERO  (light warm background)
   ═══════════════════════════════════════════════════════════ */
.hero {
  background: #FFF9EE;
  padding-block: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* ── Hero decoration layer ───────────────────────────────────── */
.hero-decorations {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

/* Cream glow mask — keeps content center calm and readable */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 50% 78% at 40% 42%,
    rgba(255,249,238,0.97) 0%,
    rgba(255,249,238,0.88) 52%,
    rgba(255,249,238,0)    100%
  );
  pointer-events: none;
  z-index: 2;
}

/* Palm fronds: left edge — intentionally cropped, sized as punctuation */
.hero-palm {
  position: absolute;
  left: clamp(-160px, -12vw, -70px);
  bottom: 36px;
  width: clamp(180px, 18vw, 290px);
  height: auto;
  opacity: 0.52;
}

/* Sun circle cluster: upper-right — ~55% outside viewport */
.hero-sun-cluster {
  position: absolute;
  top: -200px;
  right: -200px;
  width: clamp(260px, 26vw, 400px);
  aspect-ratio: 1;
}
.sun-shape {
  position: absolute;
  border-radius: 50%;
  display: block;
}
.sun-shape--orange {
  inset: 0;
  background: #FF681D;
  opacity: 0.88;
}
.sun-shape--coral {
  width: 54%;
  height: 54%;
  top: 25%;
  left: 13%;
  background: #FF8C70;
  opacity: 0.50;
}
.sun-shape--gold {
  width: 126%;
  height: 126%;
  top: -13%;
  left: -13%;
  background: transparent;
  border: clamp(16px, 2vw, 34px) solid #FFB52A;
  opacity: 0.20;
  box-sizing: border-box;
}

/* Sparkles */
.sparkle {
  position: absolute;
  display: block;
}
.sparkle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: white;
  clip-path: polygon(50% 5%, 55% 44%, 95% 50%, 55% 56%, 50% 95%, 45% 56%, 5% 50%, 45% 44%);
}
.sparkle-1 { left: 42%; top: 9%;  width: 13px; height: 13px; opacity: 0.70; animation: spkl-fade 3.4s ease-in-out infinite; }
.sparkle-2 { right: 20%; top: 27%; width: 10px; height: 10px; opacity: 0.56; animation: spkl-fade 4.8s ease-in-out infinite 1.6s; }
.sparkle-3 { left: 26%; top: 21%; width: 9px;  height: 9px;  opacity: 0.48; animation: spkl-fade 4.1s ease-in-out infinite 0.9s; }

/* Floating bubbles */
.hero-bubble {
  position: absolute;
  border-radius: 50%;
  background: white;
}
.hb-1 { left: 34%; top: 14%; width: 10px; height: 10px; opacity: 0.52; animation: bbl-float 5.2s ease-in-out infinite; }
.hb-2 { left: 58%; top: 9%;  width: 7px;  height: 7px;  opacity: 0.42; animation: bbl-float 6.8s ease-in-out infinite 1.4s; }
.hb-3 { left: 72%; top: 21%; width: 8px;  height: 8px;  opacity: 0.38; animation: bbl-float 4.6s ease-in-out infinite 2.8s; }
.hb-4 { left: 46%; top: 17%; width: 6px;  height: 6px;  opacity: 0.44; animation: bbl-float 5.8s ease-in-out infinite 0.8s; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  align-items: center;
  padding-block: 56px 72px;
  position: relative;
  z-index: 5;
}

/* ── Bubble float & sparkle pulse animations ─────────────────── */
@keyframes bbl-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes spkl-fade {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

@media (prefers-reduced-motion: reduce) {
  .hb-1, .hb-2, .hb-3, .hb-4,
  .sparkle-1, .sparkle-2, .sparkle-3 { animation: none; }
}

/* ── Hero eyebrow ─────────────────────────────────────────── */
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dado-orange);
  margin-bottom: var(--sp-5);
}

/* ── Hero headline: Fredoka 600 ───────────────────────────── */
.hero-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3rem, 4.8vw, 5.25rem);
  line-height: 1.10;
  letter-spacing: -0.035em;
  color: var(--dado-brown);
  margin-bottom: var(--sp-5);
  text-shadow: 0 2px 0 rgba(255,255,255,.75);
  max-width: 700px;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ── Hero body ────────────────────────────────────────────── */
.hero-body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--dado-brown-soft);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: var(--sp-8);
}

/* ── Hero CTAs ────────────────────────────────────────────── */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

/* Primary stays orange on hero light bg */
.hero-ctas .btn-primary {
  background: linear-gradient(135deg, var(--dado-orange) 0%, #ff9826 100%);
  border-color: transparent;
  color: var(--dado-white);
  box-shadow: 0 4px 14px rgba(217,74,11,.25);
}
.hero-ctas .btn-primary:hover {
  background: linear-gradient(135deg, var(--dado-orange-dark) 0%, var(--dado-orange) 100%);
  box-shadow: 0 6px 20px rgba(217,74,11,.32);
}

/* Secondary on light hero bg */
.hero .btn-ghost {
  background: var(--dado-white);
  color: var(--dado-orange-dark);
  border-color: var(--dado-orange);
}
.hero .btn-ghost:hover {
  background: var(--dado-orange);
  color: var(--dado-white);
}

/* ── Hashtag: Black Ops One, light treatment ──────────────── */
.hero-hashtag {
  display: inline-block;
  font-family: var(--font-stencil);
  font-size: clamp(0.62rem, 1.4vw, 0.72rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dado-brown-soft);
  background: transparent;
  border: 1.5px dashed rgba(56,35,24,.22);
  padding: 0.28em 0.75em;
  border-radius: 4px;
}

/* ── Hero visual ──────────────────────────────────────────── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-illustration {
  position: relative;
  width: min(520px, 92vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}

.hero-logo-badge {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 50%;
  filter: drop-shadow(0 14px 40px rgba(56,35,24,.22));
}

.shave-ice-svg {
  width: 100%;
  height: auto;
}

/* ── Wave dividers (between sections) ───────────────────────── */
.wave-div {
  line-height: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.wave-div svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ── Hero bottom waves ───────────────────────────────────────── */
.hero-waves {
  line-height: 0;
  overflow: hidden;
  position: relative;
  z-index: 3;
  margin-top: -1px;
}
.hero-waves svg {
  display: block;
  width: 100%;
  height: clamp(90px, 12vw, 180px);
}
.wave--teal  { fill: #2fa7a4; }
.wave--aqua  { fill: #8ee2d6; }
.wave--gold  { fill: #ffb52a; opacity: 0.75; }
.wave--cream { fill: #FFF0DC; }

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 52% 42%;
    column-gap: 6%;
    padding-block: 80px 96px;
  }
  .hero-visual { justify-content: center; align-items: center; }
  .hero-illustration { width: min(520px, 46vw); }
}

@media (max-width: 900px) {
  .hero-palm { left: -130px; width: 200px; opacity: 0.38; }
  .hero-sun-cluster { width: 260px; top: -160px; right: -160px; }
  .sun-shape--coral { display: none; }
  .sparkle-3 { display: none; }
  .hb-3, .hb-4 { display: none; }
}

@media (max-width: 600px) {
  .hero-palm { display: none; }
  .hero-sun-cluster { width: 210px; top: -140px; right: -140px; }
  .sun-shape--gold { display: none; }
  .hero-waves svg { height: 80px; }
  .sparkle-2, .sparkle-3 { display: none; }
  .hb-2, .hb-3, .hb-4 { display: none; }
}


/* ═══════════════════════════════════════════════════════════
   EVENTS  (cream section)
   ═══════════════════════════════════════════════════════════ */
.events {
  background:
    radial-gradient(circle at 96% 7%, rgba(255,181,42,0.11) 0%, transparent 34%),
    #FFF0DC;
  border-top: none;
  position: relative;
  overflow: hidden;
  margin-top: -2px;
}

/* Events header: SVG left, text right */
.events-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-6);
  margin-bottom: var(--sp-12);
}

.events-svg {
  width: 140px;
  height: auto;
  flex-shrink: 0;
}

.events-header-text {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.events-header-text .section-sub {
  margin-inline: 0;
}

@media (min-width: 640px) {
  .events-header {
    flex-direction: row;
    text-align: left;
    align-items: center;
  }
  .events-svg { width: 160px; }
  .events-header-text .section-sub { margin-inline: 0; }
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  margin-bottom: clamp(32px, 4vw, 48px);
}

.event-card {
  background: var(--dado-white);
  border-radius: 16px;
  border: 1px solid rgba(67,44,32,0.10);
  border-top: 3px solid var(--dado-orange);
  padding: var(--sp-6);
  box-shadow: 0 14px 40px rgba(67,44,32,0.07);
  transition: transform var(--dur-mid) var(--ease),
              box-shadow var(--dur-mid) var(--ease);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

/* Cycle brand accent colors */
.event-card:nth-child(1) { border-top-color: var(--dado-coral);  }
.event-card:nth-child(2) { border-top-color: var(--dado-orange); }
.event-card:nth-child(3) { border-top-color: var(--dado-yellow); }
.event-card:nth-child(4) { border-top-color: var(--dado-green);  }
.event-card:nth-child(5) { border-top-color: var(--dado-teal);   }
.event-card:nth-child(6) { border-top-color: var(--dado-blue);   }

.event-icon {
  width: 50px; height: 50px;
  background: var(--icon-bg);
  color: var(--icon-clr);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.event-icon svg { width: 26px; height: 26px; }

.event-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
  color: var(--dado-brown);
  line-height: 1.2;
}

.event-body {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--dado-brown-soft);
  line-height: 1.65;
  flex: 1;
}

/* Events CTA banner */
.events-cta {
  text-align: center;
  max-width: 1080px;
  margin-inline: auto;
  padding: clamp(40px, 4vw, 48px) clamp(32px, 5vw, 64px);
  background: var(--dado-white);
  border-radius: 20px;
  border: 1px solid rgba(67,44,32,0.10);
  box-shadow: 0 14px 40px rgba(67,44,32,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}

.events-cta p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-xl);
  color: var(--dado-brown);
}

@media (min-width: 480px) { .events-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .events-grid { grid-template-columns: repeat(3, 1fr); } }



/* ═══════════════════════════════════════════════════════════
   ABOUT  (white section)
   ═══════════════════════════════════════════════════════════ */
.about {
  background:
    radial-gradient(circle at 97% 90%, rgba(255,116,23,0.08) 0%, transparent 28%),
    #FFF9EE;
  border-top: none;
  position: relative;
  overflow: hidden;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  align-items: center;
}

.about-photo {
  width: 100%;
  border-radius: var(--r-xl);
  object-fit: cover;
  box-shadow: var(--sh-lg);
  border: 3px solid var(--dado-peach);
}

.photo-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--dado-cream), var(--dado-peach));
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  border: 2px dashed rgba(255,116,23,.3);
  color: var(--dado-orange);
  text-align: center;
}

.photo-placeholder svg { width: 80px; opacity: 0.4; }

.placeholder-text {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--dado-orange);
  opacity: 0.7;
  line-height: 1.5;
}

.placeholder-text small {
  font-weight: 400;
  font-size: 0.78rem;
  opacity: 0.6;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.about-content .section-heading { margin-bottom: 0; }

.about-content p {
  font-family: var(--font-body);
  color: var(--dado-brown-soft);
  line-height: 1.78;
}

.about-content strong { color: var(--dado-brown); }

.about-details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-block: var(--sp-2);
}

.about-details li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--dado-brown-soft);
}

.detail-icon {
  display: flex;
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--dado-orange);
  margin-top: 1px;
}
.detail-icon svg { width: 100%; height: 100%; }

.owner-quote {
  background: rgba(255,116,23,.05);
  border-left: 4px solid var(--dado-orange);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: var(--sp-5) var(--sp-6);
  font-style: italic;
}

.owner-quote p {
  font-family: var(--font-body);
  font-size: var(--text-md);
  color: var(--dado-brown);
  margin-bottom: var(--sp-3);
  line-height: 1.65;
}

.owner-quote footer {
  font-style: normal;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--dado-brown-soft);
}

@media (min-width: 900px) {
  .about-inner { grid-template-columns: 1fr 1fr; }
}


/* ═══════════════════════════════════════════════════════════
   WHY DADO'S  (peach section)
   ═══════════════════════════════════════════════════════════ */
.why {
  background:
    radial-gradient(circle at 97% 5%, rgba(47,167,164,0.11) 0%, transparent 32%),
    #EFF9F8;
  border-top: none;
  position: relative;
  overflow: hidden;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}

.why-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-6);
  background: var(--dado-white);
  border-radius: 16px;
  border: 1px solid rgba(67,44,32,0.10);
  box-shadow: 0 14px 40px rgba(67,44,32,0.07);
  transition: transform var(--dur-mid) var(--ease),
              box-shadow var(--dur-mid) var(--ease);
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}

.why-icon {
  width: 48px; height: 48px;
  background: color-mix(in srgb, var(--wi-clr) 12%, transparent);
  color: var(--wi-clr);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-icon svg { width: 26px; height: 26px; }

.why-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-md);
  color: var(--dado-brown);
  line-height: 1.2;
}

.why-card p {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--dado-brown-soft);
  line-height: 1.65;
}

@media (min-width: 600px)  { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }


/* ═══════════════════════════════════════════════════════════
   BOOKING  (orange-coral gradient)
   ═══════════════════════════════════════════════════════════ */
.booking {
  background: var(--grad-booking);
  position: relative;
  overflow: hidden;
}

.booking::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 60%);
  top: -150px; right: -80px;
  pointer-events: none;
}

/* No rainbow stripe on booking — gradient is colorful enough */
.booking::after { content: none; }

.booking .section-header { margin-bottom: var(--sp-8); }

/* Contact chips */
.contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-10);
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  padding: 0.6rem 1.25rem;
  min-height: 44px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,.3);
  color: var(--dado-white);
  background: rgba(255,255,255,.12);
  transition:
    background   var(--dur-mid) var(--ease),
    border-color var(--dur-mid) var(--ease),
    transform    var(--dur-fast) var(--ease);
}
.contact-chip svg { width: 16px; height: 16px; }
.contact-chip:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}
.contact-chip--call  { border-color: rgba(73,185,123,.6);  }
.contact-chip--text  { border-color: rgba(50,155,214,.6);  }
.contact-chip--email { border-color: rgba(255,212,71,.6);  }

/* Booking card */
.booking-card {
  background: var(--dado-white);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 5vw, 3rem);
  box-shadow: 0 16px 56px rgba(56,35,24,.25);
}

/* Form notice */
.form-notice {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--sp-6);
}
.form-notice[data-type="warn"]  { background:#FEF3C7; color:#92400E; border:1px solid #FCD34D; }
.form-notice[data-type="error"] { background:#FFF1F2; color:#9F1239; border:1px solid #FDA4AF; }
.form-notice[data-type="info"]  { background:#EFF6FF; color:#1E40AF; border:1px solid #BAE6FD; }

/* Form grid */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}
.form-group:last-child { margin-bottom: 0; }

label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--dado-brown);
}

.req { color: var(--dado-coral); margin-left: 2px; }

input, select, textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--dado-brown);
  background: var(--dado-white);
  border: 1.5px solid var(--dado-border);
  border-radius: var(--r-md);
  padding: 0.7rem 0.9rem;
  line-height: 1.5;
  transition:
    border-color var(--dur-fast) var(--ease),
    box-shadow   var(--dur-fast) var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--dado-orange);
  box-shadow: 0 0 0 3px rgba(255,116,23,.16);
}

input.invalid, select.invalid, textarea.invalid {
  border-color: var(--dado-coral);
  box-shadow: 0 0 0 3px rgba(242,79,94,.14);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23a08070' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}

textarea { resize: vertical; min-height: 100px; }
input[type="date"] { color-scheme: light; }

.field-error {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dado-coral);
  min-height: 1em;
}

.form-footer {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  align-items: flex-start;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--dado-border);
}

.form-note {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--dado-brown-soft);
  line-height: 1.55;
}
.form-note svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--clr-slate-lt);
}

/* Booking submit: teal */
.booking-card .btn-primary {
  background: var(--dado-teal);
  color: var(--dado-white);
  border-color: transparent;
  box-shadow: 0 6px 14px rgba(37,169,184,.25);
}
.booking-card .btn-primary:hover {
  background: #1d8f9c;
  box-shadow: 0 8px 20px rgba(37,169,184,.35);
}

@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .form-footer { flex-direction: row; align-items: center; justify-content: space-between; }
}


/* ═══════════════════════════════════════════════════════════
   FAQ  (white section)
   ═══════════════════════════════════════════════════════════ */
.faq {
  background:
    radial-gradient(circle at 94% 92%, rgba(255,181,42,0.10) 0%, transparent 30%),
    #FFFBF5;
  border-top: none;
  position: relative;
  overflow: hidden;
}

.faq-wrap { max-width: 780px; margin-inline: auto; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.faq-item {
  background: var(--dado-white);
  border-radius: var(--r-md);
  border: 1px solid var(--dado-border);
  box-shadow: var(--sh-xs);
  overflow: hidden;
  transition: box-shadow var(--dur-mid) var(--ease);
}
.faq-item:has(.faq-q[aria-expanded="true"]) {
  box-shadow: var(--sh-sm);
  border-color: rgba(255,116,23,.3);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  width: 100%;
  padding: var(--sp-5) var(--sp-6);
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--dado-brown);
  line-height: 1.4;
  transition: color var(--dur-fast) var(--ease);
}
.faq-q:hover                { color: var(--dado-orange); }
.faq-q[aria-expanded="true"] { color: var(--dado-orange); }

.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform var(--dur-mid) var(--ease);
  color: var(--clr-slate-lt);
}
.faq-q[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: var(--dado-orange);
}

.faq-a {
  padding: 0 var(--sp-6) var(--sp-5);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--dado-brown-soft);
  line-height: 1.72;
  border-top: 1px solid var(--dado-border);
}
.faq-a[hidden] { display: none; }


/* ═══════════════════════════════════════════════════════════
   FOOTER — orange-coral gradient
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--grad-footer);
  color: var(--dado-white);
  border-top: 4px solid var(--dado-yellow);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  padding-block: var(--sp-section);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  max-width: 300px;
}

.logo--light .logo-dado { color: var(--dado-white); }
.logo--light .logo-sub  { color: rgba(255,255,255,.9); }

/* #COLDESTINTOWN in footer */
.footer-tag {
  font-family: var(--font-stencil);
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dado-white);
  background: rgba(255,255,255,.12);
  border: 1.5px dashed rgba(255,255,255,.4);
  padding: 0.3em 0.75em;
  border-radius: 4px;
  display: inline-block;
  width: fit-content;
}

.footer-pitch {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(255,255,255,.82);
  line-height: 1.68;
}

.footer-nav-title {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--dado-white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-nav a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(255,255,255,.82);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}
.footer-nav a:hover { color: var(--dado-yellow); }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(255,255,255,.82);
}

/* Phone number: Fredoka 600 */
.footer-contact-list li:first-child a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-md);
  color: var(--dado-yellow);
}

.footer-contact-list svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: rgba(255,255,255,.7);
}

.footer-contact-list a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}
.footer-contact-list a:hover { color: var(--dado-yellow); }

/* Footer CTA button: white button */
.site-footer .btn-primary {
  background: var(--dado-white);
  color: var(--dado-orange-dark);
  border-color: rgba(255,255,255,.8);
  box-shadow: 0 4px 14px rgba(91,42,8,.2);
}
.site-footer .btn-primary:hover {
  background: var(--dado-yellow);
  color: var(--dado-brown);
  border-color: var(--dado-yellow);
}

/* Social buttons */
.social-row { display: flex; gap: var(--sp-3); }

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition:
    background var(--dur-mid) var(--ease),
    border-color var(--dur-mid) var(--ease),
    transform  var(--dur-fast) var(--ease);
}
.social-btn svg { width: 20px; height: 20px; }
.social-btn:hover {
  background: rgba(255,255,255,.24);
  border-color: rgba(255,255,255,.6);
  color: var(--dado-white);
  transform: translateY(-2px);
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.2);
  padding-block: var(--sp-5);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  align-items: flex-start;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(255,255,255,.55);
}

.footer-verse {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255,255,255,.45);
  letter-spacing: 0.05em;
}

@media (min-width: 640px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .footer-top { grid-template-columns: 1.5fr 1fr 1.2fr; }
}


/* ═══════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: no-preference) {
  [data-animate] {
    opacity: 0;
    transform: translateY(22px);
    transition:
      opacity   var(--dur-slow) var(--ease),
      transform var(--dur-slow) var(--ease);
  }

  [data-animate].visible {
    opacity: 1;
    transform: translateY(0);
  }

  .events-grid [data-animate]:nth-child(2) { transition-delay: 60ms;  }
  .events-grid [data-animate]:nth-child(3) { transition-delay: 120ms; }
  .events-grid [data-animate]:nth-child(4) { transition-delay: 180ms; }
  .events-grid [data-animate]:nth-child(5) { transition-delay: 240ms; }
  .events-grid [data-animate]:nth-child(6) { transition-delay: 300ms; }

  .why-grid [data-animate]:nth-child(2) { transition-delay: 60ms;  }
  .why-grid [data-animate]:nth-child(3) { transition-delay: 120ms; }
  .why-grid [data-animate]:nth-child(4) { transition-delay: 180ms; }
  .why-grid [data-animate]:nth-child(5) { transition-delay: 240ms; }
  .why-grid [data-animate]:nth-child(6) { transition-delay: 300ms; }
}

@media (prefers-reduced-motion: reduce) {
  [data-animate] { opacity: 1; transform: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}


/* ═══════════════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════════════ */
.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px; width: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
}
