/*
Theme Name: Moonlight Cabins
Theme URI: https://moonlightcabins.com
Author: Moonlight Property Management LLC
Description: Custom theme for Moonlight Cabin Rentals - Powder Horn Mountain, NC
Version: 1.0.0
License: Private
Text Domain: moonlight-cabins
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --forest-dark:    #0d1b2e;
  --forest-deep:    #162340;
  --forest-mid:     #1e3a5f;
  --forest-green:   #4a2060;
  --forest-light:   #c4a8e0;
  --forest-pale:    #ddc8f0;
  --cream:          #f5f2ee;
  --cream-dark:     #ede9e0;
  --white:          #ffffff;
  --text-dark:      #0d1b2e;
  --text-mid:       #2a3a50;
  --text-muted:     #6a7a8a;
  --text-light:     #ddc8f0;
  --gold:           #c8962a;
  --gold-light:     #e8b84b;
  --border:         #e0dbd0;
  --border-dark:    rgba(255,255,255,0.12);

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

  --radius-sm:      2px;
  --radius-md:      4px;
  --radius-lg:      8px;

  --transition:     all 0.25s ease;
  --shadow-card:    0 2px 20px rgba(0,0,0,0.08);
  --shadow-hover:   0 8px 40px rgba(0,0,0,0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest-green);
  display: block;
  margin-bottom: 0.75rem;
}

.eyebrow--light { color: var(--forest-pale); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}

.btn--primary {
  background: var(--forest-green);
  color: var(--white);
}
.btn--primary:hover { background: var(--forest-mid); }

.btn--accent {
  background: var(--gold);
  color: var(--white);
}
.btn--accent:hover { background: var(--gold-light); color: var(--text-dark); }

.btn--ghost {
  background: transparent;
  color: var(--forest-light);
  border: 1.5px solid var(--forest-light);
}
.btn--ghost:hover { background: var(--forest-light); color: var(--forest-dark); }

.btn--ghost-dark {
  background: transparent;
  color: var(--forest-green);
  border: 1.5px solid var(--forest-green);
}
.btn--ghost-dark:hover { background: var(--forest-green); color: var(--white); }

.btn--hero {
  background: var(--forest-light);
  color: var(--forest-dark);
  padding: 15px 36px;
  font-size: 13px;
}
.btn--hero:hover { background: var(--white); }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 { font-size: 36px; margin-bottom: 0.5rem; }
.section-header p { font-size: 15px; color: var(--text-muted); font-weight: 300; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--forest-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 1px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo-img {
  height: 58px;
  width: auto;
  /* Tint the black logo to violet/purple */
  filter: invert(1) sepia(1) saturate(2) hue-rotate(230deg) brightness(1.4);
  opacity: 0.92;
  transition: opacity 0.2s ease;
}
.nav-logo:hover .nav-logo-img { opacity: 1; }

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.nav-logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest-light);
  margin-top: 2px;
}

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

.nav-menu a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--forest-light);
  transform: scaleX(0);
  transition: var(--transition);
}
.nav-menu a:hover { color: var(--white); }
.nav-menu a:hover::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-phone {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}
.nav-phone a { color: inherit; }
.nav-phone a:hover { color: var(--white); }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--forest-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.55;
  transition: opacity 0.5s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,26,16,0.3) 0%,
    rgba(15,26,16,0.5) 60%,
    rgba(15,26,16,0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem;
  max-width: 700px;
}

.hero-content .eyebrow { color: var(--forest-pale); margin-bottom: 1rem; }

.hero-content h1 {
  font-size: clamp(40px, 6vw, 64px);
  color: var(--cream);
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.hero-content h1 em { font-style: italic; color: var(--forest-light); }

.hero-content p {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   AMENITY STRIP
   ============================================================ */
.amenity-strip {
  background: var(--forest-deep);
  padding: 1.1rem 2rem;
  overflow-x: auto;
}

.amenity-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.4rem 1.5rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-pale);
  border-right: 1px solid var(--border-dark);
  white-space: nowrap;
}
.amenity-item:last-child { border-right: none; }

.amenity-dot {
  width: 5px; height: 5px;
  background: var(--forest-light);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   SPLIT SECTIONS (Armored Cow style alternating)
   ============================================================ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.split-section.reversed .split-photo { order: 2; }
.split-section.reversed .split-text  { order: 1; }

.split-photo {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.split-photo:hover img { transform: scale(1.03); }

.split-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: linear-gradient(160deg, var(--forest-dark) 0%, var(--forest-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem 4rem 4.5rem;
  background: var(--white);
}

.split-section.bg-cream .split-text { background: var(--cream); }
.split-section.bg-dark .split-text  { background: var(--forest-deep); }
.split-section.bg-dark .split-text h2 { color: var(--cream); }
.split-section.bg-dark .split-text p  { color: var(--forest-pale); }
.split-section.bg-dark .split-text .eyebrow { color: var(--forest-light); }

.split-text h2 { font-size: clamp(28px, 3vw, 38px); margin-bottom: 1rem; }
.split-text p  { font-size: 15px; font-weight: 300; color: var(--text-mid); line-height: 1.8; margin-bottom: 1rem; }
.split-text .btn { margin-top: 0.75rem; align-self: flex-start; }

/* ============================================================
   CABIN CARDS (listings page)
   ============================================================ */
.cabins-section {
  padding: 5rem 2rem;
  background: var(--cream);
}

.cabin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cabin-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.cabin-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.cabin-card-photo {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--forest-deep);
}
.cabin-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cabin-card:hover .cabin-card-photo img { transform: scale(1.05); }

.cabin-card-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.cabin-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cabin-card-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.cabin-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.cabin-card-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cabin-card-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1.25rem;
}

.amenity-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #4a2060;
  background: #f0e8f8;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
}

.cabin-card-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
}
.cabin-card-actions .btn { flex: 1; text-align: center; font-size: 11px; padding: 10px 16px; }

/* ============================================================
   SINGLE CABIN PAGE
   ============================================================ */
.cabin-hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: var(--forest-dark);
}
.cabin-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.cabin-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,26,16,0.7) 0%, transparent 50%);
}
.cabin-hero-title {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  right: 2.5rem;
}
.cabin-hero-title h1 {
  font-size: clamp(32px, 5vw, 52px);
  color: var(--white);
  margin-bottom: 0.5rem;
}
.cabin-hero-title .cabin-meta-bar {
  display: flex;
  gap: 1.5rem;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest-pale);
}

.cabin-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}

.cabin-main h2 {
  font-size: 28px;
  margin-bottom: 1rem;
  color: var(--text-dark);
}
.cabin-main p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.cabin-amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin: 1.5rem 0;
}
.cabin-amenity-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 300;
}
.cabin-amenity-item::before {
  content: '';
  width: 6px; height: 6px;
  background: #c4a8e0;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Sidebar booking box */
.cabin-sidebar {
  position: sticky;
  top: 90px;
}

.booking-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}
.booking-box h3 {
  font-size: 22px;
  margin-bottom: 0.25rem;
}
.booking-box .price-range {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.booking-box .btn {
  width: 100%;
  text-align: center;
  margin-bottom: 0.75rem;
  padding: 14px;
}
.booking-box .merch-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  font-weight: 300;
  margin-top: 0.5rem;
}

/* Gallery */
.cabin-gallery {
  padding: 0 2rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}
.cabin-gallery h2 {
  font-size: 28px;
  margin-bottom: 1.5rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.75rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--forest-deep);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover::after {
  content: '⤢';
  position: absolute;
  inset: 0;
  background: rgba(15,26,16,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 24px;
  padding: 1rem 1.25rem;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.08em;
}

/* ============================================================
   ATTRACTIONS PAGE
   ============================================================ */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}

.attraction-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
}
.attraction-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.attraction-icon {
  font-size: 28px;
  margin-bottom: 1rem;
}
.attraction-card h3 {
  font-size: 20px;
  margin-bottom: 0.5rem;
}
.attraction-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
}
.attraction-card a {
  display: inline-block;
  margin-top: 1rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.contact-section h1 { font-size: 40px; margin-bottom: 0.5rem; }
.contact-section > p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.contact-detail {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.contact-detail label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest-green);
  display: block;
  margin-bottom: 0.4rem;
}
.contact-detail span {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 400;
}

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.form-group input,
.form-group textarea,
.form-group select {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--forest-green);
  box-shadow: 0 0 0 3px rgba(58,107,62,0.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* ============================================================
   POLICIES PAGE
   ============================================================ */
.policies-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.policies-section h1 { font-size: 40px; margin-bottom: 3rem; }
.policy-block { margin-bottom: 3rem; }
.policy-block h2 { font-size: 24px; margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }
.policy-block p, .policy-block li {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
.policy-block ul { padding-left: 1.5rem; list-style: disc; }

/* ============================================================
   OWNERS PAGE
   ============================================================ */
.owners-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--forest-dark);
  color: var(--forest-pale);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-dark);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--cream);
  margin-bottom: 4px;
}
.footer-brand-tagline {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest-green);
  display: block;
  margin-bottom: 1.25rem;
}
.footer-contact-info {
  font-size: 14px;
  font-weight: 300;
  color: #6a8a6c;
  line-height: 2;
}
.footer-contact-info a { color: var(--forest-pale); transition: var(--transition); }
.footer-contact-info a:hover { color: var(--white); }

.footer-mailing { margin-top: 1.5rem; }
.footer-mailing label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest-green);
  display: block;
  margin-bottom: 8px;
}
.footer-mailing input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  color: var(--cream);
  padding: 9px 12px;
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  transition: var(--transition);
}
.footer-mailing input:focus { border-color: var(--forest-green); }
.footer-mailing input::placeholder { color: #4a6a4c; }

.footer-nav-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest-green);
  margin-bottom: 1.25rem;
  display: block;
}
.footer-nav-list li { margin-bottom: 0.6rem; }
.footer-nav-list a {
  font-size: 14px;
  font-weight: 300;
  color: #6a8a6c;
  transition: var(--transition);
}
.footer-nav-list a:hover { color: var(--forest-pale); }

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 12px;
  font-weight: 300;
  color: #3a4a3c;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.social-icon {
  width: 34px; height: 34px;
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #6a8a6c;
  transition: var(--transition);
}
.social-icon:hover { border-color: var(--forest-pale); color: var(--forest-pale); }

/* ============================================================
   SEARCH / FILTER BAR
   ============================================================ */
.cabin-filters {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 2rem;
  position: sticky;
  top: 72px;
  z-index: 100;
}
.cabin-filters-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.filter-select {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-dark);
  background: var(--white);
  cursor: pointer;
  outline: none;
}
.filter-select:focus { border-color: var(--forest-green); }
.filter-count {
  margin-left: auto;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .split-section { grid-template-columns: 1fr; }
  .split-section.reversed .split-photo { order: 0; }
  .split-section.reversed .split-text  { order: 0; }
  .split-text { padding: 3rem 2rem; }

  .cabin-content { grid-template-columns: 1fr; }
  .cabin-sidebar { position: static; }

  .footer-inner { grid-template-columns: 1fr 1fr; }

  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px; left: 0; right: 0;
    background: var(--forest-dark);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    gap: 1.25rem;
  }
}

@media (max-width: 600px) {
  .cabin-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .contact-details { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .amenity-strip-inner { justify-content: flex-start; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
