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

:root {
  --terracotta:    #C07050;
  --terracotta-dk: #A35A3E;
  --sand:          #F2E6D9;
  --sand-light:    #FAF5F0;
  --sand-mid:      #EDE0D4;
  --cream:         #FFF9F5;
  --text:          #3A2A24;
  --text-muted:    #7A6458;
  --white:         #FFFFFF;
  --radius:        12px;
  --radius-sm:     8px;
  --shadow:        0 4px 24px rgba(160,90,60,.08);
  --shadow-lg:     0 12px 48px rgba(160,90,60,.12);
  --font-serif:    'DM Serif Display', Georgia, serif;
  --font-sans:     'Inter', system-ui, sans-serif;
  --transition:    .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--terracotta); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--terracotta-dk); }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ─────────────────────────────────── */
.eyebrow {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.eyebrow-soft {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 20px;
}
.section-title--light { color: var(--white); }
.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}
.section-desc--light { color: rgba(255,255,255,.8); }
.center { text-align: center; }

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 500;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn--primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.btn--primary:hover { background: var(--terracotta-dk); border-color: var(--terracotta-dk); color: var(--white); }
.btn--secondary {
  background: transparent;
  color: var(--terracotta);
  border-color: var(--terracotta);
}
.btn--secondary:hover { background: var(--terracotta); color: var(--white); }
.btn--tertiary {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn--tertiary:hover { background: var(--white); color: var(--terracotta); }
.btn--light {
  background: var(--white);
  color: var(--terracotta);
  border-color: var(--white);
}
.btn--light:hover { background: var(--sand-light); }

/* ── Header ─────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,249,245,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand-mid);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.main-nav a {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: all var(--transition);
}
.main-nav a:hover,
.main-nav a.active { color: var(--terracotta); background: var(--sand-light); }

/* ── Mobile Nav Toggle ──────────────────────────── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger { position: relative; }
.hamburger::before { content: ''; position: absolute; top: -7px; left: 0; }
.hamburger::after { content: ''; position: absolute; top: 7px; left: 0; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg); top: 0; }
.nav-toggle[aria-expanded="true"] .hamburger::after { transform: rotate(-45deg); top: 0; }

/* ── Hero ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--sand-light) 0%, var(--sand) 50%, var(--sand-mid) 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/172872/pexels-photo-172872.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center/cover no-repeat;
  opacity: .18;
  filter: blur(2px);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-top: 72px;
}
.hero-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.scroll-indicator:hover { color: var(--terracotta); }
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--terracotta), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── Sections ───────────────────────────────────── */
.section--light { padding: 100px 0; background: var(--white); }
.section--sand { padding: 100px 0; background: var(--sand-light); }
.section--terracotta { padding: 100px 0; background: linear-gradient(160deg, var(--terracotta) 0%, var(--terracotta-dk) 100%); }
.section-header { margin-bottom: 60px; }

/* ── Split Layout ───────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-body { max-width: 480px; }
.split-body p { color: var(--text-muted); margin-bottom: 16px; }
.image-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 6/4.4;
}
.image-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ── Feature List ───────────────────────────────── */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .95rem;
  color: var(--text);
}
.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--terracotta);
}
.icon--lg { width: 28px; height: 28px; color: var(--white); flex-shrink: 0; }

/* ── Room Cards ─────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.room-card-img { aspect-ratio: 56/38; overflow: hidden; }
.room-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.room-card:hover .room-card-img img { transform: scale(1.05); }
.room-card-body { padding: 28px; }
.room-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--text);
}
.room-card-body p { font-size: .9rem; color: var(--text-muted); margin-bottom: 18px; line-height: 1.6; }
.room-amenities {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.room-amenities li {
  font-size: .78rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
  background: var(--sand-light);
  color: var(--terracotta);
}
.note-text {
  text-align: center;
  font-size: .88rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ── Location / Map ─────────────────────────────── */
.location-details {
  font-style: normal;
  margin-top: 24px;
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.link-primary { color: var(--terracotta); font-weight: 500; }
.link-primary:hover { color: var(--terracotta-dk); text-decoration: underline; }
.map-placeholder {
  background: linear-gradient(135deg, var(--sand) 0%, var(--sand-mid) 100%);
  border-radius: var(--radius);
  padding: 48px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow);
}
.map-icon { width: 48px; height: 48px; color: var(--terracotta); }
.map-placeholder p { font-size: .95rem; color: var(--text-muted); }

/* ── Contact Grid ───────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: .95rem;
  padding: 14px 18px;
  border: 1.5px solid var(--sand-mid);
  border-radius: var(--radius-sm);
  background: var(--sand-light);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(192,112,80,.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); opacity: .6; }
.form-success {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.15);
  color: var(--white);
  font-size: .9rem;
  text-align: center;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; padding-top: 8px; }
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 24px;
  transition: background var(--transition);
}
.info-card:hover { background: rgba(255,255,255,.18); }
.info-card strong { display: block; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 6px; }
.info-card a,
.info-card span { font-size: .95rem; color: var(--white); line-height: 1.6; }
.info-card a:hover { text-decoration: underline; }

/* ── Footer ─────────────────────────────────────── */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,.6);
  padding: 48px 0 36px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer-brand .logo-mark { width: 44px; height: 44px; font-size: 1.4rem; }
.footer-brand strong { font-family: var(--font-serif); font-size: 1.2rem; color: var(--white); }
.footer-brand p { font-size: .85rem; margin: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: center; }
.footer-links a {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.35); margin: 0; }

/* ── Animations ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse { direction: ltr; }
  .split-body { max-width: 100%; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255,249,245,.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--sand-mid);
    padding: 16px 24px 24px;
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .main-nav a { padding: 14px 16px; border-radius: var(--radius-sm); }
  .main-nav a:last-child { margin-top: 8px; }
  .card-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .section--light, .section--sand, .section--terracotta { padding: 72px 0; }
  .contact-form { padding: 28px 20px; }
}
