/* ═══════════════════════════════════════════════════════════
   AURELIS RESERVE — Quiet Luxury Wellness Resort
   Aesthetic: Aman-inspired serenity meets Filipino warmth
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --gold: #C0AA6F;
  --gold-light: #D4C48F;
  --gold-dark: #A8944F;
  --gold-mist: rgba(192,170,111,0.08);
  --charcoal: #353430;
  --cream: #EFEADE;
  --cream-deep: #E5DCC8;
  --sage: #879554;
  --sage-light: rgba(135,149,84,0.10);
  --dark: #1C1B18;
  --light: #FAF9F6;
  --gray: #F3F2EE;
  --text: #454238;
  --text-light: #7A7567;
  --text-muted: #9E978A;
  --white: #FFFFFF;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 8px rgba(53,52,48,0.04);
  --shadow: 0 4px 24px rgba(53,52,48,0.06);
  --shadow-lg: 0 16px 48px rgba(53,52,48,0.10);
  --shadow-gold: 0 8px 32px rgba(192,170,111,0.15);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.7;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

h4, h5, h6 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

::selection {
  background: var(--gold-mist);
  color: var(--charcoal);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Divider ── */
.gold-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border: none;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--cream);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.btn-white {
  background: rgba(255,255,255,0.95);
  color: var(--charcoal);
  backdrop-filter: blur(8px);
}
.btn-white:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-sm { padding: 11px 24px; font-size: 0.8rem; }
.btn-lg { padding: 20px 48px; font-size: 0.95rem; }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250,249,246,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(192,170,111,0.08);
  padding: 18px 0;
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--charcoal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-text span {
  color: var(--gold);
}

.logo-img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:not(.btn):hover { color: var(--charcoal); }
.nav-links a:not(.btn):hover::after { width: 100%; }

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

.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: var(--transition);
  border-radius: 2px;
}

/* ── Hero ── */
.hero {
  padding: 180px 0 120px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(192,170,111,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(135,149,84,0.04) 0%, transparent 40%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  position: relative;
  padding-left: 40px;
}

.hero-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--charcoal);
  margin-bottom: 24px;
  font-weight: 300;
}

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

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 44px;
  max-width: 440px;
  line-height: 1.8;
  font-weight: 300;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-visual .photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-visual .photo-card {
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
}

.hero-visual .photo-card > * {
  width: 100%;
  height: 100%;
}

.hero-visual .photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-visual .photo-card:hover img {
  transform: scale(1.05);
}

.hero-visual .photo-card .photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(28,27,24,0.7), transparent);
  padding: 32px 16px 12px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255,255,255,0.85);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

.hero-visual .photo-card:nth-child(2) { margin-top: 48px; }
.hero-visual .photo-card:nth-child(3) { margin-top: -48px; }

/* ── Section Shared ── */
.section {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--charcoal);
  margin-bottom: 20px;
  font-weight: 300;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.8;
}

.section-alt { background: var(--gray); }
.section-cream { background: var(--cream); }
.section-dark {
  background: var(--charcoal);
  color: var(--cream);
}
.section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark p { color: rgba(239,234,222,0.7); }

/* ── Accommodation Card ── */
.accommodation-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 900px;
  margin: 0 auto;
}

.accommodation-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition-slow);
  border: 1px solid rgba(192,170,111,0.08);
}

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

.accommodation-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}

.accommodation-img img,
.accommodation-img > div {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.accommodation-body {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.accommodation-body h3 {
  font-size: 2rem;
  margin-bottom: 12px;
  font-weight: 400;
}

.accommodation-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.accommodation-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.accommodation-body > p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.7;
  font-weight: 300;
}

.accommodation-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 4px;
}

.accommodation-price small {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
}

.accommodation-note {
  font-size: 0.75rem;
  color: var(--sage);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.accommodation-body .btn { align-self: flex-start; }

/* ── Amenities ── */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  background: rgba(192,170,111,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.amenity-card {
  background: var(--white);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
}

.amenity-card:hover {
  background: var(--gold-mist);
}

.amenity-icon {
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: block;
  opacity: 0.7;
}

.amenity-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.amenity-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.6;
}

/* ── How It Works / Steps ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.step h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.step p {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.6;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid rgba(192,170,111,0.06);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(192,170,111,0.15);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--text);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── CTA Banner ── */
.cta-banner {
  padding: 100px 0;
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(192,170,111,0.06) 0%, transparent 60%);
  pointer-events: none;
}

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

.cta-banner h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 16px;
  color: var(--cream);
  font-weight: 300;
}

.cta-banner p {
  font-size: 1rem;
  color: rgba(239,234,222,0.6);
  margin-bottom: 40px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

/* ── Footer ── */
.footer {
  background: var(--dark);
  color: rgba(239,234,222,0.5);
  padding: 72px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo-text {
  color: var(--cream);
  font-size: 1.3rem;
}

.footer-brand .logo-text span { color: var(--gold); }

.footer-brand p {
  margin-top: 16px;
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 280px;
  font-weight: 300;
}

.footer h4 {
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer ul { display: flex; flex-direction: column; gap: 12px; }

.footer ul a {
  font-size: 0.85rem;
  font-weight: 300;
}

.footer ul a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(239,234,222,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(239,234,222,0.3);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a { color: rgba(239,234,222,0.4); font-size: 0.8rem; }
.footer-legal a:hover { color: var(--gold); }

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(239,234,222,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(239,234,222,0.5);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--gold);
  color: var(--charcoal);
}

/* ── Page Header ── */
.page-header {
  padding: 160px 0 64px;
  background: var(--cream);
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(192,170,111,0.05) 0%, transparent 50%);
}

.page-header .container { position: relative; z-index: 1; }

.page-header h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--charcoal);
  margin-bottom: 16px;
  font-weight: 300;
}

.page-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto;
}

/* ── Booking Page ── */
.booking-section {
  padding: 64px 0 120px;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}

.booking-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 12px;
}

.booking-step-title .step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

.form-group {
  margin-bottom: 24px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(192,170,111,0.15);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--white);
  color: var(--text);
}

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

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

.package-selector {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

.package-option {
  border: 1.5px solid rgba(192,170,111,0.12);
  border-radius: var(--radius-lg);
  padding: 24px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  background: var(--white);
}

.package-option:hover { border-color: var(--gold-light); }
.package-option.selected {
  border-color: var(--gold);
  background: var(--gold-mist);
}

.package-option input[type="radio"] { display: none; }

.package-option .pkg-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.package-option .pkg-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--gold);
  font-size: 1.2rem;
}

.package-option .pkg-price small {
  font-size: 0.75rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--text-muted);
}

.package-option .pkg-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 6px;
  font-weight: 300;
}

/* ── Order Summary Sidebar ── */
.order-summary {
  background: var(--white);
  border: 1.5px solid rgba(192,170,111,0.1);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: sticky;
  top: 100px;
}

.order-summary h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(192,170,111,0.1);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 0.88rem;
  color: var(--text-light);
}

.summary-row.total {
  border-top: 1.5px solid rgba(192,170,111,0.15);
  margin-top: 16px;
  padding-top: 20px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--charcoal);
}

.summary-row.total .amount {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.payment-methods {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(192,170,111,0.08);
}

.payment-methods p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.payment-icons {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.payment-icons span {
  padding: 5px 14px;
  background: var(--gray);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ── Date Range ── */
.date-range {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.nights-display {
  background: var(--gold-mist);
  color: var(--charcoal);
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.88rem;
  text-align: center;
  margin-bottom: 32px;
  border: 1px solid rgba(192,170,111,0.12);
}

/* ── Success Page ── */
.success-section {
  padding: 180px 0 120px;
  text-align: center;
}

.success-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--sage-light);
  color: var(--sage);
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.success-section h1 {
  font-size: 2.4rem;
  color: var(--charcoal);
  margin-bottom: 16px;
  font-weight: 300;
}

.success-section p {
  color: var(--text-light);
  max-width: 480px;
  margin: 0 auto 36px;
  font-weight: 300;
  line-height: 1.8;
}

/* ── Loading & Alerts ── */
.loading {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(192,170,111,0.15);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.alert {
  padding: 16px 24px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  margin-bottom: 24px;
  display: none;
  font-weight: 400;
}

.alert-error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.alert-success { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }

/* ── About Page ── */
.about-hero {
  padding: 180px 0 80px;
  background: var(--cream);
  text-align: center;
  position: relative;
}

.about-hero h1 {
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  margin-bottom: 20px;
  font-weight: 300;
}

.about-hero p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto;
  font-weight: 300;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.7;
}

.about-content {
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 24px;
  font-weight: 300;
}

.about-text p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.9;
  font-weight: 300;
}

.about-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-img img,
.about-img > div {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  margin-bottom: 32px;
  font-weight: 400;
}

.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-mist);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-item-text p {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 300;
}

.contact-item-text a {
  color: var(--gold);
}

.contact-item-text a:hover { color: var(--gold-dark); }

.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 1/1;
  border: 1.5px solid rgba(192,170,111,0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── House Rules ── */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: rgba(192,170,111,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.rule-card {
  background: var(--white);
  padding: 32px 28px;
}

.rule-card h4 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.rule-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 300;
}

/* ── Legal Pages (Privacy & Terms) ── */
.legal-content {
  padding: 60px 0 120px;
}

.legal-content .container {
  max-width: 760px;
}

.legal-content h2 {
  font-size: 1.6rem;
  margin: 48px 0 16px;
  font-weight: 400;
  color: var(--charcoal);
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.2rem;
  margin: 32px 0 12px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
}

.legal-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
  font-weight: 300;
}

.legal-content ul {
  margin: 0 0 20px 24px;
  list-style: disc;
}

.legal-content ul li {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 8px;
  line-height: 1.7;
  font-weight: 300;
}

.legal-content strong {
  color: var(--charcoal);
  font-weight: 500;
}

.legal-updated {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

/* ── Photo Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.gallery-item {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
}

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

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item--featured {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 16px 12px;
  background: linear-gradient(to top, rgba(28,27,24,0.6), transparent);
  color: rgba(255,255,255,0.85);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(28,27,24,0.95);
  backdrop-filter: blur(20px);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

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

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: rgba(255,255,255,0.7);
  font-size: 2rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  transition: var(--transition);
  background: none;
  border: none;
  line-height: 1;
}

.lightbox-close:hover { color: var(--gold); }

@media (max-width: 968px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item--featured { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--featured { grid-column: span 2; }
  .gallery-item--tall { grid-row: span 1; }
}

/* ── Footer Logo Invert ── */
.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(0.9);
  opacity: 0.8;
}

/* ── Responsive ── */
@media (max-width: 968px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin: 0 auto 44px; }
  .hero-eyebrow { padding-left: 0; }
  .hero-eyebrow::before { display: none; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 2.8rem; }
  .booking-layout { grid-template-columns: 1fr; }
  .accommodation-card { grid-template-columns: 1fr; }
  .accommodation-img { aspect-ratio: 16/10; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-container { aspect-ratio: 16/10; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250,249,246,0.98);
    backdrop-filter: blur(20px);
    padding: 28px 20px;
    gap: 20px;
    box-shadow: var(--shadow);
  }
  .nav-links.active a { font-size: 0.9rem; }
  .hero { padding: 140px 0 72px; }
  .hero h1 { font-size: 2.2rem; }
  .section { padding: 72px 0; }
  .section-header { margin-bottom: 48px; }
  .section-header h2 { font-size: 1.8rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .date-range { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-legal { justify-content: center; }
  .accommodation-body { padding: 32px 24px; }
  .cta-banner { padding: 72px 0; }
  .about-hero h1 { font-size: 2.2rem; }
  .legal-content h2 { font-size: 1.4rem; }
}
