/*
Theme Name: The Miller of Mansfield
Theme URI: https://themillerofmansfield.com
Description: Custom child theme for The Miller of Mansfield, Goring-on-Thames. Built on Hello Elementor.
Author: The Miller of Mansfield
Author URI: https://themillerofmansfield.com
Template: hello-elementor
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: miller-of-mansfield
*/

/* ==========================================================================
   THE MILLER OF MANSFIELD — Design System
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties
   -------------------------------------------------------------------------- */

:root {
  /* Brand colours */
  --miller-teal: #1B2F3A;
  --miller-gold: #C9A962;
  --miller-cream: #F5F1E6;
  --miller-rose: #B87D7D;
  --miller-sage: #8B9F8B;
  --miller-charcoal: #2D2D2D;

  /* Semantic aliases */
  --color-primary: var(--miller-teal);
  --color-accent: var(--miller-gold);
  --color-bg: var(--miller-cream);
  --color-text: var(--miller-charcoal);
  --color-rose: var(--miller-rose);
  --color-sage: var(--miller-sage);

  /* Opacity variants */
  --miller-gold-10: rgba(201, 169, 98, 0.1);
  --miller-gold-20: rgba(201, 169, 98, 0.2);
  --miller-gold-30: rgba(201, 169, 98, 0.3);
  --miller-gold-40: rgba(201, 169, 98, 0.4);
  --miller-gold-60: rgba(201, 169, 98, 0.6);
  --miller-cream-40: rgba(245, 241, 230, 0.4);
  --miller-cream-50: rgba(245, 241, 230, 0.5);
  --miller-cream-60: rgba(245, 241, 230, 0.6);
  --miller-cream-70: rgba(245, 241, 230, 0.7);
  --miller-cream-80: rgba(245, 241, 230, 0.8);
  --miller-teal-10: rgba(27, 47, 58, 0.1);
  --miller-charcoal-10: rgba(45, 45, 45, 0.1);
  --miller-charcoal-60: rgba(45, 45, 45, 0.6);
  --miller-charcoal-70: rgba(45, 45, 45, 0.7);
  --miller-charcoal-80: rgba(45, 45, 45, 0.8);

  /* Backgrounds */
  --color-bg-white: #ffffff;

  /* Semantic UI */
  --color-alert: #DC2626;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-padding: 3.2rem;
  --section-padding-lg: 4.8rem;
  --container-max: 1280px;
  --container-narrow: 896px;
  --container-padding: 1rem;

  /* Transitions */
  --transition-fast: 200ms ease;
  --transition-medium: 300ms ease;
  --transition-slow: 500ms ease;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);

  /* Border radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-full: 9999px;
}


/* --------------------------------------------------------------------------
   2. Base / Reset
   -------------------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  /* Respect EXIF orientation in all browsers */
  image-orientation: from-image;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent);
}


/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-primary);
  margin-top: 0;
}

h1 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 1.875rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.text-display {
  font-family: var(--font-display);
}

.text-body {
  font-family: var(--font-body);
}

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.text-small {
  font-size: 0.875rem;
}

.text-caption {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  h3 { font-size: 1.5rem; }
}

@media (min-width: 1024px) {
  h1 { font-size: 3.75rem; }
  h2 { font-size: 2.25rem; }
}


/* --------------------------------------------------------------------------
   Skip Navigation (accessibility)
   -------------------------------------------------------------------------- */

.skip-to-content {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  background: var( --miller-gold );
  color: var( --miller-teal );
  font-family: var( --font-body );
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  border-radius: 0 0 var( --radius-sm ) 0;
  transition: top var( --transition-fast );
}

.skip-to-content:focus,
.skip-to-content:focus-visible {
  top: 0;
  outline: 3px solid var( --miller-teal );
  outline-offset: 2px;
}


/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */

.container-wide {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.container-narrow {
  max-width: var(--container-narrow);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.section {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.section-cream {
  background-color: var(--miller-cream);
}

.section-white {
  background-color: var( --color-bg-white );
}

.section-teal {
  background-color: var(--miller-teal);
  color: var(--miller-cream);
}

.section-teal h1,
.section-teal h2,
.section-teal h3,
.section-teal h4 {
  color: var(--miller-cream);
}

.section-teal a {
  color: var(--miller-gold);
}

.section-teal a:hover {
  color: var(--miller-cream);
}

@media (min-width: 640px) {
  .container-wide,
  .container-narrow {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container-wide,
  .container-narrow {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .section {
    padding-top: var(--section-padding-lg);
    padding-bottom: var(--section-padding-lg);
  }
}


/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  line-height: 1.4;
}

.btn:focus-visible {
  outline: 2px solid var(--miller-gold);
  outline-offset: 2px;
}

/* ── Button variants ──
   Self-contained: each variant includes base button properties so they work
   even if the "btn" base class is missing (Elementor HTML widget caching).
   High-specificity selectors beat .elementor-kit-6 a / button overrides. */

/* Primary: teal fill */
.btn-primary,
a.btn-primary,
.elementor-kit-6 a.btn-primary,
body a.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  border: 2px solid var(--miller-teal);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
  line-height: 1.4;
  background-color: var(--miller-teal);
  color: var(--miller-cream);
}

.btn-primary:hover,
a.btn-primary:hover,
.elementor-kit-6 a.btn-primary:hover,
body a.btn-primary:hover {
  background-color: var(--miller-gold);
  border-color: var(--miller-gold);
  color: var(--miller-teal);
}

/* Secondary: teal outline (transparent bg) */
.btn-secondary,
a.btn-secondary,
.elementor-kit-6 a.btn-secondary,
body a.btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  border: 2px solid var(--miller-teal);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
  line-height: 1.4;
  background-color: transparent;
  color: var(--miller-teal);
}

.btn-secondary:hover,
a.btn-secondary:hover,
.elementor-kit-6 a.btn-secondary:hover,
body a.btn-secondary:hover {
  background-color: var(--miller-teal);
  color: var(--miller-cream);
}

/* Gold: gold fill */
.btn-gold,
a.btn-gold,
.elementor-kit-6 a.btn-gold,
body a.btn-gold {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  border: 2px solid var(--miller-gold);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
  line-height: 1.4;
  background-color: var(--miller-gold);
  color: var(--miller-teal);
}

.btn-gold:hover,
a.btn-gold:hover,
.elementor-kit-6 a.btn-gold:hover,
body a.btn-gold:hover {
  background-color: var(--miller-teal);
  border-color: var(--miller-teal);
  color: var(--miller-cream);
}

/* On dark backgrounds — inline styles or section-teal context */
.section-teal .btn-secondary,
.section-teal a.btn-secondary {
  color: var(--miller-cream);
  border-color: var(--miller-cream);
}

.section-teal .btn-secondary:hover,
.section-teal a.btn-secondary:hover {
  background-color: var(--miller-cream);
  color: var(--miller-teal);
}

/* Inline style overrides for buttons with explicit border-color in HTML */
a.btn-secondary[style*="border-color"],
.elementor-kit-6 a.btn-secondary[style*="border-color"] {
  border-width: 2px;
  border-style: solid;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
}

/* Small button variant */
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

/* Override Elementor kit link colors on ALL button variants */
.elementor-kit-6 a.btn-primary,
body a.btn-primary {
  color: var(--miller-cream);
}
.elementor-kit-6 a.btn-primary:hover,
body a.btn-primary:hover {
  color: var(--miller-teal);
}
.elementor-kit-6 a.btn-secondary,
body a.btn-secondary {
  color: var(--miller-teal);
}
.elementor-kit-6 a.btn-secondary:hover,
body a.btn-secondary:hover {
  color: var(--miller-cream);
}
.section-teal .elementor-kit-6 a.btn-secondary,
.section-teal body a.btn-secondary {
  color: var(--miller-cream);
}

/* Elementor button widget overrides */
.elementor-kit-6 .elementor-button,
.elementor-kit-6 a.elementor-button {
  text-decoration: none;
}


/* --------------------------------------------------------------------------
   6. Header & Navigation
   -------------------------------------------------------------------------- */

.miller-header {
  background-color: var(--miller-teal);
  color: var(--miller-cream);
  padding: 1.1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition-medium);
  overflow-x: clip;
}

.miller-header.is-scrolled {
  box-shadow: 0 2px 10px rgba( 0, 0, 0, 0.15 );
}

.miller-header .container-wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.miller-logo img {
  height: 2rem;
  width: auto;
}

.miller-logo a {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--miller-cream);
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
  margin-right: 1.5rem;
}

.miller-logo .logo-small {
  font-size: 0.65rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.12em;
}

.miller-logo .logo-large {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.miller-logo a:hover {
  color: var(--miller-gold);
}

.site-logo-link { display: inline-block; }
.site-logo { height: 48px; width: auto; display: block; }

.miller-nav {
  display: none;
  align-items: center;
  gap: 1.25rem;
}

.miller-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0;
}

.miller-nav li {
  list-style: none;
}

.miller-nav li + li::before {
  content: "\00b7";
  color: var(--miller-gold-30, rgba(201, 169, 98, 0.35));
  font-size: 1.2rem;
  padding: 0 0.45rem;
  pointer-events: none;
}

.miller-nav a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--miller-cream);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
  white-space: nowrap;
  padding: 0.35rem 0;
}

.miller-nav a:hover,
.miller-nav a.active,
.miller-nav .current-menu-item > a,
.miller-nav .current-menu-ancestor > a,
.miller-nav .current_page_item > a,
.miller-nav .current_page_ancestor > a {
  color: var(--miller-gold);
}

/* Gold underline on hover / active */
.miller-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--miller-gold);
  transition: width var(--transition-medium);
}

.miller-nav a:hover::after,
.miller-nav .current-menu-item > a::after,
.miller-nav .current_page_item > a::after {
  width: 100%;
}

.miller-nav-ctas a::after {
  display: none !important;
}

.miller-nav-ctas {
  display: flex;
  gap: 0.5rem;
  margin-left: 0.75rem;
}


/* Mobile menu toggle */
.miller-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  color: var(--miller-cream);
  cursor: pointer;
  padding: 0;
}

.miller-menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile menu */
.miller-mobile-menu {
  max-height: 0;
  overflow: hidden;
  background-color: var(--miller-teal);
  border-top: none;
  transition: max-height 350ms ease, padding 350ms ease;
  padding: 0 1.5rem;
  position: relative;
  z-index: 9999;
}

.miller-mobile-menu.is-open {
  display: block;
  visibility: visible;
  max-height: 600px;
  padding: 1.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .miller-mobile-menu { transition: none; }
}

.miller-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.miller-mobile-menu li {
  list-style: none;
}

.miller-mobile-menu a {
  display: block;
  padding: 0.85rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--miller-cream);
  text-decoration: none;
  text-align: center;
  transition: color var(--transition-fast);
}

.miller-mobile-menu a:hover,
.miller-mobile-menu .current-menu-item > a,
.miller-mobile-menu .current_page_item > a {
  color: var(--miller-gold);
}

.miller-mobile-menu .btn {
  width: 100%;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .miller-logo img {
    height: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .miller-nav {
    display: flex;
  }

  .miller-menu-toggle {
    display: none;
  }
}

/* Tighten nav spacing at narrower desktop widths so items don't overflow */
@media (min-width: 1024px) and (max-width: 1340px) {
  .miller-nav {
    gap: 0.5rem;
  }
  .miller-nav li + li::before {
    padding: 0 0.3rem;
  }
  .miller-nav a {
    font-size: 0.82rem;
    letter-spacing: 0.03em;
  }
  .miller-nav-ctas {
    margin-left: 0.5rem;
    gap: 0.4rem;
  }
  .miller-nav-ctas .btn,
  .miller-nav-ctas a.btn-outline-cream,
  .miller-nav-ctas a.btn-gold {
    padding: 0.4rem 0.7rem;
    font-size: 0.75rem;
  }
}


/* --------------------------------------------------------------------------
   7. Footer
   -------------------------------------------------------------------------- */

.miller-footer {
  background-color: var(--miller-teal);
  color: var(--miller-cream);
  padding: 4rem 0 0;
}

.miller-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.miller-footer h3,
.miller-footer h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--miller-cream);
  margin-bottom: 1rem;
}

.miller-footer a {
  color: var(--miller-cream-80);
  transition: color var(--transition-fast);
}

.miller-footer a:hover {
  color: var(--miller-gold);
}

.miller-footer p {
  color: var(--miller-cream-80);
}

/* Contact column */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-contact-item svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-contact-item a {
  color: var(--miller-gold);
}

.footer-contact-item a:hover {
  color: var(--miller-cream);
}

/* Opening hours */
.footer-hours dt {
  font-weight: 600;
  color: var(--miller-cream);
}

.footer-hours dd {
  margin-left: 0;
  color: var(--miller-cream-80);
  margin-bottom: 0.75rem;
}

/* Footer nav links */
.footer-nav a {
  display: block;
  padding: 0.25rem 0;
  color: var(--miller-cream-80);
}

.footer-nav a:hover {
  color: var(--miller-gold);
}

/* Social icons */
.miller-social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.miller-social-links a {
  color: var(--miller-cream-80);
  transition: color var(--transition-fast);
}

.miller-social-links a:hover {
  color: var(--miller-gold);
}

.miller-social-links svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Footer nav - remove bullet points and default list padding */
.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav li {
  list-style: none;
}

/* Review badges */
.footer-reviews-heading {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--miller-cream-80);
  margin: 1.5rem 0 0.5rem;
}

.footer-reviews {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--miller-cream-80);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-review-badge:hover {
  color: var(--miller-gold);
}

.footer-review-badge:focus-visible {
  outline: 2px solid var(--miller-gold);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.review-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 3px;
  flex-shrink: 0;
}

.review-icon-google {
  background: #4285F4;
  color: var( --color-bg-white );
}

.review-icon-booking {
  background: #003580;
  color: var( --color-bg-white );
}

/* Feedback link */
.footer-feedback-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.85rem;
}

.footer-feedback-link svg {
  color: var(--miller-cream-60);
  flex-shrink: 0;
}

.footer-feedback-link a {
  color: var(--miller-cream-80);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-feedback-link a:hover {
  color: var(--miller-gold);
}

/* WhatsApp link */
.footer-whatsapp a:hover {
  color: #25D366;
}

/* Footer bottom bar */
.miller-footer-bottom {
  border-top: 1px solid var(--miller-gold-20);
  padding: 1.5rem 0;
  margin-top: 3rem;
  font-size: 0.875rem;
  color: var(--miller-cream-60);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.footer-bottom-copyright,
.footer-bottom-links {
  margin: 0;
}

.miller-footer-bottom a {
  color: var(--miller-cream-60);
}

.miller-footer-bottom a:hover {
  color: var(--miller-gold);
}

@media (min-width: 768px) {
  .miller-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .miller-footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* --------------------------------------------------------------------------
   9. Cards
   -------------------------------------------------------------------------- */

.miller-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var( --color-bg-white );
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-fast), border-color var(--transition-fast);
  border: 1px solid transparent;
}

.miller-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--miller-gold-40);
}

.miller-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.miller-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.miller-card:hover .miller-card-image img {
  transform: scale(1.05);
}

.miller-card-body {
  padding: 1.5rem;
}

.miller-card-body h3 {
  margin-bottom: 0.5rem;
}

.miller-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .miller-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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


/* --------------------------------------------------------------------------
   10. Decorative Elements
   -------------------------------------------------------------------------- */

/* Gold ornamental divider */
.miller-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.miller-divider::before,
.miller-divider::after {
  content: '';
  flex: 1;
  max-width: 6rem;
  height: 1px;
  background-color: var(--miller-gold);
}

.miller-divider-star {
  color: var(--miller-gold);
  font-size: 0.75rem;
  line-height: 1;
}

/* Gold accent border (top or left) */
.miller-accent-top {
  border-top: 3px solid var(--miller-gold);
}

.miller-accent-left {
  border-left: 3px solid var(--miller-gold);
  padding-left: 1.5rem;
}

/* Subtle background circles (decorative) */
.miller-bg-circle {
  position: absolute;
  border-radius: 50%;
  background-color: var(--miller-gold-10);
  pointer-events: none;
}

/* Decorative circles on intro section (matches live site) */
.miller-intro-section {
  position: relative;
  overflow: hidden;
}

.miller-intro-section::before,
.miller-intro-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background-color: rgba(201, 169, 98, 0.07);
  pointer-events: none;
  z-index: 0;
}

.miller-intro-section::before {
  width: 450px;
  height: 450px;
  top: -120px;
  right: -100px;
}

.miller-intro-section::after {
  width: 350px;
  height: 350px;
  bottom: -80px;
  left: -80px;
}

/* Keep intro content above decorative circles */
.miller-intro-section > .elementor-container {
  position: relative;
  z-index: 1;
}

/* Gold pill/badge */
.miller-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  background-color: var(--miller-gold-10);
  color: var(--miller-gold);
}

/* Section headings with centred text */
.miller-section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.miller-section-heading h2 {
  margin-bottom: 0.5rem;
}

.miller-section-heading p {
  color: var(--miller-charcoal-60);
  font-size: 1.125rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}


/* --------------------------------------------------------------------------
   11. Utility Classes
   -------------------------------------------------------------------------- */

.text-teal     { color: var(--miller-teal); }
.text-gold     { color: var(--miller-gold); }
.text-cream    { color: var(--miller-cream); }
.text-rose     { color: var(--miller-rose); }
.text-sage     { color: var(--miller-sage); }
.text-charcoal { color: var(--miller-charcoal); }

.bg-teal     { background-color: var(--miller-teal); }
.bg-gold     { background-color: var(--miller-gold); }
.bg-cream    { background-color: var(--miller-cream); }
.bg-rose     { background-color: var(--miller-rose); }
.bg-sage     { background-color: var(--miller-sage); }
.bg-white    { background-color: var( --color-bg-white ); }

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.mx-auto { margin-left: auto; margin-right: auto; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

.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;
}


/* --------------------------------------------------------------------------
   12. Elementor Overrides
   -------------------------------------------------------------------------- */

/* Force correct fonts on Elementor widgets */
.elementor-widget-heading .elementor-heading-title {
  font-family: var(--font-display);
}

.elementor-widget-text-editor,
.elementor-widget-text-editor p,
.elementor-widget-text-editor li {
  font-family: var(--font-body);
}

/* Elementor button styling */
.elementor-button {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full) !important;
  transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), opacity var(--transition-fast);
}

/* Elementor section colours */
.elementor-section.miller-section-teal {
  background-color: var(--miller-teal);
  color: var(--miller-cream);
}

.elementor-section.miller-section-cream {
  background-color: var(--miller-cream);
}

/* Elementor nav menu widget */
.elementor-nav-menu a {
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Elementor icon list */
.elementor-icon-list-item a {
  transition: color var(--transition-fast);
}

.elementor-icon-list-item a:hover {
  color: var(--miller-gold) !important;
}

/* Fix Elementor container max-width */
.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: var(--container-max);
}

/* Remove default Elementor link underlines */
.elementor-widget a {
  text-decoration: none;
}

/* Elementor form styles (Contact/Feedback) */
.elementor-field-group .elementor-field {
  font-family: var(--font-body);
  border: 1px solid var(--miller-gold-40);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  transition: border-color var(--transition-fast);
}

.elementor-field-group .elementor-field:focus {
  border-color: var(--miller-gold);
  outline: none;
  box-shadow: 0 0 0 3px var(--miller-gold-10);
}

.elementor-field-group label {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-text);
}


/* --------------------------------------------------------------------------
   13. Collins Booking Widget
   -------------------------------------------------------------------------- */

#dmn-js,
.dmn-booking-widget {
  font-family: var(--font-body);
}


/* --------------------------------------------------------------------------
   14. WordPress Core Overrides
   -------------------------------------------------------------------------- */

/* Admin bar spacing */
body.admin-bar .miller-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .miller-header {
    top: 46px;
  }
}

/* Default WordPress alignment classes */
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

/* WordPress gallery */
.wp-block-gallery {
  gap: 0.5rem;
}

/* WordPress image captions */
.wp-caption-text,
figcaption {
  font-size: 0.875rem;
  color: var(--miller-charcoal-60);
  font-style: italic;
  margin-top: 0.5rem;
}


/* --------------------------------------------------------------------------
   15. Print Styles
   -------------------------------------------------------------------------- */

@media print {
  .miller-header,
  .miller-footer,
  .miller-menu-toggle,
  .miller-mobile-menu,
  .miller-scroll-top,
  .events-banner,
  .home-hero,
  .home-promo,
  .home-menu-banner,
  .home-location__map {
    display: none !important;
  }

  body {
    background: #ffffff;
    color: #000000;
    font-size: 12pt;
  }

  a {
    color: #000000;
    text-decoration: underline;
  }

  .section {
    padding: 1rem 0;
  }

  @page {
    margin: 12mm;
  }
}

/* ============================================================
   REINFORCEMENT CSS — Elementor Layout Fixes
   Added to ensure regenerated Elementor CSS renders correctly
   ============================================================ */

/* --- Image constraints: prevent layout shift from large external images --- */
.elementor-widget-image img,
.elementor-widget-image-box img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Elementor image widgets: ensure images fill their container width --- */
/* Higher specificity to override widget-image.min.css (loaded after theme) */
.elementor-widget.elementor-widget-image a {
  display: block;
}
.elementor-widget-image img {
  width: 100%;
  object-fit: cover;
}

/* --- Elementor grid foundation (missing from optimized CSS loading) --- */
.elementor-section .elementor-container {
  display: flex;
  margin-inline: auto;
  position: relative;
  align-items: stretch;
}

@media (min-width: 768px) {
  .elementor-column.elementor-col-10, .elementor-column[data-col="10"] { width: 10%; }
  .elementor-column.elementor-col-12, .elementor-column[data-col="12"] { width: 12.5%; }
  .elementor-column.elementor-col-14, .elementor-column[data-col="14"] { width: 14.285%; }
  .elementor-column.elementor-col-16, .elementor-column[data-col="16"] { width: 16.666%; }
  .elementor-column.elementor-col-20, .elementor-column[data-col="20"] { width: 20%; }
  .elementor-column.elementor-col-25, .elementor-column[data-col="25"] { width: 25%; }
  .elementor-column.elementor-col-30, .elementor-column[data-col="30"] { width: 30%; }
  .elementor-column.elementor-col-33, .elementor-column[data-col="33"] { width: 33.333%; }
  .elementor-column.elementor-col-34, .elementor-column[data-col="34"] { width: 33.333%; }
  .elementor-column.elementor-col-40, .elementor-column[data-col="40"] { width: 40%; }
  .elementor-column.elementor-col-50, .elementor-column[data-col="50"] { width: 50%; }
  .elementor-column.elementor-col-60, .elementor-column[data-col="60"] { width: 60%; }
  .elementor-column.elementor-col-66, .elementor-column[data-col="66"] { width: 66.666%; }
  .elementor-column.elementor-col-70, .elementor-column[data-col="70"] { width: 70%; }
  .elementor-column.elementor-col-75, .elementor-column[data-col="75"] { width: 75%; }
  .elementor-column.elementor-col-80, .elementor-column[data-col="80"] { width: 80%; }
  .elementor-column.elementor-col-83, .elementor-column[data-col="83"] { width: 83.333%; }
  .elementor-column.elementor-col-90, .elementor-column[data-col="90"] { width: 90%; }
  .elementor-column.elementor-col-100, .elementor-column[data-col="100"] { width: 100%; }
}

@media (max-width: 767px) {
  .elementor-column {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .elementor-section .elementor-container {
    flex-wrap: wrap;
  }
}

.elementor-column-gap-extended > .elementor-column > .elementor-element-populated {
  padding: 15px;
}

.elementor-column-gap-default > .elementor-column > .elementor-element-populated {
  padding: 10px;
}

.elementor-column-gap-narrow > .elementor-column > .elementor-element-populated {
  padding: 5px;
}

.elementor-column-gap-wide > .elementor-column > .elementor-element-populated {
  padding: 20px;
}

.elementor-column-gap-wider > .elementor-column > .elementor-element-populated {
  padding: 30px;
}

.elementor-column-gap-no > .elementor-column > .elementor-element-populated {
  padding: 0;
}

.elementor-section .elementor-column {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  flex-shrink: 0;     /* Hold assigned width — don't shrink for siblings */
}

/* Ensure all Elementor images respect column boundaries */
.elementor img {
  max-width: 100%;
  height: auto;
}

.elementor-section .elementor-column > .elementor-widget-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Push buttons to bottom of card columns */
.elementor-section .elementor-column > .elementor-widget-wrap > .elementor-widget-button:last-child {
  margin-top: auto;
}

/* --- Section background reinforcement --- */
.elementor-section[data-element_type="section"] {
  width: 100%;
  position: relative;
}

/* --- Elementor heading defaults --- */
.elementor-widget-heading .elementor-heading-title {
  margin: 0;
  padding: 0;
  word-wrap: break-word;
}

/* --- Elementor text editor defaults --- */
.elementor-widget-text-editor {
  line-height: 1.7;
}

/* --- Button hover states --- */
.elementor-button:hover {
  opacity: 0.9;
}

/* --- Google Maps responsive --- */
.elementor-widget-google_maps iframe {
  width: 100%;
  min-height: 300px;
}

/* --- Custom HTML widget overflow --- */
.elementor-widget-html {
  overflow: hidden;
}

/* --- Ensure Elementor sections don't collapse --- */
.elementor-section {
  min-height: 1px;
}

/* --- Mobile: stack columns vertically --- */
@media (max-width: 767px) {
  .elementor-section .elementor-container {
    flex-direction: column;
  }

  .elementor-column {
    width: 100% !important;
  }

  /* Reduce section padding on mobile */
  .elementor-section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Scale down large headings */
  .elementor-widget-heading .elementor-heading-title {
    font-size: clamp(1.5rem, 5vw, 2.25rem);
  }
}

/* --- Elementor section background overlays (fallback for Elementor core CSS) --- */
/* Ensures hero overlays render correctly if Elementor's frontend.min.css is slow to load */
.elementor-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  transition: background var( --transition-medium ), border-radius var( --transition-medium ), opacity var( --transition-medium );
}

.elementor-section.elementor-section-has-background-overlay {
  position: relative;
}

/* Inner-page hero sections: ensure adequate height for sections with bg images */
/* Targets Elementor sections that have inline background-image set */
.elementor-section[style*="background-image"] {
  min-height: max(50vh, 400px);
}


/* Ensure hero content is vertically centred */
.elementor-section[style*="background-image"] > .elementor-container {
  min-height: inherit;
  display: flex;
  align-items: center;
}

/* =========================================================
   IMAGE ASPECT RATIO & CROP FIXES
   ========================================================= */

/* Hero carousel images — 16:9 crop */
.hero-carousel .swiper-slide img,
.hero-carousel img,
.elementor-widget-image.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 768px) {
    .hero-carousel .swiper-slide img,
    .hero-carousel img {
        height: 280px;
    }
}

/* Event/card images — 4:3 crop */
.event-card img,
.events-grid img,
.miller-event-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Room category card images — 3:2 crop */
.room-card img,
.room-category img,
.miller-room-img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* What's On live music carousel images */
.live-music-carousel img,
.whats-on-carousel .swiper-slide img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* EA Interactive Cards image fix */
.eael-interactive-card .eael-card-thumbnail img,
.eael-interactive-card img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
}

/* General Elementor image widget in card/grid contexts — prevent overflow */
.elementor-column .elementor-widget-image img {
    max-width: 100%;
    height: auto;
}

/* Force uniform height in multi-column image rows */
.miller-equal-height-images .elementor-widget-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* =============================================
   HOME HERO CAROUSEL — slide/image transition rules
   (viewport height, gradient, overlay, arrows, dots defined below)
   ============================================= */

.home-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1000ms ease-in-out;
    pointer-events: none;
}

.home-hero__slide--active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.home-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (prefers-reduced-motion: reduce) {
    .home-hero__slide { transition: none; }
}

/* =============================================
   HOME PILLAR CARDS
   ============================================= */

.home-pillars {
    background: var( --miller-cream );
    padding: 2.5rem 0 1rem;
}

.home-pillars__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 900px) and (min-width: 561px) {
    .home-pillars__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .home-pillars__grid { grid-template-columns: 1fr; }
}

.pillar-card {
    display: block;
    text-decoration: none;
    color: var( --miller-charcoal );
}

.pillar-card__image-wrap {
    overflow: hidden;
    aspect-ratio: 4 / 3;
    margin-bottom: 1rem;
}

.pillar-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var( --transition-slow );
}

.pillar-card:hover .pillar-card__img {
    transform: scale(1.05);
}

.pillar-card__title {
    font-family: var( --font-display );
    font-size: 1.4rem;
    color: var( --miller-charcoal );
    margin: 0 0 0.5rem;
    transition: color var( --transition-fast );
}

.pillar-card:hover .pillar-card__title {
    color: var( --miller-gold );
}

.pillar-card__desc {
    font-size: 0.95rem;
    color: var( --miller-charcoal-60 );
    margin: 0;
    line-height: 1.6;
}

.pillar-card:focus-visible {
    outline: 3px solid var( --miller-gold );
    outline-offset: 2px;
    border-radius: var( --radius-sm );
}

/* ==========================================================================
   HOME PAGE VISUAL POLISH — 2026-03-13
   ========================================================================== */

/* --------------------------------------------------------------------------
   Scroll Reveal
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY( 24px );
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal--visible {
  opacity: 1;
  transform: none;
}

@media ( prefers-reduced-motion: reduce ) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   Hero — viewport height (replaces 16:9 padding-bottom hack)
   -------------------------------------------------------------------------- */

.home-hero {
  position: relative;
  height: 80vh;
  min-height: 550px;
  overflow: hidden;
}

.home-hero__slides {
  position: absolute;
  inset: 0;
  padding-bottom: 0 !important;
}

/* --------------------------------------------------------------------------
   Hero — gradient overlay
   -------------------------------------------------------------------------- */

.home-hero__gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba( 0, 0, 0, 0.6 ) 0%,
    rgba( 30, 58, 58, 0.5 ) 40%,
    rgba( 30, 58, 58, 0.4 ) 100%
  );
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   Hero — fixed content overlay (heading, tagline, CTAs)
   -------------------------------------------------------------------------- */

.home-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
}

.home-hero__content {
  text-align: center;
  color: var( --miller-cream );
  padding: 0 1.5rem;
  max-width: 52rem;
  text-shadow: 0 2px 12px rgba( 0, 0, 0, 0.6 );
  animation: heroFadeIn 1000ms ease both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY( 16px ); }
  to   { opacity: 1; transform: none; }
}

@media ( prefers-reduced-motion: reduce ) {
  .home-hero__content { animation: none; }
}

.home-hero__heading {
  font-size: clamp( 2.2rem, 6vw, 4rem );
  color: var( --miller-cream );
  margin: 0 0 1rem;
  line-height: 1.15;
}

.home-hero__tagline {
  font-size: clamp( 1rem, 2vw, 1.2rem );
  color: var( --miller-cream-80 );
  margin: 0 0 2rem;
  line-height: 1.6;
}

.home-hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Hero — arrow buttons
   -------------------------------------------------------------------------- */

/* .elementor-kit-6 applies padding: 12px 32px to all <button> — override */
.elementor-kit-6 .home-hero__arrow,
.home-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY( -50% );
  z-index: 3;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba( 255, 255, 255, 0.2 );
  color: var( --color-bg-white );
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var( --transition-fast );
  padding: 0;
  min-width: 0;
  line-height: 1;
}

.home-hero__arrow:hover,
.home-hero__arrow:focus-visible {
  background: rgba( 255, 255, 255, 0.4 );
  outline: 2px solid rgba( 255, 255, 255, 0.6 );
  outline-offset: 2px;
}

.home-hero__arrow--prev { left:  1rem; }
.home-hero__arrow--next { right: 1rem; }

/* --------------------------------------------------------------------------
   Hero — expanding active dot
   -------------------------------------------------------------------------- */

.home-hero__dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX( -50% );
  z-index: 3;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

/* .elementor-kit-6 applies padding: 12px 32px to all <button> — override with matching specificity */
.elementor-kit-6 .home-hero__dot,
.home-hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: var( --miller-cream-50 );
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width var( --transition-medium ), background var( --transition-medium );
  min-width: 0;
  line-height: 1;
}

.elementor-kit-6 .home-hero__dot--active,
.home-hero__dot--active {
  background: var( --miller-cream );
  width: 24px;
}

/* --------------------------------------------------------------------------
   Btn — outline cream variant (for use on dark/hero backgrounds)
   Self-contained like other variants so Elementor kit link colour overrides
   don't bleed in. Use as class="btn btn-outline-cream".
   -------------------------------------------------------------------------- */

.btn-outline-cream,
a.btn-outline-cream,
.elementor-kit-6 a.btn-outline-cream,
body a.btn-outline-cream {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var( --font-body );
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  border: 2px solid var( --miller-cream );
  border-radius: var( --radius-full );
  cursor: pointer;
  transition: background-color var( --transition-fast ), color var( --transition-fast ), border-color var( --transition-fast );
  line-height: 1.4;
  background: transparent;
  color: var( --miller-cream );
}

.btn-outline-cream:hover,
a.btn-outline-cream:hover,
.elementor-kit-6 a.btn-outline-cream:hover,
body a.btn-outline-cream:hover {
  background: var( --miller-cream );
  color: var( --miller-teal );
  border-color: var( --miller-cream );
}

/* Nav CTA button overrides — must come after self-contained button variants */
.miller-nav-ctas .btn,
.miller-nav-ctas a.btn-outline-cream,
.miller-nav-ctas a.btn-gold,
.miller-header .miller-nav-ctas .btn-outline-cream,
.miller-header .miller-nav-ctas .btn-gold {
  padding: 0.4rem 0.9rem;
  font-size: 0.7rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

/* --------------------------------------------------------------------------
   Events Banner
   -------------------------------------------------------------------------- */

.events-banner {
  background: var( --miller-teal );
  padding: 0.75rem 0;
  
}

.events-banner__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.events-banner__items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.events-banner__event {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.events-banner__icon {
  width: 14px;
  height: 14px;
  color: var( --miller-gold );
  flex-shrink: 0;
}

.events-banner__name {
  font-family: var( --font-display );
  font-size: 0.875rem;
  color: var( --miller-cream );
}

.events-banner__sep {
  color: var( --miller-cream-40 );
  margin: 0 0.25rem;
}

.events-banner__when {
  font-size: 0.75rem;
  color: var( --miller-cream-70 );
}

.events-banner__more {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var( --miller-gold );
  text-decoration: none;
  transition: color var( --transition-fast );
}

.events-banner__more:hover { color: var( --miller-cream ); }

.events-banner__more:focus-visible {
  outline: 2px solid var( --miller-gold );
  outline-offset: 2px;
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   Intro Section
   -------------------------------------------------------------------------- */

.home-intro {
  background: var( --miller-cream );
  padding: 4rem 1rem;
  overflow: hidden;
  position: relative;
}

.home-intro__bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
}

.home-intro__bg-circle {
  position: absolute;
  color: var( --miller-teal );
}

.home-intro__bg-circle--tl {
  top: 0;
  left: 0;
  width: 256px;
  height: 256px;
}

.home-intro__bg-circle--br {
  bottom: 0;
  right: 0;
  width: 320px;
  height: 320px;
}

.home-intro__inner {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.home-intro__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.home-intro__rule {
  display: block;
  width: 3rem;
  height: 1px;
  background: var( --miller-gold-60 );
}

.home-intro__star {
  width: 1.25rem;
  height: 1.25rem;
  color: var( --miller-gold );
  flex-shrink: 0;
}

.home-intro__heading {
  font-size: clamp( 1.75rem, 4vw, 2.5rem );
  margin: 0 0 0.5rem;
}

.home-intro__est {
  font-family: var( --font-display );
  font-size: 1.125rem;
  color: var( --miller-gold );
  margin: 0 0 2rem;
}

.home-intro__body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var( --miller-charcoal-80 );
  margin: 0 0 1rem;
}

.home-intro__body--secondary {
  color: var( --miller-charcoal-70 );
  margin-bottom: 2rem;
}

.home-intro__footer-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.home-intro__rule--short { width: 2rem; }

.home-intro__dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var( --miller-gold-40 );
}

/* --------------------------------------------------------------------------
   Pillar card additions
   -------------------------------------------------------------------------- */

/* pillar card title hover + desc handled in base card rules above */

/* --------------------------------------------------------------------------
   New Menu Banner
   -------------------------------------------------------------------------- */

.home-menu-banner {
  position: relative;
  padding: 2rem 1rem;
  background: linear-gradient( 90deg, var( --miller-teal ) 0%, #2a5c5a 50%, var( --miller-teal ) 100% );
  overflow: hidden;
  text-align: center;
}

.home-menu-banner__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.10;
}

.home-menu-banner__fork {
  position: absolute;
  top: 50%;
  transform: translateY( -50% );
  width: 96px;
  height: 96px;
  color: var( --miller-gold );
}

.home-menu-banner__fork--left  { left:  -16px; }
.home-menu-banner__fork--right { right: -16px; transform: translateY( -50% ) rotate( 180deg ); }

.home-menu-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.home-menu-banner__heading {
  font-family: var( --font-display );
  font-size: clamp( 1.5rem, 3vw, 2rem );
  color: var( --miller-cream );
  margin-bottom: 0.5rem;
}

.home-menu-banner__sub {
  color: var( --miller-cream-80 );
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   Promo Banner
   -------------------------------------------------------------------------- */

.home-promo {
  background: linear-gradient( 90deg, var( --miller-teal ) 0%, #2a5c5a 50%, var( --miller-teal ) 100% );
  padding: 3rem 1rem;
  text-align: center;
}

.home-promo__inner {
  max-width: 36rem;
  margin: 0 auto;
}

.home-promo__label {
  font-family: var( --font-display );
  font-size: 1.5rem;
  color: var( --miller-gold );
  margin: 0 0 0.5rem;
}

.home-promo__body {
  font-size: 1.0625rem;
  color: var( --miller-cream );
  margin: 0 0 1.5rem;
}

/* --------------------------------------------------------------------------
   Our Spaces Section
   -------------------------------------------------------------------------- */

.home-spaces {
  background: var( --miller-cream );
  padding: 1.5rem 0 2.5rem;
}

.home-spaces__heading-wrap {
  text-align: center;
  margin-bottom: 1.5rem;
}

.home-spaces__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.home-spaces__rule {
  display: block;
  width: 3rem;
  height: 1px;
  background: var( --miller-gold-60 );
}

.home-spaces__star {
  width: 1.125rem;
  height: 1.125rem;
  color: var( --miller-gold );
}

.home-spaces__title {
  font-size: clamp( 1.75rem, 4vw, 2.5rem );
  margin: 0 0 0.75rem;
}

.home-spaces__sub {
  color: var( --miller-charcoal-60 );
  font-size: 1.0625rem;
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.6;
}

.home-spaces__grid {
  display: grid;
  grid-template-columns: repeat( 3, 1fr );
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media ( max-width: 900px ) and ( min-width: 561px ) {
  .home-spaces__grid { grid-template-columns: repeat( 2, 1fr ); }
}

@media ( max-width: 560px ) {
  .home-spaces__grid { grid-template-columns: 1fr; }
}

.space-card {
  display: block;
  background: var( --color-bg-white );
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba( 0, 0, 0, 0.08 );
  text-decoration: none;
  transition: box-shadow var( --transition-medium ), transform var( --transition-medium );
}

.space-card:hover {
  box-shadow: 0 6px 20px rgba( 0, 0, 0, 0.13 );
  transform: translateY( -2px );
}

.space-card__img-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.space-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform var( --transition-slow );
}

.space-card:hover .space-card__img {
  transform: scale( 1.04 );
}

.space-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.space-card__title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.space-card__icon {
  width: 1.125rem;
  height: 1.125rem;
  color: var( --miller-gold );
  flex-shrink: 0;
}

.space-card__title {
  font-family: var( --font-display );
  font-size: 1.1875rem;
  color: var( --miller-charcoal );
  margin: 0;
  transition: color var( --transition-fast );
}

.space-card:hover .space-card__title {
  color: var( --miller-teal );
}

.space-card__desc {
  font-size: 0.9rem;
  color: var( --miller-charcoal-60 );
  margin: 0;
  line-height: 1.6;
}

.space-card:focus-visible {
  outline: 3px solid var( --miller-gold );
  outline-offset: 2px;
  border-radius: var( --radius-sm );
}

.home-spaces__cta-wrap {
  text-align: center;
  margin-top: 0.5rem;
}

/* --------------------------------------------------------------------------
   Our Name Strip
   -------------------------------------------------------------------------- */

.home-ourname {
  background: var( --color-bg-white );
  padding: 2rem 1rem;
  border-top: 1px solid var( --miller-charcoal-10 );
}

.home-ourname__inner {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.home-ourname__text {
  font-size: 0.875rem;
  font-style: italic;
  color: var( --miller-charcoal-60 );
  line-height: 1.7;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Location Section
   -------------------------------------------------------------------------- */

.home-location {
  background: var( --miller-cream );
  padding: 2.5rem 1rem;
}

.home-location__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.home-location__heading {
  font-size: clamp( 1.75rem, 4vw, 2.5rem );
  margin: 0 0 1rem;
}

.home-location__address {
  font-size: 1.125rem;
  color: var( --miller-charcoal-80 );
  margin: 0 0 1rem;
  font-weight: 500;
}

.home-location__directions {
  color: var( --miller-charcoal-70 );
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.home-location__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.home-location__map {
  aspect-ratio: 16 / 9;
  border-radius: 0.5rem;
  overflow: hidden;
  background: var( --miller-teal-10 );
}

.home-location__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* --------------------------------------------------------------------------
   Mobile responsive overrides
   -------------------------------------------------------------------------- */

@media ( max-width: 768px ) {

  .home-hero {
    min-height: 460px;
  }

  .home-hero__arrow {
    display: none;
  }

  .home-intro { padding: 3rem 1rem; }
  .home-location { padding: 3rem 1rem; }

  .home-location__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .home-promo { padding: 2.5rem 1rem; }
}

/* --------------------------------------------------------------------------
   Scroll-to-top button
   -------------------------------------------------------------------------- */

/* Elementor kit applies padding:12px 32px to all `button` elements (specificity 0,1,1).
   The selector group below matches or beats that specificity to keep the circle intact. */
.elementor-kit-6 .miller-scroll-top,
body .miller-scroll-top,
.miller-scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  background: var( --miller-teal );
  border: 2px solid var( --miller-gold );
  color: var( --miller-cream );
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY( 8px );
  transition: opacity var( --transition-medium ), visibility var( --transition-medium ), transform var( --transition-medium ), background var( --transition-fast );
}

.miller-scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY( 0 );
}

.miller-scroll-top:hover,
.miller-scroll-top:focus-visible {
  background: var( --miller-gold );
  color: var( --miller-teal );
  outline: none;
}

.miller-scroll-top:focus-visible {
  outline: 3px solid var( --miller-gold );
  outline-offset: 2px;
}

@media ( max-width: 768px ) {
  .miller-scroll-top {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 40px;
    height: 40px;
  }
}

@media ( prefers-reduced-motion: reduce ) {
  .miller-scroll-top { transition: none; }
}

/* ==========================================================================
   WHAT'S ON PAGE
   ========================================================================== */

/* Hero */
.whats-on-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 28rem;
  max-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whats-on-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 58, 58, 0.6);
}
.whats-on-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--miller-cream);
}
.whats-on-hero__title {
  font-family: var( --font-heading );
  font-size: clamp( 2.5rem, 6vw, 4rem );
  color: var( --miller-cream );
  margin: 0 0 0.5rem;
  line-height: 1.1;
}
.whats-on-hero__sub {
  font-size: clamp( 1rem, 2.5vw, 1.25rem );
  color: var( --miller-cream );
  opacity: 0.85;
  margin: 0;
}

/* Upcoming Gig Cards */
.whats-on-gigs {
  background: var( --miller-teal );
  padding: 3rem 1.5rem;
  color: #fff;
}
.whats-on-gigs__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.whats-on-gigs__icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var( --miller-gold );
  flex-shrink: 0;
}
.whats-on-gigs__title {
  font-family: var( --font-heading );
  font-size: 1.5rem;
  color: #fff;
  margin: 0;
}
.whats-on-gigs__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 64rem;
  margin: 0 auto;
}
.whats-on-gig-card {
  background: rgba( 255, 255, 255, 0.08 );
  border: 1px solid rgba( 201, 169, 98, 0.25 );
  border-radius: 8px;
  padding: 0.875rem 1.25rem;
  text-align: center;
  transition: border-color 250ms;
}
.whats-on-gig-card:hover {
  border-color: rgba( 201, 169, 98, 0.5 );
}
.whats-on-gig-card__date {
  font-size: 0.75rem;
  font-weight: 600;
  color: var( --miller-gold );
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.3rem;
}
.whats-on-gig-card__artist {
  font-family: var( --font-heading );
  font-size: 1rem;
  color: #fff;
  margin: 0 0 0.2rem;
}
.whats-on-gig-card__time {
  font-size: 0.75rem;
  color: rgba( 255, 255, 255, 0.5 );
  margin: 0;
}

/* Regular Events */
.whats-on-regular {
  background: var( --miller-cream );
  padding: 4rem 1.5rem;
}
.whats-on-regular__heading {
  text-align: center;
  margin-bottom: 2.5rem;
}
.whats-on-regular__grid {
  display: grid;
  grid-template-columns: repeat( 3, 1fr );
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media ( max-width: 900px ) {
  .whats-on-regular__grid { grid-template-columns: 1fr; }
}

.regular-event-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 2px 8px rgba( 0, 0, 0, 0.06 );
}
.regular-event-card__title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}
.regular-event-card__icon {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}
.regular-event-card--amber .regular-event-card__icon,
.regular-event-card--amber .regular-event-card__freq,
.regular-event-card--amber .regular-event-card__link { color: #92400e; }

.regular-event-card--purple .regular-event-card__icon,
.regular-event-card--purple .regular-event-card__freq,
.regular-event-card--purple .regular-event-card__next { color: #6d28d9; }

.regular-event-card--teal .regular-event-card__icon,
.regular-event-card--teal .regular-event-card__freq,
.regular-event-card--teal .regular-event-card__next { color: var( --miller-teal ); }

.regular-event-card__freq {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.4rem;
}
.regular-event-card__name {
  font-family: var( --font-heading );
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
  color: var( --miller-charcoal );
}
.regular-event-card__desc {
  font-size: 0.875rem;
  color: rgba( 45, 45, 45, 0.7 );
  margin: 0 0 0.75rem;
  line-height: 1.5;
}
.regular-event-card__time {
  font-size: 0.875rem;
  color: rgba( 45, 45, 45, 0.5 );
  margin: 0 0 0.75rem;
}
.regular-event-card__next {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0;
}
.regular-event-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}
.regular-event-card__link:hover { text-decoration: underline; }

/* =============================================
   UNIFIED SCHEDULE
   ============================================= */
.whats-on-schedule {
  padding: 3rem 1.5rem 2rem;
}
.whats-on-schedule__heading {
  text-align: center;
  font-family: var( --font-heading );
  font-size: clamp( 1.5rem, 3vw, 2rem );
  margin-bottom: 2rem;
}
.whats-on-schedule__empty {
  text-align: center;
  color: rgba( 45, 45, 45, 0.6 );
  font-style: italic;
  margin-bottom: 2rem;
}
.whats-on-schedule__past-heading {
  font-family: var( --font-heading );
  font-size: 1.1rem;
  color: rgba( 45, 45, 45, 0.5 );
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 2.5rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba( 45, 45, 45, 0.1 );
}

.schedule-list {
  max-width: 48rem;
  margin: 0 auto;
}
.schedule-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba( 45, 45, 45, 0.08 );
}
.schedule-item:last-child { border-bottom: none; }

.schedule-item--past {
  opacity: 0.45;
}

.schedule-item__date {
  font-family: var( --font-body );
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var( --miller-teal );
  min-width: 5.5rem;
  flex-shrink: 0;
}
.schedule-item--past .schedule-item__date {
  color: var( --miller-charcoal );
}

.schedule-item__details {
  flex: 1;
  min-width: 0;
}
.schedule-item__name {
  font-family: var( --font-heading );
  font-size: 1.1rem;
  line-height: 1.3;
  margin: 0;
}
.schedule-item__name a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var( --miller-gold );
}
.schedule-item__name a:hover {
  color: var( --miller-gold );
}
.schedule-item__meta {
  font-size: 0.8rem;
  color: rgba( 45, 45, 45, 0.6 );
  margin: 0.15rem 0 0;
}

.schedule-item__type {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: var( --radius-full );
  background: var( --miller-cream );
  color: var( --miller-teal );
  white-space: nowrap;
  flex-shrink: 0;
}

@media ( max-width: 480px ) {
  .schedule-item { flex-wrap: wrap; gap: 0.5rem; }
  .schedule-item__date { min-width: auto; }
  .schedule-item__type { margin-left: auto; }
}

/* Live at The Miller gallery */
.live-gallery {
  background: var( --miller-teal );
  padding: 4rem 1.5rem;
  color: var( --miller-cream );
  overflow: hidden;
}
.live-gallery__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.live-gallery__icon {
  width: 2rem;
  height: 2rem;
  color: var( --miller-gold );
  flex-shrink: 0;
}
.live-gallery__title {
  font-family: var( --font-heading );
  font-size: clamp( 1.75rem, 4vw, 2.5rem );
  color: var( --miller-cream );
  margin: 0;
}
.live-gallery__desc {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
  color: rgba( 245, 241, 230, 0.8 );
  line-height: 1.6;
}
.live-gallery__scroller {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.live-gallery__track {
  display: flex;
  gap: 1rem;
  transition: transform 500ms ease-out;
  will-change: transform;
}
.live-gallery__slide {
  flex-shrink: 0;
  width: 18rem;
}
@media ( max-width: 640px ) {
  .live-gallery__slide { width: 14rem; }
}
.live-gallery__img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  border-radius: 6px;
}
.live-gallery__btn {
  position: absolute;
  top: 50%;
  transform: translateY( -50% );
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba( 245, 241, 230, 0.9 );
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  color: var( --miller-teal );
  transition: background 200ms;
  z-index: 5;
}
.live-gallery__btn:hover { background: var( --miller-cream ); }
.live-gallery__btn--prev { left: 0.25rem; }
.live-gallery__btn--next { right: 0.25rem; }
/* Override Elementor kit button padding for gallery/carousel buttons */
.elementor-kit-6 .live-gallery__btn,
body .live-gallery__btn {
  padding: 0;
}
.live-gallery__contact {
  text-align: center;
  color: rgba( 245, 241, 230, 0.7 );
  font-size: 0.9rem;
}
.live-gallery__email {
  color: var( --miller-gold );
  text-decoration: none;
}
.live-gallery__email:hover {
  color: var( --miller-cream );
  text-decoration: underline;
}

/* Regular Events */
.whats-on-regulars {
  background: var( --miller-cream );
  padding: 4rem 1.5rem;
  text-align: center;
}
.whats-on-regulars__heading {
  font-family: var( --font-heading );
  font-size: clamp( 1.6rem, 3vw, 2.2rem );
  color: var( --miller-teal );
  margin-bottom: 2rem;
}
.whats-on-regulars__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media ( min-width: 768px ) {
  .whats-on-regulars__grid { grid-template-columns: repeat( 3, 1fr ); }
}
.whats-on-regulars__card {
  background: #fff;
  border-radius: var( --radius-lg );
  padding: 2rem;
  box-shadow: var( --shadow-sm );
  transition: box-shadow var( --transition-fast );
  text-align: center;
}
.whats-on-regulars__card:hover {
  box-shadow: var( --shadow-md );
}
.whats-on-regulars__icon {
  color: var( --miller-gold );
  margin-bottom: 0.75rem;
}
.whats-on-regulars__title {
  font-family: var( --font-heading );
  font-size: 1.2rem;
  color: var( --miller-teal );
  margin-bottom: 0.25rem;
}
.whats-on-regulars__when {
  font-size: 0.85rem;
  color: var( --miller-gold );
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.whats-on-regulars__desc {
  font-size: 0.9rem;
  color: var( --miller-charcoal );
  line-height: 1.6;
}
.whats-on-regulars__contact {
  margin-top: 0.5rem;
  font-size: 0.85rem;
}
.whats-on-regulars__contact a {
  color: var( --miller-gold );
}
.whats-on-regulars__contact a:hover {
  color: var( --miller-teal );
}

/* Stay in the Loop */
.whats-on-social {
  background: #fff;
  padding: 4rem 1.5rem;
  text-align: center;
}
.whats-on-social__heading { margin-bottom: 1rem; }
.whats-on-social__sub {
  color: rgba( 45, 45, 45, 0.7 );
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
.whats-on-social__links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
@media ( min-width: 480px ) {
  .whats-on-social__links { flex-direction: row; }
}
.whats-on-social__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var( --radius-full );
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  color: #fff;
  transition: opacity 200ms;
}
.whats-on-social__btn:hover { opacity: 0.85; }
.whats-on-social__btn--instagram {
  background: linear-gradient( 135deg, #833AB4, #E1306C, #F77737 );
}
.whats-on-social__btn--facebook { background: #1877F2; }

/* Planning Something Special */
.whats-on-hire {
  background: var( --miller-cream );
  padding: 4rem 1.5rem;
  text-align: center;
}
.whats-on-hire__heading { margin-bottom: 0.75rem; }
.whats-on-hire__sub {
  color: rgba( 45, 45, 45, 0.7 );
  margin-bottom: 1.5rem;
}

@media ( prefers-reduced-motion: reduce ) {
  .live-gallery__track { transition: none; }
}

/* --------------------------------------------------------------------------
   404 Not Found page
   -------------------------------------------------------------------------- */

.page-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var( --miller-cream );
  padding: 4rem 2rem;
  text-align: center;
}

.page-404__inner {
  max-width: 560px;
}

.page-404__decor {
  font-family: var( --font-display );
  font-size: clamp( 5rem, 20vw, 10rem );
  font-weight: 700;
  color: var( --miller-teal );
  opacity: 0.08;
  line-height: 1;
  margin-bottom: -1.5rem;
  user-select: none;
}

.page-404__heading {
  font-family: var( --font-display );
  font-size: clamp( 1.75rem, 4vw, 2.5rem );
  color: var( --miller-teal );
  margin-bottom: 1rem;
}

.page-404__body {
  font-family: var( --font-body );
  color: var( --miller-charcoal );
  margin-bottom: 2rem;
  line-height: 1.7;
}

.page-404__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.page-404__contact {
  font-size: 0.9rem;
  color: var( --miller-charcoal );
  opacity: 0.8;
}

.page-404__contact a {
  color: var( --miller-teal );
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-404__contact a:hover {
  color: var( --miller-gold );
}

/* ==========================================================================
   SHARED INNER-PAGE HERO PATTERN
   Used by Food & Drink, Private Hire, Rooms, Find Us
   ========================================================================== */

.miller-page-hero {
  position: relative;
  min-height: 28rem;
  max-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.miller-page-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.miller-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba( 30, 58, 58, 0.5 );
}
.miller-page-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1.5rem;
}
.miller-page-hero__title {
  font-family: var( --font-heading );
  font-size: clamp( 2.5rem, 6vw, 4rem );
  color: var( --miller-cream );
  margin: 0 0 0.5rem;
  line-height: 1.1;
}
.miller-page-hero__sub {
  font-size: clamp( 1rem, 2.5vw, 1.25rem );
  color: var( --miller-cream );
  opacity: 0.9;
  margin: 0;
}

/* Prevent hero titles from overflowing containers on narrow screens */
.miller-page-hero__title,
.miller-teal-hero__title,
.rooms-hero__title,
.fd-hero__title,
.hire-hero__title,
.contact-hero__title,
.whats-on-hero__title,
.find-hero__title {
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
}

/* Reduce min-height on page hero for small screens to avoid excessive whitespace */
@media (max-width: 480px) {
  .miller-page-hero {
    min-height: 20rem;
    max-height: 50vh;
  }
}

/* Simple teal-bg hero (no image) — used by Find Us, Contact */
.miller-teal-hero {
  background: var( --miller-teal );
  padding: 3rem 1.5rem;
  min-height: 14rem;
  max-height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
.miller-teal-hero__title {
  font-family: var( --font-heading );
  font-size: clamp( 2.5rem, 6vw, 4rem );
  color: var( --miller-cream );
  margin: 0 0 0.5rem;
  line-height: 1.1;
}
.miller-teal-hero__sub {
  font-size: clamp( 1rem, 2.5vw, 1.25rem );
  color: var( --miller-cream );
  opacity: 0.85;
  margin: 0;
}

/* ==========================================================================
   FOOD & DRINK PAGE  (fd-*)
   ========================================================================== */

/* Hours bar */
.fd-hours {
  background: rgba( 201, 169, 98, 0.08 );
  border-top: 1px solid rgba( 201, 169, 98, 0.3 );
  border-bottom: 1px solid rgba( 201, 169, 98, 0.3 );
  padding: 1.25rem 1.5rem;
}
.fd-hours__inner {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
@media ( min-width: 640px ) {
  .fd-hours__inner {
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
  }
}
.fd-hours__divider {
  display: none;
  width: 1px;
  height: 2.5rem;
  background: rgba( 201, 169, 98, 0.4 );
  flex-shrink: 0;
}
@media ( min-width: 640px ) {
  .fd-hours__divider { display: block; }
}
.fd-hours__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba( 45, 45, 45, 0.6 );
  margin-bottom: 0.2rem;
}
.fd-hours__value {
  font-family: var( --font-heading );
  color: var( --miller-teal );
  font-size: 1rem;
}

/* Menus grid */
.fd-menus {
  background: var( --miller-cream );
  padding: 4rem 1.5rem;
}
.fd-menus__heading {
  text-align: center;
  margin-bottom: 2.5rem;
}
.fd-menus__grid {
  display: grid;
  grid-template-columns: repeat( 2, 1fr );
  gap: 1.25rem;
  max-width: 56rem;
  margin: 0 auto 2rem;
}
@media ( min-width: 1024px ) {
  .fd-menus__grid { grid-template-columns: repeat( 4, 1fr ); }
}
.fd-menu-card {
  display: block;
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  text-decoration: none;
  box-shadow: 0 1px 4px rgba( 0, 0, 0, 0.06 );
  transition: box-shadow var( --transition-fast );
}
.fd-menu-card:hover {
  box-shadow: 0 4px 12px rgba( 0, 0, 0, 0.1 );
}
.fd-menu-card h3 {
  font-family: var( --font-heading );
  font-size: 1.1rem;
  color: var( --miller-charcoal );
  margin: 0 0 0.5rem;
  transition: color var( --transition-fast );
}
.fd-menu-card:hover h3 { color: var( --miller-gold ); }
.fd-menu-card__desc {
  font-size: 0.875rem;
  color: rgba( 45, 45, 45, 0.6 );
  margin: 0 0 0.75rem;
  line-height: 1.4;
}
.fd-menu-card__cta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var( --miller-teal );
  font-weight: 600;
}
.fd-menu-card--full {
  grid-column: 1 / -1;
  border: 2px solid rgba( 201, 169, 98, 0.3 );
}
.fd-menus__note {
  text-align: center;
  font-size: 0.875rem;
  color: rgba( 45, 45, 45, 0.5 );
  max-width: 56rem;
  margin: 0 auto;
}

/* Food gallery */
.fd-gallery {
  background: #fff;
  padding: 4rem 1.5rem;
}
.fd-gallery__grid {
  display: grid;
  grid-template-columns: repeat( 2, 1fr );
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto 1rem;
}
@media ( min-width: 768px ) {
  .fd-gallery__grid { grid-template-columns: repeat( 4, 1fr ); }
}
.fd-gallery__item {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: rgba( 139, 159, 139, 0.2 );
}
.fd-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Carvery CTA */
.fd-carvery {
  background: var( --miller-teal );
  padding: 4rem 1.5rem;
  text-align: center;
}
.fd-carvery__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var( --miller-gold );
  margin: 0 0 0.5rem;
}
.fd-carvery__heading {
  font-family: var( --font-heading );
  color: var( --miller-cream );
  margin: 0 0 1.25rem;
}
.fd-carvery__body,
.fd-carvery__desc {
  color: rgba( 245, 241, 230, 0.8 );
  max-width: 36rem;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* The bar */
.fd-bar {
  background: var( --miller-cream );
  padding: 4rem 1.5rem;
  text-align: center;
}
.fd-bar__inner {
  max-width: 40rem;
  margin: 0 auto;
}
.fd-bar__body {
  font-size: 1.125rem;
  color: rgba( 45, 45, 45, 0.8 );
  line-height: 1.65;
  margin-bottom: 1rem;
}
.fd-bar__hours {
  font-size: 0.9rem;
  color: rgba( 45, 45, 45, 0.6 );
}

/* ==========================================================================
   PRIVATE HIRE PAGE  (hire-*)
   ========================================================================== */

.hire-intro {
  background: var( --miller-cream );
  padding: 3.5rem 1.5rem;
  text-align: center;
}
.hire-intro__inner {
  max-width: 40rem;
  margin: 0 auto;
}
.hire-intro__body {
  font-size: 1.125rem;
  color: rgba( 45, 45, 45, 0.8 );
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.hire-intro__occasions {
  font-family: var( --font-heading );
  font-size: 1.25rem;
  color: var( --miller-teal );
  margin: 0;
}

/* Catering section */
.hire-catering {
  background: linear-gradient( to bottom, #fefce8, #fff7ed );
  padding: 4rem 1.5rem;
}
.hire-catering__heading {
  font-family: var( --font-heading );
  font-size: clamp( 2rem, 4vw, 3rem );
  font-weight: 400;
  font-style: italic;
  color: var( --miller-charcoal );
  margin: 0 auto 1.5rem;
  text-align: center;
}
.hire-catering__body {
  font-size: 0.95rem;
  color: rgba( 45, 45, 45, 0.7 );
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.6;
  text-align: center;
}
/* Catering gallery — matches live gallery style */
.hire-catering__gallery {
  position: relative;
  margin: 2rem 0;
}
.hire-catering__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0;
}
.hire-catering__track::-webkit-scrollbar { display: none; }
.hire-catering__slide {
  flex: 0 0 320px;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media (min-width: 768px) { .hire-catering__slide { flex: 0 0 400px; } }
.hire-catering__slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 5/3;
  object-fit: cover;
  display: block;
  cursor: pointer;
}
.hire-catering__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(30,58,58,0.15);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  color: var(--miller-teal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
  z-index: 3;
}
.hire-catering__btn svg {
  stroke: var(--miller-teal);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.hire-catering__btn:hover { background: #fff; }
.hire-catering__btn--prev { left: 0.5rem; }
.hire-catering__btn--next { right: 0.5rem; }
.hire-catering__img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}
.hire-catering__pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}
.hire-catering__price-card {
  background: var(--miller-cream);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}
.hire-catering__price-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--miller-teal);
  margin: 0 0 0.5rem;
}
.hire-catering__price-from {
  font-size: 1rem;
  font-weight: 700;
  color: var(--miller-gold);
  margin: 0 0 0.5rem;
}
.hire-catering__price-desc {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
  line-height: 1.4;
}
.hire-catering__note {
  text-align: center;
  font-size: 0.85rem;
  color: rgba( 45, 45, 45, 0.6 );
  max-width: 36rem;
  margin: 0 auto 0.5rem;
}
.hire-catering__cta {
  text-align: center;
  margin-top: 1.5rem;
}
/* Spaces */
.hire-spaces {
  background: var( --miller-cream );
  padding: 4rem 1.5rem;
}
.hire-spaces__heading {
  text-align: center;
  margin-bottom: 2.5rem;
}
.hire-spaces__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}
@media ( min-width: 768px ) {
  .hire-spaces__grid { grid-template-columns: repeat( 3, 1fr ); }
}
.hire-space-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba( 0, 0, 0, 0.06 );
}
.hire-space-card__img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba( 139, 159, 139, 0.2 );
}
.hire-space-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hire-space-card__body {
  padding: 1.5rem;
}
.hire-space-card__icon-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.hire-space-card__icon-row svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var( --miller-gold );
  flex-shrink: 0;
}
.hire-space-card__name {
  font-family: var( --font-heading );
  font-size: 1.25rem;
  margin: 0;
}
.hire-space-card__desc {
  font-size: 0.875rem;
  color: rgba( 45, 45, 45, 0.7 );
  margin: 0.75rem 0;
  line-height: 1.5;
}
.hire-space-card__capacity {
  font-size: 0.875rem;
  font-weight: 600;
  color: var( --miller-gold );
  margin: 0;
}

/* Location benefits */
.hire-benefits {
  background: var( --miller-teal );
  padding: 3rem 1.5rem;
  color: var( --miller-cream );
}
.hire-benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}
@media ( min-width: 640px ) {
  .hire-benefits__grid { grid-template-columns: repeat( 3, 1fr ); }
}
.hire-benefits__title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}
.hire-benefit__icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var( --miller-gold );
  flex-shrink: 0;
}
.hire-benefit__title {
  font-weight: 600;
  color: var( --miller-cream );
  margin: 0;
}
.hire-benefit__sub {
  font-size: 0.875rem;
  color: rgba( 245, 241, 230, 0.7 );
  margin: 0;
}

/* Get in touch */
.hire-contact {
  background: var( --miller-cream );
  padding: 4rem 1.5rem;
  text-align: center;
}
.hire-contact__inner {
  max-width: 36rem;
  margin: 0 auto;
}
.hire-contact__heading { margin-bottom: 1rem; }
.hire-contact__body {
  font-size: 1.1rem;
  color: rgba( 45, 45, 45, 0.8 );
  margin-bottom: 2rem;
}
.hire-contact__cta .btn {
  font-size: 1rem;
  padding: 0.9rem 2.5rem;
}
.hire-contact__or {
  font-size: 0.85rem;
  color: rgba( 45, 45, 45, 0.5 );
  margin: 1.5rem 0 0.25rem;
  text-transform: lowercase;
  letter-spacing: 0.03em;
}
.hire-contact__cta-note {
  font-size: 0.8rem;
  color: rgba( 45, 45, 45, 0.5 );
  margin: 0.75rem 0 1.75rem;
}
.hire-contact__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

/* ==========================================================================
   ROOMS PAGE  (rooms-*)
   ========================================================================== */

.rooms-intro {
  background: var( --miller-cream );
  padding: 3.5rem 1.5rem;
  text-align: center;
}
.rooms-intro__inner {
  max-width: 40rem;
  margin: 0 auto;
}
.rooms-intro__body {
  font-size: 1.125rem;
  color: rgba( 45, 45, 45, 0.8 );
  margin-bottom: 0.75rem;
  line-height: 1.65;
}
.rooms-intro__note {
  color: rgba( 45, 45, 45, 0.6 );
}

/* Room category sections */
.rooms-category {
  padding: 4rem 1.5rem;
}
.rooms-category--alt { background: var( --miller-cream ); }
.rooms-category--default { background: #fff; }
.rooms-category__header {
  text-align: center;
  margin-bottom: 3rem;
}
.rooms-category__desc {
  color: rgba( 45, 45, 45, 0.7 );
  max-width: 36rem;
  margin: 0.5rem auto 0;
}
.rooms-category__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media ( min-width: 640px ) {
  .rooms-category__grid { grid-template-columns: repeat( 2, 1fr ); }
}
@media ( min-width: 1024px ) {
  .rooms-category__grid { grid-template-columns: repeat( 3, 1fr ); }
}

/* Room card */
.room-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba( 0, 0, 0, 0.07 );
  transition: box-shadow var( --transition-fast );
  display: flex;
  flex-direction: column;
}
.room-card:hover { box-shadow: 0 6px 18px rgba( 0, 0, 0, 0.12 ); }
.room-card__img-wrap,
.room-card__image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba( 139, 159, 139, 0.2 );
}
.room-card__img,
.room-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.room-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba( 45, 45, 45, 0.3 );
  font-size: 0.875rem;
}
.room-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.room-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.room-card__name {
  font-family: var( --font-heading );
  font-size: 1.2rem;
  margin: 0;
  line-height: 1.2;
}
.room-card__badge {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var( --miller-gold );
  background: rgba( 201, 169, 98, 0.1 );
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
}
.room-card__view {
  font-size: 0.8rem;
  color: rgba( 45, 45, 45, 0.55 );
  margin: 0 0 0.75rem;
}
.room-card__desc {
  font-size: 0.875rem;
  color: rgba( 45, 45, 45, 0.7 );
  line-height: 1.5;
  margin: 0 0 1rem;
  flex: 1;
}
.room-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}
.room-card__features {
  list-style: none;
  padding: 0;
}
.room-card__feature-pill,
.room-feature-pill {
  font-size: 0.7rem;
  color: var( --miller-teal );
  background: rgba( 30, 58, 58, 0.06 );
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
}
.room-card__book {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var( --miller-teal );
  text-decoration: none;
  margin-top: auto;
}
.room-card__book:hover { color: var( --miller-gold ); }

/* Hotel info bar */
.rooms-info {
  background: var( --miller-teal );
  padding: 3rem 1.5rem;
  color: var( --miller-cream );
}
.rooms-info__grid {
  display: grid;
  grid-template-columns: repeat( 2, 1fr );
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}
@media ( min-width: 768px ) {
  .rooms-info__grid { grid-template-columns: repeat( 4, 1fr ); }
}
.rooms-info__heading {
  font-family: var( --font-heading );
  font-size: 1.1rem;
  color: var( --miller-gold );
  margin: 0 0 0.75rem;
}
.rooms-info p {
  font-size: 0.875rem;
  color: rgba( 245, 241, 230, 0.8 );
  margin: 0 0 0.25rem;
}

/* Accessibility */
.rooms-access {
  background: #fff;
  padding: 3.5rem 1.5rem;
}
.rooms-access__inner {
  max-width: 40rem;
  margin: 0 auto;
}
.rooms-access__heading {
  text-align: center;
  margin-bottom: 1.5rem;
}
.rooms-access p {
  font-size: 0.9rem;
  color: rgba( 45, 45, 45, 0.8 );
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.rooms-access a {
  color: var( --miller-gold );
  text-decoration: none;
}
.rooms-access a:hover { color: var( --miller-teal ); }

/* Book direct */
.rooms-book {
  background: var( --miller-teal );
  padding: 4rem 1.5rem;
  text-align: center;
}
.rooms-book__eyebrow {
  font-family: var( --font-heading );
  font-size: 1.25rem;
  color: var( --miller-gold ) !important;
  display: block;
  margin-bottom: 0.5rem;
}
.rooms-book__body {
  color: rgba( 245, 241, 230, 0.8 );
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   FIND US PAGE  (find-*)
   ========================================================================== */

.find-contact {
  background: var( --miller-cream );
  padding: 4rem 1.5rem;
}
.find-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}
@media ( min-width: 1024px ) {
  .find-contact__grid { grid-template-columns: 1fr 1fr; }
}
.find-contact__heading { margin-bottom: 1rem; }
.find-contact__address {
  font-style: normal;
  font-size: 1.1rem;
  color: rgba( 45, 45, 45, 0.8 );
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.find-contact__phone {
  display: block;
  font-family: var( --font-heading );
  font-size: 1.5rem;
  color: var( --miller-teal );
  text-decoration: none;
  margin-bottom: 0.4rem;
}
.find-contact__phone:hover { color: var( --miller-gold ); }
.find-contact__email {
  color: var( --miller-teal );
  text-decoration: none;
}
.find-contact__email:hover { color: var( --miller-gold ); }
.find-contact__map {
  min-height: 280px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba( 139, 159, 139, 0.2 );
}
.find-contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  display: block;
}

.find-getting-here {
  background: #fff;
  padding: 4rem 1.5rem;
}
.find-getting-here__heading {
  text-align: center;
  margin-bottom: 2.5rem;
}
.find-getting-here__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 48rem;
  margin: 0 auto;
}
@media ( min-width: 768px ) {
  .find-getting-here__grid { grid-template-columns: repeat( 3, 1fr ); }
}
.find-transport-card {
  background: var( --miller-cream );
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.find-transport-card__title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.find-transport-card__icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var( --miller-teal );
  flex-shrink: 0;
}
.find-transport-card h3 {
  font-family: var( --font-heading );
  font-size: 1.1rem;
  margin: 0;
}
.find-transport-card__main {
  font-size: 0.875rem;
  color: rgba( 45, 45, 45, 0.8 );
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.find-transport-card__detail {
  font-size: 0.75rem;
  color: rgba( 45, 45, 45, 0.6 );
  line-height: 1.4;
}
.find-postcode {
  display: inline-block;
  background: rgba( 201, 169, 98, 0.15 );
  font-family: monospace;
  font-size: 0.95rem;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  margin: 0.4rem 0;
  color: var( --miller-charcoal );
}

.find-taxis {
  background: #fff;
  padding: 3rem 1.5rem 4rem;
  border-top: 1px solid rgba( 0, 0, 0, 0.05 );
}
.find-taxis__heading {
  text-align: center;
  margin-bottom: 0.5rem;
}
.find-taxis__note {
  text-align: center;
  font-size: 0.875rem;
  color: rgba( 45, 45, 45, 0.6 );
  max-width: 36rem;
  margin: 0 auto 2rem;
}
.find-taxis__grid {
  display: grid;
  grid-template-columns: repeat( 2, 1fr );
  gap: 0.75rem;
  max-width: 48rem;
  margin: 0 auto;
}
@media ( min-width: 640px ) {
  .find-taxis__grid { grid-template-columns: repeat( 3, 1fr ); }
}
.find-taxi-card {
  background: var( --miller-cream );
  border-radius: 8px;
  padding: 0.75rem 1rem;
  text-align: center;
}
.find-taxi-card__name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var( --miller-teal );
  margin: 0 0 0.3rem;
}
.find-taxi-card__phone {
  font-size: 0.875rem;
  color: var( --miller-gold );
  text-decoration: none;
}
.find-taxi-card__phone:hover { color: var( --miller-teal ); }

.find-access {
  background: var( --miller-teal );
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: var( --miller-cream );
}
.find-access h3 {
  color: var( --miller-cream );
  margin-bottom: 0.75rem;
}
.find-access p {
  font-size: 0.9rem;
  color: rgba( 245, 241, 230, 0.8 );
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.6;
}
.find-access a {
  color: var( --miller-gold );
  text-decoration: none;
}
.find-access a:hover { color: var( --miller-cream ); }

/* ==========================================================================
   CONTACT PAGE  (contact-*)
   ========================================================================== */

.contact-methods {
  background: var( --miller-cream );
  padding: 4rem 1.5rem;
}
.contact-methods__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 52rem;
  margin: 0 auto;
}
@media ( min-width: 640px ) {
  .contact-methods__grid { grid-template-columns: repeat( 3, 1fr ); }
}
.contact-method-card {
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba( 0, 0, 0, 0.06 );
  transition: box-shadow var( --transition-fast );
}
.contact-method-card:hover {
  box-shadow: 0 6px 18px rgba( 0, 0, 0, 0.1 );
}
.contact-method-card__title-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}
.contact-method-card__icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var( --miller-teal );
  flex-shrink: 0;
}
.contact-method-card__icon--whatsapp {
  color: #25D366;
}
.contact-method-card h3 {
  font-family: var( --font-heading );
  font-size: 1.05rem;
  margin: 0;
  color: var( --miller-charcoal );
  transition: color var( --transition-fast );
}
.contact-method-card:hover h3 { color: var( --miller-gold ); }
.contact-method-card__detail {
  font-size: 0.875rem;
  margin: 0;
  color: rgba( 45, 45, 45, 0.7 );
}
.contact-method-card__detail--gold { color: var( --miller-gold ); }
.contact-method-card__detail--teal { color: var( --miller-teal ); }
.contact-method-card__sub {
  font-size: 0.8rem;
  color: var( --miller-charcoal-70 );
  margin: 0;
  line-height: 1.5;
}

.contact-getting-here { padding: var( --section-padding ) 0; background: var( --miller-cream ); }
.contact-getting-here__heading {
  font-family: var( --font-display );
  text-align: center;
  margin-bottom: 2.5rem;
  color: var( --miller-teal );
}

.contact-feedback {
  background: var( --miller-teal );
  padding: 4rem 1.5rem;
  text-align: center;
}
.contact-feedback__inner {
  max-width: 36rem;
  margin: 0 auto;
}
.contact-feedback__body {
  color: rgba( 245, 241, 230, 0.8 );
  margin-bottom: 2rem;
}
.contact-feedback__btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}
@media ( min-width: 480px ) {
  .contact-feedback__btns { flex-direction: row; }
}

.contact-find {
  background: var( --miller-cream );
  padding: 4rem 1.5rem;
}
.contact-find__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
  align-items: center;
}
@media ( min-width: 1024px ) {
  .contact-find__grid { grid-template-columns: 1fr 2fr; }
}
.contact-find__address {
  font-style: normal;
  font-size: 1rem;
  color: rgba( 45, 45, 45, 0.8 );
  line-height: 1.8;
  margin-bottom: 1rem;
}
.contact-find__link {
  color: var( --miller-gold );
  text-decoration: none;
  font-weight: 500;
}
.contact-find__link:hover { color: var( --miller-teal ); }
.contact-find__map,
.contact-find__map-wrap {
  min-height: 280px;
  height: 22rem;
  border-radius: 8px;
  overflow: hidden;
  background: rgba( 139, 159, 139, 0.2 );
}
.contact-find__map iframe,
.contact-find__map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* =============================================
   FAQ PAGE
   ============================================= */

.faq-nav {
  background: var( --miller-cream );
  border-bottom: 1px solid rgba( 30, 58, 58, 0.12 );
  padding: 0 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.faq-nav__list {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: var( --container-narrow );
  margin-inline: auto;
}
.faq-nav__item { flex-shrink: 0; }
.faq-nav__link {
  display: block;
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var( --miller-charcoal );
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color var( --transition-fast ), border-color var( --transition-fast );
  white-space: nowrap;
}
.faq-nav__link:hover {
  color: var( --miller-teal );
  border-bottom-color: var( --miller-teal );
}

.faq-section {
  padding: 3rem 1.5rem;
}
.faq-section--white { background: #fff; }
.faq-section--cream { background: var( --miller-cream ); }

.faq-section__title {
  font-family: var( --font-heading );
  font-size: 1.5rem;
  color: var( --miller-teal );
  margin: 0 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var( --miller-gold );
  display: inline-block;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba( 30, 58, 58, 0.1 );
}
.faq-item:first-child { border-top: 1px solid rgba( 30, 58, 58, 0.1 ); }

.faq-item__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-item__summary::-webkit-details-marker { display: none; }

.faq-item__question {
  font-weight: 600;
  font-size: 1rem;
  color: var( --miller-charcoal );
  line-height: 1.4;
  transition: color var( --transition-fast );
}
.faq-item__summary:hover .faq-item__question { color: var( --miller-teal ); }

.faq-item__answer {
  padding: 0 0 1.25rem;
  color: rgba( 45, 45, 45, 0.75 );
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item__answer p { margin: 0; }
.faq-item__answer a {
  color: var( --miller-teal );
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq-item__answer a:hover { color: var( --miller-gold ); }

.faq-cta {
  background: var( --miller-teal );
  padding: 4rem 1.5rem;
  text-align: center;
}
.faq-cta__heading {
  font-family: var( --font-heading );
  font-size: clamp( 1.5rem, 3vw, 2rem );
  color: var( --miller-cream );
  margin: 0 0 0.5rem;
}
.faq-cta__sub {
  color: rgba( 245, 241, 230, 0.8 );
  margin: 0 0 2rem;
}
.faq-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}
@media ( min-width: 480px ) {
  .faq-cta__buttons { flex-direction: row; }
}

/* =============================================
   FEEDBACK PAGE
   ============================================= */

/* ==========================================
   Feedback page — native inline form
   ========================================== */
.feedback-form-section {
  background: var( --miller-cream );
  padding: 4rem 1.5rem;
}
.feedback-intro {
  color: rgba( 45, 45, 45, 0.7 );
  max-width: 34rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.feedback-error {
  background: #fef2f2;
  border-left: 3px solid #ef4444;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #b91c1c;
  margin-bottom: 1.5rem;
  border-radius: 0 4px 4px 0;
}
.feedback-hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.feedback-form {
  max-width: 36rem;
  margin: 0 auto;
}
.feedback-field {
  margin-bottom: 2rem;
  border: none;
  padding: 0;
  min-width: 0;
}
.feedback-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var( --miller-charcoal );
  margin-bottom: 0.6rem;
  letter-spacing: 0.01em;
}
.feedback-required { color: var( --miller-gold ); }
.feedback-optional { font-weight: 400; color: rgba( 45, 45, 45, 0.5 ); font-size: 0.8rem; }

.feedback-input,
.feedback-textarea {
  display: block;
  width: 100%;
  padding: 0.65rem 0.875rem;
  border: 1.5px solid rgba( 45, 45, 45, 0.2 );
  border-radius: 6px;
  font-family: var( --font-body );
  font-size: 0.9rem;
  color: var( --miller-charcoal );
  background: #fff;
  transition: border-color 150ms;
  box-sizing: border-box;
}
.feedback-input:focus,
.feedback-textarea:focus {
  outline: none;
  border-color: var( --miller-teal );
  box-shadow: 0 0 0 3px rgba( 30, 58, 58, 0.1 );
}
.feedback-textarea { resize: vertical; }

.feedback-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.feedback-check {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  background: #fff;
  border: 1.5px solid rgba( 45, 45, 45, 0.2 );
  border-radius: var( --radius-full );
  font-size: 0.85rem;
  cursor: pointer;
  transition: border-color 150ms, background 150ms;
}
.feedback-check:has( input:checked ) {
  border-color: var( --miller-teal );
  background: rgba( 30, 58, 58, 0.06 );
}
.feedback-check input { width: 1rem; height: 1rem; accent-color: var( --miller-teal ); cursor: pointer; }

.feedback-radios {
  display: flex;
  gap: 0.75rem;
}
.feedback-radio {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  background: #fff;
  border: 1.5px solid rgba( 45, 45, 45, 0.2 );
  border-radius: var( --radius-full );
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 150ms, background 150ms;
}
.feedback-radio:has( input:checked ) {
  border-color: var( --miller-teal );
  background: rgba( 30, 58, 58, 0.06 );
}
.feedback-radio input { accent-color: var( --miller-teal ); cursor: pointer; }

/* Star ratings — RTL flex so :has(~) targets earlier siblings */
.feedback-stars {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.3rem;
}
.feedback-star { cursor: pointer; display: inline-flex; }
.feedback-star input { position: absolute; opacity: 0; width: 0; height: 0; }
.feedback-star svg {
  width: 2rem;
  height: 2rem;
  fill: rgba( 45, 45, 45, 0.15 );
  stroke: none;
  transition: fill 150ms;
}
.feedback-star:has( input:checked ) svg,
.feedback-star:has( input:checked ) ~ .feedback-star svg { fill: var( --miller-gold ); }
.feedback-stars:hover .feedback-star svg { fill: rgba( 45, 45, 45, 0.15 ); }
.feedback-stars:hover .feedback-star:hover svg,
.feedback-stars:hover .feedback-star:hover ~ .feedback-star svg { fill: var( --miller-gold ); }

.feedback-field--room { display: none; }
.feedback-field--room.is-visible { display: block; }

.feedback-submit { margin-top: 2rem; }
.feedback-submit .btn { width: 100%; justify-content: center; }
@media ( min-width: 480px ) { .feedback-submit .btn { width: auto; } }

.feedback-alt {
  text-align: center;
  font-size: 0.875rem;
  color: rgba( 45, 45, 45, 0.6 );
  margin-top: 1.5rem;
}
.feedback-alt a { color: var( --miller-teal ); text-decoration: underline; }
.feedback-alt a:hover { color: var( --miller-gold ); }

.feedback-thankyou { text-align: center; padding: 3rem 0; }
.feedback-thankyou__tick {
  width: 3rem;
  height: 3rem;
  color: #22c55e;
  margin: 0 auto 1rem;
}
.feedback-thankyou__heading {
  font-family: var( --font-heading );
  font-size: clamp( 1.5rem, 3vw, 2rem );
  margin: 0 0 0.75rem;
}
.feedback-thankyou__body { color: rgba( 45, 45, 45, 0.7 ); margin-bottom: 1.5rem; }
.feedback-thankyou__nudge { font-size: 0.9rem; color: rgba( 45, 45, 45, 0.6 ); margin-bottom: 1rem; }

.feedback-review {
  background: var( --miller-teal );
  padding: 4rem 1.5rem;
  text-align: center;
}
.feedback-review__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var( --miller-gold );
  margin: 0 0 0.5rem;
  font-weight: 600;
}
.feedback-review__heading {
  font-family: var( --font-heading );
  font-size: clamp( 1.5rem, 3vw, 2.25rem );
  color: var( --miller-cream );
  margin: 0 0 1rem;
}
.feedback-review__body {
  color: rgba( 245, 241, 230, 0.8 );
  max-width: 40rem;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}
.feedback-review__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.feedback-review__stat {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var( --miller-cream );
}
.feedback-review__stat svg {
  width: 1rem;
  height: 1rem;
  color: var( --miller-gold );
}
.feedback-review__btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* =============================================
   BOOKING REDIRECT PAGES
   ============================================= */

.booking-redirect {
  min-height: 60vh;
  background: var( --miller-teal );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  text-align: center;
}
.booking-redirect__inner { max-width: 32rem; }
.booking-redirect__title {
  font-family: var( --font-heading );
  font-size: clamp( 2rem, 5vw, 3rem );
  color: var( --miller-cream );
  margin: 0 0 0.75rem;
}
.booking-redirect__sub {
  color: rgba( 245, 241, 230, 0.8 );
  margin: 0 0 2rem;
  font-size: 1.1rem;
}

/* =============================================
   SHARED INNER-PAGE HERO COMPONENTS
   (for pages that use a full-bleed image hero)
   ============================================= */

/* Generic background-image hero — used by Rooms */
.rooms-hero {
  position: relative;
  min-height: 28rem;
  max-height: 60vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.rooms-hero__preload {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.rooms-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba( 30, 58, 58, 0.5 );
}
.rooms-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.rooms-hero__title {
  font-family: var( --font-heading );
  font-size: clamp( 2rem, 5vw, 3.5rem );
  color: var( --miller-cream );
  margin: 0 0 0.5rem;
  line-height: 1.1;
}
.rooms-hero__sub {
  font-size: clamp( 1rem, 2vw, 1.2rem );
  color: rgba( 245, 241, 230, 0.9 );
  margin: 0;
}

/* Food & Drink hero — bg image set on __img div */
.fd-hero { overflow: hidden; }
.fd-hero__img {
  min-height: 28rem;
  max-height: 60vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fd-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba( 30, 58, 58, 0.5 );
}
.fd-hero__inner {
  position: relative;
  z-index: 1;
  padding: 3rem 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.fd-hero__title {
  font-family: var( --font-heading );
  font-size: clamp( 2rem, 5vw, 3.5rem );
  color: var( --miller-cream );
  margin: 0 0 0.5rem;
  line-height: 1.1;
}
.fd-hero__sub {
  font-size: clamp( 1rem, 2vw, 1.2rem );
  color: rgba( 245, 241, 230, 0.9 );
  margin: 0;
}

/* Private Hire hero — bg image set on __img div, overlay wraps content */
.hire-hero { overflow: hidden; }
.hire-hero__img {
  min-height: 28rem;
  max-height: 60vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.hire-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba( 30, 58, 58, 0.5 );
  display: flex;
  align-items: center;
  justify-content: center;
}
.hire-hero__inner {
  padding: 3rem 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.hire-hero__title {
  font-family: var( --font-heading );
  font-size: clamp( 2rem, 5vw, 3.5rem );
  color: var( --miller-cream );
  margin: 0 0 0.5rem;
  line-height: 1.1;
}
.hire-hero__sub {
  font-size: clamp( 1rem, 2vw, 1.2rem );
  color: rgba( 245, 241, 230, 0.9 );
  margin: 0;
}

/* Contact page teal hero */
.contact-hero {
  background: var( --miller-teal );
  padding: 3rem 1.5rem;
  min-height: 14rem;
  max-height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.contact-hero__inner {
  max-width: var( --container-narrow );
  margin: 0 auto;
}
.contact-hero__title {
  font-family: var( --font-heading );
  font-size: clamp( 2.5rem, 6vw, 4rem );
  color: var( --miller-cream );
  margin: 0 0 0.5rem;
  line-height: 1.1;
}
.contact-hero__sub {
  font-size: clamp( 1rem, 2.5vw, 1.25rem );
  color: var( --miller-cream );
  opacity: 0.85;
  margin: 0;
}

/* =============================================
   ROOMS PAGE — GRID + INTRO
   ============================================= */

.rooms-intro {
  background: #fff;
  padding: 3rem 1.5rem;
  text-align: center;
}
.rooms-intro__lead {
  font-family: var( --font-heading );
  font-size: clamp( 1.15rem, 2.5vw, 1.4rem );
  color: var( --miller-charcoal );
  margin: 0 0 0.75rem;
  line-height: 1.5;
}
.rooms-intro__secondary {
  color: rgba( 45, 45, 45, 0.7 );
  margin: 0 0 1rem;
}
.rooms-intro__note {
  font-size: 0.875rem;
  color: rgba( 45, 45, 45, 0.65 );
  background: rgba( 201, 169, 98, 0.08 );
  border-left: 3px solid var( --miller-gold );
  padding: 0.75rem 1rem;
  border-radius: 0 4px 4px 0;
  margin: 0;
  line-height: 1.6;
}
.rooms-intro__note a {
  color: var( --miller-teal );
  text-decoration: underline;
}
.rooms-intro__note a:hover { color: var( --miller-gold ); }

.rooms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media ( min-width: 600px ) {
  .rooms-grid { grid-template-columns: repeat( 2, 1fr ); }
}
@media ( min-width: 1024px ) {
  .rooms-grid { grid-template-columns: repeat( 3, 1fr ); }
}

/* Room carousels */
.rooms-carousel {
  position: relative;
}
.rooms-carousel__track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}
.rooms-carousel__track::-webkit-scrollbar { display: none; }
.rooms-carousel__track .room-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
}
@media ( min-width: 768px ) {
  .rooms-carousel__track .room-card { flex: 0 0 320px; }
}
.rooms-carousel__btn {
  position: absolute;
  top: 35%;
  transform: translateY( -50% );
  background: rgba( 255, 255, 255, 0.9 );
  border: 1px solid rgba( 0, 0, 0, 0.1 );
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 2px 6px rgba( 0, 0, 0, 0.1 );
}
.rooms-carousel__btn:hover { background: #fff; }
.rooms-carousel__btn--prev { left: -0.75rem; }
.rooms-carousel__btn--next { right: -0.75rem; }

.rooms-category__cta {
  text-align: center;
  margin-top: 2rem;
}

/* Unified rooms grid */
.rooms-all { padding: var(--section-padding) 0; background: #fff; }
.rooms-all__heading {
  font-family: var(--font-display);
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--miller-teal);
}
.rooms-all__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .rooms-all__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .rooms-all__grid { grid-template-columns: repeat(3, 1fr); } }
.rooms-all__cta { text-align: center; margin-top: 2.5rem; }

/* Room type subtitle (under room name) */
.room-card__type {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--miller-teal);
  margin: 0 0 0.5rem;
}

/* Intro text inside rooms grid section */
.rooms-all__lead {
  text-align: center;
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 0.75rem;
  color: var(--miller-charcoal);
}
.rooms-all__secondary {
  text-align: center;
  font-size: 0.95rem;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  color: rgba(45, 45, 45, 0.7);
}
.rooms-all__note {
  font-size: 0.85rem;
  color: rgba(45, 45, 45, 0.6);
  text-align: center;
  max-width: 42rem;
  margin: 2rem auto 0;
  line-height: 1.6;
}
.rooms-all__note a {
  color: var(--miller-teal);
  text-decoration: underline;
}
.rooms-all__note a:hover { color: var(--miller-gold); }

/* Book Direct buttons */
.rooms-book__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}
@media (min-width: 480px) { .rooms-book__buttons { flex-direction: row; } }

/* =============================================
   PROMO POPUP
   ============================================= */
.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.promo-popup[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}
.promo-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.promo-popup__card {
  position: relative;
  background: var(--miller-cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  max-width: 28rem;
  width: 90%;
  text-align: center;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.25);
  animation: popupSlideUp 0.4s ease;
}
@keyframes popupSlideUp {
  from { transform: translateY(1.5rem); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.promo-popup__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--miller-teal);
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
}
.promo-popup__eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--miller-gold);
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.promo-popup__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--miller-teal);
  margin: 0 0 0.75rem;
}
.promo-popup__body {
  font-size: 0.9rem;
  color: #555;
  margin: 0 0 1.5rem;
  line-height: 1.5;
}
.promo-popup__offers {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 400px) { .promo-popup__offers { flex-direction: row; gap: 1rem; } }
.promo-popup__offer {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 1rem;
  border-radius: var(--radius-md);
  background: var(--miller-teal);
  color: var(--miller-cream);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.promo-popup__offer:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.5rem rgba(30, 58, 58, 0.25);
}
.promo-popup__discount {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
}
.promo-popup__label {
  font-size: 0.75rem;
  margin-top: 0.25rem;
  opacity: 0.85;
}
.promo-popup__code {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
  padding: 0.2rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  font-family: monospace;
}

/* =============================================
   CONTACT PAGE — FEEDBACK BUTTONS
   ============================================= */

.contact-feedback__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}
@media ( min-width: 480px ) {
  .contact-feedback__buttons { flex-direction: row; }
}

/* =============================================
   UTILITY — TEXT COLOUR
   ============================================= */

.text-miller-gold { color: var( --miller-gold ); }
.text-miller-teal { color: var( --miller-teal ); }
.text-miller-cream { color: var( --miller-cream ); }

/* =============================================
   SHARED — miller-teal-hero__inner max-width wrapper
   ============================================= */

.miller-teal-hero__inner {
  max-width: var( --container-narrow );
  margin: 0 auto;
}

/* Find Us page hero */
.find-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var( --miller-teal );
  overflow: hidden;
}
.find-hero__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.find-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba( 30, 58, 58, 0.65 );
}
.find-hero__inner {
  position: relative;
  z-index: 1;
  padding: 5rem 1.5rem 4rem;
  max-width: var( --container-narrow );
  margin: 0 auto;
}
.find-hero__title {
  font-family: var( --font-heading );
  font-size: clamp( 2.5rem, 6vw, 4rem );
  color: var( --miller-cream );
  margin: 0 0 0.5rem;
  line-height: 1.1;
}
.find-hero__sub {
  font-size: clamp( 1rem, 2.5vw, 1.25rem );
  color: var( --miller-cream );
  opacity: 0.85;
  margin: 0;
}

/* =============================================
   LIGHTBOX
   ============================================= */
body.lightbox-open { overflow: hidden; }

[data-lightbox-gallery] img { cursor: zoom-in; }

.miller-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba( 0, 0, 0, 0.92 );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
}
.miller-lightbox--open {
  opacity: 1;
  pointer-events: auto;
}
.miller-lightbox__img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var( --radius-sm );
}
.miller-lightbox__caption {
  color: rgba( 255, 255, 255, 0.7 );
  font-size: 0.8rem;
  margin-top: 0.75rem;
  text-align: center;
  max-width: 40rem;
}
.miller-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.5rem;
  z-index: 1;
}
.miller-lightbox__close:hover { color: var( --miller-gold ); }

.miller-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY( -50% );
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 1rem;
  z-index: 1;
}
.miller-lightbox__nav:hover { color: var( --miller-gold ); }
.miller-lightbox__nav--prev { left: 0.5rem; }
.miller-lightbox__nav--next { right: 0.5rem; }
.miller-lightbox__nav svg { width: 2rem; height: 2rem; }


/* ==========================================================================
   Stay Page — History & Explore the Area
   ========================================================================== */

.stay-history {
  background: var( --miller-cream );
  padding: 5rem 0;
}
.stay-history__heading {
  font-family: var( --font-heading );
  font-size: clamp( 1.8rem, 3vw, 2.4rem );
  color: var( --miller-teal );
  text-align: center;
  margin-bottom: 2rem;
}
.stay-history__text {
  color: var( --miller-charcoal );
  line-height: 1.75;
  margin-bottom: 1.25rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.stay-history__text:last-child { margin-bottom: 0; }
.stay-history__intro {
  color: var( --miller-charcoal );
  line-height: 1.75;
  max-width: 42rem;
  margin: 0 auto 1.5rem;
  text-align: center;
  font-size: 1.05rem;
}
.stay-history__details {
  max-width: 42rem;
  margin: 0 auto;
}
.stay-history__toggle {
  cursor: pointer;
  color: var( --miller-gold );
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  display: block;
  list-style: none;
  padding: 0.5rem 0;
}
.stay-history__toggle::-webkit-details-marker { display: none; }
.stay-history__toggle::marker { display: none; content: ''; }
.stay-history__toggle:hover { color: var( --miller-teal ); }
details[open] .stay-history__toggle { margin-bottom: 1.5rem; }
.stay-history__expanded {
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.stay-area {
  background: #fff;
  padding: 5rem 0;
}
.stay-area__heading {
  font-family: var( --font-heading );
  font-size: clamp( 1.8rem, 3vw, 2.4rem );
  color: var( --miller-teal );
  text-align: center;
  margin-bottom: 0.75rem;
}
.stay-area__intro {
  text-align: center;
  color: var( --miller-charcoal );
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}
.stay-area__grid {
  display: grid;
  grid-template-columns: repeat( auto-fit, minmax( 260px, 1fr ) );
  gap: 1.5rem;
}
.stay-area__card {
  background: var( --miller-cream );
  border-radius: var( --radius-md );
  padding: 2rem;
}
.stay-area__card-title {
  font-family: var( --font-heading );
  font-size: 1.2rem;
  color: var( --miller-teal );
  margin-bottom: 0.5rem;
}
.stay-area__card-desc {
  color: var( --miller-charcoal );
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.stay-area__link {
  color: var( --miller-gold );
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}
.stay-area__link:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   What's On — Announcement Card
   -------------------------------------------------------------------------- */
.whats-on-announcement { padding: 2rem 0; }
.whats-on-announcement__card {
  background: var(--miller-cream);
  color: var(--miller-teal);
  border: 2px solid var(--miller-gold);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
}
.whats-on-announcement__eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--miller-gold);
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.whats-on-announcement__title {
  font-family: var(--font-heading);
  color: var(--miller-teal);
  font-size: 1.3rem;
  margin: 0 0 0.5rem;
}
.whats-on-announcement__date {
  font-size: 1rem;
  color: var(--miller-teal);
  font-weight: 600;
  margin: 0 0 1rem;
}
.whats-on-announcement__body {
  color: #555;
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 36rem;
  margin: 0 auto;
}


/* --------------------------------------------------------------------------
   Home History Section
   -------------------------------------------------------------------------- */

.home-history { padding: var(--section-padding) 0; background: var(--miller-cream); }
.home-history__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--miller-teal);
  text-align: center;
  margin: 0 0 1rem;
}
.home-history__intro {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 1.5rem;
}
.home-history__details { max-width: 42rem; margin: 0 auto; }
.home-history__toggle {
  cursor: pointer;
  color: var(--miller-gold);
  font-weight: 600;
  text-align: center;
  display: block;
  font-size: 0.9rem;
  padding: 0.5rem 0;
  list-style: none;
}
.home-history__toggle::-webkit-details-marker { display: none; }
.home-history__toggle::marker { display: none; content: ''; }
.home-history__toggle:hover { text-decoration: underline; }
details[open] .home-history__toggle { margin-bottom: 1.5rem; }
.home-history__expanded { margin-top: 1rem; animation: fadeIn 0.3s ease; }
.home-history__expanded p { font-size: 0.9rem; color: #555; line-height: 1.7; margin: 0 0 1rem; }
.home-history__expanded p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   Home Story Section (merged intro + history)
   -------------------------------------------------------------------------- */

.home-story {
  padding: var(--section-padding) 0;
  background: var(--miller-teal);
}
.home-story .container-narrow {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
  padding: 0 1.5rem;
}
.home-story__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--miller-teal);
  margin: 0 0 1.5rem;
}
.home-story__body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba( 245, 241, 230, 0.9 );
  margin: 0 0 1rem;
}
.home-story__body--secondary {
  color: rgba( 245, 241, 230, 0.8 );
  margin-bottom: 2.5rem;
}
.home-story__sub-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--miller-teal);
  margin: 0 0 1rem;
}
.home-story__intro {
  font-size: 1rem;
  color: rgba( 245, 241, 230, 0.85 );
  line-height: 1.7;
  margin: 0 0 1.5rem;
}
.home-story__details {
  max-width: 42rem;
  margin: 0 auto;
}
.home-story__toggle {
  cursor: pointer;
  color: var( --miller-gold );
  font-weight: 600;
  text-align: center;
  display: block;
  font-size: 0.9rem;
  padding: 0.5rem 0;
  list-style: none;
}
.home-story__toggle::-webkit-details-marker { display: none; }
.home-story__toggle::marker { display: none; content: ''; }
.home-story__toggle:hover { text-decoration: underline; }
details[open] .home-story__toggle { margin-bottom: 1.5rem; }
.home-story__expanded {
  margin-top: 1rem;
  animation: fadeIn 0.3s ease;
}
.home-story__expanded p {
  font-size: 0.9rem;
  color: rgba( 245, 241, 230, 0.8 );
  line-height: 1.7;
  margin: 0 0 1rem;
  text-align: left;
}
.home-story__expanded p:last-child { margin-bottom: 0; }


/* ==========================================================================
   UX & VISUAL IMPROVEMENTS — 2026-03-19
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Card hover lift — consistent across all card types
   -------------------------------------------------------------------------- */

.pillar-card,
.space-card,
.room-card,
.fd-menu-card,
.hire-space-card,
.regular-event-card,
.contact-method-card,
.find-transport-card,
.find-taxi-card,
.whats-on-regulars__card {
  transition: box-shadow var( --transition-medium ), transform var( --transition-medium );
}

.pillar-card:hover,
.room-card:hover,
.fd-menu-card:hover,
.hire-space-card:hover,
.regular-event-card:hover,
.find-transport-card:hover,
.whats-on-regulars__card:hover {
  transform: translateY( -3px );
}

/* Room card image zoom on hover */
.room-card__image-wrap,
.room-card__img-wrap {
  overflow: hidden;
}

.room-card__image,
.room-card__img {
  transition: transform var( --transition-slow );
}

.room-card:hover .room-card__image,
.room-card:hover .room-card__img {
  transform: scale( 1.05 );
}

/* --------------------------------------------------------------------------
   2. Contrast fixes — improve WCAG AA compliance
   -------------------------------------------------------------------------- */

/* Events banner time text — was 0.5 opacity, bump to readable */
.events-banner__when {
  color: var( --miller-cream-70 );
}

/* Schedule item meta — was 0.6 opacity */
.schedule-item__meta {
  color: rgba( 45, 45, 45, 0.7 );
}

/* Gig card time — was 0.5 opacity */
.whats-on-gig-card__time {
  color: rgba( 255, 255, 255, 0.7 );
}

/* Footer bottom bar — was cream-60 */
.miller-footer-bottom {
  color: var( --miller-cream-70 );
}

.miller-footer-bottom a {
  color: var( --miller-cream-70 );
}

/* Pillar card desc — was charcoal-60 */
.pillar-card__desc {
  color: var( --miller-charcoal-70 );
}

/* Home story intro / expanded text — was #444 / #555 */
.home-story__intro {
  color: rgba( 245, 241, 230, 0.85 );
}

.home-story__expanded p {
  color: rgba( 245, 241, 230, 0.8 );
}

/* --------------------------------------------------------------------------
   3. Details / History section — elegant expandable
   -------------------------------------------------------------------------- */





/* --------------------------------------------------------------------------
   4. Section dividers — decorative gold rule between homepage sections
   -------------------------------------------------------------------------- */

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  background: var( --miller-cream );
}

.section-divider__rule {
  display: block;
  width: 3rem;
  height: 1px;
  background: var( --miller-gold-40 );
}

.section-divider__dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var( --miller-gold-40 );
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   5. Mobile menu backdrop
   -------------------------------------------------------------------------- */

.miller-mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba( 0, 0, 0, 0 );
  pointer-events: none;
  transition: background 350ms ease;
}

.miller-mobile-backdrop.is-active {
  background: rgba( 0, 0, 0, 0.5 );
  pointer-events: auto;
}

@media ( min-width: 1024px ) {
  .miller-mobile-backdrop { display: none; }
}

/* --------------------------------------------------------------------------
   6. Cookie consent banner
   -------------------------------------------------------------------------- */

.miller-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: var( --miller-charcoal );
  padding: 1rem 1.5rem;
  transform: translateY( 100% );
  transition: transform 500ms ease;
  box-shadow: 0 -2px 10px rgba( 0, 0, 0, 0.15 );
}

.miller-cookie-banner.is-visible {
  transform: translateY( 0 );
}

.miller-cookie-banner__inner {
  max-width: var( --container-max );
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.miller-cookie-banner__text {
  font-size: 0.85rem;
  color: var( --miller-cream-80 );
  line-height: 1.5;
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.miller-cookie-banner__text a {
  color: var( --miller-gold );
  text-decoration: underline;
  text-underline-offset: 2px;
}

.miller-cookie-banner__text a:hover {
  color: var( --miller-cream );
}

.miller-cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.miller-cookie-banner__btn {
  font-family: var( --font-body );
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.25rem;
  border-radius: var( --radius-full );
  border: none;
  cursor: pointer;
  transition: background-color var( --transition-fast ), color var( --transition-fast );
  line-height: 1.4;
}

.miller-cookie-banner__btn--accept {
  background: var( --miller-gold );
  color: var( --miller-teal );
}

.miller-cookie-banner__btn--accept:hover {
  background: var( --miller-cream );
}

.miller-cookie-banner__btn--decline {
  background: transparent;
  color: var( --miller-cream-80 );
  border: 1px solid var( --miller-cream-40 );
}

.miller-cookie-banner__btn--decline:hover {
  background: rgba( 255, 255, 255, 0.1 );
  color: var( --miller-cream );
}

@media ( max-width: 480px ) {
  .miller-cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .miller-cookie-banner__actions {
    width: 100%;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   7. Scroll-to-top button — rotation animation
   -------------------------------------------------------------------------- */

.miller-scroll-top svg {
  transition: transform var( --transition-fast );
}

.miller-scroll-top:hover svg {
  transform: translateY( -2px );
}

/* --------------------------------------------------------------------------
   8. Image placeholder / loading effect
   -------------------------------------------------------------------------- */

.miller-img-loading {
  background: linear-gradient( 110deg, rgba( 139, 159, 139, 0.15 ) 30%, rgba( 201, 169, 98, 0.08 ) 50%, rgba( 139, 159, 139, 0.15 ) 70% );
  background-size: 200% 100%;
  animation: millerShimmer 1.5s ease-in-out infinite;
}

@keyframes millerShimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}

@media ( prefers-reduced-motion: reduce ) {
  .miller-img-loading { animation: none; background: rgba( 139, 159, 139, 0.15 ); }
}

/* Fade in images after load */
img[data-loaded="true"] {
  animation: millerImgFadeIn 400ms ease both;
}

@keyframes millerImgFadeIn {
  from { opacity: 0.6; }
  to   { opacity: 1; }
}

@media ( prefers-reduced-motion: reduce ) {
  img[data-loaded="true"] { animation: none; }
}

/* --------------------------------------------------------------------------
   9. Enhanced link underline animation
   -------------------------------------------------------------------------- */

.stay-area__link,
.rooms-access__link,
.footer-nav a,
.contact-find__link {
  position: relative;
}

.stay-area__link::after,
.rooms-access__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var( --transition-medium );
}

.stay-area__link:hover::after,
.rooms-access__link:hover::after {
  width: 100%;
}

/* --------------------------------------------------------------------------
   10. Hero progress bar (home carousel)
   -------------------------------------------------------------------------- */

.home-hero__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 4;
  background: rgba( 255, 255, 255, 0.15 );
}

.home-hero__progress-bar {
  height: 100%;
  background: var( --miller-gold );
  width: 0;
  transition: none;
}

.home-hero__progress-bar--animating {
  transition: width 6000ms linear;
  width: 100%;
}

@media ( prefers-reduced-motion: reduce ) {
  .home-hero__progress { display: none; }
}

/* --------------------------------------------------------------------------
   11. Promo popup — polish
   -------------------------------------------------------------------------- */

.promo-popup__card {
  animation: promoSlideUp 400ms ease both;
}

@keyframes promoSlideUp {
  from { opacity: 0; transform: translateY( 20px ); }
  to   { opacity: 1; transform: none; }
}

@media ( prefers-reduced-motion: reduce ) {
  .promo-popup__card { animation: none; }
}

/* --------------------------------------------------------------------------
   12. Room card — room name heading link-style
   -------------------------------------------------------------------------- */

.room-card__room-name {
  transition: color var( --transition-fast );
}

.room-card:hover .room-card__room-name {
  color: var( --miller-gold );
}

/* --------------------------------------------------------------------------
   13. Lightbox — refined styles
   -------------------------------------------------------------------------- */

.miller-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba( 0, 0, 0, 0 );
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: background 300ms ease;
}

.miller-lightbox--open {
  background: rgba( 0, 0, 0, 0.92 );
  pointer-events: auto;
}

.miller-lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 300ms ease;
}

.miller-lightbox--open .miller-lightbox__img {
  opacity: 1;
}

.miller-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba( 255, 255, 255, 0.15 );
  border: none;
  color: #fff;
  font-size: 1.75rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms;
  padding: 0;
  line-height: 1;
}

.miller-lightbox__close:hover {
  background: rgba( 255, 255, 255, 0.3 );
}

.miller-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY( -50% );
  background: rgba( 255, 255, 255, 0.15 );
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms;
  padding: 0;
}

.miller-lightbox__nav:hover {
  background: rgba( 255, 255, 255, 0.3 );
}

.miller-lightbox__nav svg {
  width: 20px;
  height: 20px;
}

.miller-lightbox__nav--prev { left: 1rem; }
.miller-lightbox__nav--next { right: 1rem; }

.miller-lightbox__caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX( -50% );
  color: rgba( 255, 255, 255, 0.8 );
  font-size: 0.9rem;
  text-align: center;
  max-width: 80%;
  margin: 0;
}

body.lightbox-open {
  overflow: hidden;
}

/* Override Elementor kit padding on lightbox buttons */
.elementor-kit-6 .miller-lightbox__close,
.elementor-kit-6 .miller-lightbox__nav,
body .miller-lightbox__close,
body .miller-lightbox__nav {
  padding: 0;
  min-width: 0;
}

/* --------------------------------------------------------------------------
   14. Footer column hover effect
   -------------------------------------------------------------------------- */

.footer-col {
  transition: transform var( --transition-medium );
}

@media ( min-width: 768px ) {
  .footer-col:hover {
    transform: translateY( -2px );
  }
}

/* --------------------------------------------------------------------------
   15. Button press / active state
   -------------------------------------------------------------------------- */

.btn:active,
a.btn-primary:active,
a.btn-secondary:active,
a.btn-gold:active,
a.btn-outline-cream:active {
  transform: scale( 0.97 );
}

/* --------------------------------------------------------------------------
   16. Focus ring consistency
   -------------------------------------------------------------------------- */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var( --miller-gold );
  outline-offset: 2px;
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   17. Smooth scroll offset for anchor links (account for sticky header)
   -------------------------------------------------------------------------- */

[id] {
  scroll-margin-top: 5rem;
}

/* --------------------------------------------------------------------------
   Home Story — sub-headings for Ballad / Our Story sections
   -------------------------------------------------------------------------- */

.home-story__sub-heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--miller-gold);
  margin: 2.5rem 0 1rem;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.home-story__sub-heading:first-of-type {
  margin-top: 1.5rem;
}

/* --------------------------------------------------------------------------
   Home Story — Ballad inset card treatment
   -------------------------------------------------------------------------- */

.home-story__ballad-card {
  background: var( --color-bg-white );
  border-left: 3px solid var( --miller-gold );
  border-radius: 0 var( --radius-md ) var( --radius-md ) 0;
  padding: 1.75rem 2rem;
  margin: 1.5rem 0 2.5rem;
  box-shadow: 0 1px 4px rgba( 0, 0, 0, 0.06 );
}

.home-story__ballad-card .home-story__sub-heading {
  text-align: left;
  margin-top: 0;
  margin-bottom: 1rem;
}

.home-story__ballad-card .home-story__intro {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.home-story__ballad-card .home-story__intro:last-child {
  margin-bottom: 0;
}


/* --------------------------------------------------------------------------
   Home Story — teal background text overrides
   -------------------------------------------------------------------------- */

.home-story {
  color: var( --miller-cream );
}

.home-story .home-story__heading {
  color: var( --miller-cream );
}

.home-story .home-story__body,
.home-story .home-story__body--secondary {
  color: rgba( 245, 241, 230, 0.85 );
}

.home-story .home-story__intro {
  color: rgba( 245, 241, 230, 0.8 );
}

.home-story .home-story__sub-heading {
  color: var( --miller-gold );
}

/* Ballad card on teal — slightly lighter card bg */
.home-story .home-story__ballad-card {
  background: rgba( 255, 255, 255, 0.08 );
  border-left-color: var( --miller-gold );
  box-shadow: none;
}

/* Rooms Book — teal text overrides */
.rooms-book {
  color: var( --miller-cream );
}

.rooms-book__eyebrow {
  color: var( --miller-gold );
}

.rooms-book__copy {
  color: rgba( 245, 241, 230, 0.8 );
}

/* Contact Feedback — teal text overrides */
.contact-feedback {
  color: var( --miller-cream );
}

.contact-feedback .contact-feedback__inner h2,
.contact-feedback .contact-feedback__inner h3 {
  color: var( --miller-cream );
}

.contact-feedback__body {
  color: rgba( 245, 241, 230, 0.8 );
}


/* Rooms Book on teal — use gold buttons instead of teal-on-teal */
.rooms-book .btn-primary,
.rooms-book a.btn-primary,
body .rooms-book a.btn-primary,
.elementor-kit-6 .rooms-book a.btn-primary {
  background-color: var( --miller-gold ) !important;
  border-color: var( --miller-gold ) !important;
  color: var( --miller-teal ) !important;
}

.rooms-book .btn-primary:hover,
.rooms-book a.btn-primary:hover,
body .rooms-book a.btn-primary:hover {
  background-color: var( --miller-cream ) !important;
  border-color: var( --miller-cream ) !important;
  color: var( --miller-teal ) !important;
}

/* What's On gigs section on teal — fix card colours */
.whats-on-gigs {
  color: var( --miller-cream );
}

.whats-on-gig-card {
  background: rgba( 255, 255, 255, 0.08 );
  border-color: rgba( 201, 169, 98, 0.25 );
}

.whats-on-gig-card__artist {
  color: var( --miller-cream );
}


/* ==========================================================================
   GLOBAL: Teal background text overrides
   Any element with --miller-teal background gets cream/gold text automatically
   ========================================================================== */

.events-banner,
.home-story,
.rooms-book,
.rooms-info,
.contact-feedback,
.whats-on-gigs,
.live-gallery,
.fd-carvery,
.hire-benefits,
.find-access,
.faq-cta,
.feedback-review,
.booking-redirect,
.contact-hero,
.miller-teal-hero {
  color: var( --miller-cream );
}

.events-banner h1, .events-banner h2, .events-banner h3, .events-banner h4,
.home-story h1, .home-story h2, .home-story h3, .home-story h4,
.rooms-book h1, .rooms-book h2, .rooms-book h3, .rooms-book h4,
.rooms-info h1, .rooms-info h2, .rooms-info h3, .rooms-info h4,
.contact-feedback h1, .contact-feedback h2, .contact-feedback h3, .contact-feedback h4,
.whats-on-gigs h1, .whats-on-gigs h2, .whats-on-gigs h3, .whats-on-gigs h4,
.fd-carvery h1, .fd-carvery h2, .fd-carvery h3, .fd-carvery h4,
.hire-benefits h1, .hire-benefits h2, .hire-benefits h3, .hire-benefits h4,
.find-access h1, .find-access h2, .find-access h3, .find-access h4,
.faq-cta h1, .faq-cta h2, .faq-cta h3, .faq-cta h4,
.feedback-review h1, .feedback-review h2, .feedback-review h3, .feedback-review h4 {
  color: var( --miller-cream );
}

.events-banner p, .home-story p, .rooms-book p, .contact-feedback p,
.whats-on-gigs p, .fd-carvery p, .hire-benefits p, .find-access p,
.faq-cta p, .feedback-review p, .booking-redirect p {
  color: rgba( 245, 241, 230, 0.85 );
}

.events-banner a, .home-story a, .rooms-book a, .contact-feedback a,
.whats-on-gigs a, .fd-carvery a, .hire-benefits a, .find-access a,
.faq-cta a, .feedback-review a {
  color: var( --miller-gold );
}

.events-banner a:hover, .home-story a:hover, .rooms-book a:hover, .contact-feedback a:hover {
  color: var( --miller-cream );
}

/* Mobile menu toggle — fix Elementor kit padding override */
.elementor-kit-6 .miller-menu-toggle,
body .miller-menu-toggle {
  padding: 0;
  min-width: 0;
  border: none;
  background: none;
}

/* Mobile menu — wrap nav items in proper list styling */
.miller-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.miller-mobile-menu li {
  list-style: none;
  border-bottom: 1px solid rgba( 245, 241, 230, 0.1 );
}

.miller-mobile-menu li:last-child {
  border-bottom: none;
}

/* Ensure mobile menu has visible separator from header */
.miller-mobile-menu.is-open {
  border-top: 1px solid rgba( 245, 241, 230, 0.15 );
}


/* Contact feedback on teal — make buttons visible */
.contact-feedback .btn-primary,
.contact-feedback a.btn-primary,
body .contact-feedback a.btn-primary,
.elementor-kit-6 .contact-feedback a.btn-primary {
  background-color: var( --miller-gold ) !important;
  border-color: var( --miller-gold ) !important;
  color: var( --miller-teal ) !important;
}

.contact-feedback .btn-primary:hover,
.contact-feedback a.btn-primary:hover,
body .contact-feedback a.btn-primary:hover {
  background-color: var( --miller-cream ) !important;
  border-color: var( --miller-cream ) !important;
  color: var( --miller-teal ) !important;
}

.contact-feedback .btn-secondary,
.contact-feedback a.btn-secondary,
body .contact-feedback a.btn-secondary,
.elementor-kit-6 .contact-feedback a.btn-secondary {
  border-color: var( --miller-cream ) !important;
  color: var( --miller-cream ) !important;
  background-color: transparent !important;
}

.contact-feedback .btn-secondary:hover,
.contact-feedback a.btn-secondary:hover,
body .contact-feedback a.btn-secondary:hover {
  background-color: var( --miller-cream ) !important;
  color: var( --miller-teal ) !important;
}

/* Home story heading — ensure it's cream not teal */
.home-story__heading {
  color: var( --miller-cream ) !important;
}

/* Home story sub-heading — gold */  
.home-story__sub-heading {
  color: var( --miller-gold ) !important;
}


/* ==========================================================================
   GLOBAL: Buttons on teal backgrounds — ensure visibility
   ========================================================================== */

.section-teal .btn-primary,
.section-teal a.btn-primary,
body .section-teal a.btn-primary,
.home-story .btn-primary,
.home-story a.btn-primary,
body .home-story a.btn-primary,
.faq-cta .btn-primary,
.faq-cta a.btn-primary,
body .faq-cta a.btn-primary {
  background-color: var( --miller-gold ) !important;
  border-color: var( --miller-gold ) !important;
  color: var( --miller-teal ) !important;
}

.section-teal .btn-secondary,
.section-teal a.btn-secondary,
body .section-teal a.btn-secondary,
.home-story .btn-secondary,
.faq-cta .btn-secondary,
body .faq-cta a.btn-secondary {
  border-color: var( --miller-cream ) !important;
  color: var( --miller-cream ) !important;
  background-color: transparent !important;
}

.section-teal .btn-outline-cream,
.section-teal a.btn-outline-cream,
.home-story .btn-outline-cream,
.faq-cta .btn-outline-cream {
  border-color: var( --miller-cream );
  color: var( --miller-cream );
}
