/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  color: #1e293b;
  background: #f8fafc;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; font-weight: 700; }

/* ── Tokens ── */
:root {
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(15,23,42,.08);
  --shadow-md: 0 4px 16px rgba(15,23,42,.1);
  --shadow-lg: 0 8px 32px rgba(15,23,42,.12);
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

/* ── Typography ── */
.h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); color: var(--slate-900); margin-bottom: .75rem; }
.h3 { font-size: 1.375rem; color: var(--slate-900); margin-bottom: .5rem; }
.h4 { font-size: 1rem; color: var(--slate-800); margin-bottom: .5rem; text-transform: uppercase; letter-spacing: .06em; font-family: 'Outfit', sans-serif; font-weight: 600; }
.section-eyebrow { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--teal-600); font-weight: 600; margin-bottom: .5rem; }
.section-lead { font-size: 1.1rem; color: var(--slate-600); max-width: 560px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; border-radius: var(--radius); font-weight: 600;
  font-family: 'Outfit', sans-serif; cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--teal-500); outline-offset: 2px; }
.btn-sm { padding: .5rem 1.125rem; font-size: .875rem; }
.btn-lg { padding: .875rem 1.75rem; font-size: 1rem; }
.btn-full { width: 100%; }
.btn-teal { background: var(--teal-600); color: #fff; border-color: var(--teal-600); }
.btn-teal:hover { background: var(--teal-700); border-color: var(--teal-700); box-shadow: var(--shadow-md); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.4); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.22); box-shadow: var(--shadow-md); }
.btn-white { background: #fff; color: var(--teal-700); border-color: #fff; }
.btn-white:hover { background: var(--slate-100); box-shadow: var(--shadow-md); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); box-shadow: var(--shadow-md); }

/* ── Section ── */
section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .section-lead { margin: 0 auto; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15,23,42,.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background var(--transition);
}
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; height: 64px; display: flex; align-items: center; gap: 2rem; }
.logo { display: inline-flex; align-items: center; gap: .6rem; color: #fff; font-weight: 700; font-size: 1.05rem; }
.logo-icon { color: var(--teal-500); }
.logo-text { font-family: 'Playfair Display', serif; }
.nav-menu { display: flex; align-items: center; gap: 1.75rem; margin-left: auto; }
.nav-menu a { color: var(--slate-300); font-size: .9rem; font-weight: 500; transition: color var(--transition); }
.nav-menu a:hover { color: #fff; }
.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: #fff; border-radius: 2px; transition: transform var(--transition), opacity 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 {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,23,42,.82) 0%, rgba(13,148,136,.45) 100%); }
.hero-content {
  position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; padding-top: 64px;
  color: #fff; max-width: 720px;
}
.hero-eyebrow { font-size: .8rem; text-transform: uppercase; letter-spacing: .15em; color: var(--teal-100); font-weight: 600; margin-bottom: 1rem; }
.hero-headline { font-size: clamp(2.25rem, 5.5vw, 4rem); font-weight: 800; line-height: 1.08; margin-bottom: 1.25rem; }
.hero-sub { font-size: 1.15rem; color: var(--slate-200); line-height: 1.7; margin-bottom: 2rem; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2.5rem; }
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 1.5rem; font-weight: 700; color: var(--teal-100); }
.hero-stats span { font-size: .8rem; color: var(--slate-400); text-transform: uppercase; letter-spacing: .08em; }

/* ── INTRO ── */
.intro { background: #fff; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.intro-text .h2 { margin-bottom: 1.25rem; }
.intro-text p { color: var(--slate-600); margin-bottom: 1rem; }
.intro-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* ── CABINS ── */
.cabins { background: var(--slate-50); }
.cabins-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.cabin-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: box-shadow var(--transition), transform var(--transition);
}
.cabin-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.cabin-card img { width: 100%; height: 250px; object-fit: cover; }
.cabin-body { padding: 1.5rem; }
.cabin-desc { color: var(--slate-600); font-size: .95rem; margin-bottom: 1rem; line-height: 1.6; }
.cabin-features { display: flex; flex-wrap: wrap; gap: .5rem .75rem; }
.cabin-features li {
  font-size: .8rem; color: var(--teal-700); background: var(--teal-50);
  padding: .3rem .6rem; border-radius: 20px; font-weight: 500;
}

/* ── AMENITIES ── */
.amenities { background: #fff; }
.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.amenity-card {
  padding: 2rem; border-radius: var(--radius-lg); border: 1px solid var(--slate-200);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.amenity-card:hover { border-color: var(--teal-500); box-shadow: var(--shadow-md); }
.amenity-icon { color: var(--teal-600); margin-bottom: 1rem; }
.amenity-card .h4 { margin-bottom: .5rem; }
.amenity-card p { color: var(--slate-600); font-size: .925rem; }

/* ── GALLERY ── */
.gallery { background: var(--slate-900); padding: 5rem 0; }
.gallery .section-eyebrow { color: var(--teal-400); }
.gallery .h2 { color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.gallery-item:hover img { transform: scale(1.05); }

/* ── LOCATION ── */
.location { background: var(--slate-50); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.location-detail { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.location-icon { color: var(--teal-600); flex-shrink: 0; margin-top: 2px; }
.location-detail strong { display: block; color: var(--slate-800); margin-bottom: .2rem; }
.location-detail p, .location-detail a { color: var(--slate-600); font-size: .95rem; }
.location-detail a:hover { color: var(--teal-600); }
.nearby { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--slate-200); }
.nearby h4 { margin-bottom: .75rem; }
.nearby ul li { color: var(--slate-600); font-size: .925rem; padding: .3rem 0; border-bottom: 1px solid var(--slate-100); }
.nearby ul li:last-child { border-bottom: none; }
.location-map img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; height: 480px; object-fit: cover; }

/* ── CTA ── */
.cta { position: relative; padding: 5rem 0; overflow: hidden; }
.cta-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,148,136,.85) 0%, rgba(15,23,42,.8) 100%); }
.cta .container { position: relative; z-index: 2; text-align: center; }
.cta-content .h2 { color: #fff; margin-bottom: 1rem; }
.cta-content .section-lead { color: var(--slate-200); margin: 0 auto 2rem; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-details { margin-top: 2rem; }
.contact-details li { margin-bottom: 1.25rem; }
.contact-details strong { display: block; color: var(--slate-800); margin-bottom: .15rem; }
.contact-details a { color: var(--teal-600); font-size: .95rem; }
.contact-details a:hover { text-decoration: underline; }
.contact-form-wrap { background: var(--slate-50); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--slate-200); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--slate-700); margin-bottom: .35rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .65rem .875rem; border: 1px solid var(--slate-300);
  border-radius: var(--radius); font-family: 'Outfit', sans-serif; font-size: .95rem;
  color: var(--slate-800); background: #fff; transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--teal-500); box-shadow: 0 0 0 3px rgba(20,184,166,.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: .8rem; color: var(--slate-400); margin-top: .75rem; text-align: center; }
.form-success { text-align: center; padding: 2rem; }
.form-success svg { color: var(--teal-500); margin: 0 auto .75rem; }
.form-success .h3 { color: var(--slate-800); margin-bottom: .5rem; }
.form-success p { color: var(--slate-600); }

/* ── FOOTER ── */
.footer { background: var(--slate-900); color: var(--slate-400); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; }
.logo-light { color: #fff; }
.footer-brand p { margin-top: 1rem; font-size: .9rem; line-height: 1.7; max-width: 280px; }
.footer-links h4, .footer-contact h4 { color: #fff; }
.footer-links ul li { margin-bottom: .5rem; }
.footer-links a { font-size: .9rem; color: var(--slate-400); transition: color var(--transition); }
.footer-links a:hover { color: var(--teal-400); }
.footer-contact p { font-size: .9rem; margin-bottom: .35rem; }
.footer-contact a { color: var(--teal-400); }
.footer-contact a:hover { text-decoration: underline; }
.footer-bottom { border-top: 1px solid var(--slate-800); padding: 1.5rem 0; text-align: center; font-size: .825rem; color: var(--slate-500); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; top: 64px; left: 0; right: 0; background: rgba(15,23,42,.96);
    flex-direction: column; padding: 1.5rem; gap: 1rem;
    transform: translateY(-120%); transition: transform var(--transition);
    backdrop-filter: blur(12px);
  }
  .nav-menu.open { transform: translateY(0); }
  .intro-grid, .location-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cabins-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  section { padding: 3.5rem 0; }
  .amenities-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 280px; }
}
