/* ============================================
   Rustlewood Resort
   Northwoods aesthetic with refined typography
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Color palette - inspired by deep woods, lake at golden hour, river rock */
  --c-pine: #2d3a2e;        /* dark pine green */
  --c-pine-deep: #1f2a20;   /* deeper green for headers */
  --c-moss: #5a6b4f;        /* mid green */
  --c-bark: #5c4632;        /* warm brown */
  --c-cedar: #8b5a3c;       /* cedar wood */
  --c-amber: #c8893d;       /* amber/sunset accent */
  --c-cream: #f5efe1;       /* warm off-white */
  --c-sand: #e6dcc4;        /* sandy beige */
  --c-stone: #8a8478;       /* river rock grey */
  --c-ink: #2a241d;         /* dark text */
  --c-ink-soft: #4a423a;    /* softer body text */

  /* Typography */
  --f-display: 'Fraunces', Georgia, serif;
  --f-body: 'Inter', -apple-system, sans-serif;

  /* Layout */
  --max-w: 1200px;
  --max-w-narrow: 760px;

  /* Spacing rhythm */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--c-pine-deep);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 600;
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-bark);
}

p {
  margin-bottom: 1rem;
  color: var(--c-ink-soft);
}

a {
  color: var(--c-bark);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--c-amber);
}

.subtitle {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--c-bark);
  font-weight: 400;
}

.eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-amber);
  margin-bottom: 0.75rem;
}

/* ============================================
   Layout
   ============================================ */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: var(--space-xl) 0;
}

/* ============================================
   Site header / navigation
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 239, 225, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(92, 70, 50, 0.12);
  transition: all 0.3s;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 2rem;
}

.brand {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-pine-deep);
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
}

.brand:hover {
  color: var(--c-pine-deep);
}

.brand-subtitle {
  display: block;
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-bark);
  margin-top: 0.25rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-ink);
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-amber);
  transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

.nav-cta {
  background: var(--c-pine-deep);
  color: var(--c-cream) !important;
  padding: 0.6rem 1.25rem !important;
  border-radius: 2px;
  font-weight: 500;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--c-bark);
  color: var(--c-cream) !important;
}

.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--c-pine-deep);
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

/* ============================================
   Hero section
   ============================================ */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -1px;
}

.hero-images {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroFade 32s infinite;
}

.hero-image:nth-child(1) { animation-delay: 0s; }
.hero-image:nth-child(2) { animation-delay: 8s; }
.hero-image:nth-child(3) { animation-delay: 16s; }
.hero-image:nth-child(4) { animation-delay: 24s; }

@keyframes heroFade {
  0%, 22% { opacity: 1; }
  28%, 100% { opacity: 0; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(31, 42, 32, 0.4) 0%, rgba(31, 42, 32, 0.15) 35%, rgba(31, 42, 32, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--c-cream);
  padding: 2rem 1.5rem;
  max-width: 900px;
  animation: heroRise 1.2s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

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

.hero h1 {
  color: var(--c-cream);
  font-weight: 600;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
  margin-bottom: 1rem;
}

.hero-tagline {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--c-cream);
  opacity: 0.95;
  margin-bottom: 2rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

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

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--f-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
  border-radius: 2px;
}

.btn-primary {
  background: var(--c-amber);
  color: var(--c-pine-deep);
  border-color: var(--c-amber);
}

.btn-primary:hover {
  background: var(--c-cream);
  border-color: var(--c-cream);
  color: var(--c-pine-deep);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--c-cream);
  border-color: var(--c-cream);
}

.btn-outline:hover {
  background: var(--c-cream);
  color: var(--c-pine-deep);
}

.btn-dark {
  background: var(--c-pine-deep);
  color: var(--c-cream);
  border-color: var(--c-pine-deep);
}

.btn-dark:hover {
  background: var(--c-bark);
  border-color: var(--c-bark);
  color: var(--c-cream);
  transform: translateY(-1px);
}

/* ============================================
   Page hero (smaller hero for sub-pages)
   ============================================ */

.page-hero {
  position: relative;
  padding: var(--space-xl) 1.5rem var(--space-lg);
  text-align: center;
  background: var(--c-pine-deep);
  color: var(--c-cream);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(200, 137, 61, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at bottom, rgba(90, 107, 79, 0.2) 0%, transparent 70%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w-narrow);
  margin: 0 auto;
}

.page-hero h1 {
  color: var(--c-cream);
  margin-bottom: 0.75rem;
}

.page-hero .eyebrow {
  color: var(--c-amber);
}

.page-hero p {
  color: rgba(245, 239, 225, 0.85);
  font-size: 1.125rem;
}

/* ============================================
   Welcome section
   ============================================ */

.welcome {
  text-align: center;
  padding: var(--space-xl) 0;
}

.welcome h2 {
  margin-bottom: 1.5rem;
}

.welcome p {
  font-size: 1.125rem;
  max-width: 680px;
  margin: 0 auto 1.25rem;
  color: var(--c-ink-soft);
}

.divider {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--c-bark);
  margin: 0 auto 2rem;
}

.divider-decorative {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 2rem auto;
  color: var(--c-bark);
  opacity: 0.5;
}

.divider-decorative::before,
.divider-decorative::after {
  content: '';
  width: 60px;
  height: 1px;
  background: currentColor;
}

/* ============================================
   Cabin cards (homepage + cabins listing)
   ============================================ */

.cabins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.cabin-card {
  background: var(--c-cream);
  text-decoration: none;
  display: block;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  overflow: hidden;
  position: relative;
}

.cabin-card:hover {
  transform: translateY(-4px);
}

.cabin-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--c-stone);
}

.cabin-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.cabin-card-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  background: rgba(245, 239, 225, 0.95);
  color: var(--c-pine-deep);
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.cabin-card-body {
  padding: 1.5rem 0.5rem 0.5rem;
}

.cabin-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  color: var(--c-pine-deep);
}

.cabin-card-meta {
  font-size: 0.875rem;
  color: var(--c-bark);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.cabin-card-price {
  font-family: var(--f-display);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--c-ink-soft);
}

.cabin-card-price strong {
  color: var(--c-pine-deep);
  font-style: normal;
  font-weight: 600;
}

/* ============================================
   Cabin detail page
   ============================================ */

.cabin-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  color: var(--c-cream);
}

.cabin-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 42, 32, 0.2) 0%, rgba(31, 42, 32, 0.7) 100%);
}

.cabin-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 1.5rem 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.cabin-hero h1 {
  color: var(--c-cream);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.cabin-hero-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.125rem;
  color: rgba(245, 239, 225, 0.92);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.cabin-hero-meta span::before {
  content: '·';
  margin-right: 1.5rem;
  opacity: 0.6;
}

.cabin-hero-meta span:first-child::before {
  display: none;
}

.cabin-body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.cabin-body .description {
  font-size: 1.125rem;
  line-height: 1.7;
}

.cabin-body .description p {
  margin-bottom: 1.25rem;
}

.cabin-sidebar {
  background: var(--c-pine-deep);
  color: var(--c-cream);
  padding: 2.5rem 2rem;
  position: sticky;
  top: 100px;
  align-self: start;
  border-radius: 2px;
}

.cabin-sidebar h4 {
  color: var(--c-amber);
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.cabin-sidebar .price {
  font-family: var(--f-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--c-cream);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.cabin-sidebar .price-note {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(245, 239, 225, 0.7);
  margin-bottom: 1.5rem;
}

.cabin-sidebar .meta-list {
  list-style: none;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(245, 239, 225, 0.15);
  border-bottom: 1px solid rgba(245, 239, 225, 0.15);
  margin-bottom: 1.5rem;
}

.cabin-sidebar .meta-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: rgba(245, 239, 225, 0.92);
}

.cabin-sidebar .meta-list li strong {
  font-weight: 500;
  color: var(--c-cream);
}

.cabin-sidebar .btn {
  width: 100%;
  text-align: center;
}

.cabin-sidebar p {
  color: rgba(245, 239, 225, 0.75);
  font-size: 0.875rem;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0;
}

.cabin-sidebar p a {
  color: var(--c-amber);
}

/* Amenities */
.amenities {
  background: var(--c-sand);
  padding: var(--space-xl) 0;
}

.amenities h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.amenities-intro {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 3rem;
  color: var(--c-ink-soft);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem 2rem;
}

.amenity {
  padding: 0.5rem 0;
}

.amenity h4 {
  font-family: var(--f-display);
  font-size: 1.125rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--c-pine-deep);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.amenity p {
  font-size: 0.95rem;
  color: var(--c-ink-soft);
  margin: 0;
}

/* Photo gallery on cabin pages */
.gallery {
  padding: var(--space-xl) 0;
}

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

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

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: pointer;
  background: var(--c-stone);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: 4 / 6.2;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(31, 42, 32, 0.95);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
  animation: fadeIn 0.25s;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(245, 239, 225, 0.15);
  border: 1px solid rgba(245, 239, 225, 0.3);
  color: var(--c-cream);
  font-size: 1.25rem;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: rgba(245, 239, 225, 0.3);
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(245, 239, 225, 0.15);
  border: 1px solid rgba(245, 239, 225, 0.3);
  color: var(--c-cream);
  font-size: 2rem;
  font-family: var(--f-display);
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  user-select: none;
  padding: 0;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(245, 239, 225, 0.3);
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-next {
  right: 1.5rem;
}

.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--c-cream);
  font-family: var(--f-body);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  background: rgba(245, 239, 225, 0.15);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(245, 239, 225, 0.3);
}

@media (max-width: 600px) {
  .lightbox-prev,
  .lightbox-next {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }

  .lightbox-prev {
    left: 0.5rem;
  }

  .lightbox-next {
    right: 0.5rem;
  }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================
   Two-column content sections
   ============================================ */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: var(--space-xl) 0;
}

.two-col.reverse .col-image {
  order: 2;
}

.col-image {
  position: relative;
}

.col-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

.col-text h2 {
  margin-bottom: 1rem;
}

.col-text p {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

/* ============================================
   Forms
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  margin-top: 3rem;
  margin-bottom: 4rem;
}

.contact-info h3 {
  margin-bottom: 1rem;
}

.contact-info-item {
  margin-bottom: 1.75rem;
}

.contact-info-item h4 {
  margin-bottom: 0.4rem;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 1.0625rem;
  color: var(--c-ink);
  margin: 0;
  line-height: 1.5;
}

.contact-info-item a {
  color: var(--c-bark);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.contact-info-item a:hover {
  color: var(--c-amber);
}

.contact-form {
  background: var(--c-sand);
  padding: 2.5rem;
  border-radius: 2px;
}

.contact-form h3 {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

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

label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--c-pine-deep);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--f-body);
  font-size: 1rem;
  border: 1px solid rgba(92, 70, 50, 0.25);
  background: var(--c-cream);
  color: var(--c-ink);
  border-radius: 2px;
  transition: border-color 0.2s;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--c-bark);
}

textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.5;
}

.form-button {
  background: var(--c-pine-deep);
  color: var(--c-cream);
  padding: 0.95rem 2rem;
  font-family: var(--f-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 2px;
  width: 100%;
}

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

/* ============================================
   Policies / info pages
   ============================================ */

.info-section {
  padding: var(--space-lg) 0;
}

.info-section h2 {
  margin-bottom: 2rem;
}

.policies-list {
  list-style: none;
}

.policy-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(92, 70, 50, 0.15);
}

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

.policy-item h4 {
  font-family: var(--f-display);
  font-size: 1.0625rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  color: var(--c-pine-deep);
}

.policy-item p {
  margin: 0;
  color: var(--c-ink-soft);
}

/* Directions */
.directions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.direction-card {
  background: var(--c-cream);
  padding: 1.75rem;
  border-left: 3px solid var(--c-amber);
}

.direction-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--c-pine-deep);
}

.direction-steps {
  list-style: none;
  counter-reset: step;
}

.direction-steps li {
  counter-increment: step;
  position: relative;
  padding-left: 2.25rem;
  padding-bottom: 0.85rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--c-ink-soft);
}

.direction-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--c-pine-deep);
  color: var(--c-cream);
  font-family: var(--f-display);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   Grounds map
   ============================================ */

.grounds-map-wrap {
  background: var(--c-cream);
  padding: 2rem 0;
  text-align: center;
}

.grounds-map-wrap img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 2px;
  box-shadow: 0 10px 40px rgba(31, 42, 32, 0.12);
}

.grounds-legend {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem 2rem;
  text-align: left;
}

.grounds-legend h4 {
  margin-bottom: 0.5rem;
}

/* ============================================
   CTA section
   ============================================ */

.cta-section {
  background: var(--c-pine-deep);
  color: var(--c-cream);
  padding: var(--space-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(200, 137, 61, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(90, 107, 79, 0.18) 0%, transparent 50%);
}

.cta-section > .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--c-cream);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(245, 239, 225, 0.85);
  font-size: 1.125rem;
  max-width: 580px;
  margin: 0 auto 2rem;
}

/* ============================================
   Footer
   ============================================ */

footer {
  background: var(--c-pine-deep);
  color: rgba(245, 239, 225, 0.8);
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(245, 239, 225, 0.1);
}

footer .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-brand {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-cream);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1rem;
  color: rgba(245, 239, 225, 0.7);
}

footer h5 {
  font-family: var(--f-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-amber);
  margin-bottom: 1rem;
  font-weight: 600;
}

footer ul {
  list-style: none;
}

footer li {
  margin-bottom: 0.5rem;
}

footer a {
  color: rgba(245, 239, 225, 0.8);
  font-size: 0.9375rem;
}

footer a:hover {
  color: var(--c-amber);
}

footer p {
  color: rgba(245, 239, 225, 0.8);
  font-size: 0.9375rem;
  margin-bottom: 0.4rem;
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 2.5rem auto 0;
  padding: 1.5rem 1.5rem 0;
  border-top: 1px solid rgba(245, 239, 225, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: rgba(245, 239, 225, 0.5);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 900px) {
  :root {
    --space-xl: 4rem;
    --space-lg: 3rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding: 80px 1.5rem 2rem 1.5rem;
    background: var(--c-cream);
    flex-direction: column;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s;
    overflow-y: auto;
    z-index: 99;
    margin: 0;
    list-style: none;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(92, 70, 50, 0.08);
  }

  .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 1.0625rem;
  }

  .nav-cta {
    margin-top: 1.5rem;
    text-align: center;
  }

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

  .two-col.reverse .col-image {
    order: 0;
  }

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

  .cabin-sidebar {
    position: static;
  }

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

  .gallery-item.tall {
    grid-row: span 1;
    aspect-ratio: 4 / 3;
  }

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

  .policy-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

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

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

@media (max-width: 560px) {
  :root {
    --space-xl: 3rem;
  }

  .hero {
    min-height: 80vh;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

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

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

  .cabin-hero-meta {
    font-size: 1rem;
    gap: 1rem;
  }

  .cabin-hero-meta span::before {
    display: none;
  }
}
/* ============================================
   Availability section (contact page)
   ============================================ */

.availability {
  margin-top: 4rem;
  margin-bottom: 4rem;
  padding: 3rem 2.5rem;
  background: var(--c-sand);
  border-radius: 2px;
  border-top: 3px solid var(--c-amber);
}

.availability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.availability-card {
  background: var(--c-cream);
  padding: 2rem;
  border-radius: 2px;
  box-shadow: 0 2px 12px rgba(31, 42, 32, 0.06);
}

.availability-card-head {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(92, 70, 50, 0.15);
}

.availability-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  color: var(--c-pine-deep);
}

.availability-card-meta {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-bark);
  text-transform: uppercase;
}

.availability-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.availability-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(92, 70, 50, 0.08);
  gap: 1rem;
}

.availability-list li:last-child {
  border-bottom: none;
}

.availability-list .dates {
  font-family: var(--f-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--c-pine-deep);
}

.availability-list .season {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--c-bark);
  opacity: 0.85;
  white-space: nowrap;
}

.availability-note {
  margin-top: 2rem;
  margin-bottom: 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(92, 70, 50, 0.15);
  font-size: 0.875rem;
  color: var(--c-ink-soft);
  font-style: italic;
  text-align: center;
}

@media (max-width: 720px) {
  .availability {
    padding: 2rem 1.25rem;
  }

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

  .availability-card {
    padding: 1.5rem;
  }
}

