/* ============================================================
   Racheal's Queen of Clean — Stylesheet
   Color palette:
     --royal    : #4B1D8E  (deep purple)
     --gold     : #C9A84C  (warm gold)
     --cream    : #FAF7F2  (off-white bg)
     --charcoal : #1C1C2E  (dark text)
     --mid-gray : #6B6B80  (secondary text)
     --white    : #FFFFFF
   ============================================================ */

/* ----- Reset & Custom Properties ----- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --royal: #4B1D8E;
  --royal-dark: #35126A;
  --royal-light: #6B3DB5;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --cream: #FAF7F2;
  --white: #FFFFFF;
  --charcoal: #1C1C2E;
  --mid-gray: #6B6B80;
  --light-gray: #E8E8F0;
  --error: #C0392B;
  --success: #1E8449;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(75, 29, 142, 0.08);
  --shadow-md: 0 6px 24px rgba(75, 29, 142, 0.14);
  --shadow-lg: 0 16px 48px rgba(75, 29, 142, 0.18);

  --transition: 0.25s ease;

  --nav-height: 160px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ----- Skip Link ----- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--royal);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
}

/* ----- Container ----- */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(75, 29, 142, 0.08);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--royal);
  transition: color var(--transition);
}
.nav-logo:hover { color: var(--royal-light); }

.nav-logo-img {
  width: 150px;
  height: 150px;
  display: block;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: var(--radius-pill);
  transition: width var(--transition);
}
.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active:not(.nav-link--cta) {
  color: var(--royal);
}
.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active:not(.nav-link--cta)::after {
  width: 100%;
}

/* Keep CTA button readable when on the contact page */
.nav-link--cta.active {
  background: var(--royal-dark);
  color: var(--white);
}

.nav-link--cta {
  background: var(--royal);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.nav-link--cta::after { display: none; }
.nav-link--cta:hover,
.nav-link--cta:focus-visible {
  background: var(--royal-dark);
  color: var(--white);
  transform: translateY(-1px);
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius-sm);
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.hamburger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: var(--radius-pill);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  padding: 0.7rem 1.75rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  text-align: center;
}
.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--royal);
  color: var(--white);
  border-color: var(--royal);
}
.btn--primary:hover {
  background: var(--royal-dark);
  border-color: var(--royal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(75, 29, 142, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--royal);
  border-color: var(--royal);
}
.btn--outline:hover {
  background: var(--royal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--royal);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn--ghost {
  background: transparent;
  color: var(--royal);
  border-color: rgba(75, 29, 142, 0.35);
}
.btn--ghost:hover {
  background: rgba(75, 29, 142, 0.07);
  border-color: var(--royal);
  transform: translateY(-2px);
}

.btn--large {
  font-size: 1.0625rem;
  padding: 0.9rem 2.25rem;
}
.btn--full { width: 100%; }

/* ============================================================
   SECTIONS — shared
   ============================================================ */
.section {
  padding-block: 5rem;
}
.section--light { background: var(--cream); }
.section--dark  { background: var(--charcoal); }
.section--accent { background: var(--royal); }

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.section__title--light { color: var(--white); }

.section__subtitle {
  font-size: 1.0625rem;
  color: var(--mid-gray);
  max-width: 600px;
  margin-inline: auto;
}
.section__subtitle--light { color: rgba(255,255,255,0.8); }

.section__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ============================================================
   PAGE HERO — inner pages banner
   ============================================================ */
.page-hero {
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: 3rem;
  text-align: center;
}
.page-hero--light {
  background: linear-gradient(135deg, #FAF7F2 0%, #F0EBF8 100%);
  border-bottom: 1px solid var(--light-gray);
}
.page-hero--accent {
  background: linear-gradient(120deg, var(--royal-dark), var(--royal));
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.page-hero__title--light { color: var(--white); }

.page-hero__subtitle {
  font-size: 1.0625rem;
  color: var(--mid-gray);
  max-width: 560px;
  margin-inline: auto;
}
.page-hero__subtitle--light { color: rgba(255,255,255,0.8); }

/* Screen-reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ============================================================
   SPECIALS IMAGE
   ============================================================ */
.specials-image-wrap {
  display: flex;
  justify-content: center;
}
.specials-image {
  max-width: 860px;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   HERO — home page
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(75, 29, 142, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(201, 168, 76, 0.1) 0%, transparent 60%),
    linear-gradient(135deg, #FAF7F2 0%, #F0EBF8 50%, #FAF7F2 100%);
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-block: 5rem;
}

.hero__eyebrow {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.hero__title--accent {
  color: var(--royal);
}

.hero__desc {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--mid-gray);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-dot {
  display: block;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  animation: bounce 1.8s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.4; }
}

/* ============================================================
   SERVICES CARDS
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card__icon {
  font-size: 2.25rem;
}

.card__title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--royal);
}

.card__desc {
  font-size: 0.9375rem;
  color: var(--mid-gray);
  line-height: 1.75;
  flex: 1;
}

.card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Three-column service grid */
.cards-grid--three {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Highlighted / most-popular card */
.card--highlight {
  border-color: var(--royal);
  border-width: 2px;
  position: relative;
  box-shadow: var(--shadow-md);
}

.card__badge {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.75rem;
  width: fit-content;
  margin-bottom: 0.25rem;
}

.card__tag {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: -0.25rem;
}

.card__price {
  margin-block: 0.25rem 0.5rem;
}
.card__price-amount {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--royal);
}

/* Add-ons box */
.addons-box {
  margin-top: 2.5rem;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.addons-box__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  width: 100%;
}

.addons-box__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  flex: 1;
}

.addons-box__item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(75, 29, 142, 0.07);
  color: var(--royal);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.875rem;
}

.addons-box__note {
  font-size: 0.8125rem;
  color: var(--mid-gray);
  font-style: italic;
  width: 100%;
  margin-top: -0.25rem;
}

/* Form checkboxes */
.form-fieldset {
  border: none;
}

.form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 0.25rem;
}

.form-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--charcoal);
  cursor: pointer;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--royal);
  cursor: pointer;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: background var(--transition), transform var(--transition);
}
.feature:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.feature__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.feature__title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.feature__desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
}

/* ============================================================
   OUR STORY
   ============================================================ */
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story__text .section__title {
  margin-bottom: 1.25rem;
}
.story__body {
  color: var(--mid-gray);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.story__text .btn { margin-top: 0.5rem; }

.story__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.story__badge {
  width: 280px;
  height: 280px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--gold);
}
.story__badge-logo {
  width: 85%;
  height: 85%;
  object-fit: contain;
  border-radius: 50%;
}

/* ============================================================
   SPECIALS
   ============================================================ */
.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.special-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background var(--transition), transform var(--transition);
}
.special-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.special-card__badge {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.75rem;
  width: fit-content;
}

.special-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.special-card__desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  flex: 1;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial__stars {
  color: var(--gold);
  font-size: 1.125rem;
  letter-spacing: 2px;
}

.testimonial__quote {
  font-size: 0.9375rem;
  color: var(--mid-gray);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}

.testimonial__author {
  margin-top: auto;
}
.testimonial__author cite {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 600;
  color: var(--royal);
  font-size: 1rem;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(120deg, var(--royal-dark), var(--royal), var(--royal-light));
  padding-block: 4rem;
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.cta-banner__desc {
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  font-size: 1.0625rem;
  line-height: 1.7;
}
.cta-banner .btn--primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
  white-space: nowrap;
  flex-shrink: 0;
}
.cta-banner .btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4rem;
  align-items: start;
}

.contact__intro {
  color: var(--mid-gray);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-block: 1rem 2rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
}
.contact__detail-icon {
  font-size: 1.25rem;
  width: 1.5rem;
  flex-shrink: 0;
}
.contact__link {
  color: var(--royal);
  font-weight: 500;
  transition: color var(--transition);
}
.contact__link:hover {
  color: var(--royal-light);
  text-decoration: underline;
}

/* ----- Form ----- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

/* Honeypot — visually hidden */
.form-group--honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
}
.form-label span { color: var(--error); }

.form-input {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: 0.7rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-input:focus {
  outline: none;
  border-color: var(--royal);
  box-shadow: 0 0 0 3px rgba(75, 29, 142, 0.12);
}
.form-input.is-invalid {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}
.form-input.is-valid {
  border-color: var(--success);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B6B80' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.form-error {
  font-size: 0.8125rem;
  color: var(--error);
  min-height: 1.1em;
  font-weight: 500;
}

.form-status {
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  text-align: center;
  display: none;
}
.form-status.success {
  display: block;
  background: #d4edda;
  color: var(--success);
  border: 1px solid #c3e6cb;
}
.form-status.error {
  display: block;
  background: #f8d7da;
  color: var(--error);
  border: 1px solid #f5c6cb;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  padding-block: 3rem;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.footer__logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  background: var(--white);
  border-radius: 50%;
  padding: 8px;
}
.footer__tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

.footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1.5rem;
}
.footer__link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer__link:hover { color: var(--gold); }
.footer__link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}

.footer__copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}

/* ============================================================
   BOOKING POLICY
   ============================================================ */
.booking-policy {
  margin-top: 2rem;
  background: linear-gradient(135deg, rgba(75, 29, 142, 0.06), rgba(201, 168, 76, 0.06));
  border: 1px solid rgba(75, 29, 142, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.booking-policy__title {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--royal);
  margin-bottom: 1rem;
}

.booking-policy__list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.booking-policy__item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.6;
}

.booking-policy__icon {
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.booking-policy__item strong {
  color: var(--charcoal);
  font-weight: 600;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .story-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .story__visual {
    order: -1;
  }
  .story__badge {
    width: 200px;
    height: 200px;
  }

  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 700px) {
  :root { --nav-height: 110px; }

  .nav-logo-img {
    width: 100px;
    height: 100px;
  }

  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    background: var(--white);
    border-top: 1px solid var(--light-gray);
    box-shadow: var(--shadow-md);
    padding: 0.75rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-menu > li { display: block; }
  .nav-link {
    display: block;
    padding: 0.9rem 1rem;
    border-radius: var(--radius-md);
  }
  .nav-link--cta {
    display: block;
    text-align: center;
    margin-top: 1rem;
  }

  .section { padding-block: 3.5rem; }
  .form-row { grid-template-columns: 1fr; }

  .hero__content { padding-block: 3rem; }
}

@media (max-width: 480px) {
  .cards-grid,
  .features-grid,
  .specials-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   FOCUS VISIBLE — global keyboard nav
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
:focus:not(:focus-visible) {
  outline: none;
}
