/* â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”
   PARISHOLIDAY.REVIEW â€” cream, navy, tricolore
   (review-network engine, apartment skin)
   â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” */

:root {
  --bg: #F2F2EF;
  --card: #FFFFFF;
  --line: #DDDCD5;
  --ink: #232323;
  --muted: #6E6E66;
  --accent: #E86A1D;
  --worth: #1F8A4C;
  --skip: #C43A2E;
  --dep: #C08A1E;
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "Hanken Grotesk", system-ui, sans-serif;
  --gutter: clamp(16px, 5vw, 72px);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.66;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--ink); color: var(--bg); }

a { color: var(--accent); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px var(--gutter);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--ink);
}

.wordmark {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
  text-decoration: none;
}

.wordmark span { color: var(--accent); font-style: italic; }

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.5vw, 26px);
  font-size: 13.5px;
  font-weight: 700;
}

.site-header nav a { text-decoration: none; color: var(--muted); transition: color 0.2s; }
.site-header nav a:hover { color: var(--ink); }

/* hero */

.hero { padding: clamp(74px, 12vh, 140px) var(--gutter) clamp(60px, 9vh, 100px); }

.kicker {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(46px, 9vw, 110px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  max-width: 14ch;
}

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

.lede {
  max-width: 60ch;
  margin-top: 24px;
  font-size: clamp(16px, 1.6vw, 18.5px);
  color: var(--muted);
}

.v-worth { color: var(--worth); }
.v-skip { color: var(--skip); }
.v-dep { color: var(--dep); }

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  font-weight: 700;
  font-size: 15px;
  color: var(--bg);
  background: var(--ink);
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 28px;
  transition: background 0.2s, transform 0.15s;
}

.hero-cta:hover { background: var(--accent); transform: translateY(-2px); }

/* verdict cards */

.section { padding: clamp(56px, 8vh, 100px) var(--gutter); }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 16px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 22px 20px;
  box-shadow: 0 2px 8px rgba(31, 42, 68, 0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(31, 42, 68, 0.10);
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.card h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
}

.verdict {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  border-radius: 999px;
  padding: 5px 12px;
  white-space: nowrap;
}

.verdict.worth { background: var(--worth); }
.verdict.skip { background: var(--skip); }
.verdict.dep { background: var(--dep); }

.card p { color: var(--muted); font-size: 14.5px; }

/* method */

.method { border-top: 2px solid var(--ink); }

.section-head h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(28px, 4.6vw, 44px);
  margin-bottom: 12px;
}

.section-head p { color: var(--muted); max-width: 62ch; font-size: 16.5px; }

.section-head em { color: var(--ink); font-family: var(--serif); }

/* footer */

.site-footer {
  padding: 36px var(--gutter) 50px;
  border-top: 2px solid var(--ink);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links span { color: var(--muted); }
.footer-links a { text-decoration: none; color: var(--accent); }
.footer-links a:hover { color: var(--ink); }

.site-footer > p { color: var(--muted); font-size: 13px; max-width: 76ch; }

/* reveal */

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

.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .card:hover, .hero-cta:hover { transform: none; }
}

@media (max-width: 760px) {
  .site-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .site-header nav { flex-wrap: wrap; row-gap: 8px; }
}


/* checklist (apartment skin) */

.checklist {
  max-width: 760px;
  padding-left: 0;
  list-style: none;
  counter-reset: check;
}

.checklist li {
  counter-increment: check;
  position: relative;
  padding: 14px 4px 14px 52px;
  border-bottom: 1px dashed var(--line);
  color: var(--muted);
  font-size: 15.5px;
}

.checklist li:first-child { border-top: 1px dashed var(--line); }

.checklist li::before {
  content: counter(check, decimal-leading-zero);
  position: absolute;
  left: 4px;
  top: 12px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 19px;
  color: var(--accent);
}