/* ========================================
   STADDLE STONES MANOR
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500&display=swap');

:root {
  --cream: #f5f1e8;
  --paper: #fbf8f1;
  --ink: #1f2a23;
  --ink-soft: #3d4a40;
  --moss: #2d3e2c;
  --sage: #6b7d65;
  --sage-light: #a8b29e;
  --rust: #8b4513;
  --gold: #b8945c;
  --line: #d8d2c0;
  --line-soft: #ebe5d4;
}

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

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

body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

.serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 1.05;
  font-weight: 300;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  font-weight: 300;
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  line-height: 1.2;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.italic {
  font-style: italic;
  font-weight: 300;
}

p {
  margin-bottom: 1.25rem;
  max-width: 65ch;
}

p.lead {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.25rem, 1.6vw, 1.6rem);
  line-height: 1.5;
  font-weight: 300;
  color: var(--ink-soft);
}

/* ========================================
   NAVIGATION
   ======================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
  background: transparent;
}

.nav.scrolled {
  background: rgba(251, 248, 241, 0.96);
  backdrop-filter: blur(10px);
  padding: 1rem 3rem;
  box-shadow: 0 1px 0 var(--line-soft);
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.nav.scrolled .nav-brand {
  color: var(--ink);
}

.nav-brand .ampersand {
  font-style: italic;
  color: var(--gold);
}

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

.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
  opacity: 0.9;
}

.nav.scrolled .nav-links a {
  color: var(--ink-soft);
}

.nav-links a:hover {
  opacity: 1;
  color: var(--gold);
}

.nav-links a.active {
  color: var(--gold);
  opacity: 1;
}

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

.nav.scrolled .nav-mobile-toggle {
  color: var(--ink);
}

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

@media (max-width: 880px) {
  .nav {
    padding: 1.25rem 1.5rem;
  }
  .nav.scrolled {
    padding: 1rem 1.5rem;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--paper);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-links a {
    color: var(--ink) !important;
    font-size: 1rem;
  }
  .nav-mobile-toggle {
    display: block;
    z-index: 101;
  }
}

/* ========================================
   HERO
   ======================================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}

.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 25, 18, 0.45) 0%,
    rgba(15, 25, 18, 0.15) 35%,
    rgba(15, 25, 18, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 3rem 6rem;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  color: var(--cream);
}

.logo-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3.5rem;
}

.logo-emblem {
  width: 64px;
  height: 64px;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.logo-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--cream);
  line-height: 1;
}

.logo-wordmark .ampersand {
  font-style: italic;
  color: var(--gold);
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  color: var(--cream);
  font-weight: 300;
  max-width: 14ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.75rem, 7vw, 6rem);
}

.hero h1 .italic {
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  font-style: italic;
  font-weight: 300;
  max-width: 50ch;
  opacity: 0.9;
  line-height: 1.5;
}

.hero-meta {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  z-index: 2;
  text-align: right;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
}

.hero-meta-line {
  display: block;
  margin-bottom: 0.4rem;
}

@media (max-width: 880px) {
  .hero-content {
    padding: 0 1.5rem 4rem;
  }
  .hero-meta {
    display: none;
  }
}

/* ========================================
   PAGE HEADERS (non-home)
   ======================================== */

.page-header {
  position: relative;
  height: 60vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--ink);
}

.page-header-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-header-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,25,18,0.4) 0%, rgba(15,25,18,0.55) 100%);
}

.page-header-content {
  position: relative;
  z-index: 2;
  color: var(--cream);
  padding: 6rem 1.5rem 0;
}

.page-header h1 {
  color: var(--cream);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
}

.page-header .italic {
  color: var(--gold);
  font-style: italic;
}

.page-header-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 1.25rem;
}

/* ========================================
   SECTION SCAFFOLDING
   ======================================== */

.section {
  padding: 7rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-tight {
  padding: 5rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

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

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

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

.section-dark .eyebrow {
  color: var(--sage-light);
}

@media (max-width: 880px) {
  .section, .section-tight {
    padding: 4rem 1.5rem;
  }
}

/* ========================================
   ORNAMENT — small hairline divider with diamond
   ======================================== */

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto 2rem;
  width: fit-content;
  color: var(--gold);
}

.ornament::before,
.ornament::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.ornament-icon {
  font-size: 0.6rem;
  transform: rotate(45deg);
}

/* ========================================
   INTRO BLOCK (asymmetric)
   ======================================== */

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

.intro-left .eyebrow {
  margin-bottom: 1rem;
}

.intro-left h2 {
  margin-bottom: 0;
}

.intro-image {
  margin-top: 2.5rem;
  width: 100%;
  height: 380px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
}

.intro-right {
  padding-top: 1rem;
}

@media (max-width: 880px) {
  .intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .intro-image {
    height: 280px;
    margin-top: 1rem;
  }
}

/* ========================================
   FEATURE GRID — three columns
   ======================================== */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 5rem;
}

.feature {
  padding: 2.5rem 2rem;
  border-left: 1px solid var(--line);
  position: relative;
}

.feature:first-child {
  border-left: none;
  padding-left: 0;
}

.feature:last-child {
  padding-right: 0;
}

.feature-number {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.feature h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.feature p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

@media (max-width: 880px) {
  .feature-grid {
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }
  .feature {
    padding: 2rem 0;
    border-left: none;
    border-top: 1px solid var(--line);
  }
  .feature:first-child {
    border-top: none;
    padding-top: 0;
  }
}

/* ========================================
   IMAGE BLOCKS
   ======================================== */

.image-pair {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  margin: 5rem 0;
  align-items: center;
}

.image-pair.reverse {
  grid-template-columns: 1fr 1.4fr;
}

.image-pair img {
  width: 100%;
  height: auto;
  display: block;
}

.image-pair-text {
  padding: 0 2rem;
}

@media (max-width: 880px) {
  .image-pair, .image-pair.reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
  }
  .image-pair-text {
    padding: 0;
  }
}

.image-full {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 75vh;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  position: relative;
}

@media (max-width: 700px) {
  .image-full {
    height: 65vh;
    min-height: 420px;
    max-height: 600px;
  }
  .image-full-caption {
    bottom: 1.5rem !important;
    left: 1.5rem !important;
    font-size: 1rem !important;
  }
}

.image-full-caption {
  position: absolute;
  bottom: 2.5rem;
  left: 3rem;
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  max-width: 30ch;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

/* ========================================
   GALLERY GRID
   ======================================== */

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  margin: 4rem 0;
}

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

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

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

.g-1 { grid-column: span 7; aspect-ratio: 4/3; }
.g-2 { grid-column: span 5; aspect-ratio: 3/4; }
.g-3 { grid-column: span 4; aspect-ratio: 1/1; }
.g-4 { grid-column: span 4; aspect-ratio: 1/1; }
.g-5 { grid-column: span 4; aspect-ratio: 1/1; }
.g-6 { grid-column: span 5; aspect-ratio: 3/4; }
.g-7 { grid-column: span 7; aspect-ratio: 4/3; }
.g-8 { grid-column: span 6; aspect-ratio: 4/3; }
.g-9 { grid-column: span 6; aspect-ratio: 4/3; }
.g-10 { grid-column: span 4; aspect-ratio: 1/1; }
.g-11 { grid-column: span 4; aspect-ratio: 1/1; }
.g-12 { grid-column: span 4; aspect-ratio: 1/1; }

@media (max-width: 880px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .g-1, .g-2, .g-3, .g-4, .g-5, .g-6, .g-7, .g-8, .g-9, .g-10, .g-11, .g-12 {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-light {
  border-color: var(--cream);
  color: var(--cream);
}

.btn-light:hover {
  background: var(--cream);
  color: var(--ink);
}

.btn-outline-light {
  border-color: rgba(245, 241, 232, 0.5);
  color: var(--cream);
  background: transparent;
}

.btn-outline-light:hover {
  border-color: var(--cream);
  background: rgba(245, 241, 232, 0.1);
}

.cta-band-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

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

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

/* ========================================
   STAY / ROOM CARDS
   ======================================== */

.room-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  margin: 6rem 0;
  align-items: center;
}

.room-card.reverse {
  grid-template-columns: 1fr 1.2fr;
}

.room-card.reverse .room-image {
  order: 2;
}

.room-card.reverse .room-text {
  order: 1;
}

.room-image img {
  width: 100%;
  height: auto;
  display: block;
}

.bedroom-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1rem 0 2rem;
}

.bedroom-strip img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

@media (max-width: 700px) {
  .bedroom-strip {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .bedroom-strip img:last-child {
    grid-column: span 2;
  }
}

.room-text .eyebrow {
  margin-bottom: 0.75rem;
}

.room-text h3 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  margin-bottom: 1.5rem;
  line-height: 1.05;
  font-weight: 300;
}

.room-text h3 .italic {
  color: var(--gold);
}

.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 1.5rem 0 2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.room-meta-item {
  flex: 1;
  min-width: 100px;
  border-right: 1px solid var(--line);
  padding: 0.5rem 1rem;
}

.room-meta-item:last-child {
  border-right: none;
}

.room-meta-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 0.25rem;
}

.room-meta-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--ink);
}

.room-features {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.room-features li {
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.room-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
}

@media (max-width: 880px) {
  .room-card, .room-card.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
  }
  .room-card.reverse .room-image {
    order: 0;
  }
}

/* ========================================
   AREA / LOCATION SECTION
   ======================================== */

.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  margin: 4rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.area-item {
  background: var(--paper);
  padding: 2.5rem 2rem;
}

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

.area-item-distance {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}

.area-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.area-item p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 0;
}

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

/* ========================================
   QUOTE / PULL
   ======================================== */

.pull-quote {
  text-align: center;
  max-width: 60ch;
  margin: 6rem auto;
  padding: 0 2rem;
}

.pull-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 1rem;
}

.pull-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.4;
  font-weight: 300;
  color: var(--ink);
  margin: 0 auto;
}

.pull-quote-cite {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 1.5rem;
  display: block;
  font-style: normal;
}

/* ========================================
   CTA BAND
   ======================================== */

.cta-band {
  position: relative;
  padding: 8rem 3rem;
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,25,18,0.55) 0%, rgba(15,25,18,0.7) 100%);
}

.cta-band-content {
  position: relative;
  z-index: 2;
  color: var(--cream);
  max-width: 700px;
  margin: 0 auto;
}

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

.cta-band h2 .italic {
  color: var(--gold);
}

.cta-band p {
  margin: 0 auto 2.5rem;
  opacity: 0.9;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
}

/* ========================================
   FORM
   ======================================== */

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

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

.contact-info-block {
  margin-bottom: 2rem;
}

.contact-info-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.5rem;
  display: block;
}

.contact-info-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--ink);
}

.contact-info-value a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  transition: color 0.3s ease;
}

.contact-info-value a:hover {
  color: var(--gold);
}

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

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

.form-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.5rem;
  display: block;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 0;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
  font-family: 'Inter', sans-serif;
}

@media (max-width: 880px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: var(--moss);
  color: var(--cream);
  padding: 5rem 3rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245, 241, 232, 0.15);
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 300;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.footer-brand .ampersand {
  font-style: italic;
  color: var(--gold);
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  opacity: 0.7;
  max-width: 35ch;
}

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer-col p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 0.4rem;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  opacity: 0.6;
}

@media (max-width: 880px) {
  .footer {
    padding: 3rem 1.5rem 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

/* ========================================
   ANIMATION
   ======================================== */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

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

@keyframes slow-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.hero-image {
  animation: slow-zoom 18s ease-out forwards;
}

/* ========================================
   BOOKING CALENDAR
   ======================================== */

.booking-widget {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.booking-calendar,
.booking-summary {
  background: #fff;
  padding: 2.5rem;
  border: 1px solid var(--line);
}

.cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.cal-month-label {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
}

.cal-nav {
  background: transparent;
  border: 1px solid var(--line);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
  transition: all 0.2s ease;
}

.cal-nav:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 0.75rem;
}

.cal-weekdays span {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  padding: 0.5rem 0;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.15s ease;
  border-radius: 2px;
}

.cal-cell:hover:not(:disabled):not(.cal-cell-empty) {
  background: var(--cream);
  border-color: var(--accent);
}

.cal-cell-empty {
  cursor: default;
  pointer-events: none;
}

.cal-cell-past {
  color: #cbc4b1;
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-color: #e0d9c5;
}

.cal-cell-booked {
  background: #efe9da;
  color: #b3a888;
  cursor: not-allowed;
  position: relative;
}

.cal-cell-booked::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-top: 1px solid #b3a888;
  transform: rotate(-22deg);
  pointer-events: none;
}

.cal-cell-arrival {
  background: var(--accent) !important;
  color: #fff !important;
  border-color: var(--accent) !important;
  font-weight: 500;
}

.cal-cell-in-range {
  background: rgba(90, 107, 77, 0.15);
  color: var(--ink);
}

.cal-legend {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.cal-legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--muted);
}

.cal-swatch {
  width: 14px;
  height: 14px;
  border-radius: 2px;
  border: 1px solid var(--line);
}

.cal-swatch-available { background: #fff; }
.cal-swatch-booked { background: #efe9da; }
.cal-swatch-selected { background: var(--accent); border-color: var(--accent); }

/* SUMMARY SIDE */
.booking-summary-card {
  margin-bottom: 1.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--line);
  gap: 1rem;
}

.summary-row:last-of-type {
  border-bottom: none;
}

.summary-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.summary-value {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  text-align: right;
}

.summary-divider {
  height: 1px;
  background: var(--line);
  margin: 0.75rem 0;
}

.summary-total {
  padding-top: 1.25rem !important;
  border-top: 1px solid var(--ink) !important;
  margin-top: 0.5rem;
}

.summary-label-total {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
}

.summary-value-total {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--accent);
}

.summary-fineprint {
  font-size: 0.75rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 1rem;
  line-height: 1.5;
}

/* STEPPER */
.nights-stepper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--line);
  padding: 0.25rem;
  border-radius: 2px;
}

.stepper-btn {
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.stepper-btn:hover {
  background: var(--cream);
  color: var(--accent);
}

.stepper-value {
  min-width: 24px;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
}

.booking-cta-btn {
  width: 100%;
  margin-top: 0.5rem;
}

.booking-cta-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.booking-fineprint {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.5;
}

/* ENQUIRY BANNER */
.enquiry-summary-banner {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  border-left: 3px solid var(--accent);
}

.enquiry-banner-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.enquiry-banner-label {
  color: var(--muted);
  letter-spacing: 0.04em;
}

.enquiry-banner-row strong {
  color: var(--ink);
  font-weight: 500;
}

.enquiry-banner-total {
  border-top: 1px solid var(--line);
  margin-top: 0.5rem;
  padding-top: 0.75rem !important;
}

.enquiry-banner-total .enquiry-banner-label {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
}

.enquiry-banner-total strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .booking-widget {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .booking-calendar,
  .booking-summary {
    padding: 1.75rem;
  }
  .cal-cell {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .booking-calendar,
  .booking-summary {
    padding: 1.25rem;
  }
  .cal-legend {
    gap: 1rem;
    font-size: 0.7rem;
  }
}
