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

:root {
  --ink: #18181b;
  --ink-soft: #3f3f46;
  --stone: #faf9f7;
  --stone-dark: #f0eeeb;
  --coral: #e85d4c;
  --coral-dark: #d14a3a;
  --sage: #5c7a6a;
  --sage-light: #7a9a88;
  --white: #ffffff;
  --border: #e4e4e7;
  --text: #27272a;
  --text-muted: #71717a;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 1px 3px rgba(24,24,27,0.06), 0 8px 24px rgba(24,24,27,0.08);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--stone);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

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

.container { max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }

/* Disclaimer */
.site-disclaimer {
  background: var(--stone-dark);
  color: var(--text-muted);
  font-size: 0.72rem;
  text-align: center;
  padding: 0.55rem 1rem;
  line-height: 1.5;
  border-bottom: 1px solid var(--border);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250,249,247,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.site-logo__mark {
  width: 32px;
  height: 32px;
  background: var(--ink);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.site-logo__mark svg { width: 18px; height: 18px; }

.site-logo span { color: var(--coral); }

.site-nav {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  transition: var(--transition);
}

.site-nav a:hover { color: var(--ink); background: var(--stone-dark); }
.site-nav a.active { color: var(--coral); background: rgba(232,93,76,0.08); }

.menu-toggle {
  display: none;
  background: var(--stone-dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--ink);
  font-size: 1.25rem;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--stone);
  flex-direction: column;
  padding: 5rem 2rem 2rem;
  gap: 0.25rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  color: var(--ink);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.35rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.mobile-nav__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--stone-dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--ink);
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

/* Hero — split layout */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 120px);
  max-height: 780px;
  overflow: hidden;
}

.hero--page {
  grid-template-columns: 1fr;
  min-height: auto;
  max-height: none;
  text-align: center;
  background: var(--ink);
  color: var(--white);
  padding: 5rem 1.25rem 4rem;
}

.hero--page .hero__content { padding: 0; max-width: 680px; margin: 0 auto; }

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2.5rem 3rem 0;
  padding-left: max(1.25rem, calc((100vw - 1140px) / 2 + 1.25rem));
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--coral);
  margin-bottom: 1.25rem;
}

.hero__tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--coral);
}

.hero h1 {
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  margin-bottom: 1.25rem;
  color: var(--ink);
}

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

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero--page .hero__subtitle { color: rgba(255,255,255,0.75); margin-left: auto; margin-right: auto; }

.hero__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.hero__visual {
  position: relative;
  overflow: hidden;
}

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

.hero__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--stone) 0%, transparent 18%);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.85rem 1.5rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.btn--coral { background: var(--coral); color: var(--white); }
.btn--coral:hover { background: var(--coral-dark); transform: translateY(-1px); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: #27272a; }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover { border-color: var(--ink); }

/* Stats bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat {
  background: var(--white);
  padding: 2rem 1.5rem;
  text-align: center;
}

.stat__num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat__label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Sections */
.section { padding: 4.5rem 0; }
.section--white { background: var(--white); }
.section--stone { background: var(--stone); }
.section--ink { background: var(--ink); color: var(--white); }

.section__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.6rem;
}

.section--ink .section__eyebrow { color: var(--sage-light); }

.section__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.section__lead {
  color: var(--text-muted);
  max-width: 560px;
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.section--ink .section__lead { color: rgba(255,255,255,0.65); }

.text-center { text-align: center; }
.text-center .section__lead { margin-left: auto; margin-right: auto; }

/* Pick criteria */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.criteria-card {
  background: var(--stone);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
}

.criteria-card:hover { border-color: var(--coral); box-shadow: var(--shadow); }

.criteria-card__num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--coral);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.criteria-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.criteria-card p { font-size: 0.9rem; color: var(--text-muted); }

/* Hotel cards — horizontal style */
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.hotel-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.hotel-card:hover { box-shadow: var(--shadow); border-color: transparent; }

.hotel-card__img { overflow: hidden; min-height: 180px; }

.hotel-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hotel-card:hover .hotel-card__img img { transform: scale(1.04); }

.hotel-card__body {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.hotel-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.hotel-card__tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(92,122,106,0.12);
  color: var(--sage);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.hotel-card__rating {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hotel-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.hotel-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: auto;
  flex: 1;
}

.hotel-card__fact {
  margin-top: 1rem;
  padding: 0.75rem 0.9rem;
  background: rgba(232, 93, 76, 0.06);
  border-left: 3px solid var(--coral);
  border-radius: 0 8px 8px 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.hotel-card__fact strong {
  color: var(--coral);
  font-weight: 600;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.fact-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.fact-box__year {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.fact-box h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.fact-box p {
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* City chips */
.city-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.city-chip {
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink-soft);
  transition: var(--transition);
}

.city-chip:hover { border-color: var(--coral); color: var(--coral); }

/* Feature list */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
  max-width: 720px;
}

.feature-list li {
  list-style: none;
  padding-left: 1.75rem;
  position: relative;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage-light);
  font-weight: 700;
}

/* Why grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.why-item {
  padding: 1.5rem;
  border-left: 3px solid var(--coral);
  background: var(--stone);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.why-item h3 { font-size: 1.05rem; margin-bottom: 0.4rem; color: var(--ink); }
.why-item p { font-size: 0.88rem; color: var(--text-muted); }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--ink) 0%, #27272a 100%);
  padding: 3.5rem 1.25rem;
  text-align: center;
  color: var(--white);
}

.cta-band h2 { margin-bottom: 0.75rem; font-size: clamp(1.5rem, 3vw, 2rem); }
.cta-band p { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }

/* Newsletter */
.newsletter {
  padding: 3rem 1.25rem;
  background: var(--stone-dark);
  border-top: 1px solid var(--border);
}

.newsletter__inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.newsletter h2 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.newsletter p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.25rem; }

.newsletter form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.newsletter input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.9rem;
  background: var(--white);
}

/* Contact form */
.contact-form { max-width: 520px; margin: 0 auto; }

.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--ink);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.9rem;
  background: var(--white);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232,93,76,0.12);
}

.form-group textarea { min-height: 130px; resize: vertical; }

/* Legal */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

.legal-content h2 {
  font-size: 1.35rem;
  margin: 2rem 0 0.6rem;
  color: var(--ink);
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  font-size: 0.92rem;
}

.legal-content ul { padding-left: 1.25rem; }
.legal-content a { color: var(--coral); text-decoration: underline; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: 3rem 0 1.25rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.footer-brand span { color: var(--coral); }

.footer-heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 0.85rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a { color: rgba(255,255,255,0.75); font-size: 0.86rem; transition: var(--transition); }
.footer-links a:hover { color: var(--coral); }

.footer-disclaimer {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  margin-top: 1.25rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* Age gate */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(24,24,27,0.88);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.age-gate.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.age-gate__card {
  background: var(--white);
  max-width: 400px;
  width: 100%;
  padding: 2rem 1.75rem;
  text-align: center;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}

.age-gate__card h2 {
  font-size: 1.35rem;
  color: var(--ink);
  margin: 0.75rem 0 0.5rem;
}

.age-gate__card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
}

.age-badge {
  display: inline-block;
  background: rgba(232,93,76,0.1);
  color: var(--coral);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

/* Responsive */
@media (max-width: 960px) {
  .fact-grid { grid-template-columns: 1fr; }
  .hero { grid-template-columns: 1fr; min-height: auto; max-height: none; }
  .hero__content { padding: 3rem 1.25rem 1.5rem; }
  .hero__visual { height: 320px; order: -1; }
  .hero__visual::after { background: linear-gradient(180deg, transparent 60%, var(--stone) 100%); }
  .criteria-grid { grid-template-columns: 1fr; }
  .hotel-grid { grid-template-columns: 1fr; }
  .hotel-card { grid-template-columns: 140px 1fr; }
  .stats-bar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .menu-toggle { display: flex; align-items: center; justify-content: center; }
  .feature-list { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hotel-card { grid-template-columns: 1fr; }
  .hotel-card__img { min-height: 200px; }
}
