/*
 * bloom_room.css
 * Single consolidated stylesheet for Bloom Room (bloomroomny.com)
 * ─────────────────────────────────────────────────────────────────
 */

/* ================================================================
   1. RESET / NORMALIZE (essential rules only)
   ================================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100%;
}

img {
  border: 0;
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 10px;
}

p {
  margin-top: 0;
  margin-bottom: 10px;
}

address {
  font-style: normal;
}

a {
  background-color: transparent;
}

button,
[type='button'],
[type='reset'] {
  border: 0;
  cursor: pointer;
  -webkit-appearance: button;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ================================================================
   2. DESIGN TOKENS
   ================================================================ */

:root {
  /* Brand palette */
  --color-orange-dark:  #E94C2D;   /* footer background, h1 accent */
  --color-orange-mid:   #F27E2F;   /* body text accent */
  --color-cream:        #fff8dc;   /* site background */
  --color-text:         #333333;   /* primary readable text */
  --color-text-light:   #ffffff;   /* text on dark backgrounds */

  /* Navigation */
  --color-nav-bg:       #fff8dc;
  --color-nav-text:     #333333;
  --color-nav-hover-bg: #f0ebe0;

  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-display: 'Bebas Neue', sans-serif;

  /* Spacing */
  --spacing-xs:  4px;
  --spacing-sm:  8px;
  --spacing-md:  16px;
  --spacing-lg:  24px;
  --spacing-xl:  48px;
  --spacing-2xl: 72px;
  --spacing-3xl: 96px;

  /* Typography rhythm */
  --leading-tight:  1.1;
  --leading-snug:   1.3;
  --leading-normal: 1.65;
  --leading-loose:  1.8;

  /* Letter-spacing scale */
  --tracking-tight:  -0.02em;
  --tracking-normal:  0;
  --tracking-wide:    0.05em;
  --tracking-wider:   0.12em;
  --tracking-widest:  0.18em;

  /* Amber body text – WCAG AA against cream #fff8dc */
  --color-amber-body: #9e5000;   /* 5.2 : 1 – richer, deeper than #aa5500 */
  --color-amber-muted: #b86000;  /* 4.6 : 1 – for secondary / lighter uses */

  /* Layout */
  --max-width: 1220px;
  --nav-height: 70px;
  --header-height: 117px; /* banner ~35px + nav ~82px */

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ================================================================
   3. ACCESSIBILITY
   ================================================================ */

/* Skip navigation link – hidden until focused */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--color-orange-dark);
  color: var(--color-text-light);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 4px 0;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--color-text);
  outline-offset: 2px;
}

/* Visible focus ring for keyboard navigation */
:focus-visible {
  outline: 3px solid var(--color-orange-dark);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Remove focus ring for mouse users (browsers that support :focus-visible) */
:focus:not(:focus-visible) {
  outline: none;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ================================================================
   4. BASE TYPOGRAPHY
   ================================================================ */

body {
  background-color: var(--color-cream);
  color: var(--color-text);
  font-family: var(--font-primary);
  font-size: 17px;
  line-height: var(--leading-normal);
  display: flex;
  flex-direction: column;
}

/* Heading scale – tighter tracking on large sizes for punchy feel */
h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}
h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  line-height: 1.15;
  letter-spacing: var(--tracking-tight);
}
h3 { font-size: clamp(20px, 2.5vw, 26px); line-height: var(--leading-snug); }
h4 { font-size: 19px; line-height: 1.35; }
h5 { font-size: 14px; line-height: 1.4; }
h6 { font-size: 12px; line-height: 1.5; }

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 10px;
}

p {
  max-width: 80ch;
  font-weight: 500;
  line-height: var(--leading-normal);
}

a {
  color: var(--color-text);
  text-decoration: underline;
}

a:hover {
  color: var(--color-orange-dark);
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

small {
  font-size: 80%;
}

/* ================================================================
   5. LAYOUT SHELLS
   ================================================================ */

.main {
  background-color: var(--color-cream);
  flex: 1;
  width: 100%;
}

/* ================================================================
   5b. TOP ANNOUNCEMENT BANNER
   Lives inside .site-header so it sticks with the nav.
   Full-width orange band linking to the shop page.
   ================================================================ */

.top-banner {
  display: block;
  width: 100%;
  background-color: var(--color-orange-dark);
  text-align: center;
  text-decoration: none;
  padding: 10px var(--spacing-lg);
  transition: background-color 0.2s ease;
}

.top-banner:hover {
  background-color: #f26040;   /* lighter on hover – more inviting than darker */
  color: inherit;
}

.top-banner__text {
  font-family: var(--font-primary);
  font-size: clamp(10px, 2.2vw, 15px);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: #fff8dc;   /* cream – brighter than page bg against orange */
  margin: 0;
  max-width: none;
  line-height: 1.3;
  text-decoration: underline dotted #ffedd8;
  text-underline-offset: 3px;
}

/* ================================================================
   6. HEADER & NAVIGATION
   ================================================================ */

.site-header {
  background-color: var(--color-nav-bg);
  border-bottom: 2px solid var(--color-orange-dark);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

/* Push body content below the fixed header */
body {
  padding-top: var(--actual-header-height, 120px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: var(--nav-height);
  padding: 6px 0;
}

/* Logo */
.nav-logo-link {
  display: inline-block;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  width: min(400px, 42vw);
  max-height: 60px;
  height: auto;
  display: block;
  margin: 8px 0;
}

/* Desktop nav links */
.nav-menu {
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
  display: flex;
  gap: 0;
  align-items: center;
}

.nav-link {
  display: inline-block;
  padding: 10px 10px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-nav-text);
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
}

.nav-link:hover {
  background-color: var(--color-nav-hover-bg);
  color: var(--color-orange-dark);
}

.nav-link--current {
  color: var(--color-orange-dark);
  position: relative;
}

/* Underline accent on active nav item */
.nav-link--current::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 10px;
  right: 10px;
  height: 2px;
  background-color: var(--color-orange-dark);
  border-radius: 1px;
}

.nav-link--current:hover {
  background-color: var(--color-nav-hover-bg);
}

/* ── Hamburger button (hidden on desktop) ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;        /* minimum 44×44 px touch target (WCAG 2.5.5) */
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 2px solid var(--color-orange-dark);
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.nav-toggle[aria-expanded="true"] {
  background-color: var(--color-orange-dark);
}

.hamburger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-orange-dark);
  border-radius: 2px;
  transition: background-color 0.2s;
}

.nav-toggle[aria-expanded="true"] .hamburger-bar {
  background-color: var(--color-text-light);
}

/* ── Mobile drawer ── */
.mobile-menu {
  display: none;
  background-color: var(--color-nav-bg);
  border-bottom: 2px solid var(--color-orange-dark);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: var(--spacing-sm) 5%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-link {
  display: block;
  padding: 10px 16px;
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 600;
  color: var(--color-nav-text);
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.2s, color 0.2s;
  min-height: 44px; /* WCAG 2.5.5 touch target */
  display: flex;
  align-items: center;
}

.mobile-nav-link:hover,
.mobile-nav-link[aria-current="page"] {
  background-color: var(--color-nav-hover-bg);
  color: var(--color-orange-dark);
}

/* ================================================================
   7. MAIN CONTENT – SECTION & CONTENT BLOCK
   ================================================================ */

.section {
  background-color: var(--color-cream);
  padding: var(--spacing-lg) 0 var(--spacing-2xl);
  display: flex;
  justify-content: center;
}

/* Home page — slideshow is first child, tighter top gap */
.section--home {
  padding-top: 20px;
}

.content-block {
  width: 90%;
  max-width: var(--max-width);
  padding: var(--spacing-lg) var(--spacing-lg);
}

/* Page heading & body text (used on all pages) */
.content-block h1 {
  color: var(--color-orange-dark);
  font-family: var(--font-primary);
  font-size: clamp(38px, 5.5vw, 58px);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
  margin-bottom: var(--spacing-lg);
}

.content-block p {
  /* #9e5000 passes WCAG AA (5.2:1) against cream #fff8dc */
  color: var(--color-amber-body);
  font-family: var(--font-primary);
  /* Scales from 16px on small phones up to 19px on wide screens */
  font-size: clamp(16px, 1.5vw + 13px, 19px);
  font-weight: 500;
  line-height: var(--leading-loose);
  max-width: 62ch;
  margin-bottom: var(--spacing-lg);
}

/* About page – Lauren portrait, floated inline left */
.about-portrait {
  float: left;
  margin: 4px 24px 10px 0;
  padding: 0;
}

.about-portrait__img {
  display: block;
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
}

.about-portrait__caption {
  display: block;
  margin-top: 5px;
  font-family: var(--font-primary);
  font-size: 13px;
  font-style: italic;
  font-weight: 500;
  color: var(--color-amber-muted);
  text-align: left;
}

/* Clearfix so footer doesn't collapse under float */
.content-block::after {
  content: '';
  display: table;
  clear: both;
}

@media screen and (max-width: 600px) {
  .about-portrait {
    float: none;
    margin: 0 0 var(--spacing-lg) 0;
  }

  .about-portrait__img {
    width: 150px;
    height: 150px;
  }
}

/* ================================================================
   8. FOOTER
   ================================================================ */

.site-footer {
  background-color: var(--color-orange-dark);
  margin-top: auto;
  padding: 0 var(--spacing-lg) var(--spacing-xl);
  font-family: var(--font-primary);
  color: var(--color-cream);
}

/* ── Four-column grid ── */
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: var(--spacing-lg);
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid rgba(255, 248, 220, 0.35);
}

.footer-col-heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-cream);
  margin: 0 0 var(--spacing-md) 0;
  opacity: 0.65;
}

/* Col 1 – Info */
.footer-address {
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-cream);
}

.footer-address p {
  margin: 0 0 4px 0;
  max-width: none;
  color: var(--color-cream);
}

.footer-link {
  color: var(--color-cream);
  text-decoration: underline dotted;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* Col 2 – Nav links */
.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 4px;
}

.footer-nav a {
  color: var(--color-cream);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Col 3 – Hours */
.footer-hours {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-cream);
}

.footer-hours p {
  margin: 0 0 4px 0;
  max-width: none;
  color: var(--color-cream);
}

/* ── Social links ── */
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-social__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-cream);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer-social__link:hover {
  opacity: 1;
  color: var(--color-cream);
}

.footer-social__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--color-cream);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


.footer-map-wrap {
  border: 2px solid rgba(255, 248, 220, 0.4);
  border-radius: 4px;
  overflow: hidden;
  display: inline-block;
  transition: border-color 0.2s ease;
  max-width: 200px;
  width: 100%;
}

.footer-map-wrap:hover {
  border-color: var(--color-cream);
}

.footer-map-wrap iframe {
  display: block;
  width: 100%;
  height: 160px;
  border: 0;
}

.footer-map-directions {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-cream);
  text-decoration: underline dotted;
  transition: color 0.2s;
}

.footer-map-directions:hover {
  color: #fff;
  text-decoration: underline;
}

/* ── Footer signup strip ──
   Spans the width of the 3 left columns (everything except the map).
   Sits between .footer-inner and .footer-warnings.
   ================================================================ */

.footer-signup-strip {
  display: none;
  max-width: var(--max-width);
  margin: var(--spacing-lg) auto 0;
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid rgba(255, 248, 220, 0.35);
  /* Align with the 3 left cols: span 3/4 of the footer grid width */
  /* We use a grid trick: same 4-col grid, link spans cols 1–3 */
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: var(--spacing-lg);
}

.footer-signup-link {
  grid-column: 1 / 4;   /* spans the 3 left columns */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--spacing-lg);
  padding: var(--spacing-md) var(--spacing-lg);
  border: 2px solid var(--color-cream);
  border-radius: 6px;
  background-color: var(--color-cream);
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.footer-signup-link__arrow {
  font-size: 22px;
  color: var(--color-orange-dark);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s ease;
  margin-left: 20px;
}

.footer-signup-link:hover {
  border-color: #fff;
  background-color: #fff;
  color: inherit;
}

.footer-signup-link__text {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-orange-dark);
  letter-spacing: var(--tracking-wide);
  max-width: none;
  margin: 0;
  line-height: var(--leading-snug);
}

.footer-signup-link__label {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-orange-dark);
  opacity: 0.65;
  max-width: none;
  margin: 0 0 3px 0;
  line-height: 1;
}

.footer-signup-link:hover .footer-signup-link__arrow {
  transform: translateX(4px);
}

/* ── Warnings ── */
.footer-warnings {
  max-width: var(--max-width);
  margin: var(--spacing-md) auto 0;
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid rgba(255, 248, 220, 0.35);
}

.footer-warnings p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 248, 220, 0.9);
  margin: 0 0 4px 0;
  max-width: none;
}

/* ── Bottom bar ── */
.footer-bottom {
  max-width: var(--max-width);
  margin: var(--spacing-sm) auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-sm);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 248, 220, 0.75);
}

.footer-bottom a {
  color: rgba(255, 248, 220, 0.75);
  text-decoration: underline dotted;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: #fff;
}

/* ── ADA accessibility badge in footer ── */
.ada-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border: 1px solid rgba(255, 248, 220, 0.4);
  border-radius: 3px;
  cursor: pointer;
  background: transparent;
  color: rgba(255, 248, 220, 0.75);
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
  line-height: 1;
}

.ada-badge:hover {
  border-color: rgba(255, 248, 220, 0.8);
  color: #fff8dc;
}

.ada-badge__icon {
  font-size: 13px;
  line-height: 1;
}

/* ── Accessibility statement modal ── */
.ada-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg);
}

.ada-modal--hidden {
  display: none;
}

.ada-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.ada-modal__box {
  position: relative;
  background: #fff8dc;
  color: var(--color-text);
  border-radius: 6px;
  padding: var(--spacing-xl);
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}

.ada-modal__close {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  font-size: 22px;
  line-height: 1;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.15s;
}

.ada-modal__close:hover {
  background: rgba(0,0,0,0.08);
}

.ada-modal__heading {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-orange-dark);
  margin: 0 0 var(--spacing-md) 0;
  padding-right: var(--spacing-xl);
  letter-spacing: var(--tracking-tight);
}

.ada-modal__body {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
  color: var(--color-text);
}

.ada-modal__body p {
  margin: 0 0 var(--spacing-md) 0;
  max-width: none;
  font-size: 14px;
  color: var(--color-text);
}

.ada-modal__body h3 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-orange-dark);
  margin: var(--spacing-lg) 0 var(--spacing-sm) 0;
  opacity: 0.85;
}

.ada-modal__body ul {
  margin: 0 0 var(--spacing-md) 0;
  padding-left: var(--spacing-lg);
}

.ada-modal__body li {
  font-size: 14px;
  margin-bottom: 4px;
  line-height: 1.6;
}

.ada-modal__body code {
  font-family: monospace;
  font-size: 12px;
  background: rgba(0,0,0,0.06);
  padding: 1px 4px;
  border-radius: 3px;
}

.ada-modal__contact {
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(51,51,51,0.15);
  font-size: 13px;
  line-height: 1.7;
  color: #666;
}

.ada-modal__contact a {
  color: var(--color-orange-dark);
  font-weight: 600;
}

/* ================================================================
   SLIDESHOW
   ================================================================ */

.slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: var(--spacing-xl);
  background: #1a1a1a;
}

/* Track is now just a positioning context — no translate needed */
.slideshow__track {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slideshow__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  pointer-events: none;
}

/* Active slide is fully visible */
.slideshow__slide:not([aria-hidden]) {
  opacity: 1;
  pointer-events: auto;
}

.slideshow__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Prev / Next buttons */
.slideshow__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.35);
  border: none;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  width: 48px;
  height: 64px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.2s;
  z-index: 2;
}

.slideshow__btn:hover {
  background: rgba(0, 0, 0, 0.6);
}

.slideshow__btn--prev { left: 10px; }
.slideshow__btn--next { right: 10px; }

/* Dot navigation */
.slideshow__dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.slideshow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.slideshow__dot--active {
  background: #fff;
  transform: scale(1.3);
}

/* Respect reduced-motion — instant switch, no fade */
@media (prefers-reduced-motion: reduce) {
  .slideshow__slide {
    transition: none;
  }
}

/* Mobile */
@media screen and (max-width: 600px) {
  .slideshow__btn {
    width: 36px;
    height: 48px;
    font-size: 26px;
  }
}

/* ================================================================
   DEALS NAV BADGE
   ================================================================ */


.nav-link--deals {
  position: relative;
  color: var(--color-orange-dark);
  font-weight: 800;
  padding-left: 30px;
  margin-left: 12px;
}

/* Bullseye rings */
.nav-link--deals::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-orange-dark);
  box-shadow:
    0 0 0 3px var(--color-cream),
    0 0 0 5px var(--color-orange-dark),
    0 0 0 7px var(--color-cream),
    0 0 0 9px rgba(233,76,45,0.4);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
}

.nav-link--deals:hover::before,
.nav-link--deals.nav-link--current::before {
  transform: translateY(-50%) scale(1.15);
  box-shadow:
    0 0 0 3px var(--color-cream),
    0 0 0 5px var(--color-orange-dark),
    0 0 0 7px var(--color-cream),
    0 0 0 9px var(--color-orange-dark);
}

.nav-link--deals:hover {
  color: #c93d20;
  background-color: transparent;
}

/* ================================================================
   DEALS PAGE
   ================================================================ */

.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--spacing-xl);
  margin: var(--spacing-xl) 0;
}

.deal-card {
  background: #fff;
  border: 2px solid rgba(233, 76, 45, 0.15);
  border-radius: 8px;
  padding: var(--spacing-xl);
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.deal-card:hover {
  border-color: var(--color-orange-dark);
  box-shadow: 0 4px 20px rgba(233,76,45,0.12);
}

.deal-card__icon {
  font-size: 32px;
  line-height: 1;
  margin-bottom: var(--spacing-md);
}

.deal-card__heading {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-orange-dark);
  letter-spacing: var(--tracking-tight);
  margin: 0 0 var(--spacing-md) 0;
}

.deal-card__intro {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--spacing-md);
  max-width: none;
}

.deal-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.deal-card__list li {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-amber-body);
  padding: 6px 0;
  border-bottom: 1px solid rgba(233,76,45,0.1);
  line-height: 1.4;
}

.deal-card__list li:last-child {
  border-bottom: none;
}

.deal-card__pct {
  font-weight: 800;
  color: var(--color-orange-dark);
}

.deal-card__item {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-amber-body);
  margin-bottom: var(--spacing-md);
  max-width: none;
  line-height: 1.6;
}

.deal-loyalty-link {
  color: var(--color-orange-dark);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.deal-loyalty-link:hover {
  color: #c93d20;
}

.deals-disclaimer {
  background: rgba(233, 76, 45, 0.06);
  border: 1px solid rgba(233, 76, 45, 0.2);
  border-radius: 6px;
  padding: var(--spacing-lg) var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.deals-disclaimer p {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
  max-width: none;
  line-height: 1.6;
}

/* ================================================================
   BRANDS PAGE
   ================================================================ */

.content-block--wide {
  max-width: 1100px;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.brand-card {
  border: 1.5px solid rgba(233, 76, 45, 0.2);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s var(--ease-out);
  display: flex;
  flex-direction: column;
}

.brand-card:hover {
  border-color: var(--color-orange-dark);
  box-shadow: 0 6px 24px rgba(233,76,45,0.13);
  transform: translateY(-2px);
}

.brand-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* Fixed-height logo area — all logos sit in same vertical space */
.brand-card__logo-wrap {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg) var(--spacing-xl);
  border-bottom: 1px solid rgba(233, 76, 45, 0.1);
  background: var(--color-cream);
}

/* Dark background for logos that are white or light-on-dark */
.brand-card--dark .brand-card__logo-wrap {
  background: #c8bfb0;
}

.brand-card__logo {
  max-width: 180px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.brand-card__body {
  padding: var(--spacing-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.brand-card__heading {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 800;
  color: var(--color-orange-dark);
  margin: 0;
  letter-spacing: var(--tracking-tight);
  line-height: 1.2;
}

.brand-card__desc {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-amber-body);
  line-height: 1.65;
  margin: 0;
  flex: 1;
  max-width: none;
}

.brand-card__cta {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-orange-dark);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  margin-top: var(--spacing-sm);
}

@media screen and (max-width: 767px) {
  .brands-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 479px) {
  .brands-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   LOYALTY FOOTER STRIP
   ================================================================ */

.footer-loyalty-strip {
  background: #ff9900;
  margin: 0 calc(-1 * var(--spacing-lg));
  padding: 0 var(--spacing-lg);
  border-bottom: none;
}

/* Cream gap between loyalty strip and main footer grid */
.footer-loyalty-spacer {
  height: 15px;
  background-color: var(--color-cream);
  margin: 0 calc(-1 * var(--spacing-lg));
}

.footer-loyalty-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md) 0;
  max-width: var(--max-width);
  margin: 0 auto;
  text-decoration: none;
  color: #3d1800;
  transition: opacity 0.2s;
}

.footer-loyalty-link:hover {
  opacity: 0.9;
  color: #3d1800;
}

.footer-loyalty-link__icon {
  font-size: 24px;
  flex-shrink: 0;
}

.footer-loyalty-link__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: #3d1800;
  opacity: 0.7;
  margin: 0 0 2px 0;
  max-width: none;
}

.footer-loyalty-link__text {
  font-size: 18px;
  font-weight: 700;
  color: #3d1800;
  margin: 0;
  max-width: none;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Arrow hidden */
.footer-loyalty-link__arrow {
  display: none;
}

/* ================================================================
   LOYALTY PROGRAM MODAL
   ================================================================ */

.loyalty-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg);
}

.loyalty-modal--hidden {
  display: none;
}

.loyalty-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.loyalty-modal__box {
  position: relative;
  background: #fff8dc;
  border-radius: 6px;
  padding: var(--spacing-xl);
  max-width: 560px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}

.loyalty-modal__close {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  font-size: 22px;
  line-height: 1;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.15s;
}

.loyalty-modal__close:hover {
  background: rgba(0,0,0,0.08);
}

.loyalty-modal__heading {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-orange-dark);
  margin: 0 0 var(--spacing-sm) 0;
  padding-right: var(--spacing-xl);
  letter-spacing: var(--tracking-tight);
}

.loyalty-modal__sub {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-amber-body);
  margin: 0 0 var(--spacing-lg) 0;
  max-width: none;
}

.loyalty-modal__embed {
  min-height: 300px;
}

/* ================================================================
   RESPONSIVE — NEW PAGES
   ================================================================ */

@media screen and (max-width: 767px) {
  .deals-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .brands-grid {
    grid-template-columns: 1fr;
  }

  .footer-loyalty-link {
    padding: var(--spacing-md) var(--spacing-lg);
  }
}

/* ── Nav logo block (no subhead needed anymore) ── */
.nav-logo-block {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Responsive footer */
@media screen and (max-width: 991px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-signup-strip {
  display: none;
    grid-template-columns: 1fr 1fr;
  }

  .footer-signup-link {
    grid-column: 1 / 3;   /* span both columns on tablet */
  }
}

@media screen and (max-width: 767px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
  }

  .footer-signup-strip {
  display: none;
    grid-template-columns: 1fr;
  }

  .footer-signup-link {
    grid-column: 1;
  }
}

@media screen and (max-width: 479px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-signup-strip {
  display: none;
    grid-template-columns: 1fr;
  }

  .footer-signup-link {
    grid-column: 1;
  }
}

/* ================================================================
   9. RESPONSIVE
   ================================================================ */

/* ── Tablet (≤ 991px): show hamburger, hide desktop menu ── */
@media screen and (max-width: 991px) {
  .nav-menu {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

/* ── Mobile (≤ 767px) ── */
@media screen and (max-width: 767px) {
  .content-block p {
    font-size: 17px;
  }

  .footer-address {
    font-size: 14px;
  }
}

/* ── Small mobile (≤ 479px) ── */
@media screen and (max-width: 479px) {
  .content-block p {
    font-size: 16px;
  }

  .footer-address {
    font-size: 13px;
    font-weight: 300;
  }
}

/* ================================================================
   10. AGE VERIFICATION MODAL
   ================================================================ */

body.modal-open {
  overflow: hidden;
}

.age-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-modal--hidden {
  display: none !important;
}

.age-modal__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
}

.age-modal__box {
  position: relative;
  z-index: 1;
  background-color: var(--color-cream);
  border-top: 6px solid var(--color-orange-dark);
  border-radius: 8px;
  padding: var(--spacing-xl) var(--spacing-xl);
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.age-modal__logo {
  width: 260px;
  height: auto;
  margin: 0 auto var(--spacing-lg);
  display: block;
}

.age-modal__heading {
  font-family: var(--font-primary);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-orange-dark);
  margin-bottom: var(--spacing-md);
}

.age-modal__text {
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
  max-width: none;
}

.age-modal__buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-md);
}

.age-modal__btn {
  min-width: 160px;
  min-height: 44px;
  padding: 12px 24px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.age-modal__btn--yes {
  background-color: var(--color-orange-dark);
  color: var(--color-text-light);
  border-color: var(--color-orange-dark);
}

.age-modal__btn--yes:hover {
  background-color: #c93d20;
  border-color: #c93d20;
}

.age-modal__btn--no {
  background-color: transparent;
  color: var(--color-text);
  border-color: var(--color-text);
}

.age-modal__btn--no:hover {
  background-color: var(--color-text);
  color: var(--color-text-light);
}

.age-modal__legal {
  font-size: 12px;
  font-weight: 400;
  color: #777;
  margin: 0;
  max-width: none;
  line-height: 1.5;
}

.age-modal__loyalty {
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(233, 76, 45, 0.15);
  text-align: center;
}

.age-modal__loyalty-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-orange-dark);
  text-decoration: none;
  cursor: pointer;
  padding: 10px 18px;
  border: 2px solid var(--color-orange-dark);
  border-radius: 5px;
  background: rgba(233, 76, 45, 0.05);
  transition: background 0.2s, color 0.2s;
  line-height: 1.3;
}

.age-modal__loyalty-link:hover {
  background: rgba(233, 76, 45, 0.1);
  color: #c93d20;
}

/* Darker star via filter */
.age-modal__loyalty-link .loyalty-star {
  font-size: 16px;
  filter: saturate(0.6) brightness(0.7);
}

/* Shop — coming soon message */
.shop-coming-soon {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-amber-body);
  line-height: 1.7;
  max-width: 58ch;
  padding: var(--spacing-lg) var(--spacing-xl);
  background: rgba(233, 76, 45, 0.06);
  border: 1px solid rgba(233, 76, 45, 0.2);
  border-radius: 6px;
  margin-bottom: var(--spacing-xl);
}

.shop-coming-soon a {
  color: var(--color-orange-dark);
  font-weight: 700;
}

/* ================================================================
   11. UTILITY: PRIMARY BUTTON (shop page, CTAs, etc.)
   ================================================================ */

.btn-primary {
  display: inline-block;
  min-height: 44px;
  padding: 12px 28px;
  background-color: var(--color-orange-dark);
  color: var(--color-text-light);
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid var(--color-orange-dark);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-primary:hover {
  background-color: #c93d20;
  border-color: #c93d20;
  color: var(--color-text-light);
}

/* ================================================================
   12. PAGE-SPECIFIC STYLES
   ================================================================ */

/* Shop page – Meadow ecommerce embed wrapper */
.shop-embed {
  border: 1px solid var(--color-orange-dark);
  background-color: #ffffee;
  padding: 10px;
  margin-bottom: 30px;
}

/* Contact page – address block */
.contact-details {
  font-style: normal;
  font-family: var(--font-primary);
  font-size: 19px;
  line-height: var(--leading-loose);
}

.contact-details p {
  margin-bottom: var(--spacing-xl);
  color: var(--color-amber-body);
}

.contact-details a {
  color: var(--color-orange-dark);
  font-weight: 700;
}

.contact-details a:hover {
  color: #c93d20;
}

/* Signup page – form layout */
.signup-page-form {
  max-width: 520px;
}

.signup-page-form .signup-form__field {
  margin-bottom: var(--spacing-md);
}

.signup-page-form .signup-form__field label {
  display: block;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-amber-body);
  margin-bottom: 5px;
}

.signup-page-form .signup-form__field input {
  display: block;
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font-primary);
  font-size: 16px;
  color: var(--color-text);
  background-color: #fff;
  border: 2px solid #ccc;
  border-radius: 4px;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.signup-page-form .signup-form__field input:focus {
  border-color: var(--color-orange-dark);
  outline: none;
}

.signup-page-form .signup-form__field input::placeholder {
  color: #aaa;
}

.signup-page-form .signup-form__submit {
  display: inline-block;
  padding: 13px 36px;
  background-color: var(--color-orange-dark);
  color: var(--color-text-light);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  min-height: 44px;
  transition: background-color 0.2s;
  margin-top: var(--spacing-sm);
}

.signup-page-form .signup-form__submit:hover {
  background-color: #c93d20;
}

.signup-page-form .signup-form__legal {
  font-size: 12px;
  color: #888;
  margin-top: var(--spacing-md);
  max-width: none;
  line-height: 1.6;
}

.signup-form__thanks--page {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-orange-dark);
  padding: var(--spacing-xl) 0;
}

.signup-form__thanks--page p {
  color: var(--color-orange-dark);
}

/* ================================================================
   13. SLIDESHOW (commented out – ready to re-enable)
   ================================================================ */

/*
.slideshow-wrapper { ... }
*/

/* ── Copyright year span ── */
#copyright-year {
  font-variant-numeric: tabular-nums;
}

/* ================================================================
   LEGAL PAGES (privacy policy, terms & conditions)
   ================================================================ */

.legal-content h1 {
  margin-bottom: var(--spacing-sm);
}

.legal-meta {
  font-size: 13px;
  font-weight: 500;
  color: #888;
  margin-bottom: var(--spacing-2xl);
  max-width: none;
  letter-spacing: var(--tracking-wide);
}

.legal-content h2 {
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-orange-dark);
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-md);
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(233, 76, 45, 0.2);
}

.legal-content p {
  font-size: 16px;
  color: var(--color-text);
  line-height: var(--leading-loose);
  margin-bottom: var(--spacing-md);
}

.legal-content a {
  color: var(--color-orange-dark);
  font-weight: 600;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #c93d20;
}
