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

:root {
  --charcoal: #2C2C2C;
  --charcoal-light: #3D3D3D;
  --charcoal-dark: #1A1A1A;
  --coral: #F2735A;
  --coral-light: #F48B72;
  --coral-dark: #E85D45;
  --cream: #FAF8F6;
  --cream-dark: #F3F0EC;
  --white: #FFFFFF;
  --gray-100: #F7F7F7;
  --gray-200: #E8E8E8;
  --gray-300: #D1D1D1;
  --gray-400: #A0A0A0;
  --gray-500: #6B6B6B;
  --gray-600: #4A4A4A;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

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

/* ── Typography ─────────────────────────────────────────── */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--coral);
}

.lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-500);
  max-width: 540px;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}

.btn-primary:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242, 115, 90, 0.25);
}

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

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-outline-light:hover {
  background: var(--white);
  color: var(--charcoal);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.1rem 2.4rem;
  font-size: 0.85rem;
}

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

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 2rem;
  transition: all 0.4s var(--ease-out);
  background: transparent;
}

.nav.scrolled {
  background: rgba(250, 248, 246, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  transition: color 0.3s;
}

.nav.scrolled .nav-logo { color: var(--charcoal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--coral);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--white); }

.nav.scrolled .nav-links a { color: var(--gray-500); }
.nav.scrolled .nav-links a:hover { color: var(--charcoal); }

.nav-cta {
  border: 1px solid rgba(255,255,255,0.3) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  transition: all 0.3s var(--ease-out) !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--coral) !important;
  border-color: var(--coral) !important;
  color: var(--white) !important;
}

.nav.scrolled .nav-cta {
  border-color: var(--charcoal) !important;
  color: var(--charcoal) !important;
}

.nav.scrolled .nav-cta:hover {
  background: var(--coral) !important;
  border-color: var(--coral) !important;
  color: var(--white) !important;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.nav.scrolled .nav-toggle span { background: var(--charcoal); }

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--charcoal);
  padding: 4px;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.mobile-link {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--charcoal);
  padding: 0.6rem 1rem;
  transition: color 0.3s;
}

.mobile-link:hover { color: var(--coral); }

.mobile-cta {
  margin-top: 1.5rem;
  font-family: var(--font-sans) !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral) !important;
  border: 1px solid var(--coral);
  padding: 0.8rem 2rem !important;
  border-radius: 2px;
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--charcoal-dark);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
}

.hero-content { color: var(--white); }

.hero-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.75rem;
  color: var(--white);
}

.hero-headline em {
  font-style: italic;
  color: var(--coral);
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.6);
  max-width: 460px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0 1.5rem;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

.hero-image {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.hero-img-wrap {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 2px;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--coral);
  border-radius: 2px;
  z-index: -1;
  opacity: 0.5;
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem 2rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--coral);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { left: -100%; }
  50% { left: 0; }
  100% { left: 100%; }
}

/* ── About ──────────────────────────────────────────────── */
.about {
  padding: 8rem 0;
  background: var(--cream);
}

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

.about-text .section-title { margin-bottom: 1.5rem; }

.about-text .lead { margin-bottom: 1.25rem; }

.about-text p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  color: var(--charcoal);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
}

.about-signature svg { opacity: 0.4; }

.about-image {
  overflow: hidden;
  border-radius: 2px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.about-image:hover img { transform: scale(1.02); }

/* ── Divider ────────────────────────────────────────────── */
.divider {
  padding: 0;
}

.divider-line {
  width: 100%;
  height: 1px;
  background: var(--gray-200);
}

/* ── Stay / Amenities ───────────────────────────────────── */
.stay {
  padding: 8rem 0;
  background: var(--white);
}

.stay-header {
  text-align: center;
  margin-bottom: 4rem;
}

.stay-header .section-title { margin-bottom: 0.5rem; }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.amenity-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--gray-200);
  border-radius: 2px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.amenity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.amenity-card:hover::before { transform: scaleX(1); }

.amenity-card:hover {
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}

.amenity-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--coral);
}

.amenity-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.amenity-card p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--gray-500);
}

.stay-image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stay-img {
  overflow: hidden;
  border-radius: 2px;
}

.stay-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.stay-img:hover img { transform: scale(1.03); }

/* ── Location ───────────────────────────────────────────── */
.location {
  padding: 8rem 0;
  background: var(--cream);
}

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

.location-list {
  list-style: none;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.location-list li {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
}

.location-list li:last-child { border-bottom: none; }

.loc-dist {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--coral);
  min-width: 70px;
}

.loc-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.location-map {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.location-map iframe {
  width: 100%;
  height: 520px;
}

/* ── CTA ────────────────────────────────────────────────── */
.cta {
  padding: 8rem 0;
  background: var(--charcoal-dark);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(242,115,90,0.08);
  border-radius: 50%;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(242,115,90,0.06);
  border-radius: 50%;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1.25rem;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.cta-title em {
  font-style: italic;
  color: var(--coral);
}

.cta-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2.5rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Contact ────────────────────────────────────────────── */
.contact {
  padding: 8rem 0;
  background: var(--white);
}

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

.contact-details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
  border-radius: 2px;
  color: var(--coral);
  flex-shrink: 0;
}

.contact-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.25rem;
}

.contact-item span,
.contact-item a {
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: color 0.3s;
}

.contact-item a:hover { color: var(--coral); }

/* Form */
.contact-form-wrap {
  background: var(--cream);
  padding: 3rem;
  border-radius: 2px;
}

.contact-form { display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group { display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.form-group .optional {
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gray-400);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.3s;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--coral);
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem;
  text-align: center;
  color: var(--coral);
}

.form-success svg { color: var(--coral); }

.form-success p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  padding: 5rem 0 0;
  background: var(--charcoal-dark);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  padding-bottom: 4rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.4);
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.25rem;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a,
.footer-contact a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover { color: var(--coral); }

.footer-contact li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

/* ── Animations ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { gap: 2rem; padding-top: 7rem; }
  .about-grid,
  .location-grid,
  .contact-grid { gap: 3rem; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}

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

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 6rem;
    padding-bottom: 2rem;
  }

  .hero-image {
    min-height: 400px;
    order: -1;
  }

  .hero-accent { display: none; }

  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .hero-stat-divider { display: none; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }

  .amenities-grid { grid-template-columns: 1fr; }

  .stay-image-row { grid-template-columns: 1fr; }

  .location-grid { grid-template-columns: 1fr; }
  .location-map { order: -1; }
  .location-map iframe { height: 300px; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 2rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .nav-inner { padding: 0; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }

  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}
