@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --ink:        #0e0c0a;
  --ink-soft:   #1a1713;
  --ink-mid:    #2c2820;
  --surface:    #f9f5ee;
  --surface-2:  #f3ece0;
  --gold:       #c9a96e;
  --gold-light: #e2c99a;
  --gold-pale:  rgba(201, 169, 110, 0.12);
  --ivory:      #fdf8f0;
  --emerald:    #1a4a3e;
  --emerald-soft: rgba(26, 74, 62, 0.08);
  --muted:      #7a6e5f;
  --muted-light:#a9998a;
  --border:     rgba(201, 169, 110, 0.22);
  --border-dark:rgba(201, 169, 110, 0.35);
  --shadow:     0 32px 80px rgba(14, 12, 10, 0.28);
  --shadow-sm:  0 8px 32px rgba(14, 12, 10, 0.14);
  --r-lg: 2px;
  --r-pill: 999px;
  --max: 1100px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  cursor: default;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
/* ══════════════════════════════════════
   HERO NAV (inside hero, no separate header)
══════════════════════════════════════ */
.hero-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  padding: 24px 40px;
}

.hero-nav a:not(.btn) {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(253, 248, 240, 0.6);
  transition: color 0.2s;
}

.hero-nav a:not(.btn):hover { color: var(--gold-light); }

.hero-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.hero-logo-img {
  width: auto;
  max-width: 180px;
  height: auto;
  filter: drop-shadow(0 4px 18px rgba(201, 169, 110, 0.4)) brightness(1.05);
  transition: filter 0.3s ease;
}

.hero-logo-img:hover {
  filter: drop-shadow(0 6px 24px rgba(201, 169, 110, 0.6)) brightness(1.12);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ivory);
  transition: transform 0.3s, opacity 0.3s;
}

/* ── BUTTONS ── */
.btn {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: var(--r-pill);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-dark);
  background: transparent;
  color: var(--gold-light);
  white-space: nowrap;
}

.btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(201, 169, 110, 0.3);
}

.btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  box-shadow: 0 8px 28px rgba(201, 169, 110, 0.25);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 16px 48px rgba(201, 169, 110, 0.4);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(253, 248, 240, 0.2);
  color: var(--ivory);
}

.btn-ghost:hover {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-light);
  box-shadow: none;
  transform: translateY(-1px);
}

.btn-block { width: 100%; }

.btn-small {
  padding: 8px 18px;
  font-size: 9px;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 100px 0 72px;
  isolation: isolate;
  overflow: hidden;
}

.hero-grid {
  display: block;
}

.hero-logo-link {
  display: inline-block;
  margin-bottom: 20px;
}

.hero-logo-img {
  width: auto;
  max-width: 150px;
  height: auto;
  filter: drop-shadow(0 2px 12px rgba(201, 169, 110, 0.45)) brightness(1.06);
  transition: filter 0.3s ease;
}

.hero-logo-img:hover {
  filter: drop-shadow(0 4px 20px rgba(201, 169, 110, 0.65)) brightness(1.12);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image:
    url("./hero_portrait.png");
  background-size: cover;
  background-position: center 20%;
  z-index: -3;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(14,12,10,0.88) 0%, rgba(14,12,10,0.55) 50%, rgba(14,12,10,0.2) 100%);
  z-index: -2;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 80%, rgba(201,169,110,0.10) 0%, transparent 60%);
}

.hero-grid { position: relative; }

.hero-rule {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 20px;
  animation: fadeUp 1s ease both;
}

.hero-copy {
  max-width: 660px;
  animation: fadeUp 1.1s ease both 0.1s;
}

.eyebrow {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.hero-copy h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: var(--ivory);
  margin: 0 0 24px;
}

.hero-copy h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.lead {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(253,248,240,0.55);
  max-width: 480px;
  margin: 0 0 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.hero-list li {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(253,248,240,0.38);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-list li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   SECTIONS — SHARED
══════════════════════════════════════ */
.section {
  padding: 120px 0;
  background: var(--surface);
}

.section-dark {
  background: var(--ink);
}

.section-mid {
  background: var(--ink-soft);
}

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

.section h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: 0.01em;
  margin: 10px 0 0;
}

.section-dark h2,
.section-mid h2 { color: var(--ivory); }

.section-dark .eyebrow,
.section-mid .eyebrow { color: var(--gold); }

.section-intro {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  max-width: 32rem;
  margin-top: 16px;
}

.section-dark .section-intro { color: rgba(253,248,240,0.45); }

/* decorative gold rule under eyebrow */
.gold-rule {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: 14px 0 0;
}

/* ══════════════════════════════════════
   PRICING SECTION
══════════════════════════════════════ */
#pricing { background: var(--ink); }
#pricing .eyebrow { color: var(--gold); }
#pricing h2 { color: var(--ivory); }
#pricing .section-intro { color: rgba(253,248,240,0.45); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 2px;
  margin-top: 0;
  border: 1px solid var(--border);
}

.card {
  background: var(--ink-soft);
  border: none;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.card:hover { background: #221e18; }
.card:hover::before { opacity: 1; }

.card + .card { border-left: 1px solid var(--border); }

.card-body {
  padding: 36px 30px 32px;
}

.card-body h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ivory);
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}

.card-body > p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(253,248,240,0.4);
  margin: 0;
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pill-list li {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pill-list li::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.card-meta {
  font-size: 12px;
  font-weight: 300;
  font-style: italic;
  font-family: var(--serif);
  color: rgba(253,248,240,0.3);
  margin: 0;
}

/* featured card */
.card--featured {
  background: linear-gradient(160deg, #1c1810 0%, #0e0c0a 100%);
}

.card--featured::after {
  content: 'MOST POPULAR';
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 8px;
  letter-spacing: 0.28em;
  color: var(--gold);
  border: 1px solid var(--border-dark);
  padding: 4px 8px;
}

/* ══════════════════════════════════════
   TREATMENTS SECTION
══════════════════════════════════════ */
#treatments { background: var(--surface-2); }

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.feature-list li {
  padding: 24px 20px 24px 0;
  border-bottom: 1px solid rgba(14,12,10,0.1);
}

.feature-list li:nth-child(odd) {
  border-right: 1px solid rgba(14,12,10,0.1);
  padding-right: 24px;
}

.feature-list li:nth-child(even) {
  padding-left: 24px;
}

.feature-list li:nth-last-child(-n+2) { border-bottom: none; }

.feature-list h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 8px;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.feature-list p {
  margin: 0;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
}

.amenities-media {
  display: grid;
  grid-template-rows: 260px 180px;
  gap: 8px;
  position: sticky;
  top: 100px;
}

.amenities-photo {
  border-radius: var(--r-lg);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform 0.6s ease;
}

.amenities-photo:hover { transform: scale(1.02); }

.amenities-photo--pool {
  background-image: url("https://images.pexels.com/photos/3757952/pexels-photo-3757952.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.amenities-photo--lounge {
  background-image: url("https://images.pexels.com/photos/374870/pexels-photo-374870.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

/* ══════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════ */
#about { background: var(--ink); }
#about .eyebrow { color: var(--gold); }
#about h2 { color: var(--ivory); }
#about .section-intro { color: rgba(253,248,240,0.5); }

.about-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-text .section-intro + .section-intro { margin-top: 14px; }

.about-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-photo-shell {
  position: relative;
  overflow: hidden;
}

.about-photo-shell::before {
  content: '';
  position: absolute;
  inset: -1px;
  
  z-index: 1;
  opacity: 0.4;
  pointer-events: none;
}

.about-photo {
  display: block;
  width: 60%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.85) contrast(1.05);
  transition: filter 0.5s ease;
}

.about-photo:hover { filter: saturate(1) contrast(1); }

.about-card {
  background: var(--ink-mid);
  border: 1px solid var(--border);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.about-line {
  font-size: 13px;
  font-weight: 300;
  color: rgba(253,248,240,0.55);
  margin: 6px 0;
  letter-spacing: 0.04em;
}

.about-note {
  font-size: 11px;
  font-weight: 300;
  color: rgba(253,248,240,0.3);
  margin-top: 12px;
  line-height: 1.6;
}

.about-note strong { color: var(--gold-light); font-weight: 400; }

/* ══════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════ */
.section-contact {
  background: var(--ink-soft);
  padding: 120px 0;
}

.section-contact .eyebrow { color: var(--gold); }
.section-contact h2 { color: var(--ivory); }
.section-contact .section-intro { color: rgba(253,248,240,0.45); }

.contact-cta {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.contact-hint {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(253,248,240,0.3);
}

.contact-hint strong {
  color: var(--gold-light);
  font-weight: 400;
  letter-spacing: 0.12em;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(253,248,240,0.2);
}

.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(253,248,240,0.2); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* ══════════════════════════════════════
   LOGO IN HEADER (badge version hidden; use text logo)
══════════════════════════════════════ */
.header-logo-row { display: none; }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }
.reveal-delay-4 { transition-delay: 0.46s; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 960px) {
  .container { padding: 0 24px; }
  .header-inner { padding: 16px 24px; }
  .site-header::after { left: 24px; right: 24px; }

  .two-column {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .amenities-media {
    grid-template-rows: 240px 160px;
    position: static;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .card + .card {
    border-left: none;
    border-top: 1px solid var(--border);
  }
}

@media (max-width: 680px) {
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }
  .section-contact { padding: 80px 0; }

  .hero-nav {
    padding: 20px 20px;
    gap: 20px;
  }

  .hero-nav a:not(.btn) { display: none; }

  .hero-grid {
    text-align: left;
  }

  .hero-logo-img { max-width: 150px; }

  .hero-actions { justify-content: flex-start; }

  .hero-list { align-items: flex-start; }

  .nav-toggle {
    display: flex;
    z-index: 200;
  }

  /* full-screen mobile menu */
  .hero-nav.open {
    position: fixed;
    inset: 0;
    background: rgba(14, 12, 10, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 99;
  }

  .hero-nav.open a:not(.btn) {
    display: block;
    font-size: 14px;
    letter-spacing: 0.28em;
    color: rgba(253,248,240,0.6);
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .feature-list li:nth-child(odd) {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid rgba(14,12,10,0.1);
  }

  .feature-list li:nth-child(even) { padding-left: 0; }
  .feature-list li:last-child { border-bottom: none; }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}