/* ============================================
   TE AWA ESTATE — Luxury Lodge Website
   ============================================ */

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

:root {
  --forest: #1a3a2a;
  --forest-deep: #0f2318;
  --forest-light: #2d5a3f;
  --gold: #c9a84c;
  --gold-light: #dfc477;
  --gold-muted: #b89a3e;
  --cream: #f5f0e8;
  --cream-warm: #ede5d8;
  --offwhite: #faf8f4;
  --charcoal: #2c2c2c;
  --charcoal-light: #4a4a4a;
  --text: #333333;
  --text-light: #6b6b6b;
  --white: #ffffff;
  --black: #000000;
  --overlay: rgba(15, 35, 24, 0.55);
  --overlay-dark: rgba(15, 35, 24, 0.7);

  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
  --font-accent: 'Cormorant', serif;

  --section-padding: clamp(80px, 10vw, 140px);
  --content-max: 1200px;
  --content-narrow: 800px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--forest-deep);
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

p {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  max-width: 65ch;
}

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

.section-heading {
  margin-bottom: 1.5rem;
}

.section-intro {
  color: var(--text-light);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.8;
  max-width: 60ch;
}

.gold-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  border: none;
  margin: 2rem 0;
}

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

/* --- Utility --- */
.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.container--narrow {
  max-width: var(--content-narrow);
}

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

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

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

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

.section--forest h2,
.section--forest h3,
.section--forest h4 {
  color: var(--cream);
}

.section--forest .section-intro {
  color: rgba(245, 240, 232, 0.8);
}

.section--forest .gold-rule {
  background: var(--gold-muted);
}

/* --- Reveal animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(15, 35, 24, 0.95);
  padding: 0.8rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.15);
  backdrop-filter: blur(10px);
}

.nav__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.05em;
  font-weight: 400;
}

.nav__brand span {
  color: var(--gold-light);
}

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

.nav__link {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-light);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--gold-light);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--gold-light);
  padding: 0.6rem 1.5rem;
  transition: all var(--transition);
}

.nav__cta:hover {
  background: var(--gold-light);
  color: var(--forest-deep);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.nav__hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s ease;
  display: block;
}

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

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

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

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 35, 24, 0.3) 0%,
    rgba(15, 35, 24, 0.5) 50%,
    rgba(15, 35, 24, 0.7) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 2rem;
  max-width: 900px;
}

.hero__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s ease 0.3s forwards;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1s ease 0.5s forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s ease 0.7s forwards;
}

.hero__cta {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 1rem 2.5rem;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s ease 0.9s forwards;
}

.hero__cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest-deep);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: heroFadeUp 1s ease 1.2s forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.6; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================
   ABOUT
   ============================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about__image-stack {
  position: relative;
}

.about__image-main {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about__image-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 6s ease;
}

.about__image-main:hover img {
  transform: scale(1.03);
}

.about__image-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  border: 4px solid var(--offwhite);
}

.about__image-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__text {
  padding-right: 2rem;
}

.about__text p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.about__stat-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.about__stat {
  text-align: center;
}

.about__stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.about__stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.3rem;
  display: block;
}

/* ============================================
   PARALLAX DIVIDER
   ============================================ */
.parallax-divider {
  position: relative;
  height: 50vh;
  min-height: 350px;
  overflow: hidden;
}

.parallax-divider__bg {
  position: absolute;
  inset: -20%;
  z-index: 0;
}

.parallax-divider__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.parallax-divider__overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  z-index: 1;
}

.parallax-divider__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 2rem;
}

.parallax-divider__quote {
  font-family: var(--font-accent);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  max-width: 700px;
  line-height: 1.5;
}

/* ============================================
   ACCOMMODATION
   ============================================ */
.accommodation__intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.accommodation__intro .section-intro {
  margin: 0 auto;
}

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

.accommodation__card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.accommodation__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.accommodation__card-image {
  height: 280px;
  overflow: hidden;
}

.accommodation__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.accommodation__card-body {
  padding: 1.8rem;
}

.accommodation__card-body h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.accommodation__card-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.accommodation__card-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* ============================================
   EXPERIENCES
   ============================================ */
.experiences__feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 0;
}

.experiences__feature:nth-child(even) {
  direction: rtl;
}

.experiences__feature:nth-child(even) > * {
  direction: ltr;
}

.experiences__feature-image {
  height: 500px;
  overflow: hidden;
}

.experiences__feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.experiences__feature:hover .experiences__feature-image img {
  transform: scale(1.03);
}

.experiences__feature-content {
  display: flex;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--offwhite);
}

.experiences__feature:nth-child(even) .experiences__feature-content {
  background: var(--cream);
}

.experiences__feature-content h3 {
  margin-bottom: 1rem;
}

.experiences__feature-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.experiences__list {
  margin-top: 1rem;
}

.experiences__list li {
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.experiences__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ============================================
   WEDDINGS (sub-section within experiences)
   ============================================ */
.weddings {
  position: relative;
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.weddings__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.weddings__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 35, 24, 0.85) 0%,
    rgba(15, 35, 24, 0.65) 100%
  );
  z-index: 1;
}

.weddings__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: var(--cream);
}

.weddings__content h2 {
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.weddings__content p {
  margin: 0 auto 1.5rem;
  color: rgba(245, 240, 232, 0.85);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.8;
}

.weddings__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2.5rem 0;
}

.weddings__feature-item {
  text-align: center;
  flex: 0 0 auto;
}

.weddings__feature-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.weddings__feature-item span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ============================================
   3D TOUR
   ============================================ */
.tour__wrapper {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.tour__intro {
  margin-bottom: 3rem;
}

.tour__intro .section-intro {
  margin: 0 auto;
}

.tour__embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.tour__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

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

.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  border-radius: 1px;
}

.gallery__item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 35, 24, 0);
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery__item:hover .gallery__item-overlay {
  background: rgba(15, 35, 24, 0.3);
}

.gallery__item-overlay svg {
  width: 28px;
  height: 28px;
  color: var(--white);
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition);
}

.gallery__item:hover .gallery__item-overlay svg {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox__content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2001;
  transition: all var(--transition);
}

.lightbox__close:hover {
  background: var(--white);
  color: var(--black);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 2001;
}

.lightbox__nav:hover {
  background: rgba(255,255,255,0.15);
}

.lightbox__nav--prev {
  left: 1.5rem;
}

.lightbox__nav--next {
  right: 1.5rem;
}

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

.pricing__card {
  background: var(--white);
  padding: 3rem;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  text-align: center;
  border-top: 3px solid var(--gold);
  transition: transform var(--transition);
}

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

.pricing__card-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.pricing__card h3 {
  font-size: 2.5rem;
  color: var(--forest-deep);
  margin-bottom: 0.5rem;
}

.pricing__card h3 span {
  font-size: 1rem;
  color: var(--text-light);
  font-family: var(--font-body);
}

.pricing__card-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.pricing__card-features {
  text-align: left;
  margin-bottom: 2rem;
}

.pricing__card-features li {
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pricing__card-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
}

.btn--gold:hover {
  background: var(--gold-muted);
}

.btn--outline {
  background: transparent;
  color: var(--forest-deep);
  border: 1px solid var(--forest-deep);
}

.btn--outline:hover {
  background: var(--forest-deep);
  color: var(--white);
}

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

.btn--outline-white:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest-deep);
}

/* ============================================
   LOCATION
   ============================================ */
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.location__details h3 {
  margin-bottom: 1rem;
}

.location__details p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.location__list {
  margin: 1.5rem 0;
}

.location__list li {
  font-size: 0.95rem;
  color: var(--text-light);
  padding: 0.6rem 0;
  padding-left: 1.2rem;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.location__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.location__map {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  aspect-ratio: 4/3;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--forest-deep);
  color: rgba(245, 240, 232, 0.7);
  padding: clamp(60px, 8vw, 100px) 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer__brand h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 1rem;
}

.footer__brand h3 span {
  color: var(--gold-light);
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 300px;
}

.footer h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.footer__links li {
  margin-bottom: 0.8rem;
}

.footer__links a {
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--gold-light);
}

.footer__contact p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer__contact a:hover {
  color: var(--gold-light);
}

.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(245, 240, 232, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  border-radius: 1px;
}

.footer__social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest-deep);
}

.footer__social svg {
  width: 16px;
  height: 16px;
}

.footer__bottom {
  border-top: 1px solid rgba(245, 240, 232, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .accommodation__grid {
    gap: 1.5rem;
  }

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

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--forest-deep);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    transition: right 0.4s ease;
  }

  .nav__links.open {
    right: 0;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__cta {
    margin-top: 1rem;
  }

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

  .about__image-accent {
    display: none;
  }

  .about__text {
    padding-right: 0;
  }

  .about__stat-row {
    justify-content: center;
  }

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

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

  .experiences__feature:nth-child(even) {
    direction: ltr;
  }

  .experiences__feature-image {
    height: 300px;
  }

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

  .gallery__item--tall {
    grid-row: span 1;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 450px;
  }

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

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

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

  .lightbox__nav--prev { left: 0.5rem; }
  .lightbox__nav--next { right: 0.5rem; }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.4rem;
  }

  .about__stat-row {
    flex-direction: column;
    gap: 1.5rem;
  }

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

  .pricing__card {
    padding: 2rem;
  }

  .weddings__features {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* Mobile menu overlay */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}

.nav__overlay.open {
  display: block;
}

/* ========== BOOKING SECTION ========== */
.booking__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .booking__grid {
    grid-template-columns: 1fr;
  }
}

.booking__calendar h3,
.booking__form h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--charcoal);
}

/* Form Styles */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--cream);
  border: 1px solid #d4d0c8;
  border-radius: 4px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 156, 96, 0.15);
}

.form-group textarea {
  resize: vertical;
}

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

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
