@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;600;700&family=Work+Sans:wght@400;500;600;700&display=swap');

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

:root {
  --burgundy: #722f37;
  --burgundy-dark: #5a242b;
  --charcoal: #1c1c1e;
  --charcoal-mid: #2d2d30;
  --cream: #faf7f2;
  --cream-dark: #ede8df;
  --gold: #c9a84c;
  --gold-light: #dfc06a;
  --muted: #6b6560;
  --white: #ffffff;
  --border: rgba(28, 28, 30, 0.1);
  --success: #2d6a4f;
  --danger: #9b3a2e;
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans: 'Work Sans', system-ui, sans-serif;
  --max: 1140px;
  --nav-h: 70px;
  --radius: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.age-bar {
  background: var(--charcoal);
  color: var(--gold);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.48rem 1rem;
  letter-spacing: 0.03em;
}

.age-bar a { color: var(--white); text-decoration: underline; margin-left: 0.35rem; }

.top-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.top-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.logo img { height: 28px; }

.main-menu { display: none; gap: 0.2rem; }

.main-menu a {
  padding: 0.45rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: var(--radius);
}

.main-menu a:hover,
.main-menu a.active { color: var(--burgundy); background: var(--cream); }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.btn-primary {
  display: inline-block;
  background: var(--burgundy);
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--burgundy-dark); }

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
}

.btn-gold:hover { background: var(--gold-light); }

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--white);
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius);
}

.btn-outline:hover { background: rgba(255,255,255,0.1); }

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

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 1rem 1rem;
}

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

.mobile-menu a {
  padding: 0.75rem 0;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 900px) {
  .main-menu { display: flex; }
  .hamburger { display: none; }
}

/* Hero — split with US badge */
.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 480px;
  background: var(--charcoal);
}

@media (min-width: 900px) {
  .hero-split { grid-template-columns: 1fr 1fr; min-height: 520px; }
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 1.5rem;
}

@media (min-width: 900px) {
  .hero-copy { padding: 3rem 2.5rem 3rem max(1.5rem, calc((100vw - var(--max)) / 2 + 1rem)); }
}

.hero-copy .us-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 1.25rem;
  width: fit-content;
}

.hero-copy h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-copy .lead {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 1.75rem;
  max-width: 480px;
}

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

.hero-visual {
  position: relative;
  min-height: 280px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--charcoal) 0%, transparent 30%);
}

@media (max-width: 899px) {
  .hero-visual::after {
    background: linear-gradient(to top, var(--charcoal) 0%, transparent 40%);
  }
}

/* Sections */
.block { padding: 4rem 0; }
.block-dark { background: var(--burgundy); color: var(--white); }
.block-light { background: var(--cream-dark); }

.block-head {
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 2.75rem;
}

.block-head .eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.block-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.block-head p { color: var(--muted); font-size: 0.98rem; }
.block-dark .block-head p { color: rgba(255,255,255,0.75); }

/* State pills */
.state-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 2rem;
}

.state-pills span {
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--muted);
}

.state-pills span.active {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}

/* Methodology */
.method-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) { .method-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .method-grid { grid-template-columns: repeat(3, 1fr); } }

.method-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.method-item .tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.method-item h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.method-item p { font-size: 0.88rem; color: rgba(255,255,255,0.72); }

/* Resort cards — overlay grid */
.resort-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 640px) { .resort-grid { grid-template-columns: repeat(2, 1fr); } }

.resort-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(28,28,30,0.07);
  display: flex;
  flex-direction: column;
}

.resort-card .thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.resort-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.resort-card:hover .thumb img { transform: scale(1.04); }

.resort-card .thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,28,30,0.7) 0%, transparent 55%);
}

.resort-card .state-label {
  position: absolute;
  bottom: 0.75rem;
  left: 0.85rem;
  z-index: 1;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.resort-card .score {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  z-index: 1;
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
}

.resort-card .info { padding: 1.35rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }

.resort-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.resort-card .desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
  flex: 1;
}

.spec-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.spec-row span {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.55rem;
  background: var(--cream);
  border-radius: 4px;
  color: var(--charcoal-mid);
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.82rem;
}

.pros-cons h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
}

.pros-cons .pros h4 { color: var(--success); }
.pros-cons .cons h4 { color: var(--danger); }

.pros-cons ul { list-style: disc; padding-left: 1rem; color: var(--muted); }
.pros-cons li { margin-bottom: 0.15rem; }

.resort-card .rate {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.resort-card .rate strong { color: var(--burgundy); }

/* Table */
.table-wrap { overflow-x: auto; border-radius: var(--radius); }

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  background: var(--white);
}

.data-table thead { background: var(--burgundy); color: var(--white); }

.data-table th {
  padding: 0.8rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.data-table td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--border);
}

.data-table tbody tr:nth-child(even) { background: var(--cream); }
.data-table td.score { font-weight: 700; color: var(--burgundy); }

/* FAQ */
.faq-grid { max-width: 780px; margin-inline: auto; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 0.65rem;
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item p {
  padding: 0 1.25rem 1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Editorial */
.editorial-box {
  max-width: 720px;
  margin-inline: auto;
  background: var(--white);
  padding: 2.25rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--burgundy);
}

.editorial-box .byline {
  font-size: 0.82rem;
  color: var(--burgundy);
  font-weight: 600;
  margin-bottom: 1rem;
}

.editorial-box h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin: 1.25rem 0 0.45rem;
}

.editorial-box p { color: var(--muted); font-size: 0.93rem; margin-bottom: 0.75rem; }

/* Trust */
.trust-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) { .trust-row { grid-template-columns: repeat(3, 1fr); } }

.trust-box {
  background: var(--white);
  padding: 1.65rem;
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
}

.trust-box h3 {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  margin-bottom: 0.5rem;
}

.trust-box p { font-size: 0.88rem; color: var(--muted); margin-bottom: 0.65rem; }
.trust-box a { font-size: 0.85rem; font-weight: 600; color: var(--burgundy); }

/* Pages */
.page-banner {
  background: var(--burgundy);
  color: var(--white);
  padding: 3.25rem 0;
  text-align: center;
}

.page-banner h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  margin-bottom: 0.45rem;
}

.page-banner p { color: rgba(255,255,255,0.78); max-width: 520px; margin-inline: auto; }

.page-content {
  padding: 3rem 0 4rem;
  max-width: 740px;
}

.page-content h2 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin: 1.75rem 0 0.65rem;
}

.page-content p, .page-content li { color: var(--muted); margin-bottom: 0.8rem; font-size: 0.94rem; }
.page-content ul { list-style: disc; padding-left: 1.25rem; margin-bottom: 1rem; }
.page-content a { color: var(--burgundy); font-weight: 500; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0 4rem;
}

@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1.15fr; } }

.contact-info h2 { font-family: var(--font-serif); font-size: 1.35rem; margin-bottom: 0.85rem; }
.contact-info p { color: var(--muted); margin-bottom: 0.7rem; font-size: 0.93rem; }

.contact-form {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.93rem;
  background: var(--cream);
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: 2px solid var(--burgundy);
  outline-offset: 1px;
}

/* Footer */
.site-foot {
  background: var(--charcoal);
  color: rgba(255,255,255,0.72);
  padding: 3rem 0 0;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2.25rem;
}

@media (min-width: 768px) { .foot-grid { grid-template-columns: 1.3fr repeat(3, 1fr); } }

.foot-brand p { font-size: 0.86rem; margin: 0.75rem 0; line-height: 1.55; }

.logo-foot img { height: 24px; filter: brightness(0) invert(1); opacity: 0.88; }

.foot-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.28rem 0.6rem;
  border-radius: 4px;
}

.foot-col h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.foot-col a { display: block; font-size: 0.86rem; margin-bottom: 0.4rem; }
.foot-col a:hover { color: var(--gold); }

.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.15rem 0;
  text-align: center;
  font-size: 0.8rem;
}

.foot-bottom a { color: var(--gold); }

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

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

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
