/* ==========================================================================
   SR. DOGGIES — STYLESHEET  (retro coastal-marina theme)
   --------------------------------------------------------------------------
   HOW TO EDIT COLORS: change the values in the ":root" block just below.
   Everything on the site (buttons, headings, backgrounds) uses these
   variables, so one change updates the whole website.
   NOTE: variable names still say "olive/salmon/terracotta" from the old
   warm theme — only the VALUES changed to the white & blue palette, so
   every rule keeps working. Read the comment next to each value.

   CONTENTS
   1.  Design tokens (colors, fonts, spacing)
   2.  Base / reset
   3.  Buttons & links
   4.  Header & navigation
   5.  Hero
   6.  Marquee ticker
   7.  Sections & shared card styles
   8.  About
   9.  Amenities
   10. Sports & PPV
   11. Experiences
   12. The Palm Tequila
   13. Gallery
   14. Location & map
   15. Hours & contact
   16. Merch
   17. Footer
   18. Mobile floating bar, toast, scroll cue
   19. Animations
   20. Accessibility & reduced motion
   ========================================================================== */

/* 1. DESIGN TOKENS ------------------------------------------------------- */
:root {
  /* Coastal marina palette: ocean blue + navy + white + ice blue
     + sky blue + azure — pulled from The Palm bottle & the sea. */
  --ink:        #1d5c7d;   /* deep ocean blue — headings & main dark color */
  --ink-2:      #2e7396;   /* lighter ocean blue */
  --olive:      #276184;   /* marine blue — page frame & marquee */
  --olive-deep: #17415c;   /* deep navy — footer & dark sections */
  --text:       #3e5d70;   /* body text on light backgrounds */
  --cream:      #f6fafc;   /* main white background */
  --sand:       #e9f2f7;   /* slightly deeper ice blue */
  --card:       #fcfeff;   /* card background */
  --pink:       #dcedf6;   /* pale sky blue (header, soft bands) */
  --salmon:     #8fc1dd;   /* sky blue band + card color */
  --salmon-soft:#c2ddec;   /* light sky tint */
  --terracotta: #1b7fa8;   /* azure — primary buttons & accents */
  --terracotta-2:#135f83;  /* deep azure */
  --gold:       #2ea8cf;   /* bright azure (small accents only) */
  --red:        #c2472e;   /* alert red (live dot, "closed") */

  /* Typography — chunky retro slab for headings, clean sans for text */
  --font-display: "Alfa Slab One", "Rockwell", Georgia, serif;
  --font-body: "DM Sans", -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Shape & shadow — flatter, boxier, more printed-poster than glossy */
  --radius: 10px;
  --radius-lg: 14px;
  --line: 1.5px solid rgba(29, 92, 125, 0.4);
  --shadow-sm: 0 2px 8px rgba(23, 65, 92, 0.08);
  --shadow-md: 0 10px 26px rgba(23, 65, 92, 0.16);
  --shadow-lg: 0 20px 50px rgba(23, 65, 92, 0.22);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 76px;
}

/* 2. BASE / RESET -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

/* The marine-blue frame around the whole page (like a printed menu border) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 160;
  border: 10px solid var(--olive);
  pointer-events: none;
}
@media (max-width: 767px) { body::after { border-width: 6px; } }

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;              /* Alfa Slab One is naturally extra-bold */
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 0.6em;
  text-transform: uppercase;
  letter-spacing: 0.015em;
}

p { margin: 0 0 1em; }
address { font-style: normal; }
ul, ol { padding-left: 1.2em; }

.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

.section { padding: clamp(4rem, 6vw, 6.5rem) 0; }

/* Anchored sections stop below the sticky header when you click a nav link */
section[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

.section-title { font-size: clamp(1.45rem, 1.1rem + 1.7vw, 2.3rem); }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.2rem); }

.section-lede { font-size: 1.06rem; }

/* Small uppercase label above headings, with little retro diamonds */
.kicker {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.9em;
}
.kicker::before { content: "\2726\00a0\00a0"; }   /* ✦ */
.kicker::after { content: "\00a0\00a0\2726"; }
.kicker-light { color: var(--salmon); }
.kicker-gold { color: #9fd6ec; }

/* 3. BUTTONS & LINKS ------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.5rem;
  border-radius: 8px;
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background-color 0.25s var(--ease), border-color 0.25s var(--ease),
              color 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-lg { padding: 1.05rem 1.8rem; font-size: 0.86rem; }

/* Terracotta = the main "do this" button (class kept as btn-gold so the
   HTML doesn't need to change) */
.btn-gold {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #f2f9fc;
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover { background: var(--terracotta-2); border-color: var(--terracotta-2); box-shadow: var(--shadow-md); }

.btn-dark { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.btn-dark:hover { background: var(--ink-2); border-color: var(--ink-2); box-shadow: var(--shadow-md); }

.btn-light { background: var(--cream); border-color: var(--cream); color: var(--ink); }
.btn-light:hover { box-shadow: var(--shadow-md); }

/* Outline on light backgrounds */
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--cream); }

/* Outline / ghost on dark backgrounds or photos */
.btn-ghost, .btn-outline-light { border-color: rgba(246, 250, 252, 0.75); color: #fbfdfe; background: transparent; }
.btn-ghost:hover, .btn-outline-light:hover { background: rgba(246, 250, 252, 0.16); border-color: #fbfdfe; }

.btn-ico { width: 18px; height: 18px; }

.cta-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }
.cta-row.center { justify-content: center; }

.text-link {
  display: inline-block;
  margin-top: 1.2rem;
  color: var(--terracotta);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 2px solid rgba(27, 127, 168, 0.35);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.text-link:hover { border-bottom-color: var(--terracotta); color: var(--terracotta-2); }

/* Icon-only buttons in the header */
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  color: var(--ink);
  background: transparent;
  border: 1.5px solid rgba(29, 92, 125, 0.45);
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.icon-btn:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.icon-btn svg { width: 19px; height: 19px; }

/* All inline SVG icons are line icons that use the text color */
.icon-btn svg, .btn-ico, .amenity-ico svg, .mobile-bar svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* 4. HEADER & NAVIGATION -------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: box-shadow 0.35s var(--ease);
}
/* The pale-sky background lives on a pseudo-element.
   (Putting backdrop-filter on the header itself would trap the
   fixed-position mobile menu inside the 76px-tall header.) */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(220, 237, 246, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1.5px solid rgba(29, 92, 125, 0.35);
  transition: background-color 0.35s var(--ease);
}
.site-header.scrolled { box-shadow: 0 8px 26px rgba(23, 65, 92, 0.16); }
.site-header.scrolled::before { background: rgba(220, 237, 246, 0.98); }

.header-inner { display: flex; align-items: center; gap: 1rem; }

.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
/* Transparent logo — big, hangs below the slim bar over the hero,
   then tucks into the bar once you scroll (.scrolled is set by main.js) */
.brand-mark {
  flex-shrink: 0;
  object-fit: contain;
  width: 192px;
  height: 192px;
  margin-bottom: calc(var(--header-h) - 192px); /* overhang below the bar */
  transition: width 0.3s var(--ease), height 0.3s var(--ease), margin 0.3s var(--ease);
}
/* The logo artwork already says "SR DOGGIES", so the header hides the
   duplicate text while the logo is big and shows it in compact mode */
.site-header .brand-text { display: none; }
.site-header.scrolled .brand-mark { width: 64px; height: 64px; margin-bottom: 0; }
.site-header.scrolled .brand-text { display: flex; }
@media (max-width: 1099px) {
  .brand-mark { width: 132px; height: 132px; margin-bottom: calc(var(--header-h) - 132px); }
  .site-header.scrolled .brand-mark { width: 56px; height: 56px; margin-bottom: 0; }
}
.brand-text {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
}
.brand-text small {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
}
/* The footer sits on dark olive, so the brand flips to light there */
.site-footer .brand-text { color: var(--cream); }
.site-footer .brand-text small { color: var(--salmon); }

.main-nav { margin-left: auto; }
.nav-list { display: flex; gap: 0.3rem; list-style: none; margin: 0; padding: 0; }

.nav-link {
  position: relative;
  display: inline-block;
  padding: 0.55rem 0.8rem;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
/* Animated underline that grows from the left */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.28rem;
  height: 2.5px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--terracotta-2); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 0.55rem; margin-left: auto; }
.main-nav + .header-actions { margin-left: 0; }

.btn-header { padding: 0.72rem 1.2rem; font-size: 0.76rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1.5px solid rgba(29, 92, 125, 0.45);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2.5px;
  border-radius: 3px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-actions { display: none; }

.nav-backdrop {
  position: fixed;
  inset: 0;
  /* Must stay BELOW the header (z-index 90): the slide-in menu lives
     inside the header, so a higher backdrop would dim the open menu. */
  z-index: 85;
  background: rgba(22, 42, 54, 0.5);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.nav-backdrop.show { opacity: 1; }

/* --- Mobile menu (slides in smoothly from the right) --- */
@media (max-width: 999px) {
  .nav-toggle { display: flex; }

  /* The nav is off-canvas here, so it no longer pushes the action
     buttons right — pin them to the right edge ourselves */
  .main-nav + .header-actions { margin-left: auto; }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 95;
    width: min(340px, 86vw);
    padding: calc(var(--header-h) + 1.5rem) 1.6rem 2rem;
    background: var(--cream);
    border-left: 10px solid var(--olive);
    box-shadow: -20px 0 60px rgba(22, 42, 54, 0.3);
    transform: translateX(105%);
    visibility: hidden;
    transition: transform 0.4s var(--ease), visibility 0s linear 0.4s;
    overflow-y: auto;
  }
  body.nav-open .main-nav {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.4s var(--ease);
  }

  .nav-list { flex-direction: column; gap: 0.2rem; }
  .nav-link { font-size: 1rem; padding: 0.8rem 0.2rem; }
  .nav-link::after { left: 0.2rem; right: auto; width: 34px; }

  .nav-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 1.8rem;
    padding-top: 1.6rem;
    border-top: 1.5px solid rgba(29, 92, 125, 0.3);
  }
  .nav-mobile-actions .btn { width: 100%; }

  /* Keep the header row tidy on phones */
  .btn-header { display: none; }
}
@media (max-width: 639px) {
  .hide-sm { display: none; }
  .brand-text { font-size: 0.92rem; }
}

/* 5. HERO ------------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fbfdfe;
  background: var(--olive-deep);
}

/* The background: the real bar photo (assets/images/hero.jpg) with a
   deep-navy overlay so the white headline stays easy to read.
   Swap hero.jpg for any other photo to change the whole opening screen. */
.hero-bg {
  position: absolute;
  inset: -12% 0;
  z-index: 0;
  background-image:
    linear-gradient(180deg, rgba(20, 40, 52, 0.5) 0%, rgba(20, 40, 52, 0.58) 55%, rgba(17, 34, 44, 0.85) 100%),
    url("../assets/images/hero.jpg"),
    linear-gradient(160deg, #276184 10%, #4b93b5 60%, #8fc1dd 130%);
  background-size: cover, cover, auto;
  background-position: center;
  will-change: transform;
}

/* Postage-stamp scalloped edge where the photo meets the next section */
.hero-arch {
  position: absolute;
  inset: auto 0 -1px 0;
  z-index: 1;
  height: 26px;
  pointer-events: none;
  background-image: radial-gradient(circle at 50% 0, rgba(0, 0, 0, 0) 13px, var(--olive) 14px);
  background-size: 28px 26px;
  background-repeat: repeat-x;
}
.hero-arch svg { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + clamp(4.5rem, 3rem + 8vw, 9.5rem)) 0 6rem; /* clears the hanging logo */
  max-width: 860px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  border: 1.5px solid rgba(246, 250, 252, 0.5);
  background: rgba(20, 40, 52, 0.35);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fbfdfe;
}
.kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--salmon);
  box-shadow: 0 0 10px var(--salmon);
}

.hero-title {
  margin: 1.3rem 0 0.45em;
  font-size: clamp(2.1rem, 1.4rem + 3.8vw, 4rem);
  color: #fbfdfe;
  text-shadow: 0 3px 24px rgba(17, 34, 44, 0.45);
}
.hero-title em {
  font-style: normal;
  color: var(--salmon);
}

.hero-sub {
  max-width: 620px;
  font-size: clamp(1.02rem, 0.95rem + 0.5vw, 1.22rem);
  color: rgba(251, 253, 254, 0.9);
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }

.hero-trust {
  margin-top: 1.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(251, 253, 254, 0.66);
}

/* Compact hero used on the Experiences & Merch pages */
.page-hero {
  position: relative;
  overflow: hidden;
  color: #fbfdfe;
  background: var(--olive-deep);
  padding: calc(var(--header-h) + clamp(4.5rem, 3rem + 7vw, 10rem)) 0 clamp(3.4rem, 6vw, 5.4rem); /* clears the hanging logo */
}
.page-hero .hero-bg { inset: -30% 0 -10%; }
.page-hero .hero-title { font-size: clamp(1.7rem, 1.3rem + 2.6vw, 3.1rem); }
.page-hero .container { position: relative; z-index: 2; max-width: 860px; }
/* Same scalloped edge as the big hero */
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  z-index: 1;
  height: 26px;
  pointer-events: none;
  background-image: radial-gradient(circle at 50% 0, rgba(0, 0, 0, 0) 13px, var(--olive) 14px);
  background-size: 28px 26px;
  background-repeat: repeat-x;
}

/* Little animated mouse-style scroll cue */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2.4rem;
  z-index: 3;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(251, 253, 254, 0.55);
  border-radius: 14px;
}
.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 7px;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 4px;
  background: #fbfdfe;
  animation: cueDrop 1.8s var(--ease) infinite;
}
@media (max-width: 767px) { .scroll-cue { display: none; } }

/* 6. MARQUEE TICKER -------------------------------------------------------- */
.marquee {
  overflow: hidden;
  background: var(--olive);
  padding: 0.8rem 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
}
.marquee-track span:nth-child(even) { color: var(--salmon); font-size: 0.5rem; }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* 7. SHARED CARD STYLES ---------------------------------------------------- */
.card-grid { display: grid; gap: 1.4rem; }

.card {
  background: var(--card);
  border: var(--line);
  border-radius: var(--radius);
  box-shadow: none;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
/* Cards gently lift when you hover them */
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--ink);
}

/* 8. ABOUT ------------------------------------------------------------------ */
.about { background: var(--cream); }

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1.15fr 0.85fr; }
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  list-style: none;
  padding: 0;
  margin: 1.8rem 0;
}
.about-stats li {
  flex: 1 1 150px;
  padding: 1rem 1.2rem;
  background: var(--pink);
  border: var(--line);
  border-radius: var(--radius);
}
.about-stats strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.92rem;
  text-transform: uppercase;
  color: var(--ink);
}
.about-stats span { font-size: 0.85rem; }

.tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--terracotta);
}

.about-media { position: relative; }
.about-media > img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: var(--line);
  box-shadow: var(--shadow-md);
}
.about-media-card {
  position: absolute;
  left: -0.8rem;
  bottom: -1.1rem;
  display: flex;
  flex-direction: column;
  padding: 0.9rem 1.3rem;
  background: var(--salmon);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: var(--line);
}
.about-media-card strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #143a52;
}
.about-media-card span { font-size: 0.82rem; color: #24455c; }

/* 9. AMENITIES --------------------------------------------------------------- */
.amenities { background: var(--sand); }

.amenity-grid { grid-template-columns: 1fr; }
@media (min-width: 620px) { .amenity-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .amenity-grid { grid-template-columns: repeat(4, 1fr); } }

.amenity { padding: 1.7rem 1.5rem; }
.amenity h3 { font-size: 0.95rem; margin-bottom: 0.5em; }
.amenity p { font-size: 0.92rem; margin: 0; }

.amenity-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1.1rem;
  border-radius: 10px;
  color: #143a52;
  background: var(--salmon);
  border: var(--line);
  transition: transform 0.35s var(--ease);
}
.amenity-ico svg { width: 26px; height: 26px; }
.amenity:hover .amenity-ico { transform: scale(1.08) rotate(-3deg); }

/* 10. SPORTS & PPV ------------------------------------------------------------ */
.sports {
  background:
    radial-gradient(900px 500px at 90% 10%, rgba(143, 193, 221, 0.16), transparent 60%),
    linear-gradient(160deg, #12374e, #1f5878);
  color: rgba(246, 250, 252, 0.9);
}
.sports .section-title { color: var(--cream); }

.sports-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .sports-grid { grid-template-columns: 1.1fr 0.9fr; }
}

.check-list { list-style: none; padding: 0; margin: 1.4rem 0; }
.check-list li {
  position: relative;
  padding: 0.4rem 0 0.4rem 2rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--salmon);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M4 12.5l5 5L20 6.5"/></svg>') center / 14px no-repeat, linear-gradient(#000, #000);
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M4 12.5l5 5L20 6.5"/></svg>') center / 14px no-repeat, linear-gradient(#000, #000);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

/* The "NOW SHOWING" scoreboard card */
.sports-board {
  padding: 1.6rem 1.7rem;
  background: rgba(246, 250, 252, 0.06);
  border: 1.5px solid rgba(246, 250, 252, 0.28);
  border-radius: var(--radius-lg);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg);
}
.board-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--cream);
  margin-bottom: 1rem;
}
.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5346;
  box-shadow: 0 0 0 0 rgba(255, 83, 70, 0.55);
  animation: pulse 1.6s ease-out infinite;
}
.board-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1.5px dashed rgba(246, 250, 252, 0.25);
  font-size: 0.98rem;
}
.board-row em {
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--salmon-soft);
}
.board-foot {
  padding-top: 1rem;
  font-size: 0.82rem;
  color: rgba(246, 250, 252, 0.6);
}

/* 11. EXPERIENCES — the big sky-blue band, like the reference ----------------- */
.experiences { background: var(--salmon); }

.experiences .section-title,
.experiences .section-lede,
.experiences .exp-note { color: #143a52; }
.experiences .kicker { color: var(--olive-deep); }
.experiences .section-lede { font-weight: 500; }

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

.exp-card { overflow: hidden; display: flex; flex-direction: column; border-color: rgba(20, 58, 82, 0.5); }

.exp-media { overflow: hidden; aspect-ratio: 8 / 5; border-bottom: var(--line); }
.exp-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
/* Polished photo zoom on hover */
.exp-card:hover .exp-media img,
.gallery-item:hover img { transform: scale(1.06); }

.exp-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.exp-body h3 { font-size: 1rem; margin-bottom: 0.45em; }
.exp-body p { font-size: 0.94rem; flex: 1; }

.card-link {
  align-self: flex-start;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  text-decoration: none;
  border-bottom: 2px solid rgba(27, 127, 168, 0.4);
  padding-bottom: 2px;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.card-link:hover { color: var(--terracotta-2); border-color: var(--terracotta-2); }

.exp-cta { text-align: center; margin-top: clamp(2rem, 4vw, 3rem); }
.exp-note { max-width: 640px; margin: 0 auto; font-size: 0.95rem; }
.experiences .text-link { color: var(--terracotta-2); border-bottom-color: rgba(19, 95, 131, 0.5); }

.how-it-works {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(1.8rem, 4vw, 3rem);
  background: var(--cream);
  border: var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
}
.steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 1.2rem;
  padding: 0;
  margin: 1.6rem 0;
  text-align: left;
}
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.steps li {
  counter-increment: step;
  background: var(--card);
  border-radius: var(--radius);
  border: var(--line);
  padding: 1.4rem;
  font-size: 0.95rem;
}
.steps li::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 0.7rem;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 400;
  color: #f2f9fc;
  background: var(--terracotta);
}
.steps strong { display: block; color: var(--ink); margin-bottom: 0.2em; }

/* 12. THE PALM TEQUILA — deep azure section ----------------------------------- */
.tequila {
  position: relative;
  overflow: hidden;
  background: linear-gradient(170deg, #0f5273, #146d94 60%, #18749e);
  color: rgba(242, 249, 252, 0.96);
}
.tequila-glow {
  position: absolute;
  inset: -20% -10%;
  background:
    radial-gradient(560px 420px at 22% 55%, rgba(46, 168, 207, 0.2), transparent 65%),
    radial-gradient(700px 460px at 85% 20%, rgba(220, 237, 246, 0.14), transparent 65%);
  pointer-events: none;
  will-change: transform;
}
.tequila-grid {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 860px) {
  .tequila-grid { grid-template-columns: 0.9fr 1.1fr; }
}
/* Real photo of the bar shelf, with The Palm mark floating over it */
.tequila-art { position: relative; }
.tequila-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(12, 51, 75, 0.45);
  border: 1.5px solid rgba(246, 250, 252, 0.5);
}
.tequila-mark {
  position: absolute;
  right: -0.9rem;
  bottom: -1.4rem;
  width: clamp(90px, 22%, 130px);
  padding: 14px;
  background: var(--cream);
  border-radius: 50%;
  border: 1.5px solid rgba(12, 51, 75, 0.3);
  box-shadow: 0 14px 34px rgba(12, 51, 75, 0.4);
}
.title-gold {
  color: #9fd6ec;
  font-size: clamp(1.8rem, 1.4rem + 2vw, 2.9rem);
}
.tequila-lede {
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #e8f4fa;
}
.tequila-quote {
  margin: 1.5rem 0;
  padding: 1.1rem 1.4rem;
  border-left: 4px solid #9fd6ec;
  background: rgba(12, 51, 75, 0.18);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #e8f4fa;
}

/* 13. GALLERY ---------------------------------------------------------------------- */
.gallery { background: var(--cream); }

.gallery-grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: var(--line);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 5;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

/* 14. LOCATION & MAP ----------------------------------------------------------------- */
.location { background: var(--sand); }

.location-grid { display: grid; gap: 2rem; align-items: stretch; }
@media (min-width: 900px) { .location-grid { grid-template-columns: 1.15fr 0.85fr; } }

.map-card {
  position: relative;
  min-height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: var(--line);
}
.map-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.location-info {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background: var(--card);
  border: var(--line);
  border-radius: var(--radius-lg);
}
.location-info h3 { font-size: 1.15rem; }
.location-info address { margin-bottom: 0.8rem; }
.plus-code { font-size: 0.92rem; }
.location-btns { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.3rem; }

/* 15. HOURS & CONTACT ------------------------------------------------------------------ */
.contact { background: var(--pink); }

.contact-grid { display: grid; gap: 1.6rem; }
@media (min-width: 860px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; } }

.hours-card, .contact-card {
  padding: clamp(1.7rem, 3vw, 2.4rem);
  background: var(--card);
  border: var(--line);
  border-radius: var(--radius-lg);
}
.hours-card .section-title, .contact-card .section-title { font-size: 1.2rem; }

.hours-list { list-style: none; padding: 0; margin: 0 0 1rem; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1.5px dashed rgba(29, 92, 125, 0.3);
}
.hours-list strong { color: var(--ink); }
.hours-list .closed span, .hours-list .closed strong { color: var(--red); }
.hours-note, .contact-note { font-size: 0.88rem; color: #6c8798; margin: 0.6rem 0 0; }

.contact-btns { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.2rem; }

/* 16. MERCH ------------------------------------------------------------------------------ */
.merch { background: var(--cream); }

.merch-grid { grid-template-columns: 1fr; }
@media (min-width: 640px) { .merch-grid { grid-template-columns: repeat(3, 1fr); } }

.merch-card { position: relative; overflow: hidden; display: flex; flex-direction: column; }
.merch-card .exp-media { aspect-ratio: 1 / 1; }

.soon-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  background: var(--terracotta);
  color: #f2f9fc;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

/* Merch teaser band on the home page */
.merch-teaser { background: var(--salmon); }
.merch-teaser .section-title, .merch-teaser p { color: #143a52; }
.merch-teaser .kicker { color: var(--olive-deep); }
.merch-teaser-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 860px) {
  .merch-teaser-inner { grid-template-columns: 1.2fr auto; }
}
.merch-teaser p { margin-bottom: 0; }

/* 17. FOOTER ------------------------------------------------------------------------------- */
.site-footer {
  background: var(--olive-deep);
  color: rgba(246, 250, 252, 0.78);
  padding: clamp(3rem, 5vw, 4.5rem) 0 0;
}
.footer-grid {
  display: grid;
  gap: 2.2rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.3fr 1fr 0.7fr 1fr; } }

/* Footer logo is big and already carries the name — hide the duplicate text */
.brand-footer .brand-text { display: none; }
.footer-brand p { margin-top: 1rem; font-size: 0.92rem; max-width: 34ch; }

.footer-col h3 {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col p, .footer-col address { font-size: 0.92rem; margin-bottom: 0.8em; }
.footer-col a { color: var(--salmon); text-decoration: none; }
.footer-col a:hover { text-decoration: underline; }
.footer-col nav { margin-top: 0.6rem; font-size: 0.9rem; }

.footer-bottom {
  padding: 1.4rem 0 1.8rem;
  border-top: 1.5px solid rgba(246, 250, 252, 0.18);
  font-size: 0.85rem;
}
.footer-bottom p { margin: 0; }

/* 18. MOBILE FLOATING BAR, TOAST & MISC ----------------------------------------------------- */
.mobile-bar {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  z-index: 80;
  display: none;
  gap: 6px;
  padding: 8px;
  background: rgba(23, 65, 92, 0.96);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1.5px solid rgba(246, 250, 252, 0.25);
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(22, 42, 54, 0.45);
}
.mobile-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 4px;
  border-radius: 8px;
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.25s var(--ease);
}
.mobile-bar a:hover, .mobile-bar a:active { background: rgba(246, 250, 252, 0.14); }
.mobile-bar svg { width: 20px; height: 20px; color: var(--salmon); }

@media (max-width: 767px) {
  .mobile-bar { display: flex; }
  /* Leave room so the floating bar never covers the footer text */
  body { padding-bottom: 86px; }
}

/* Small "copied!" notification */
.toast {
  position: fixed;
  left: 50%;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  z-index: 165;
  transform: translate(-50%, 20px);
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid rgba(246, 250, 252, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
@media (max-width: 767px) { .toast { bottom: calc(96px + env(safe-area-inset-bottom, 0px)); } }

/* Skip link for keyboard users */
.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 200;
  padding: 0.7rem 1.2rem;
  background: var(--salmon);
  color: #143a52;
  font-weight: 700;
  border-radius: 0 0 10px 10px;
  text-decoration: none;
  transition: top 0.3s var(--ease);
}
.skip-link:focus { top: 0; }

/* 19. ANIMATIONS ------------------------------------------------------------------------------ */
/* Hero elements rise & fade in when the page loads (staggered via --d) */
.rise {
  opacity: 0;
  animation: riseIn 0.9s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sections reveal softly as you scroll (JS adds .in-view).
   Only active when JS is running — otherwise everything stays visible. */
html.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--d, 0s);
}
html.js .reveal.in-view { opacity: 1; transform: translateY(0); }

@keyframes marquee { to { transform: translateX(-50%); } }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 83, 70, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(255, 83, 70, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 83, 70, 0); }
}

@keyframes cueDrop {
  0% { opacity: 0; transform: translateY(0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translateY(14px); }
}

/* 20. ACCESSIBILITY & REDUCED MOTION ----------------------------------------------------------- */
:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Respect visitors who prefer less motion: turn everything off. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .rise, html.js .reveal { opacity: 1 !important; transform: none !important; animation: none !important; }
  .marquee-track { animation: none !important; }
  .live-dot { animation: none !important; }
  .scroll-cue span { animation: none !important; }
}
