/* ========================================
   PEMBERTON FOREST COTTAGES
   Modern Forest Retreat Design
   ======================================== */

:root {
  --forest-dark: #1a2e1e;
  --forest-mid: #2d5a3d;
  --forest-green: #4a7c59;
  --forest-light: #7aad8a;
  --forest-pale: #c8dfc0;
  --cream: #f5f0e8;
  --warm-white: #fdfaf5;
  --earth: #8b6f4e;
  --earth-light: #c4a882;
  --charcoal: #2c2c2c;
  --text: #3a3a3a;
  --text-light: #6a6a6a;
  --gold: #c9a84c;
  --gold-light: #e8d5a3;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  --max-width: 1200px;
  --header-height: 80px;
  --transition: 0.3s ease;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --radius: 4px;
  --radius-lg: 12px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(26, 46, 30, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74, 124, 89, 0.3);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(26, 46, 30, 0.99);
  box-shadow: var(--shadow-md);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-icon svg { width: 32px; height: 36px; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--forest-pale);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0.1rem;
  align-items: center;
}

.main-nav a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.82);
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
  background: rgba(74, 124, 89, 0.35);
}

.btn-book {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.25rem;
  background: var(--gold);
  color: var(--forest-dark);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  margin-left: 0.5rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-book:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--forest-dark);
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.7;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,20,12,0.95) 0%,
    rgba(10,20,12,0.4) 50%,
    rgba(10,20,12,0.1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem 5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--forest-pale);
  margin-bottom: 1rem;
}

.hero-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--forest-light);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: italic;
  color: var(--forest-pale);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: var(--gold);
  color: var(--forest-dark);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.82rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  font-weight: 400;
  font-size: 0.9rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.08);
}

.hero-stats {
  position: absolute;
  right: 2rem;
  bottom: 5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 2;
}

.hero-stat {
  text-align: right;
  color: rgba(255,255,255,0.9);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--forest-pale);
  display: block;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ---- SECTION COMMON ---- */
.section {
  padding: 6rem 2rem;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest-green);
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--forest-green);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--forest-dark);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.section-title em { font-style: italic; color: var(--forest-mid); }

.section-subtitle {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 520px;
  font-weight: 300;
}

/* ---- INTRO SECTION ---- */
.intro-section {
  background: var(--cream);
  padding: 6rem 2rem;
}

.intro-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.intro-text p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.intro-text p:last-of-type { margin-bottom: 2rem; }

.intro-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.intro-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--forest-dark);
}

.intro-feature svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--forest-green);
}

.intro-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
}

.intro-img {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.intro-img:first-child {
  grid-column: 1 / -1;
  height: 280px;
}

.intro-img:not(:first-child) { height: 200px; }

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

.intro-img:hover img { transform: scale(1.04); }

/* ---- COTTAGES GRID ---- */
.cottages-section {
  background: var(--warm-white);
  padding: 6rem 2rem;
}

.cottages-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.cottage-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.cottage-card-image {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.cottage-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cottage-card:hover .cottage-card-image img { transform: scale(1.06); }

.cottage-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--forest-dark);
  color: var(--forest-pale);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
}

.cottage-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cottage-card-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--forest-dark);
  margin-bottom: 0.5rem;
}

.cottage-card-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.cottage-card-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.amenity-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  color: var(--forest-mid);
  background: rgba(74, 124, 89, 0.1);
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
}

.cottage-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--forest-green);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--forest-pale);
  padding-bottom: 0.1rem;
  transition: var(--transition);
  align-self: flex-start;
}

.cottage-card-link:hover {
  color: var(--forest-dark);
  border-color: var(--forest-green);
}

/* ---- GALLERY ---- */
.gallery-section {
  background: var(--forest-dark);
  padding: 6rem 2rem;
}

.gallery-section .section-label { color: var(--forest-pale); }
.gallery-section .section-label::before { background: var(--forest-pale); }
.gallery-section .section-title { color: #fff; }

.gallery-grid {
  max-width: var(--max-width);
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 0.5rem;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item:first-child { grid-column: 1 / 3; grid-row: 1 / 3; }
.gallery-item:nth-child(4) { grid-column: 4; grid-row: 1 / 3; }

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 46, 30, 0.5);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay svg {
  width: 40px; height: 40px;
  color: #fff;
}

/* ---- WHAT TO DO SECTION ---- */
.todo-section {
  background: var(--cream);
  padding: 6rem 2rem;
}

.todo-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.todo-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.todo-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  align-items: flex-start;
}

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

.todo-icon {
  width: 44px;
  height: 44px;
  background: rgba(74, 124, 89, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.todo-icon svg {
  width: 20px; height: 20px;
  color: var(--forest-green);
}

.todo-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--forest-dark);
  margin-bottom: 0.3rem;
}

.todo-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

.todo-image {
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

/* ---- CTA BAND ---- */
.cta-section {
  background: var(--forest-mid);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section .section-inner { position: relative; }

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  font-weight: 400;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto 2rem;
}

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

/* ---- PAGE HERO (sub pages) ---- */
.page-hero {
  min-height: 55vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  margin-top: 0;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--forest-dark);
}

.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,12,0.9) 0%, rgba(10,20,12,0.2) 70%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-height) + 3rem) 2rem 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  font-weight: 400;
  line-height: 1.15;
}

.page-hero-content h1 em { font-style: italic; color: var(--forest-pale); }

.page-hero-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  font-weight: 300;
  margin-top: 0.75rem;
  max-width: 480px;
}

/* ---- COTTAGE DETAIL ---- */
.cottage-detail {
  padding: 6rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.cottage-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.cottage-detail-text h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--forest-dark);
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.cottage-detail-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 2rem 0;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text);
}

.amenity-item svg {
  width: 16px; height: 16px;
  color: var(--forest-green);
  flex-shrink: 0;
}

.booking-cta {
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--forest-green);
}

.booking-cta h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--forest-dark);
  margin-bottom: 0.5rem;
}

.booking-cta p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.cottage-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.cottage-gallery-main {
  grid-column: 1 / -1;
  height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cottage-gallery-main img,
.cottage-gallery-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cottage-gallery-main:hover img,
.cottage-gallery-thumb:hover img { transform: scale(1.04); }

.cottage-gallery-thumb {
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ---- CONTACT PAGE ---- */
.contact-section {
  padding: 6rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--forest-dark);
  margin-bottom: 1rem;
  font-weight: 400;
}

.contact-info p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(74, 124, 89, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 20px; height: 20px;
  color: var(--forest-green);
}

.contact-item-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.contact-item-value {
  font-size: 1rem;
  color: var(--forest-dark);
  font-weight: 400;
}

.contact-item-value a:hover { color: var(--forest-green); text-decoration: underline; }

.contact-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--forest-dark);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e0dbd2;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--warm-white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--forest-green);
  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.form-group textarea { height: 120px; resize: vertical; }

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

.btn-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--forest-mid);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 0.5rem;
}

.btn-submit:hover {
  background: var(--forest-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(45, 90, 61, 0.3);
}

/* ---- BOOKING PAGE ---- */
.booking-section {
  padding: 6rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.booking-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

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

.booking-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.booking-card-img {
  height: 200px;
  overflow: hidden;
}

.booking-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.booking-card:hover .booking-card-img img { transform: scale(1.06); }

.booking-card-body {
  padding: 1.75rem;
}

.booking-card-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--forest-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.booking-card-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.booking-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--gold);
  color: var(--forest-dark);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}

.booking-card-link:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--forest-dark);
  color: rgba(255,255,255,0.75);
  padding: 5rem 2rem 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-logo-main {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.footer-logo-sub {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest-pale);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
}

.footer-nav h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-nav a:hover { color: var(--forest-pale); }

.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.75rem;
}

.footer-contact-item svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  opacity: 0.7;
}

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

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  justify-content: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.03em;
}

/* ---- LIGHTBOX ---- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active { opacity: 1; pointer-events: all; }

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  opacity: 0.7;
  transition: var(--transition);
}

.lightbox-close:hover { opacity: 1; }
.lightbox-close svg { width: 32px; height: 32px; }

/* ---- SCROLL ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible { opacity: 1; transform: none; }

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .intro-grid,
  .todo-grid,
  .cottage-detail-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .cottages-grid { grid-template-columns: 1fr 1fr; }
  .booking-cards { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-column: 1; grid-row: 1; }
  .gallery-item:nth-child(4) { grid-column: 2; grid-row: 2; }
  .hero-stats { display: none; }
}

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

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--forest-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 2rem 2rem;
    gap: 0.25rem;
    transform: translateY(-110%);
    transition: transform 0.35s ease;
    border-top: 1px solid rgba(74,124,89,0.2);
    box-shadow: var(--shadow-lg);
  }

  .main-nav.open { transform: translateY(0); }

  .main-nav ul { flex-direction: column; align-items: stretch; }
  .main-nav a { padding: 0.75rem 1rem; font-size: 0.95rem; }
  .btn-book { margin: 1rem 0 0; text-align: center; justify-content: center; padding: 0.8rem; }

  .nav-toggle { display: flex; }

  .cottages-grid { grid-template-columns: 1fr; }
  .booking-cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child,
  .gallery-item:nth-child(4) { grid-column: 1; grid-row: auto; }
  .cottage-gallery { grid-template-columns: 1fr; }
  .cottage-gallery-main { height: 250px; }

  .hero h1 { font-size: 2.4rem; }
  .section { padding: 4rem 1.25rem; }
  .intro-section { padding: 4rem 1.25rem; }
}
