/* ============================================
   MOUNTAIN MANOR STAYS — SHARED STYLES
   Aman-inspired editorial luxury
   ============================================ */

:root {
  --cream: #f3eee7;
  --cream-deep: #ebe4d6;
  --cream-darker: #ddd3c0;
  --ink: #2a2520;
  --ink-soft: #6b6359;
  --ink-faint: #9a9085;
  --accent: #8a6d4b;
  --accent-soft: #b5946a;
  --line: rgba(42, 37, 32, 0.12);
  --line-soft: rgba(42, 37, 32, 0.06);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

em, .italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.4s ease;
}
a:hover { opacity: 0.55; }

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

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: all 0.5s ease;
  background: transparent;
}
.nav.scrolled {
  background: var(--cream);
  padding: 12px 56px;
  border-bottom: 1px solid var(--line-soft);
}

.nav-left, .nav-right {
  display: flex;
  gap: 36px;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
}
.nav-right { justify-content: flex-end; }
.nav-left a, .nav-right a { color: var(--cream); transition: color 0.5s; }
.nav.scrolled .nav-left a, .nav.scrolled .nav-right a { color: var(--ink); }
.nav-left a.active, .nav-right a.active { color: var(--accent-soft); }
.nav.scrolled .nav-left a.active, .nav.scrolled .nav-right a.active { color: var(--accent); }

.nav-logo {
  text-align: center;
  color: var(--cream);
  transition: color 0.5s;
  line-height: 1;
}
.nav.scrolled .nav-logo { color: var(--ink); }
.nav-logo-monogram {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.nav.scrolled .nav-logo-monogram { font-size: 36px; }
.nav-logo small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.35em;
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.65;
}

.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: inherit; font-size: 18px; }

@media (max-width: 980px) {
  .nav { grid-template-columns: 1fr auto 1fr; padding: 14px 24px; }
  .nav.scrolled { padding: 10px 24px; }
  .nav-left, .nav-right { display: none; }
  .nav-toggle { display: block; color: var(--cream); }
  .nav.scrolled .nav-toggle { color: var(--ink); }
  .nav-logo-monogram { font-size: 36px; }
  .nav.scrolled .nav-logo-monogram { font-size: 28px; }
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ink);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--cream);
  padding: 12px 0;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.mobile-menu a:hover { opacity: 0.7; }
.mobile-menu a.active { color: var(--accent-soft); }
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 28px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}
.nav.mobile-menu-open .nav-toggle { color: var(--cream); z-index: 101; }

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--cream);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: kenburns 20s ease-in-out infinite alternate;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 37, 32, 0.3) 0%, rgba(42, 37, 32, 0.15) 50%, rgba(42, 37, 32, 0.6) 100%);
}
@keyframes kenburns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1%, -1%); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 32px;
}
.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 1.4s ease 0.4s forwards;
}
.hero h1 {
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1.6s ease 0.7s forwards;
}
.hero h1 em { color: var(--cream); opacity: 0.95; }
.hero p {
  font-size: 16px;
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto 56px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 1.6s ease 1s forwards;
}
.hero-link {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--cream);
  opacity: 0;
  animation: fadeUp 1.6s ease 1.2s forwards;
}

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

/* ============ SECTIONS / TYPE ============ */
section { padding: 140px 56px; }
.container { max-width: 1320px; margin: 0 auto; }
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 28px;
  display: inline-block;
}
.section-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 32px;
  max-width: 800px;
}
.section-lede {
  font-size: 17px;
  max-width: 580px;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.7;
}

.discover {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  margin-top: 32px;
}
.discover.discover-light { color: var(--cream); }

@media (max-width: 880px) { section { padding: 90px 24px; } }

/* ============ INTRO ============ */
.intro { text-align: center; padding: 160px 56px 100px; }
.intro h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 300;
  max-width: 780px;
  margin: 32px auto 0;
  line-height: 1.2;
}
.intro h2 em { color: var(--accent); }
.intro-divider { width: 1px; height: 60px; background: var(--line); margin: 60px auto 0; }

/* ============ PROPERTY LIST (AMAN STYLE) ============ */
.collection { padding-bottom: 60px; }
.collection-header { text-align: center; margin-bottom: 100px; }
.collection-header .section-title { margin: 0 auto 28px; }
.collection-header .section-lede { margin: 0 auto; }

.prop-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 140px;
}
.prop-row:nth-child(even) .prop-row-image { order: 2; }

.prop-row-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-darker);
}

.prop-row-image.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  color: var(--ink-soft);
}
.prop-row-image.placeholder .ph-title,
.stay-card-image.placeholder .ph-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-style: italic;
  font-weight: 300;
  opacity: 0.4;
}
.prop-row-image.placeholder .ph-label,
.stay-card-image.placeholder .ph-label {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 16px;
}

.prop-row-image.tile-villa { background: linear-gradient(135deg, #d4c5a8 0%, #b8a37d 100%); }
.prop-row-image.tile-oasis,
.stay-card-image.tile-oasis { background: linear-gradient(135deg, #c5b8a0 0%, #a89878 100%); }
.prop-row-image.tile-wheelhouse { background: linear-gradient(135deg, #8a7560 0%, #6b5a47 100%); }
.prop-row-image.tile-showroom { background: linear-gradient(135deg, #ebe4d6 0%, #d4c5a8 100%); }

.prop-row-content { padding: 0 20px; }
.prop-row-tag {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.prop-row-content h3 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.05;
}
.prop-row-content h3 em { color: var(--accent); }
.prop-row-meta {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.prop-row-desc {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 32px;
}

@media (max-width: 880px) {
  .prop-row { grid-template-columns: 1fr; gap: 40px; margin-bottom: 80px; }
  .prop-row:nth-child(even) .prop-row-image { order: 0; }
  .prop-row-content { padding: 0; }
}

/* ============ STAYS GRID (PROPERTY CARDS) ============ */
.stays { padding: 140px 56px 100px; }
.stays-header {
  text-align: center;
  margin-bottom: 80px;
}
.stays-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  margin: 0 auto;
  max-width: 600px;
}
.stays-header h2 em { color: var(--accent); }

.stays-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 1320px;
  margin: 0 auto;
}

.stay-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.4s ease;
}
a.stay-card:hover { opacity: 0.85; }
a.stay-card:hover .stay-card-image > div,
a.stay-card:hover .stay-card-image {
  transform: scale(1.03);
}

.stay-card-image {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-darker);
  margin-bottom: 28px;
  overflow: hidden;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.stay-card-image.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  color: var(--ink-soft);
}

.stay-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 300;
  margin-bottom: 10px;
  line-height: 1.1;
}
.stay-card-specs {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 400;
}
.stay-card-body p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 440px;
}
.stay-card-body .discover {
  margin-top: 0;
}

@media (max-width: 880px) {
  .stays { padding: 90px 24px 60px; }
  .stays-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============ BOOKING BAND ============ */
.booking-band {
  padding: 120px 56px;
  background: var(--cream-deep);
  text-align: center;
}
.booking-inner {
  max-width: 640px;
  margin: 0 auto;
}
.booking-band h2 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
}
.booking-band h2 em { color: var(--accent); }
.booking-band p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 40px;
}
.booking-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.booking-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.booking-divider {
  font-size: 20px;
  color: var(--ink-faint);
}

@media (max-width: 880px) {
  .booking-band { padding: 80px 24px; }
  .booking-contact { flex-direction: column; gap: 8px; }
  .booking-divider { display: none; }
}

/* ============ FULL BLEED IMAGE / QUOTE ============ */
.fullbleed {
  position: relative;
  height: 80vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--cream);
  overflow: hidden;
}
.fullbleed-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.fullbleed-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(42, 37, 32, 0.4);
}
.fullbleed-inner { position: relative; z-index: 2; max-width: 760px; padding: 0 32px; }
.fullbleed-eyebrow {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.fullbleed-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.3;
}

/* ============ EXPERIENCES (3 COL CARDS) ============ */
.experiences { background: var(--cream-deep); }
.exp-header { text-align: center; margin-bottom: 80px; }
.exp-header .section-title { margin: 0 auto 28px; }
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; }
.exp-card { cursor: pointer; }
.exp-card-image {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-darker);
  margin-bottom: 28px;
  overflow: hidden;
}
.exp-card-image > div {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.exp-card:hover .exp-card-image > div { transform: scale(1.05); }

.exp-card-image.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-faint);
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-style: italic;
}
.exp-card-image.ph-chef { background: linear-gradient(135deg, #d4c5a8 0%, #b5946a 100%); }
.exp-card-image.ph-spa { background: linear-gradient(135deg, #c5b8a0 0%, #8a7560 100%); }
.exp-card-image.ph-boat { background: linear-gradient(135deg, #a0b5b8 0%, #6b8a8d 100%); }
.exp-card-image.ph-event { background: linear-gradient(135deg, #ebe4d6 0%, #c5b095 100%); }
.exp-card-image.ph-romance { background: linear-gradient(135deg, #c8a59d 0%, #a07a72 100%); }
.exp-card-image.ph-photo { background: linear-gradient(135deg, #b5b0a5 0%, #8a8578 100%); }

.exp-card-tag {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.exp-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 14px;
  line-height: 1.1;
}
.exp-card h3 em { color: var(--accent); }
.exp-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 20px;
}

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

/* ============ STORY ============ */
.story { padding: 140px 56px; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.story-image {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-darker);
}
.story h2 { margin-bottom: 32px; font-size: clamp(36px, 4.5vw, 52px); }
.story h2 em { color: var(--accent); }
.story p { color: var(--ink-soft); margin-bottom: 20px; font-size: 16px; line-height: 1.75; }

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

/* ============ BLOG ============ */
.blog-section {
  padding: 100px 24px;
  background: var(--cream);
}

/* ============ FOOTER ============ */
.footer { background: var(--ink); color: var(--cream); padding: 100px 56px 40px; }
.footer-top {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(243, 238, 231, 0.1);
}
.footer-top h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 300;
  margin-bottom: 24px;
}
.footer-top h3 em { color: var(--accent-soft); }
.footer-top p { color: rgba(243, 238, 231, 0.7); margin-bottom: 32px; }
.footer-top a.discover { color: var(--cream); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1320px;
  margin: 0 auto 80px;
}
.footer-brand h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(243, 238, 231, 0.65);
  line-height: 1.7;
  max-width: 320px;
}
.footer-col h5 {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-soft);
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { padding: 6px 0; font-size: 13px; color: rgba(243, 238, 231, 0.75); }

.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(243, 238, 231, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(243, 238, 231, 0.45);
}
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: span 2; }
  .footer { padding: 60px 24px 24px; }
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ FORM ELEMENTS (shared) ============ */
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
  font-weight: 400;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  border-radius: 0;
  transition: border-color 0.3s;
  font-weight: 300;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
  display: inline-block;
  padding: 16px 36px;
  background: var(--ink);
  color: var(--cream);
  border: none;
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.3s;
  font-weight: 400;
  margin-top: 8px;
}
.btn-submit:hover { opacity: 0.85; }

/* Romantic Setup Gallery */
.romantic-gallery {
  padding: 100px 0;
  background: var(--cream-deep);
}
.romantic-photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 60px;
}
.romantic-photo {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .romantic-photo-row {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }
}

/* ============ ADD-ONS ============ */
.addons {
  padding: 140px 56px;
  background: var(--cream);
}
.addons-header {
  text-align: center;
  margin-bottom: 80px;
}
.addons-header .section-title {
  margin: 0 auto 28px;
}
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  max-width: 1100px;
  margin: 0 auto;
}
.addon-card {
  text-align: center;
  padding: 48px 32px;
  border: 1px solid var(--line);
  transition: border-color 0.4s ease;
}
.addon-card:hover {
  border-color: var(--accent-soft);
}
.addon-icon {
  font-size: 40px;
  margin-bottom: 28px;
  line-height: 1;
}
.addon-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1.1;
}
.addon-card h3 em {
  color: var(--accent);
}
.addon-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 24px;
}
.addon-price {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
}
@media (max-width: 880px) {
  .addons { padding: 90px 24px; }
  .addons-grid { grid-template-columns: 1fr; gap: 32px; max-width: 480px; }
}
