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

:root {
  --charcoal:    #2C2C2C;
  --charcoal-deep: #1A1A1A;
  --charcoal-light: #3D3D3D;
  --coral:       #C77A60;
  --coral-dark:  #A8624C;
  --coral-light: #D4956F;
  --cream:       #F5F0EB;
  --cream-dark:  #EDE6DD;
  --white:       #FEFCFA;
  --text:        #2C2C2C;
  --text-muted:  #6B6560;
  --text-light:  #9A9490;
  --serif:       'Lora', Georgia, serif;
  --sans:        'Inter', system-ui, sans-serif;
  --radius:      6px;
  --shadow:      0 2px 16px rgba(44,44,44,.08);
  --shadow-lg:   0 8px 32px rgba(44,44,44,.12);
  --transition:  .3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--coral); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--coral-dark); }
ul { list-style: none; }
address { font-style: normal; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── TYPOGRAPHY ───────────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}

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

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ─── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .02em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn--coral {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.btn--coral:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn--outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--outline-light:hover {
  background: var(--white);
  color: var(--charcoal);
}

.btn--full { width: 100%; justify-content: center; }

/* ─── HEADER ───────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(254,252,250,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(44,44,44,.06);
  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;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
}
.logo:hover { color: var(--charcoal); }

.logo--light { color: var(--white); }

.logo-mark { color: var(--coral); }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}
.main-nav a:not(.btn):hover { color: var(--charcoal); }
.main-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--coral);
  transition: width var(--transition);
}
.main-nav a:not(.btn):hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background: var(--cream);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-block: 60px;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--coral);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

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

.hero-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 68/86;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 38px;
  border: 2px solid var(--text-light);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero-scroll span {
  width: 3px;
  height: 8px;
  background: var(--coral);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: .3; transform: translateY(8px); }
}

/* ─── SECTION COMMON ───────────────────────────────────────── */
.section {
  padding: 96px 0;
}

/* ─── ABOUT ────────────────────────────────────────────────── */
.about { background: var(--white); }

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

.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-img-main {
  grid-column: 1 / -1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-side {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: -40px;
  align-self: end;
}
.about-img-side img { width: 100%; height: 100%; object-fit: cover; }

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-features {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--charcoal);
}
.feat-icon { color: var(--coral); flex-shrink: 0; }

/* ─── ROOMS ────────────────────────────────────────────────── */
.rooms { background: var(--cream); }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.room-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.room-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.room-img {
  overflow: hidden;
  aspect-ratio: 56/40;
}
.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.room-card:hover .room-img img { transform: scale(1.04); }

.room-body { padding: 28px 24px; }

.room-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.room-desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}
.room-amenities li {
  font-size: .8rem;
  color: var(--text-light);
  padding: 4px 0;
  border-top: 1px solid var(--cream-dark);
}

.rooms-cta { text-align: center; }

/* ─── EXPERIENCE ───────────────────────────────────────────── */
.experience { background: var(--charcoal-deep); color: var(--white); }
.experience .section-eyebrow { color: var(--coral-light); }
.experience .section-title { color: var(--white); }

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

.exp-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 32px 24px;
  transition: background var(--transition), transform var(--transition);
}
.exp-card:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-3px);
}

.exp-icon {
  color: var(--coral-light);
  margin-bottom: 20px;
}

.exp-card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--white);
}

.exp-card p {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
}

/* ─── LOCATION ─────────────────────────────────────────────── */
.location { background: var(--white); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.location-address {
  font-size: 1.05rem;
  color: var(--charcoal);
  margin: 20px 0;
  line-height: 1.8;
}

.location-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  color: var(--text);
  text-decoration: none;
  transition: color var(--transition);
}
.contact-link:hover { color: var(--coral); }
.contact-link svg { color: var(--coral); flex-shrink: 0; }

.location-note {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.location-map {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 6/5;
}
.location-map iframe { width: 100%; height: 100%; }

/* ─── CONTACT ──────────────────────────────────────────────── */
.contact {
  background: var(--charcoal-deep);
  color: var(--white);
}
.contact .section-eyebrow { color: var(--coral-light); }
.contact .section-title { color: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info p {
  color: rgba(255,255,255,.65);
  margin-bottom: 28px;
  line-height: 1.8;
}

.contact-direct {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Form */
.contact-form-wrap {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 36px;
}

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

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

.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 8px;
}

.optional {
  font-size: .75rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255,255,255,.3);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.07);
  color: var(--white);
  font-family: var(--sans);
  font-size: .9rem;
  transition: border-color var(--transition), background var(--transition);
  appearance: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,.3);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--coral);
  background: rgba(255,255,255,.1);
}
.contact-form select option { background: var(--charcoal); color: var(--white); }
.contact-form textarea { resize: vertical; min-height: 100px; }

.form-note {
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  margin-top: 14px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
  color: var(--white);
}
.form-success svg { color: var(--coral-light); margin-bottom: 16px; }
.form-success h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.form-success p { color: rgba(255,255,255,.6); font-size: .95rem; }

/* ─── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal-deep);
  color: rgba(255,255,255,.6);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand p {
  margin-top: 14px;
  font-size: .9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--coral-light); }

.footer-contact address {
  font-size: .9rem;
  line-height: 1.8;
  margin-bottom: 12px;
}
.footer-contact p { font-size: .875rem; margin-bottom: 6px; }
.footer-contact a { color: rgba(255,255,255,.5); }
.footer-contact a:hover { color: var(--coral-light); }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}

/* ─── ANIMATIONS ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { gap: 32px; }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(254,252,250,.98);
    backdrop-filter: blur(12px);
    padding: 24px;
    border-bottom: 1px solid rgba(44,44,44,.06);
    box-shadow: var(--shadow);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 20px;
  }
  .main-nav a { font-size: 1rem; color: var(--text); }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding-block: 40px;
  }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-img-wrap { max-width: 480px; margin: 0 auto; aspect-ratio: 4/3; }
  .hero-scroll { display: none; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-text { order: -1; }
  .about-features { grid-template-columns: 1fr; }

  .rooms-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }

  .exp-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .location-grid { grid-template-columns: 1fr; }
  .location-map { aspect-ratio: 16/9; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .container { padding: 0 18px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .contact-direct { flex-direction: column; }
  .contact-direct .btn { width: 100%; justify-content: center; }
}
