/* hellolocals — site styles
   Palette: alpine green #4f8466 · deep pine #2b4a39 · snowpaper #f6f5f0
            ink #222e27 · larch #d9a441 */

:root {
  --green: #4f8466;
  --pine: #2b4a39;
  --paper: #f6f5f0;
  --ink: #222e27;
  --larch: #d9a441;
  --line: #dcded6;
  --radius: 14px;
  --maxw: 1060px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

body {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
}

h1, h2, h3 { font-family: "DM Serif Display", Georgia, serif; font-weight: 400; line-height: 1.15; }

a { color: var(--pine); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--green); }
:focus-visible { outline: 3px solid var(--larch); outline-offset: 2px; border-radius: 4px; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(246, 245, 240, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.45rem; color: var(--pine); text-decoration: none;
}
.logo .dot { color: var(--green); }
.site-nav a {
  margin-left: 26px; text-decoration: none; font-weight: 600; font-size: 0.95rem;
  color: var(--ink);
}
.site-nav a:hover { color: var(--green); }

/* ---------- hero ---------- */
.hero { padding: 84px 0 30px; }
.hero-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center;
}
.eyebrow {
  display: inline-block; font-size: 0.8rem; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 700; color: var(--green);
  margin-bottom: 14px;
}
.hero h1 { font-size: clamp(2.4rem, 5.4vw, 3.9rem); color: var(--pine); margin-bottom: 18px; }
.hero p.lead { font-size: 1.15rem; max-width: 34em; color: #40514a; }

/* signature: the booking-code chip */
.code-card {
  background: white; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; box-shadow: 0 14px 40px rgba(43, 74, 57, 0.10);
}
.code-card .label {
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: #6b7a72; font-weight: 700; margin-bottom: 12px;
}
.code-chip {
  display: flex; gap: 8px; justify-content: center; margin: 8px 0 18px;
}
.code-chip span {
  width: 44px; height: 56px; border-radius: 10px;
  background: var(--paper); border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: "DM Serif Display", Georgia, serif; font-size: 1.6rem; color: var(--pine);
}
.code-chip span.active { border-color: var(--green); background: #eaf1ec; }
.code-card .hint { text-align: center; font-size: 0.92rem; color: #6b7a72; }

/* mountain ridge divider */
.ridge { display: block; width: 100%; height: 60px; margin-top: 40px; }

/* ---------- sections ---------- */
section { padding: 64px 0; }
section.alt { background: white; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); color: var(--pine); margin-bottom: 12px; }
.section-intro { max-width: 40em; color: #40514a; margin-bottom: 36px; }

/* how it works — a real sequence */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 24px; position: relative;
}
section.alt .step { background: var(--paper); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 2rem; color: var(--green); display: block; margin-bottom: 8px;
}
.step h3 { font-size: 1.25rem; margin-bottom: 8px; color: var(--pine); }
.step p { font-size: 0.98rem; color: #40514a; }

/* features */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.feature {
  background: white; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 24px;
  border-top: 4px solid var(--green);
}
.feature h3 { font-size: 1.2rem; color: var(--pine); margin-bottom: 8px; }
.feature p { font-size: 0.98rem; color: #40514a; }
.langs { margin-top: 10px; }
.langs span {
  display: inline-block; margin: 4px 6px 0 0; padding: 3px 10px;
  border: 1px solid var(--line); border-radius: 999px;
  font-size: 0.82rem; font-weight: 700; background: var(--paper); color: var(--pine);
}

/* hosts strip */
.hosts {
  background: var(--pine); color: #eef3ef; border-radius: var(--radius);
  padding: 44px 40px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px; align-items: center;
}
.hosts h2 { color: white; }
.hosts p { color: #cfe0d5; }
.btn {
  display: inline-block; background: var(--larch); color: #2b2413;
  font-weight: 800; text-decoration: none; padding: 14px 26px;
  border-radius: 999px; text-align: center;
}
.btn:hover { filter: brightness(1.06); color: #2b2413; }

/* ---------- footer ---------- */
.site-footer { padding: 44px 0 56px; border-top: 1px solid var(--line); font-size: 0.95rem; color: #57655e; }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; align-items: center; }
.site-footer a { color: var(--pine); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- privacy page ---------- */
.doc { max-width: 760px; margin: 0 auto; padding: 70px 22px 90px; }
.doc h1 { font-size: clamp(2rem, 4.5vw, 2.8rem); color: var(--pine); margin-bottom: 8px; }
.doc .updated { color: #6b7a72; font-size: 0.92rem; margin-bottom: 34px; }
.doc h2 { font-size: 1.45rem; margin: 40px 0 10px; }
.doc h3 { font-size: 1.1rem; font-family: "Manrope", sans-serif; font-weight: 800; color: var(--pine); margin: 22px 0 6px; }
.doc p, .doc li { color: #33443c; }
.doc ul { padding-left: 22px; margin: 8px 0 14px; }
.doc li { margin: 5px 0; }
.doc table { width: 100%; border-collapse: collapse; margin: 14px 0 22px; font-size: 0.95rem; }
.doc th, .doc td { text-align: left; padding: 10px 12px; border: 1px solid var(--line); vertical-align: top; }
.doc th { background: white; font-weight: 800; }
.notice {
  background: #fdf6e3; border: 1px solid #ecd9a0; border-radius: 10px;
  padding: 14px 16px; font-size: 0.92rem; color: #6b5a20; margin: 22px 0;
}

/* ---------- responsive ---------- */
@media (max-width: 820px) {
  .hero { padding-top: 54px; }
  .hero-grid, .hosts { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .site-nav a { margin-left: 16px; font-size: 0.88rem; }
}
