/* ============================================================
   ARKTOS BOUTIQUE HOTEL — Global Stylesheet
   ============================================================ */

/* ------------------------------------------------------------
   1. CSS Variables
   ------------------------------------------------------------ */
:root {
  --color-primary:     #2C3E2D;
  --color-secondary:   #8B7355;
  --color-accent:      #C9A84C;
  --color-bg:          #FAF8F4;
  --color-bg-dark:     #1E2420;
  --color-text:        #2A2A2A;
  --color-text-light:  #6B6B6B;
  --color-white:       #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', sans-serif;

  --transition:  0.3s ease;
  --shadow-sm:   0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md:   0 4px 20px rgba(0, 0, 0, 0.12);
  --radius:      4px;

  --header-height: 80px;
}

/* ------------------------------------------------------------
   2. Global Reset & Base
   ------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* ------------------------------------------------------------
   3. Typography Helpers
   ------------------------------------------------------------ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--color-primary);
}

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}

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

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-light);
  max-width: 600px;
  line-height: 1.75;
}

.gold-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--color-accent);
  margin-bottom: 2rem;
}

.gold-rule--center {
  margin-left: auto;
  margin-right: auto;
}

/* ------------------------------------------------------------
   4. Layout Utilities
   ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

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

.section--green {
  background-color: var(--color-primary);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ------------------------------------------------------------
   5. Buttons
   ------------------------------------------------------------ */
.btn {
  display: inline-block;
  padding: 0.875rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background-color var(--transition),
              color var(--transition),
              border-color var(--transition),
              transform var(--transition),
              box-shadow var(--transition);
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.btn--gold {
  background-color: var(--color-accent);
  color: var(--color-white);
  border: 2px solid var(--color-accent);
}

.btn--gold:hover {
  background-color: #b8923e;
  border-color: #b8923e;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline-white {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.75);
}

.btn--outline-white:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: var(--color-white);
  transform: translateY(-1px);
}

.btn--outline-green {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn--outline-green:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), gap var(--transition);
  padding-bottom: 2px;
}

.text-link:hover {
  border-color: var(--color-accent);
  gap: 0.65rem;
}

/* ------------------------------------------------------------
   6. Header
   ------------------------------------------------------------ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background-color var(--transition),
              box-shadow var(--transition),
              backdrop-filter var(--transition);
}

/* Transparent state (over hero) */
.site-header.header--transparent {
  background-color: transparent;
}

/* Scrolled / solid state */
.site-header.scrolled,
.site-header.header--solid {
  background-color: var(--color-bg-dark);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
  background: var(--color-bg-dark);
  padding: 4px 10px;
  border-radius: 6px;
  isolation: isolate;
}

.site-logo__img {
  height: 48px;
  width: auto;
  display: block;
  filter: invert(1) grayscale(1);
  mix-blend-mode: screen;
  transition: opacity var(--transition);
}

.site-logo__img:hover { opacity: 0.85; }

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav .btn--gold {
  margin-left: 2.5rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-right: 1.75rem;
}

.nav-list a {
  display: block;
  padding: 0.5rem 0.65rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  position: relative;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.65rem;
  right: 0.65rem;
  height: 2px;
  background-color: var(--color-accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--color-white);
}

.nav-list a:hover::after,
.nav-list a.active::after {
  transform: scaleX(1);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

/* Hamburger → X animation */
.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ------------------------------------------------------------
   7. Mobile Nav Overlay
   ------------------------------------------------------------ */
.mobile-nav {
  position: fixed;
  inset: 0;
  background-color: var(--color-bg-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.03em;
  transition: color var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--color-accent);
}

.mobile-nav .btn--gold {
  margin-top: 1rem;
  font-size: 0.8125rem;
}

/* ------------------------------------------------------------
   8. Footer
   ------------------------------------------------------------ */
.site-footer {
  background-color: var(--color-bg-dark);
  color: var(--color-white);
}

.footer-main {
  padding-top: 4.5rem;
  padding-bottom: 3.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo__img {
  height: 56px;
  width: auto;
  display: block;
  filter: invert(1) grayscale(1);
  mix-blend-mode: screen;
  opacity: 0.92;
}

.footer-tagline {
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.65);
  transition: border-color var(--transition), color var(--transition), background-color var(--transition);
}

.footer-social a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background-color: rgba(201, 168, 76, 0.08);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.75rem;
}

.footer-contact-item span {
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.footer-contact-item a,
.footer-contact-item p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
}

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

.footer-cards {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.card-badge {
  padding: 0.3rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

/* DA web builder signature */
.da-signature {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color 0.2s ease;
}
.da-signature:hover { color: rgba(255, 255, 255, 0.55); }
.da-logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.45);
}
.da-logo-mark svg {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.35);
}
.da-logo-mark span {
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.espa-banner {
  height: 44px;
  width: auto;
  display: block;
  opacity: 0.85;
  transition: opacity var(--transition);
  flex-shrink: 0;
}

.espa-banner:hover { opacity: 1; }

@media (max-width: 640px) {
  .espa-banner { height: 36px; }
}

/* ------------------------------------------------------------
   9. Page Hero (shared)
   ------------------------------------------------------------ */
.page-hero {
  height: 60vh;
  min-height: 380px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 36, 32, 0.55);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.page-hero__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
}

/* ------------------------------------------------------------
   10. Cards (shared)
   ------------------------------------------------------------ */
.card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card__body {
  padding: 1.5rem;
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.card__text {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.65;
}

/* ------------------------------------------------------------
   11. Feature Icon Cards
   ------------------------------------------------------------ */
.feature-card {
  background: var(--color-white);
  border: 1px solid rgba(44, 62, 45, 0.1);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.feature-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--color-accent);
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.feature-card__text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ------------------------------------------------------------
   12. Stagger Testimonials
   ------------------------------------------------------------ */
.testimonials__header {
  text-align: center;
  margin-bottom: 0.5rem;
}

.stagger-stage {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2.5rem 0 1rem;
  overflow: hidden;
}

.stagger-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 340px;
  background: var(--color-bg-dark);
  color: var(--color-bg);
  border-radius: 18px;
  padding: 2.25rem 2rem 1.75rem;
  transition:
    transform 0.55s cubic-bezier(0.34, 1.2, 0.64, 1),
    opacity   0.45s ease,
    box-shadow 0.45s ease;
  will-change: transform, opacity;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.stagger-card--center {
  background: #1e3d30;
  z-index: 10;
  transform: translate(-50%, -50%) scale(1) rotate(0deg);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(201, 168, 76, 0.25);
}

.stagger-card--left1 {
  z-index: 7;
  transform: translate(calc(-50% - 230px), calc(-50% + 24px)) scale(0.85) rotate(-4deg);
  opacity: 0.6;
  cursor: pointer;
}

.stagger-card--right1 {
  z-index: 7;
  transform: translate(calc(-50% + 230px), calc(-50% + 24px)) scale(0.85) rotate(4deg);
  opacity: 0.6;
  cursor: pointer;
}

.stagger-card--left2 {
  z-index: 4;
  transform: translate(calc(-50% - 395px), calc(-50% + 60px)) scale(0.7) rotate(-8deg);
  opacity: 0.28;
  cursor: pointer;
}

.stagger-card--right2 {
  z-index: 4;
  transform: translate(calc(-50% + 395px), calc(-50% + 60px)) scale(0.7) rotate(8deg);
  opacity: 0.28;
  cursor: pointer;
}

.stagger-card--hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.5);
  z-index: 0;
}

.stagger-card__corner-line {
  position: absolute;
  top: 4px;
  right: 8px;
  width: 1.5px;
  height: 36px;
  background: var(--color-accent);
  opacity: 0.7;
  transform: rotate(45deg) translateX(14px) translateY(-8px);
  transform-origin: top center;
}

.stagger-card__stars {
  color: var(--color-accent);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.stagger-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.72;
  color: rgba(250, 248, 244, 0.88);
  margin: 0 0 1.4rem;
}

.stagger-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

.stagger-card__author {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-bg);
  margin-bottom: 0.2rem;
  letter-spacing: 0.03em;
}

.stagger-card__origin {
  font-size: 0.73rem;
  color: rgba(250, 248, 244, 0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stagger-card__source {
  font-size: 0.7rem;
  color: rgba(250, 248, 244, 0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Controls */
.stagger-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.stagger-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(44, 62, 45, 0.25);
  background: transparent;
  color: var(--color-primary);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  line-height: 1;
}

.stagger-btn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

.stagger-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.stagger-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(44, 62, 45, 0.2);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: all 0.25s ease;
}

.stagger-dot.is-active {
  background: var(--color-accent);
  transform: scale(1.4);
}

@media (max-width: 900px) {
  .stagger-card--left2,
  .stagger-card--right2 {
    opacity: 0;
    pointer-events: none;
  }
}

@media (max-width: 600px) {
  .stagger-stage {
    height: 370px;
  }

  .stagger-card {
    width: min(320px, 88vw);
  }

  .stagger-card--left1,
  .stagger-card--right1,
  .stagger-card--left2,
  .stagger-card--right2 {
    opacity: 0;
    pointer-events: none;
  }
}

/* ------------------------------------------------------------
   13. CTA Strip
   ------------------------------------------------------------ */
.cta-strip {
  background-color: var(--color-primary);
  padding: 4.5rem 0;
  text-align: center;
}

.cta-strip__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.cta-strip__sub {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2rem;
}

/* ------------------------------------------------------------
   14. Fade-in Scroll Animation
   ------------------------------------------------------------ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger utilities */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ------------------------------------------------------------
   15. Focus & Accessibility
   ------------------------------------------------------------ */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

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

.skip-link:focus {
  top: 1rem;
}

/* ------------------------------------------------------------
   16. Responsive Breakpoints
   ------------------------------------------------------------ */

/* ---- 1024px ---- */
@media (max-width: 1024px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-main > :first-child {
    grid-column: 1 / -1;
  }
}

/* ---- 768px ---- */
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  /* Hide desktop nav links only — keep Book Now button visible */
  .nav-list {
    display: none;
  }

  /* Shrink the header Book Now button on mobile */
  .site-nav .btn {
    padding: 0.55rem 1rem;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
  }

  .nav-toggle {
    display: flex;
  }

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

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

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 3rem;
    padding-bottom: 2.5rem;
  }

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

  .page-hero {
    background-attachment: scroll;
  }
}

/* ---- 480px ---- */
@media (max-width: 480px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

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

  .btn {
    padding: 0.8rem 1.75rem;
  }

  /* Keep header Book Now very compact on small phones */
  .site-nav .btn {
    padding: 0.5rem 0.85rem;
    font-size: 0.65rem;
  }

  .section {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .cta-strip {
    padding: 3rem 0;
  }

  /* Page hero tighter on mobile */
  .page-hero {
    min-height: 300px;
    height: 50vh;
  }

  /* Footer bottom stack */
  .footer-bottom {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }
}

/* ------------------------------------------------------------
   17. Reduced Motion
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  /* Show all fade-in elements immediately */
  .fade-in {
    opacity: 1;
    transform: none;
  }
}

/* ------------------------------------------------------------
   18. Print
   ------------------------------------------------------------ */
@media print {
  .site-header,
  .mobile-nav,
  .hero__scroll,
  .cta-strip,
  .footer-social { display: none; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
}

/* ------------------------------------------------------------
   19. Language Toggle
   ------------------------------------------------------------ */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 2px;
  padding: 0.3rem 0.65rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
  transition: border-color var(--transition), color var(--transition);
  line-height: 1;
  flex-shrink: 0;
}

.lang-toggle:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.lang-toggle__sep {
  opacity: 0.4;
  font-weight: 400;
}

.lang-toggle__option {
  transition: color var(--transition);
}

.lang-toggle__option.is-active {
  color: var(--color-accent);
}

.header--solid .lang-toggle {
  border-color: rgba(44,62,45,0.3);
  color: var(--color-text-light);
}

.header--solid .lang-toggle:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.header--solid.scrolled .lang-toggle,
.header--transparent.scrolled .lang-toggle {
  border-color: rgba(44,62,45,0.3);
  color: var(--color-text-light);
}

.header--solid.scrolled .lang-toggle:hover,
.header--transparent.scrolled .lang-toggle:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* ------------------------------------------------------------
   20. Booking Modal
   ------------------------------------------------------------ */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.booking-modal[hidden] { display: none; }

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 28, 22, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}

.booking-modal__panel {
  position: relative;
  z-index: 1;
  background: var(--color-white);
  border-radius: 6px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
  animation: modalIn 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.booking-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  border-radius: 50%;
  transition: background var(--transition), color var(--transition);
}

.booking-modal__close:hover {
  background: var(--color-bg);
  color: var(--color-primary);
}

.booking-modal__top {
  background: var(--color-primary);
  padding: 2rem 2rem 1.5rem;
  border-radius: 6px 6px 0 0;
}

.booking-modal__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.35rem;
}

.booking-modal__subtitle {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.booking-modal__body {
  padding: 1.75rem 2rem 2rem;
}

/* Booking Form */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.booking-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.booking-form__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text);
}

.booking-form__label .req {
  color: var(--color-accent);
  margin-left: 2px;
}

.booking-form__input,
.booking-form__select,
.booking-form__textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid #D8D2C8;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.booking-form__input:focus,
.booking-form__select:focus,
.booking-form__textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(44,62,45,0.1);
  background: var(--color-white);
}

.booking-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B6B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.25rem;
  cursor: pointer;
}

.booking-form__textarea {
  resize: vertical;
  min-height: 90px;
}

.booking-form__submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.9rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.booking-form__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.booking-form__submit .spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}

.booking-form__submit.is-loading .spinner { display: block; }
.booking-form__submit.is-loading .submit-label { display: none; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

.booking-modal__success,
.booking-modal__error {
  text-align: center;
  padding: 2rem 1rem;
}

.booking-modal__success-icon {
  width: 52px;
  height: 52px;
  background: rgba(44,62,45,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--color-primary);
}

.booking-modal__success h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 0.65rem;
}

.booking-modal__success p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.65;
}

.booking-modal__error-msg {
  background: #FFF3F3;
  border: 1px solid #FFCACA;
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #C0392B;
  margin-top: 0.5rem;
  display: none;
}

.booking-modal__error-msg.is-visible { display: block; }

/* Lock body when modal open */
body.modal-open { overflow: hidden; }

/* EmailJS setup note (dev-only, hidden in production) */
.emailjs-note {
  font-size: 0.75rem;
  color: var(--color-text-light);
  background: #FFFBE6;
  border: 1px solid #FFE082;
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  margin-top: 0.75rem;
  line-height: 1.5;
}

@media (max-width: 540px) {
  .booking-modal__panel { max-height: 100vh; border-radius: 0; }
  .booking-form__row { grid-template-columns: 1fr; }
  .booking-modal__top { padding: 1.5rem 1.25rem 1.25rem; }
  .booking-modal__body { padding: 1.25rem 1.25rem 1.5rem; }
}

/* ------------------------------------------------------------
   21. Range Calendar Picker
   ------------------------------------------------------------ */
.date-range-bar {
  display: flex;
  align-items: stretch;
  background: var(--color-bg);
  border: 1.5px solid rgba(44,62,45,0.15);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.6rem;
  transition: border-color 0.2s;
}

.date-range-bar:focus-within {
  border-color: var(--color-primary);
}

.date-range-bar__side {
  flex: 1;
  padding: 0.6rem 0.9rem;
  cursor: pointer;
  transition: background 0.15s;
}

.date-range-bar__side:hover {
  background: rgba(44,62,45,0.04);
}

.date-range-bar__side.is-active {
  background: rgba(44,62,45,0.07);
}

.date-range-bar__sep {
  width: 1px;
  background: rgba(44,62,45,0.12);
  flex-shrink: 0;
}

.date-range-bar__label {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 0.15rem;
}

.date-range-bar__value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  display: block;
  white-space: nowrap;
}

.date-range-bar__value.is-placeholder {
  color: var(--color-text-light);
  font-weight: 400;
}

/* Calendar widget — hidden until triggered */
.rcal {
  display: none;
  background: var(--color-white);
  border: 1.5px solid rgba(44,62,45,0.1);
  border-radius: var(--radius);
  padding: 0.9rem;
  user-select: none;
  margin-top: 0.4rem;
}

.rcal.is-open {
  display: block;
}

.rcal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}

.rcal__nav {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(44,62,45,0.14);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: 1.15rem;
  line-height: 1;
  transition: all 0.15s;
  padding: 0;
  flex-shrink: 0;
}

.rcal__nav:hover {
  background: var(--color-bg);
  border-color: rgba(44,62,45,0.3);
  color: var(--color-primary);
}

.rcal__heading {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
}

.rcal__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 0.15rem;
}

.rcal__wday {
  text-align: center;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-light);
  padding: 0.2rem 0;
}

.rcal__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.rcal__cell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
}

/* Range background: full-width strip for in-range cells */
.rcal__cell.in-range {
  background: rgba(44,62,45,0.09);
}

/* Start cell: half-background on the right side only */
.rcal__cell.is-range-start {
  background: linear-gradient(to right, transparent 50%, rgba(44,62,45,0.09) 50%);
}

/* End cell: half-background on the left side only */
.rcal__cell.is-range-end {
  background: linear-gradient(to left, transparent 50%, rgba(44,62,45,0.09) 50%);
}

/* Single day (start = end): no strip */
.rcal__cell.is-range-start.is-range-end {
  background: transparent;
}

/* The day button itself */
.rcal__day {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  border: none;
  background: transparent;
  font-size: 0.78rem;
  color: var(--color-text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.12s, color 0.12s;
  padding: 0;
  z-index: 1;
  flex-shrink: 0;
  font-family: var(--font-body);
}

.rcal__day:hover:not(:disabled) {
  background: rgba(44,62,45,0.1);
  color: var(--color-primary);
}

.rcal__day:disabled {
  color: rgba(44,62,45,0.22);
  cursor: not-allowed;
}

.rcal__day.is-today {
  font-weight: 700;
  color: var(--color-primary);
}

.rcal__today-dot {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--color-primary);
  display: block;
}

/* Selected start / end button */
.rcal__day.is-selected {
  background: var(--color-primary) !important;
  color: #fff !important;
  border-radius: 7px;
}

.rcal__day.is-selected .rcal__today-dot {
  background: rgba(255,255,255,0.5);
}

/* Hint text */
.rcal__hint {
  text-align: center;
  font-size: 0.7rem;
  color: var(--color-text-light);
  margin-top: 0.55rem;
  letter-spacing: 0.02em;
}

/* ── Booking confirm checkbox ────────────────────────────── */
.booking-form__field--confirm {
  margin-top: 0.1rem;
}

.booking-form__confirm-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: rgba(44,62,45,0.04);
  border: 1px solid rgba(44,62,45,0.14);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
  line-height: 1;
}

.booking-form__confirm-label:hover {
  background: rgba(44,62,45,0.07);
}

.booking-form__confirm-input {
  margin-top: 1px;
  width: 15px;
  height: 15px;
  min-width: 15px;
  accent-color: var(--color-primary);
  cursor: pointer;
  flex-shrink: 0;
}

.booking-form__confirm-text {
  font-size: 0.8rem;
  color: var(--color-text);
  line-height: 1.55;
}

.booking-form__confirm-label:has(.booking-form__confirm-input:checked) {
  border-color: var(--color-primary);
  background: rgba(44,62,45,0.08);
}

/* ── Disabled submit button ──────────────────────────────── */
.btn:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  pointer-events: none;
}

/* Contact page range calendar sits inside .form-group */
.form-group--range-cal {
  grid-column: 1 / -1;
}

/* ── Custom Room Select ──────────────────────────────────── */
.custom-select {
  position: relative;
  width: 100%;
}

.custom-select__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  background: var(--color-white);
  border: 1.5px solid rgba(44,62,45,0.18);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text);
  transition: border-color 0.18s, box-shadow 0.18s;
}

.custom-select__trigger:focus,
.custom-select.is-open .custom-select__trigger {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.custom-select__displayed {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-select__displayed.is-placeholder {
  color: rgba(42,42,42,0.4);
  font-weight: 400;
}

.custom-select__chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--color-text-light);
  transition: transform 0.2s ease;
  stroke: currentColor;
}

.custom-select.is-open .custom-select__chevron {
  transform: rotate(180deg);
}

.custom-select__dropdown {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--color-white);
  border: 1.5px solid rgba(44,62,45,0.12);
  border-radius: 6px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);
  padding: 4px;
  opacity: 0;
  transform: translateY(-6px) scale(0.97);
  transform-origin: top center;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.custom-select.is-open .custom-select__dropdown {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.custom-select__item {
  padding: 0.6rem 0.85rem;
  font-size: 0.9rem;
  font-family: var(--font-body);
  border-radius: 4px;
  cursor: pointer;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.1s, color 0.1s;
  user-select: none;
}

.custom-select__item:hover {
  background: rgba(44,62,45,0.06);
  color: var(--color-primary);
}

.custom-select__item.is-selected {
  background: rgba(44,62,45,0.08);
  color: var(--color-primary);
  font-weight: 600;
}

.custom-select__item-check {
  display: none;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--color-primary);
}

.custom-select__item.is-selected .custom-select__item-check {
  display: block;
}

/* reCAPTCHA badge */
.grecaptcha-badge {
  visibility: visible !important;
  opacity: 1 !important;
  transform: scale(0.75);
  transform-origin: bottom right;
  bottom: 14px !important;
  right: 14px !important;
  z-index: 9999 !important;
}
