/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--sand-50);
  color: var(--ink);
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

:root {
  --sand-50: #faf6ef;
  --sand-100: #f3ebdc;
  --sand-200: #e9dcc5;
  --stone-400: #a89b83;
  --stone-600: #7d715c;
  --stone-800: #4a4136;
  --ink: #2a241d;
  --ocean-400: #7fa3ac;
  --ocean-600: #4f7580;
  --ocean-700: #3c5c66;
  --white: #fffdfa;
  --line: rgba(42, 36, 29, 0.14);
  --max: 1240px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --shadow-soft: 0 30px 60px -30px rgba(42, 36, 29, 0.35);
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0; padding: 0; margin: -1px;
}

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--ink); color: var(--white);
  padding: 12px 20px; z-index: 200; border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--ocean-600);
  outline-offset: 2px;
}

/* ---------- Layout helpers ---------- */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ocean-600);
  margin: 0 0 14px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  line-height: 1.08;
  margin: 0 0 16px;
  font-weight: 500;
  color: var(--stone-800);
}
.section-desc { max-width: 620px; color: var(--stone-600); font-size: 1.02rem; }
.section-head { max-width: 760px; margin: 0 auto 56px; padding: 0 32px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 32px; font-weight: 600; font-size: 0.95rem;
  border-radius: 100px; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--ocean-700); color: var(--white); }
.btn-primary:hover { background: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--stone-400); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(42,36,29,0.05); }
.btn-small { padding: 11px 22px; font-size: 0.85rem; }

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: .12s; }
[data-reveal-delay="2"] { transition-delay: .24s; }
[data-reveal-delay="3"] { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 239, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--max); margin: 0 auto; padding: 20px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.wordmark {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--stone-800);
}
.main-nav { display: flex; gap: 30px; flex-wrap: wrap; }
.main-nav a {
  font-size: 0.92rem; font-weight: 500; position: relative; padding: 4px 0;
  color: var(--stone-600);
}
.main-nav a:hover { color: var(--ocean-700); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-cta { display: inline-flex; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); display: block; }

/* ---------- Hero ---------- */
.hero { padding: 64px 32px 100px; }
.hero-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 0.82fr; gap: 64px; align-items: center;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3.4rem, 8vw, 6rem);
  line-height: 0.98;
  margin: 6px 0 26px;
  color: var(--stone-800);
}
.hero-sub { max-width: 460px; color: var(--stone-600); font-size: 1.08rem; margin-bottom: 34px; }
.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-facts { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-facts div { display: flex; flex-direction: column; gap: 2px; }
.hero-facts dt { font-family: var(--serif); font-size: 1.7rem; color: var(--ocean-700); font-weight: 600; }
.hero-facts dd { margin: 0; font-size: 0.82rem; color: var(--stone-600); }

.hero-visual { position: relative; }
.hero-frame {
  margin: 0; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 5;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  background: var(--white); border-radius: 12px; padding: 18px 22px;
  position: absolute; left: -28px; bottom: 32px; max-width: 220px;
  box-shadow: 0 20px 40px -20px rgba(42,36,29,0.3);
}
.hero-badge-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--stone-600); margin: 0 0 4px; }
.hero-badge-value { margin: 0; font-family: var(--serif); font-size: 1.15rem; color: var(--stone-800); font-weight: 600; }

/* ---------- Philosophy ---------- */
.philosophy { background: var(--sand-100); padding: 110px 32px; }
.philosophy-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items: center;
}
.philosophy-frame {
  margin: 0; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 5;
}
.philosophy-frame img { width: 100%; height: 100%; object-fit: cover; }
.philosophy-copy p { color: var(--stone-600); max-width: 560px; }

.value-list { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
.value-list li { display: flex; gap: 18px; align-items: flex-start; }
.value-num {
  font-family: var(--serif); color: var(--ocean-600); font-size: 1rem; font-weight: 600;
  border: 1.5px solid var(--stone-400); border-radius: 50%; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.value-list h3 { font-size: 1.08rem; margin-bottom: 6px; color: var(--stone-800); }
.value-list p { color: var(--stone-600); font-size: 0.92rem; margin: 0; }

/* ---------- Rooms ---------- */
.rooms { padding: 110px 32px; max-width: var(--max); margin: 0 auto; }
.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.room-card {
  display: flex; flex-direction: column; background: var(--white);
  border-radius: 18px; overflow: hidden; border: 1px solid var(--line);
  transition: box-shadow .25s ease, transform .25s ease;
}
.room-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-6px); }
.room-media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.room-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.room-card:hover .room-media img { transform: scale(1.045); }
.tag {
  position: absolute; top: 14px; left: 14px; background: rgba(250,246,239,0.92); color: var(--stone-800);
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 6px 12px; border-radius: 100px;
}
.room-info { padding: 24px 22px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.room-row { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.room-row h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--stone-800); font-weight: 600; }
.room-price { font-weight: 700; font-size: 1.02rem; color: var(--ocean-700); white-space: nowrap; }
.room-price span { font-weight: 500; font-size: 0.78rem; color: var(--stone-600); }
.room-desc { color: var(--stone-600); font-size: 0.92rem; flex: 1; }
.room-meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: 0.78rem; color: var(--stone-600); border-top: 1px solid var(--line); padding-top: 14px; margin-top: 4px; }

/* ---------- Experiences ---------- */
.experiences { background: var(--sand-100); padding: 110px 32px; }
.experience-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.experience-card { display: flex; flex-direction: column; }
.experience-media { border-radius: 16px; overflow: hidden; aspect-ratio: 3 / 4; margin-bottom: 18px; box-shadow: 0 20px 40px -24px rgba(42,36,29,0.35); }
.experience-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.experience-card:hover .experience-media img { transform: scale(1.05); }
.experience-card h3 { font-family: var(--serif); font-size: 1.2rem; color: var(--stone-800); font-weight: 600; margin-bottom: 6px; }
.experience-card p { color: var(--stone-600); font-size: 0.9rem; margin: 0; }

/* ---------- Quiet moment divider ---------- */
.quiet-moment { position: relative; height: 380px; overflow: hidden; }
.quiet-moment-bg { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.quiet-moment-overlay {
  position: absolute; inset: 0; background: linear-gradient(180deg, rgba(42,36,29,0.15), rgba(42,36,29,0.42));
  display: flex; align-items: center; justify-content: center; padding: 32px;
}
.quiet-moment-quote {
  font-family: var(--serif); font-style: italic; color: var(--white);
  font-size: clamp(1.5rem, 3.4vw, 2.4rem); max-width: 760px; text-align: center; margin: 0;
  line-height: 1.35;
}

/* ---------- Reviews ---------- */
.reviews { padding: 110px 32px; max-width: var(--max); margin: 0 auto; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review-card {
  margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: 18px;
  padding: 32px 28px; display: flex; flex-direction: column; gap: 16px;
}
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--ocean-600); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-family: var(--serif);
  font-size: 1.1rem; font-weight: 600;
}
.review-card blockquote { margin: 0; color: var(--stone-800); font-size: 1rem; line-height: 1.6; }
.review-card figcaption { font-size: 0.85rem; color: var(--stone-600); font-weight: 600; }
.review-card figcaption span { font-weight: 400; }

/* ---------- Booking ---------- */
.booking { background: var(--stone-800); color: var(--sand-100); padding: 110px 32px; }
.booking-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; }
.booking .eyebrow { color: var(--ocean-400); }
.booking .section-title { color: var(--white); }
.booking-copy p { color: rgba(250,246,239,0.72); max-width: 460px; }
.booking-points { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.booking-points li {
  padding-left: 26px; position: relative; font-size: 0.92rem; color: rgba(250,246,239,0.85);
}
.booking-points li::before {
  content: ''; position: absolute; left: 0; top: 8px; width: 14px; height: 1.5px; background: var(--ocean-400);
}

.booking-form { background: var(--sand-50); border-radius: 20px; padding: 36px; }
.booking-form h3 { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 22px; color: var(--stone-800); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 16px; margin-bottom: 24px; }
.form-row { display: flex; flex-direction: column; }
.form-row-full { grid-column: 1 / -1; }
.form-row label { font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--stone-800); }
.label-optional { font-weight: 400; color: var(--stone-600); }
.form-row input, .form-row select, .form-row textarea {
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 8px; background: var(--white);
  resize: vertical; color: var(--ink);
}
.form-row input:focus-visible, .form-row select:focus-visible, .form-row textarea:focus-visible {
  outline: 3px solid var(--ocean-400); outline-offset: 1px; border-color: var(--ocean-600);
}
.form-row.has-error input, .form-row.has-error select, .form-row.has-error textarea {
  border-color: #b0503d;
}
.field-error { color: #a8452f; font-size: 0.8rem; margin: 6px 0 0; min-height: 0; font-weight: 600; }
.field-error:empty { margin: 0; }
.field-success { font-size: 0.9rem; margin: 16px 0 0; font-weight: 600; color: #2f6f4f; }
.field-success:empty { margin: 0; }

/* ---------- Contact ---------- */
.contact { padding: 110px 32px; max-width: var(--max); margin: 0 auto; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-block { margin-bottom: 26px; }
.contact-block h3 { font-size: 0.95rem; margin-bottom: 8px; color: var(--stone-800); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; }
.contact-block p { margin: 0 0 3px; color: var(--stone-600); font-size: 0.95rem; }
.contact-block a:hover { color: var(--ocean-700); }
.map-block {
  margin-top: 24px; border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  position: relative; background: var(--white);
}
.map-lines { width: 100%; display: block; }
.map-label {
  position: absolute; bottom: 12px; left: 14px; background: var(--white); padding: 6px 12px;
  font-size: 0.75rem; font-weight: 600; border-radius: 100px; border: 1px solid var(--line); color: var(--stone-800);
}

.contact-form {
  background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 34px;
}
.contact-form h3 { font-family: var(--serif); margin-bottom: 22px; font-size: 1.35rem; color: var(--stone-800); }
.contact-form .form-row { margin-bottom: 18px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--stone-800); color: var(--sand-200); padding: 70px 32px 30px; }
.footer-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.2fr 2fr; gap: 50px; }
.footer-brand .wordmark { color: var(--white); }
.footer-brand p { color: rgba(250,246,239,0.6); margin-top: 14px; max-width: 320px; font-size: 0.9rem; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-cols h4 { color: var(--white); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer-cols a { display: block; margin-bottom: 12px; font-size: 0.9rem; color: rgba(250,246,239,0.65); }
.footer-cols a:hover { color: var(--ocean-400); }
.footer-bottom {
  max-width: var(--max); margin: 50px auto 0; padding-top: 24px; border-top: 1px solid rgba(250,246,239,0.14);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: 0.78rem; color: rgba(250,246,239,0.5);
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; }
  .philosophy-inner { grid-template-columns: 1fr; }
  .philosophy-frame { max-width: 440px; margin: 0 auto; }
  .room-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0; background: var(--sand-50);
    flex-direction: column; gap: 0; border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
  }
  .main-nav.is-open { max-height: 420px; }
  .main-nav a { padding: 14px 24px; border-top: 1px solid var(--line); }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }

  .hero { padding: 40px 20px 64px; }
  .hero-title { font-size: clamp(2.8rem, 14vw, 4rem); }
  .hero-badge { left: 12px; bottom: -20px; padding: 14px 18px; }

  .philosophy, .rooms, .experiences, .reviews, .booking, .contact { padding-left: 20px; padding-right: 20px; }
  .philosophy { padding-top: 90px; padding-bottom: 90px; }
  .room-grid, .experience-grid, .review-grid { grid-template-columns: 1fr; }
  .section-head { padding: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .booking-form { padding: 26px; }
  .contact-form { padding: 26px; }
  .site-header .header-inner { padding: 16px 20px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .quiet-moment { height: 280px; }
}
