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

:root {
  --charcoal: #1a1a1a;
  --charcoal-light: #2d2d2d;
  --coral: #FF6B4A;
  --coral-dark: #e85a3a;
  --coral-light: #ff8a72;
  --off-white: #faf9f7;
  --warm-gray: #f3f1ee;
  --mid-gray: #e8e5e0;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --text-light: #999;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --nav-h: 72px;
  --container: 1200px;
}

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--off-white);
  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: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ──────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 520px;
}

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

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
}
.btn-primary:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 107, 74, 0.3);
}

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

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

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

/* ── Navigation ──────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mid-gray);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 1px 20px rgba(0,0,0,0.06); }

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  color: var(--charcoal);
}
.nav-logo:hover { color: var(--coral); }

.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--coral);
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:not(.nav-cta):hover { color: var(--charcoal); }
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--coral);
  transition: width 0.3s ease;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: var(--charcoal);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--coral); transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--charcoal);
  padding: 4px;
}

/* ── Mobile Menu ─────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.active { opacity: 1; pointer-events: all; }

.mobile-menu-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu-link {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--charcoal);
  padding: 16px 0;
  display: block;
  transition: color 0.2s;
  border-bottom: 1px solid var(--mid-gray);
}
.mobile-menu-link:hover { color: var(--coral); }
.mobile-menu-cta {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--coral);
  margin-top: 8px;
  border-bottom: none;
}
.mobile-menu-divider { height: 32px; }
.mobile-menu-info,
.mobile-menu-phone {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.6;
}
.mobile-menu-phone a { color: var(--coral); }

/* ── Hero ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--mid-gray);
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 24px;
}

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

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

.hero-right {
  position: relative;
}

.hero-img-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.1);
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 640/800;
}

.hero-accent {
  position: absolute;
  bottom: -40px;
  left: -60px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  border: 4px solid var(--off-white);
}
.hero-accent img {
  width: 100%;
  display: block;
}

/* ── Sections ────────────────────────────────────── */
.section {
  padding: 120px 0;
}

/* ── About ───────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 560/420;
}

.about-content .section-title { margin-bottom: 20px; }
.about-content .lead { margin-bottom: 20px; }
.about-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 0.9375rem;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--mid-gray);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--mid-gray);
}

/* ── Divider ─────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: var(--mid-gray);
}
.divider-text {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
  font-weight: 400;
}

/* ── Amenities ───────────────────────────────────── */
.amenities { background: var(--warm-gray); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.amenity-card {
  background: var(--off-white);
  border-radius: 8px;
  padding: 40px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--mid-gray);
}
.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  border-color: transparent;
}

.amenity-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(255, 107, 74, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  margin-bottom: 24px;
}

.amenity-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.amenity-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

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

.location-image { border-radius: 8px; overflow: hidden; }
.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 560/680;
}

.location-content .section-title { margin-bottom: 20px; }
.location-content .lead { margin-bottom: 32px; }

.location-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.location-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text);
}
.location-list li svg { color: var(--coral); flex-shrink: 0; }

/* ── CTA ─────────────────────────────────────────── */
.cta {
  background: var(--charcoal);
  padding: 120px 0;
}
.cta .section-eyebrow { color: var(--coral-light); }
.cta-title { color: #fff; }
.cta-text {
  color: rgba(255,255,255,0.6);
  font-size: 1.0625rem;
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.8;
}
.cta .text-center { max-width: 600px; margin: 0 auto; }
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta .btn-outline-light:hover { border-color: #fff; }

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

.contact-text {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 40px;
  max-width: 400px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

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

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255, 107, 74, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
  font-weight: 400;
}

.contact-item-value {
  font-size: 0.9375rem;
  color: var(--charcoal);
  line-height: 1.6;
}
.contact-item-value a {
  color: var(--coral);
  transition: color 0.2s;
}
.contact-item-value a:hover { color: var(--coral-dark); }

/* ── Form ────────────────────────────────────────── */
.contact-form-wrap {
  background: var(--warm-gray);
  border-radius: 12px;
  padding: 48px;
  border: 1px solid var(--mid-gray);
}

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

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--mid-gray);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--off-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 107, 74, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(255, 107, 74, 0.08);
  border-radius: 6px;
  color: var(--coral-dark);
  font-size: 0.875rem;
}
.form-success.show { display: flex; }
.form-success svg { flex-shrink: 0; margin-top: 2px; }

/* ── Footer ──────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--coral);
  color: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
}
.footer-logo-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
}

.footer-links {
  display: flex;
  gap: 32px;
}
.footer-links a {
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--coral); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}
.footer-contact a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--coral); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ── Scroll Animations ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 48px;
  }
  .hero-right { order: -1; }
  .hero-accent { display: none; }
  .hero-img-wrap img { aspect-ratio: 4/3; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }

  .section { padding: 80px 0; }

  .about-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-image { order: -1; }
  .location-image { order: -1; }

  .about-stats { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }

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

  .contact-form-wrap { padding: 32px 24px; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-contact { text-align: left; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

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

@media (max-width: 480px) {
  .hero-headline { font-size: 2rem; }
  .section-title { font-size: 1.75rem; }
  .amenity-card { padding: 28px 24px; }
}
