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

:root {
  --charcoal:    #2C2C2C;
  --charcoal-deep: #1A1A1A;
  --coral:       #F4845F;
  --coral-light: #F9A88A;
  --coral-pale:  #FDE8E0;
  --sand:        #F7F3EF;
  --sand-warm:   #F0EBE5;
  --cream:       #FDFCFA;
  --warm-gray:   #8A8580;
  --light-gray:  #E8E4DF;
  --white:       #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 3px rgba(44,44,44,.06), 0 1px 2px rgba(44,44,44,.04);
  --shadow-md: 0 4px 16px rgba(44,44,44,.07), 0 2px 4px rgba(44,44,44,.04);
  --shadow-lg: 0 12px 40px rgba(44,44,44,.10), 0 4px 12px rgba(44,44,44,.05);
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

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

/* ── Typography ─────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; color: var(--charcoal); }

.accent-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--coral);
}

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

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--charcoal);
}

.section-sub {
  font-size: 1.1rem;
  color: var(--warm-gray);
  max-width: 520px;
  line-height: 1.7;
}

.section-header { margin-bottom: 64px; }
.section-header--center { text-align: center; }
.section-header--center .section-sub { margin: 0 auto; }

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 50px;
  transition: all .25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(244,132,95,.3);
}
.btn-primary:hover {
  background: #e87450;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244,132,95,.4);
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--light-gray);
}
.btn-ghost:hover {
  border-color: var(--coral);
  color: var(--coral);
}

.btn-ghost-light {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
  backdrop-filter: blur(4px);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,.25);
  border-color: var(--white);
}

.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Navigation ─────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.nav.scrolled {
  background: rgba(253,252,250,.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.nav.scrolled .nav-logo { color: var(--charcoal); }
.nav.scrolled .nav-links a { color: var(--charcoal); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  transition: color .3s ease;
}
.nav-logo svg { color: var(--coral-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 400;
  color: rgba(255,255,255,.85);
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--coral); }

.nav-cta {
  background: var(--coral) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 500 !important;
  transition: background .2s ease, transform .2s ease !important;
}
.nav-cta:hover { background: #e87450 !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s ease;
}
.nav.scrolled .nav-toggle span { background: var(--charcoal); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--charcoal-deep) 0%, #3a3530 50%, #4a3f38 100%);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 0;
}

.hero-content { padding-right: 16px; }

.hero-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--coral-light);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--coral-light);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
}
.hero-stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
}

.hero-visual { position: relative; }
.hero-img-stack { position: relative; }

.hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-main {
  width: 100%;
  aspect-ratio: 3/4;
}
.hero-img-main img, .hero-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-accent {
  position: absolute;
  bottom: -32px;
  left: -40px;
  width: 58%;
  border: 5px solid var(--charcoal-deep);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-badge {
  position: absolute;
  top: 24px;
  right: -16px;
  background: var(--coral);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(244,132,95,.4);
}

.hero-wave {
  margin-top: auto;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ── Sections ───────────────────────────────────── */
.section-accommodations {
  background: var(--sand);
  padding: 100px 0;
}
.section-location {
  background: var(--cream);
  padding: 100px 0;
}
.section-amenities {
  background: var(--cream);
  padding: 100px 0;
}
.section-gallery {
  background: var(--sand);
  padding: 100px 0;
}
.section-quote {
  background: var(--charcoal);
  padding: 100px 0;
}
.section-cta {
  background: linear-gradient(135deg, var(--coral) 0%, #e87450 100%);
  padding: 100px 0;
}
.section-contact {
  background: var(--cream);
  padding: 100px 0;
}

/* ── Accommodations ─────────────────────────────── */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.room-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 14/10;
}
.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.room-card:hover .room-img img { transform: scale(1.05); }

.room-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--coral);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.room-body { padding: 28px; }
.room-name {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.room-desc {
  font-size: .9rem;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}
.room-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.room-features li {
  font-size: .8rem;
  color: var(--charcoal);
  padding-left: 16px;
  position: relative;
}
.room-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  background: var(--coral);
  border-radius: 50%;
}

/* ── Location ───────────────────────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.location-body {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 36px;
}

.location-features { display: flex; flex-direction: column; gap: 18px; }
.loc-feat {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .95rem;
  color: var(--charcoal);
}
.loc-feat svg { color: var(--coral); flex-shrink: 0; }

.location-visual { position: relative; }
.location-map-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 7/8;
}
.location-map-img img { width: 100%; height: 100%; object-fit: cover; }

.location-map-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: var(--charcoal);
}
.location-map-card svg { color: var(--coral); }

/* ── Amenities ──────────────────────────────────── */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.amenity-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  border: 1px solid transparent;
}
.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--coral-pale);
}

.amenity-icon {
  width: 52px;
  height: 52px;
  background: var(--coral-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  margin-bottom: 20px;
  transition: background .3s ease;
}
.amenity-card:hover .amenity-icon { background: var(--coral); color: var(--white); }

.amenity-name {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.amenity-desc {
  font-size: .88rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* ── Gallery ────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-item--tall { grid-row: span 2; }
.gallery-item:nth-child(1) { grid-column: 1 / 6; }
.gallery-item:nth-child(2) { grid-column: 6 / 9; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; }
.gallery-item:nth-child(4) { grid-column: 1 / 5; }
.gallery-item:nth-child(5) { grid-column: 5 / 9; }

/* ── Quote ──────────────────────────────────────── */
.quote-wrap {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.quote-mark {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--coral);
}
blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 28px;
}
blockquote em { color: var(--coral-light); font-style: italic; }

.quote-attribution {
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── CTA ────────────────────────────────────────── */
.cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 16px;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 20px;
}
.cta-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  margin-bottom: 40px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.contact-body {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--coral-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  flex-shrink: 0;
}
.contact-label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 4px;
}
.contact-value {
  display: block;
  font-size: .95rem;
  color: var(--charcoal);
  line-height: 1.5;
}
.contact-link {
  font-size: .95rem;
  color: var(--coral);
  font-weight: 500;
  transition: color .2s ease;
}
.contact-link:hover { color: #e87450; text-decoration: underline; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-title {
  font-size: 1.4rem;
  margin-bottom: 28px;
}

.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;
  color: var(--charcoal);
  margin-bottom: 6px;
  letter-spacing: .04em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color .2s ease, box-shadow .2s ease;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(244,132,95,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--light-gray); }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: #E8F5E9;
  border-radius: var(--radius-sm);
  color: #2E7D32;
  font-size: .88rem;
  font-weight: 500;
}
.form-success svg { color: #2E7D32; flex-shrink: 0; }

/* ── Footer ─────────────────────────────────────── */
.footer {
  background: var(--charcoal-deep);
  color: rgba(255,255,255,.6);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo { color: var(--white); margin-bottom: 16px; }
.footer-logo svg { color: var(--coral-light); }
.footer-tagline {
  font-size: .9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 20px;
}

.footer-nav ul,
.footer-contact ul { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a,
.footer-contact a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color .2s ease;
}
.footer-nav a:hover,
.footer-contact a:hover { color: var(--coral-light); }
.footer-contact li { font-size: .9rem; }

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

/* ── Scroll Reveal ──────────────────────────────── */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* ── Mobile Menu ────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253,252,250,.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform .35s ease, opacity .35s ease;
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a {
    color: var(--charcoal) !important;
    font-size: 1rem;
  }
  .nav-toggle { display: flex; }
  .nav-toggle.active span { background: var(--charcoal) !important; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 32px;
  }
  .hero-content { padding-right: 0; order: 2; }
  .hero-visual { order: 1; }
  .hero-img-accent { display: none; }
  .hero-img-main { aspect-ratio: 4/3; }
  .hero-badge { right: 16px; }
  .hero-stats { gap: 16px; }

  .rooms-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .location-map-card { right: 0; }
  .amenities-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: span 1; }
  .gallery-item:nth-child(2) { grid-column: 1 / 2; }
  .gallery-item:nth-child(3) { grid-column: 2 / 3; }
  .gallery-item:nth-child(4) { grid-column: 1 / 2; }
  .gallery-item:nth-child(5) { grid-column: 2 / 3; grid-row: span 2; }

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

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-stat-divider { display: none; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}

/* ── Reduced Motion ─────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
  }
  .reveal.revealed {
    opacity: 1;
    transform: none;
  }
}
