/* ============================================
   OKANAGAN COTTAGES — Shared Stylesheet
   ============================================ */

/* ROOT & RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #3D5A80;
  --copper: #C07850;
  --cream: #F5F0E8;
  --warm-white: #FDFBF7;
  --text-dark: #3a3a3a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  background-color: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* FOCUS STYLES */
*:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 2px;
}

input:focus,
select:focus {
  outline: none;
  border-bottom-color: var(--copper);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: transparent;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: background 0.4s, backdrop-filter 0.4s;
}

/* Scrolled state — always cream bg with navy elements */
.navbar.scrolled {
  background: rgba(245, 240, 232, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar.scrolled .hamburger span {
  background: var(--navy) !important;
}

.navbar.scrolled .nav-logo-img {
  filter: brightness(0) saturate(100%) !important;
}

.navbar.scrolled .nav-book-btn {
  color: var(--navy) !important;
  border-color: var(--navy) !important;
}

.navbar.scrolled .nav-links a {
  color: var(--navy) !important;
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  color: var(--copper) !important;
}

/* Nav layout */
.nav-left {
  width: 100px;
  display: flex;
  align-items: center;
}

.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-logo-img {
  height: 50px;
  transition: filter 0.4s;
}

.nav-right {
  width: 100px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.nav-book-btn {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid;
  padding: 10px 20px;
  transition: all 0.3s;
  white-space: nowrap;
}

.nav-book-btn:hover {
  background: var(--copper);
  border-color: var(--copper);
  color: white !important;
}

/* Default nav (dark elements — for light hero pages) */
.hamburger span {
  background: rgba(0, 0, 0, 0.75);
}

.navbar .nav-logo-img {
  filter: brightness(0) saturate(100%);
}

.navbar .nav-book-btn {
  color: rgba(0, 0, 0, 0.75);
  border-color: rgba(0, 0, 0, 0.75);
}

/* .nav-light modifier (white elements — for dark hero pages) */
.nav-light .hamburger span {
  background: white;
}

.nav-light .nav-logo-img {
  filter: brightness(1);
}

.nav-light .nav-book-btn {
  color: white;
  border-color: white;
}

.nav-light .nav-links a {
  color: rgba(255, 255, 255, 0.9);
}

.nav-light .nav-links a:hover,
.nav-light .nav-links a.active {
  color: var(--copper);
}

/* Hamburger */
.hamburger {
  width: 26px;
  min-width: 44px;
  min-height: 44px;
  padding: 13px 9px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Desktop nav links */
.nav-links {
  display: none;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--copper);
}

.nav-links a.active {
  color: var(--copper);
}

/* ============================================
   SLIDE-OUT MENU
   ============================================ */
.slide-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 360px;
  max-width: 85vw;
  height: 100dvh;
  background: var(--cream);
  z-index: 999;
  transition: left 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 120px 40px 40px;
  overflow-y: auto;
}

.slide-menu.open {
  left: 0;
}

.slide-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--navy);
  text-decoration: none;
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: color 0.3s;
}

.slide-menu a:hover {
  color: var(--copper);
}

.slide-menu-contact {
  margin-top: auto;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--text-dark);
  line-height: 1.8;
}

.slide-menu-contact a {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  border-bottom: none;
  padding: 4px 0;
  color: var(--copper);
}

.slide-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.slide-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.hero--full {
  height: 100vh;
}

.hero--page {
  height: 85vh;
  margin-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.8;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.35) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 40px;
  animation: heroFadeIn 1.2s ease forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.3;
  margin-bottom: 24px;
}

.hero-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  margin: 24px auto;
}

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

/* HERO VIDEO (index.html) */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.75;
}

/* HERO MOBILE IMAGE (index.html) */
.hero-mobile-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.8;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0;
  animation: scrollFadeIn 1s ease 2s forwards;
}

@keyframes scrollFadeIn {
  to {
    opacity: 1;
  }
}

.hero-scroll-indicator span {
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.5);
  margin: 8px auto 0;
}

/* ============================================
   SECTION PATTERNS
   ============================================ */
.section {
  padding: 140px 60px;
}

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

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

.section--navy {
  background: var(--navy);
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--copper);
  display: block;
  text-align: center;
  margin-bottom: 48px;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 300;
  color: var(--navy);
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.3;
}

/* ============================================
   CONTENT PATTERNS
   ============================================ */
.welcome {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.welcome p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.text-cta {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.text-cta:hover {
  gap: 14px;
}

.text-cta::after {
  content: '\2192';
}

.text-cta--light {
  color: white;
}

.copper-divider {
  width: 60px;
  height: 1px;
  background: var(--copper);
  margin: 32px auto;
}

/* ============================================
   SPLIT SECTION (50/50)
   ============================================ */
.split-section {
  display: flex;
  align-items: stretch;
  min-height: 500px;
}

.split-section--alt {
  flex-direction: row-reverse;
}

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

.split-section--warm-white {
  background: var(--warm-white);
}

.split-image {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content {
  flex: 0 0 50%;
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 24px;
}

.split-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.3;
}

.split-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 16px;
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-item {
  text-align: center;
}

.feature-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-bottom: 24px;
  transition: transform 0.6s ease;
}

.feature-item:hover .feature-image {
  transform: scale(1.03);
}

.feature-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 12px;
}

.feature-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-dark);
}

/* ============================================
   GALLERY GRID
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item {
  cursor: pointer;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  line-height: 1;
  padding: 8px;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  padding: 16px;
  line-height: 1;
}

.lightbox-nav:hover {
  opacity: 1;
}

.lightbox-prev {
  left: 12px;
}

.lightbox-next {
  right: 12px;
}

/* ============================================
   PRICING GRID
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-item {
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.pricing-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 16px;
}

.pricing-item .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--copper);
  margin-bottom: 16px;
}

.pricing-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-dark);
}

/* ============================================
   BENEFITS GRID
   ============================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  max-width: 800px;
  margin: 0 auto;
}

.benefits-grid h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 12px;
}

.benefits-grid p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-dark);
}

/* ============================================
   SEASONAL GRID
   ============================================ */
.seasonal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 80px;
}

.seasonal-item {
  text-align: center;
}

.seasonal-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 0;
}

.seasonal-item .section-label {
  margin-bottom: 8px;
  display: block;
}

.seasonal-item p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 0;
  color: var(--text-dark);
  margin-top: 0;
  margin-bottom: 4px;
}

/* ============================================
   REVIEW ITEMS
   ============================================ */
.review-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 40px 0;
}

.review-item:last-child {
  border-bottom: none;
}

.review-item blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 16px;
}

.review-item .review-author {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--copper);
}

/* ============================================
   AMENITY COLUMNS
   ============================================ */
.amenity-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.amenity-columns h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 16px;
}

.amenity-columns ul {
  list-style: none;
}

.amenity-columns li {
  font-size: 14px;
  line-height: 2;
  color: var(--text-dark);
}

/* ============================================
   IMAGE BREAK
   ============================================ */
.image-break {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  display: block;
}

.image-break--tall {
  height: 70vh;
}

.image-break--overlay {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-break--overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.image-break--overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-break-text {
  position: absolute;
  z-index: 3;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  color: white;
  text-align: center;
  letter-spacing: 0.1em;
  padding: 0 40px;
}

/* ============================================
   RATING SUMMARY
   ============================================ */
.rating-summary {
  text-align: center;
  margin-bottom: 60px;
}

.rating-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.rating-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.rating-stars {
  color: var(--copper);
  font-size: 20px;
  letter-spacing: 4px;
}

/* ============================================
   FEATURED REVIEW
   ============================================ */
.featured-review {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 0;
}

.featured-quotemark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 16px;
}

.featured-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 24px;
}

.featured-attribution {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--copper);
}

/* ============================================
   BOOKING FORM
   ============================================ */
.booking-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark);
  display: block;
  margin-bottom: 8px;
}

.form-inputs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dark);
  transition: border-color 0.3s;
}

.booking-form input:focus,
.booking-form select:focus {
  border-bottom-color: var(--copper);
}

.booking-form input:focus-visible,
.booking-form select:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 2px;
}

.form-button {
  background: var(--copper);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  padding: 16px 40px;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 16px;
}

.form-button:hover {
  background: var(--navy);
}

.form-note {
  font-style: italic;
  color: #999;
  font-size: 13px;
  margin-top: 16px;
}

/* ============================================
   TRUST SIGNALS
   ============================================ */
.trust-signals {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-signals span {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--copper);
  display: block;
  text-align: center;
  margin-bottom: 24px;
}

.contact-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 300;
  color: white;
  text-align: center;
  margin-bottom: 24px;
}

.contact-email {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--copper);
  text-decoration: none;
  display: block;
  text-align: center;
  margin-bottom: 16px;
  transition: opacity 0.3s;
}

.contact-email:hover {
  opacity: 0.8;
}

.contact-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  line-height: 1.7;
}

/* ============================================
   EMAIL SIGNUP
   ============================================ */
.email-signup {
  display: flex;
  max-width: 420px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  overflow: hidden;
}

.email-signup input {
  flex: 1;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: white;
  padding: 14px 16px;
}

.email-signup input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.email-signup input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
}

.email-signup button {
  background: var(--copper);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 24px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}

.email-signup button:hover {
  background: #a8633e;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  padding: 80px 60px 48px;
  text-align: center;
  color: white;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  color: white;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
}

.footer-location {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.5px;
  margin-bottom: 0;
}

.footer-divider {
  width: 40px;
  height: 1px;
  background: var(--copper);
  opacity: 0.5;
  margin: 32px auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-email {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--copper);
  text-decoration: none;
  display: block;
  margin-bottom: 32px;
  letter-spacing: 0.3px;
  transition: opacity 0.3s;
}

.footer-email:hover {
  opacity: 0.7;
}

.footer-signup-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 12px;
  display: block;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copyright {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 1px;
}

/* ============================================
   RECOMMENDATION LIST (Explore page)
   ============================================ */
.rec-list {
  list-style: none;
}

.rec-item {
  margin-bottom: 36px;
}

.rec-item:last-child {
  margin-bottom: 0;
}

.rec-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 8px;
}

.rec-description {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.rec-distance {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--copper);
}

.rec-distance::before {
  content: '\00B7\0020';
  margin-right: 4px;
}

/* ============================================
   CTA SECTION (dark image background)
   ============================================ */
.cta-section {
  position: relative;
  width: 100%;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.cta-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 600px;
  padding: 0 40px;
}

.cta-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  line-height: 1.4;
}

/* ============================================
   SEASONAL PAGE — Season Text & Pricing Table
   ============================================ */
.season-pricing {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.season-scarcity {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--copper);
  margin-bottom: 24px;
}

.pricing-table {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  border-collapse: collapse;
}

.pricing-table thead {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.pricing-table th {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--copper);
  padding: 16px;
  text-align: left;
}

.pricing-table td {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--text-dark);
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

/* ============================================
   REVIEWS PAGE — Extra Review Styles
   ============================================ */
.rating-count {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.rating-platforms {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 32px;
}

.rating-divider {
  width: 60px;
  height: 1px;
  background: var(--copper);
  margin: 0 auto;
}

.review-stars {
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--copper);
  margin-bottom: 12px;
  display: block;
}

.review-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.75;
}

.review-date {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #777;
  display: inline;
  margin-left: 4px;
}

.reviews-container {
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   SKIP LINK
   ============================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--navy);
  color: white;
  padding: 8px 16px;
  z-index: 10000;
  font-size: 14px;
  text-decoration: none;
}

.skip-link:focus {
  top: 8px;
}

/* ============================================
   FADE-IN ANIMATION
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ============================================
   PREFERS REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   RESPONSIVE — 1024px
   ============================================ */
@media (max-width: 1024px) {
  .nav-links {
    display: none !important;
  }
}

@media (min-width: 1025px) {
  .hamburger {
    display: none;
  }

  .nav-links {
    display: flex !important;
  }

  .nav-left {
    width: auto;
    gap: 24px;
  }
}

/* ============================================
   RESPONSIVE — 768px
   ============================================ */
@media (max-width: 768px) {
  /* Homepage hero: show static image + title, hide video */
  .hero-mobile-img {
    display: block;
  }

  .hero-video {
    display: none;
  }

  .navbar {
    padding: 0 24px;
  }

  .nav-logo-img {
    height: 48px;
  }

  .nav-book-btn {
    font-size: 9px;
    padding: 8px 16px;
  }

  .slide-menu {
    width: 100%;
    max-width: 100%;
  }

  .section {
    padding: 80px 28px;
  }

  .hero-content {
    padding: 0 28px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-tagline {
    font-size: 12px;
    letter-spacing: 2.5px;
  }

  .section-heading {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .split-heading {
    font-size: 2rem;
  }

  .hero--page {
    height: 70vh;
  }

  .feature-item h3 {
    font-size: 1.8rem;
  }

  .feature-item p {
    font-size: 15px;
  }

  .seasonal-item h3 {
    font-size: 2rem;
  }

  .seasonal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }

  .image-break-text {
    font-size: 2rem;
    padding: 0 28px;
  }

  .cta-heading {
    font-size: 2rem;
  }

  .cta-content {
    padding: 0 28px;
  }

  .testimonial-quote {
    font-size: 1.6rem;
    padding: 0 8px;
  }

  .featured-quote {
    font-size: 1.5rem;
  }

  .review-quote {
    font-size: 1.2rem;
  }

  .review-item blockquote {
    font-size: 1.3rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    padding: 0 8px;
  }

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

  .split-section {
    flex-direction: column;
  }

  .split-section--alt {
    flex-direction: column;
  }

  .split-image {
    flex: 0 0 300px;
  }

  .split-content {
    padding: 60px 28px;
  }

  .split-content p {
    font-size: 15px;
  }

  .amenity-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .amenity-columns h3 {
    font-size: 1.5rem;
  }

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

  .pricing-item h3 {
    font-size: 1.5rem;
  }

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

  .benefits-grid h3 {
    font-size: 1.4rem;
  }

  .welcome p {
    font-size: 16px;
    padding: 0 4px;
  }

  .footer {
    padding: 60px 28px 32px;
  }

  .footer-links {
    flex-direction: column;
    gap: 16px;
  }

  .footer-links a {
    font-size: 12px;
  }

  .image-break {
    height: 50vh;
  }

  .image-break--tall {
    height: 50vh;
  }

  .form-inputs {
    grid-template-columns: 1fr;
  }

  .policy-header {
    padding-top: 160px;
  }

  .policy-section {
    padding-left: 0;
    padding-right: 0;
  }

  .accordion-label {
    font-size: 1.3rem;
  }

  .accordion-content p,
  .accordion-content li {
    font-size: 15px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 12px 8px;
    font-size: 13px;
  }

  .rating-number {
    font-size: 4.5rem;
  }

  .contact-heading {
    font-size: 2rem;
  }

  .rec-name {
    font-size: 18px;
  }
}

/* ============================================
   RESPONSIVE — 480px
   ============================================ */
@media (max-width: 480px) {
  .navbar {
    padding: 0 20px;
    height: 70px;
  }

  .nav-logo-img {
    height: 44px;
  }

  .hero-title {
    font-size: 2rem;
    letter-spacing: 0.15em;
  }

  .hero-content {
    padding: 0 24px;
  }

  .hero-tagline {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .section-heading {
    font-size: 1.9rem;
    margin-bottom: 36px;
  }

  .split-heading {
    font-size: 1.75rem;
  }

  .section {
    padding: 60px 24px;
  }

  .feature-item h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }

  .feature-item p {
    font-size: 14px;
  }

  .seasonal-item h3 {
    font-size: 1.75rem;
  }

  .seasonal-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .image-break-text {
    font-size: 1.6rem;
    padding: 0 24px;
  }

  .cta-heading {
    font-size: 1.6rem;
  }

  .cta-content {
    padding: 0 24px;
  }

  .testimonial-quote {
    font-size: 1.4rem;
    padding: 0 4px;
  }

  .featured-quote {
    font-size: 1.3rem;
  }

  .review-quote {
    font-size: 1.1rem;
  }

  .review-item blockquote {
    font-size: 1.15rem;
  }

  .split-content {
    padding: 48px 24px;
  }

  .amenity-columns h3 {
    font-size: 1.4rem;
  }

  .welcome p {
    font-size: 15px;
  }

  .footer {
    padding: 48px 24px 28px;
  }

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

  .hero--page {
    height: 50vh;
  }

  .image-break {
    height: 35vh;
  }

  .image-break--tall {
    height: 35vh;
  }

  .cta-section {
    height: 35vh;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 10px 6px;
    font-size: 12px;
  }

  .pricing-item h3 {
    font-size: 1.4rem;
  }

  .benefits-grid h3 {
    font-size: 1.3rem;
  }

  .rating-number {
    font-size: 4.5rem;
  }

  .contact-heading {
    font-size: 1.75rem;
  }

  .rec-name {
    font-size: 17px;
  }
}

/* ============================================
   POLICY PAGE
   ============================================ */
.policy-header {
  padding-top: 200px;
}

.policy-header .section-heading {
  margin-bottom: 32px;
}

.policy-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.policy-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.policy-registration {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #999;
  line-height: 1.8;
}

.policy-legal-link {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-dark);
  margin-top: 8px;
}

.policy-legal-link a {
  color: var(--copper);
  text-decoration: none;
  transition: opacity 0.3s;
}

.policy-legal-link a:hover {
  opacity: 0.7;
}

/* ============================================
   TERMS PAGE
   ============================================ */
.terms-page {
  padding-top: 160px;
}

.terms-content {
  max-width: 700px;
  margin: 0 auto;
}

.terms-updated {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 32px;
}

.terms-content p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.terms-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--navy);
  margin-top: 48px;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.terms-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.terms-content li {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-dark);
  padding-left: 20px;
  position: relative;
  margin-bottom: 4px;
}

.terms-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 1px;
  background: var(--copper);
}

.terms-content a {
  color: var(--copper);
  text-decoration: none;
  transition: opacity 0.3s;
}

.terms-content a:hover {
  opacity: 0.7;
}

.policy-section {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ============================================
   ACCORDION
   ============================================ */
.accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.accordion-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: opacity 0.3s;
}

.accordion-trigger:hover {
  opacity: 0.7;
}

.accordion-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--navy);
  letter-spacing: 0.03em;
}

.accordion-icon {
  width: 16px;
  height: 16px;
  position: relative;
  flex-shrink: 0;
  margin-left: 24px;
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--copper);
  transition: transform 0.3s ease;
}

.accordion-icon::before {
  width: 16px;
  height: 1px;
  top: 50%;
  left: 0;
}

.accordion-icon::after {
  width: 1px;
  height: 16px;
  left: 50%;
  top: 0;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon::after {
  transform: rotate(90deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-content {
  padding: 0 0 32px;
}

.accordion-content p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.accordion-content p:last-child {
  margin-bottom: 0;
}

.accordion-content h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper);
  margin-top: 24px;
  margin-bottom: 12px;
}

.accordion-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.accordion-content li {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-dark);
  padding-left: 20px;
  position: relative;
  margin-bottom: 4px;
}

.accordion-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 1px;
  background: var(--copper);
}

.accordion-content a {
  color: var(--copper);
  text-decoration: none;
  transition: opacity 0.3s;
}

.accordion-content a:hover {
  opacity: 0.7;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.section--centered {
  text-align: center;
}

/* ============================================
   BENEFIT ITEMS (book.html)
   ============================================ */
.benefit-item {
  text-align: center;
}

/* Benefits 3-col variant (book.html) */
.benefits-grid--3col {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1000px;
}

/* ============================================
   CONTACT SECTION (book.html)
   ============================================ */
.contact-section {
  text-align: center;
  padding: 100px 60px;
}

/* ============================================
   ROOM ITEMS (cottage.html)
   ============================================ */
.room-item {
  max-width: 650px;
  margin: 0 auto 80px;
}

.room-item:last-child {
  margin-bottom: 0;
}

.room-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 16px;
}

.room-description {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-dark);
  margin-bottom: 32px;
}

.room-divider {
  width: 60px;
  height: 1px;
  background: var(--copper);
  margin: 0 auto 32px;
}

.room-item:last-of-type .room-divider {
  display: none;
}

/* ============================================
   TESTIMONIAL (index.html)
   ============================================ */
.testimonial-quotemark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  font-weight: 300;
  color: var(--copper);
  opacity: 0.3;
  line-height: 0.8;
  margin-bottom: 24px;
  display: block;
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--navy);
  max-width: 650px;
  margin: 0 auto 32px;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.testimonial-attribution {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.testimonial-rating {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--copper);
  margin-bottom: 32px;
  letter-spacing: 1px;
}

/* Trust Star (book.html) */
.trust-star {
  color: var(--copper);
}

/* Image Break Short variant */
.image-break--short {
  height: 50vh;
}

/* ============================================
   AMENITY COLUMNS layout (cottage.html)
   ============================================ */
.amenity-columns {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   RESPONSIVE — 768px (QA additions)
   ============================================ */
@media (max-width: 768px) {
  .room-item {
    margin-bottom: 60px;
  }

  .room-title {
    font-size: 1.6rem;
  }

  .room-description {
    font-size: 16px;
  }

  .image-break--short {
    height: 40vh;
  }

  /* Benefits grid: 2 columns on tablet, not 3 */
  .benefits-grid--3col {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact section: reduce side padding */
  .contact-section {
    padding: 80px 28px;
  }

  /* Section labels slightly larger for readability */
  .section-label,
  .split-label {
    font-size: 12px;
  }

  /* Text CTAs: larger tap target */
  .text-cta {
    font-size: 13px;
    padding: 12px 0;
  }

  /* Trust signals: wrap properly */
  .trust-signals {
    gap: 24px;
    font-size: 12px;
  }

  /* Slide menu: adjust for mobile */
  .slide-menu {
    padding: 100px 32px 32px;
  }

  .slide-menu a {
    font-size: 26px;
    padding: 14px 0;
  }

  /* Body text in split sections */
  .split-content p {
    font-size: 16px;
    line-height: 1.85;
  }

  /* Hero scroll indicator */
  .hero-scroll-indicator {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
  }

  /* Seasonal body text */
  .seasonal-item p {
    font-size: 15px;
  }

  /* Pricing item: less padding */
  .pricing-item {
    padding: 32px 24px;
  }

  /* Pricing price: ensure readable */
  .pricing-item .price {
    font-size: 1.8rem;
  }

  /* Footer: improve readability */
  .footer-email {
    font-size: 14px;
  }

  .footer-location {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
  }

  /* Email signup: stack on small tablets */
  .email-signup {
    max-width: 100%;
  }

  /* Review author: larger for readability */
  .review-item .review-author {
    font-size: 13px;
  }

  .review-date {
    font-size: 13px;
  }

  /* Featured review: adequate padding */
  .featured-review {
    padding: 40px 8px;
  }

  /* Contact note: improve contrast */
  .contact-note {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
  }

  .contact-email {
    font-size: 16px;
  }

  /* Amenity list items */
  .amenity-columns li {
    font-size: 15px;
  }
}

/* ============================================
   RESPONSIVE — 480px (QA additions)
   ============================================ */
@media (max-width: 480px) {
  .room-item {
    margin-bottom: 40px;
  }

  .room-title {
    font-size: 1.5rem;
  }

  .room-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
  }

  .image-break--short {
    height: 30vh;
  }

  /* Benefits grid: 1 column on phone */
  .benefits-grid--3col {
    grid-template-columns: 1fr;
  }

  /* Contact section */
  .contact-section {
    padding: 60px 24px;
  }

  /* Section labels */
  .section-label,
  .split-label {
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 32px;
  }

  /* Text CTAs: ensure tappable */
  .text-cta {
    font-size: 13px;
    padding: 12px 0;
  }

  /* Trust signals */
  .trust-signals {
    gap: 16px;
    font-size: 12px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Slide menu */
  .slide-menu {
    padding: 90px 24px 24px;
  }

  .slide-menu a {
    font-size: 24px;
    padding: 12px 0;
  }

  .slide-menu-contact {
    font-size: 13px;
  }

  /* Split section body */
  .split-content p {
    font-size: 15px;
    line-height: 1.8;
  }

  /* Seasonal body text */
  .seasonal-item p {
    font-size: 15px;
  }

  /* Season pricing text */
  .season-pricing {
    font-size: 15px;
  }

  .season-scarcity {
    font-size: 13px;
  }

  /* Pricing items */
  .pricing-item {
    padding: 28px 20px;
  }

  .pricing-item .price {
    font-size: 1.6rem;
  }

  /* Footer polish */
  .footer-email {
    font-size: 14px;
  }

  .footer-location {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
  }

  .footer-copyright {
    font-size: 11px;
  }

  /* Email signup: stack vertically */
  .email-signup {
    flex-direction: column;
    gap: 12px;
    max-width: 100%;
  }

  .email-signup input {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .email-signup button {
    font-size: 11px;
    padding: 14px 20px;
  }

  /* Testimonial quotemark: scale down */
  .testimonial-quotemark {
    font-size: 4rem;
  }

  .policy-header {
    padding-top: 130px;
  }

  .accordion-label {
    font-size: 1.2rem;
  }

  .accordion-trigger {
    padding: 24px 0;
  }

  .accordion-content p,
  .accordion-content li {
    font-size: 14px;
  }

  /* Form button: full width on mobile */
  .form-button {
    width: 100%;
    padding: 18px 40px;
    font-size: 13px;
  }

  /* Form note */
  .form-note {
    font-size: 14px;
    line-height: 1.7;
  }

  /* Contact section polish */
  .contact-heading {
    line-height: 1.3;
  }

  .contact-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
  }

  .contact-email {
    font-size: 15px;
  }

  /* Review items spacing */
  .review-item {
    padding: 28px 0;
  }

  .review-item .review-author {
    font-size: 12px;
  }

  /* Featured review */
  .featured-review {
    padding: 24px 0;
  }

  .featured-quotemark {
    font-size: 3rem;
  }

  .featured-attribution {
    font-size: 12px;
  }

  /* Rating summary */
  .rating-summary {
    margin-bottom: 40px;
  }

  .rating-stars {
    font-size: 22px;
  }

  .rating-count {
    font-size: 14px;
  }

  .rating-platforms {
    font-size: 11px;
  }

  /* Rec items on explore page */
  .rec-description {
    font-size: 15px;
  }

  .rec-distance {
    font-size: 13px;
  }

  /* Amenity list items */
  .amenity-columns li {
    font-size: 15px;
    line-height: 2.2;
  }

  /* Image break minimum heights for text overlay readability */
  .image-break--overlay .image-break {
    min-height: 200px;
  }

  /* Benefits grid body text */
  .benefits-grid p {
    font-size: 15px;
  }
}
