/* First Call on Carbon
   Sage: light #F3F6F1 ground, forest green accent, one touch of terracotta.
   Inter + JetBrains Mono.

   Contrast, measured:
     body #1F2A24 on bg          13.61:1
     muted #55655C on bg          5.66:1
     forest #2F5D46 on bg         6.94:1
     white on forest button       7.57:1
     terracotta #C0643F on bg     3.75:1  <- large text only, never body copy
     interactive border #75907F   3.18:1  <- meets 1.4.11 non-text contrast

   All motion is switched off under prefers-reduced-motion at the foot of this
   file. Do not add an animation that block does not cover. */

:root {
  color-scheme: light;

  --bg:        #f3f6f1;
  --card:      #fafbf8;
  --sunk:      #e8eee6;
  --text:      #1f2a24;
  --muted:     #55655c;
  --forest:    #2f5d46;
  --forest-dk: #264b39;
  --terracotta:#c0643f;
  --rule:      #d8e0d5;
  --edge:      #75907f;
  --error:     #a4201a;
  --shadow:    0 1px 2px rgba(31,42,36,.05), 0 10px 30px rgba(31,42,36,.07);

  --sans: "Inter",-apple-system,BlinkMacSystemFont,sans-serif;
  --mono: "JetBrains Mono",ui-monospace,Menlo,monospace;

  --measure: 40rem;
  --hero-measure: 30rem;
  --gutter: clamp(1.25rem,5vw,2.5rem);
  --section-gap: clamp(2.5rem,6vw,3.75rem);

  --display: clamp(1.95rem,1.2rem + 3.4vw,3.1rem);
  --title: clamp(1.2rem,1rem + .9vw,1.5rem);
  --body: clamp(1rem,.97rem + .18vw,1.0625rem);
  --small: .8125rem;
  --px: 0; --py: 0;
}

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

body { margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--sans); font-size: var(--body); line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden; position: relative; }

/* a very soft sage wash, barely there, drifting slowly */
body::before {
  content: ""; position: fixed; inset: -30%; z-index: -1; pointer-events: none;
  background:
    radial-gradient(42rem 32rem at 22% 12%, rgba(47,93,70,.10), transparent 62%),
    radial-gradient(34rem 28rem at 84% 26%, rgba(47,93,70,.07), transparent 60%),
    radial-gradient(38rem 30rem at 52% 88%, rgba(192,100,63,.05), transparent 62%);
  transform: translate3d(calc(var(--px)*10px), calc(var(--py)*10px), 0);
  animation: wash 30s ease-in-out infinite alternate;
}
@keyframes wash {
  0%   { transform: translate3d(calc(var(--px)*10px), calc(var(--py)*10px), 0) scale(1); }
  100% { transform: translate3d(calc(var(--px)*10px - 3%), calc(var(--py)*10px + 3%), 0) scale(1.1); }
}

.page { max-width: var(--measure); margin: 0 auto;
  padding: clamp(2.25rem,7vw,4rem) var(--gutter) clamp(3rem,9vw,5rem); }

.reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-visible { opacity: 1; transform: none;
  transition: opacity .7s cubic-bezier(.22,1,.36,1) var(--reveal-delay),
              transform .7s cubic-bezier(.22,1,.36,1) var(--reveal-delay); }

.masthead { margin-bottom: clamp(2rem,6vw,3rem); }
.wordmark { margin: 0; font-family: var(--mono); font-size: var(--small); font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: var(--forest); }

/* ---------- hero: room to breathe, short lines ---------- */

.hero { padding-block: clamp(1rem,3vw,2rem) clamp(3rem,8vw,5rem); }

.hero-title { margin: 0 0 1.1rem; max-width: var(--hero-measure);
  font-size: var(--display); font-weight: 700; line-height: 1.12;
  letter-spacing: -.025em; text-wrap: balance; }

.hl-forest { color: var(--forest); }
.hl-terracotta { color: var(--terracotta); }

.lede { margin: 0 0 1.9rem; max-width: var(--hero-measure);
  font-size: clamp(1.0625rem,1rem + .35vw,1.1875rem); color: var(--muted); }

.cta { position: relative; display: inline-flex; align-items: center; min-height: 3rem;
  padding: .85rem 1.7rem; border: 0; border-radius: 999px; cursor: pointer;
  background: var(--forest); color: #fff;
  font-family: var(--sans); font-size: 1rem; font-weight: 600; text-decoration: none;
  box-shadow: 0 6px 18px rgba(47,93,70,.18);
  transition: background-color .2s ease, transform .18s ease, box-shadow .25s ease; }
.cta:hover { background: var(--forest-dk); transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(47,93,70,.24); }
.cta:active { transform: translateY(0); }
.cta:focus-visible, a:focus-visible { outline: 2px solid var(--forest); outline-offset: 3px; }

.cta-note { margin: .9rem 0 0; font-size: .75rem; color: var(--muted); }

/* ---------- sections ---------- */

.section { margin-top: var(--section-gap); padding-top: var(--section-gap);
  border-top: 1px solid var(--rule); }
.section-title { margin: 0 0 1.25rem; font-size: var(--title); font-weight: 600;
  letter-spacing: -.015em; }
.section p { margin: 0 0 .85rem; } .section p:last-child { margin-bottom: 0; }

.topics { margin: 0; padding: 0; list-style: none; }
.topics li { padding: .9rem 0; border-top: 1px solid var(--rule); color: var(--muted);
  transition: padding-left .22s ease, color .22s ease; }
.topics li:first-child { border-top: 0; padding-top: 0; }
@media (hover: hover) { .topics li:hover { padding-left: .6rem; color: var(--text); } }
.topics strong { color: var(--text); font-weight: 600; }

.steps { margin: 0; padding: 0; list-style: none; counter-reset: step; }
.steps li { position: relative; counter-increment: step; padding: 0 0 .9rem 2.6rem; color: var(--muted); }
.steps li::before { content: counter(step); position: absolute; left: 0; top: -.1em;
  width: 1.7rem; height: 1.7rem; display: grid; place-items: center; border-radius: 999px;
  font-family: var(--mono); font-size: .75rem; font-weight: 500; color: #fff;
  background: var(--forest); }

.note { background: var(--sunk); border: 1px solid var(--rule); border-left: 3px solid var(--forest);
  border-radius: 12px; padding: 1.1rem 1.25rem; color: var(--muted); }

/* ---------- host ---------- */

.host { display: flex; flex-direction: column; align-items: flex-start; gap: 1.1rem; }
@media (min-width: 34rem) { .host { flex-direction: row; gap: 1.5rem; } }
.host-photo { display: block; flex: 0 0 auto; width: 140px; height: 140px;
  border-radius: 50%; object-fit: cover; border: 1px solid var(--rule);
  box-shadow: 0 6px 20px rgba(31,42,36,.10); }
.host-text { min-width: 0; }
.host-name { font-weight: 600; margin-bottom: .4rem; }
.host-bio { color: var(--muted); }
.host-link { font-size: var(--small); color: var(--muted); }
.host-link a { color: var(--forest); text-decoration: underline; text-underline-offset: 3px;
  overflow-wrap: anywhere; }
.host-link a:hover { color: var(--forest-dk); }

/* ---------- booking widget ---------- */

.booking-form { margin: 0; background: var(--card); border: 1px solid var(--rule);
  border-radius: 18px; box-shadow: var(--shadow); padding: clamp(1.25rem,4vw,1.75rem); }

.step { margin: 0 0 1.5rem; padding: 0; border: 0; }
.step-label { display: flex; align-items: baseline; gap: .5rem; padding: 0; margin-bottom: .7rem;
  font-family: var(--mono); font-size: .75rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); }
.step-num { color: var(--forest); font-weight: 500; }
.step-hint { margin: .7rem 0 0; font-size: .75rem; color: var(--muted); }

.chips { display: flex; flex-wrap: wrap; gap: .45rem; }
.chips.slots { display: grid; grid-template-columns: repeat(2,1fr); gap: .45rem; }
@media (min-width: 30rem) { .chips.slots { grid-template-columns: repeat(4,1fr); } }

.chip { position: relative; display: block; }
.chip input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.chip span { display: flex; align-items: center; justify-content: center; min-height: 2.75rem;
  padding: .5rem .95rem; border: 1px solid var(--edge); border-radius: 999px;
  background: var(--bg); color: var(--text); font-size: .9375rem; text-align: center;
  transition: transform .18s cubic-bezier(.22,1,.36,1), box-shadow .22s ease,
              background-color .22s ease, border-color .22s ease; }
.chips.slots .chip span { border-radius: 12px; font-family: var(--mono); font-size: .8125rem; }
@media (hover: hover) { .chip input:not(:checked):hover + span { transform: translateY(-2px);
  border-color: var(--forest); box-shadow: 0 4px 12px rgba(31,42,36,.10); } }
.chip input:checked + span { background: var(--forest); border-color: var(--forest); color: #fff;
  font-weight: 500; box-shadow: 0 4px 14px rgba(47,93,70,.22);
  animation: pop .26s cubic-bezier(.34,1.56,.64,1); }
@keyframes pop { 0% { transform: scale(.94); } 60% { transform: scale(1.05); } 100% { transform: scale(1); } }
.chip input:focus-visible + span { outline: 2px solid var(--forest); outline-offset: 2px; }

.fields { display: grid; gap: .9rem; margin: 1.5rem 0 1.25rem; padding-top: 1.5rem;
  border-top: 1px solid var(--rule); }
@media (min-width: 34rem) { .fields { grid-template-columns: 1fr 1fr; } .field-wide { grid-column: 1/-1; } }
.field { margin: 0; }
.field label { display: block; margin-bottom: .35rem; font-size: var(--small);
  font-weight: 500; color: var(--text); }
.field .opt { font-weight: 400; color: var(--muted); }
.field input, .field textarea { display: block; width: 100%; padding: .68rem .8rem;
  background: var(--bg); border: 1px solid var(--edge); border-radius: 12px;
  color: var(--text); font-family: var(--sans); font-size: 1rem; line-height: 1.5;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease; }
.field textarea { resize: vertical; min-height: 4.5rem; }
.field input:focus-visible, .field textarea:focus-visible {
  outline: 2px solid var(--forest); outline-offset: 0; border-color: var(--forest);
  background: var(--card); box-shadow: 0 0 0 4px rgba(47,93,70,.12); }

.field-hint { display: block; margin-top: .35rem; font-size: .75rem;
  line-height: 1.5; color: var(--muted); }

.hp-field { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap; }

.booking-form .cta { width: 100%; justify-content: center; }
@media (min-width: 34rem) { .booking-form .cta { width: auto; } }
.booking-form .cta:disabled { opacity: .6; cursor: default; }

.form-note { margin: .8rem 0 0; font-size: .75rem; color: var(--muted); }
.form-status { margin: .8rem 0 0; font-size: .9375rem; }
.form-status:empty { margin: 0; }
.form-status.is-error { color: var(--error); font-weight: 500; }
.form-done { margin: 0; padding: 1.1rem 1.25rem; background: var(--sunk);
  border-left: 3px solid var(--forest); border-radius: 12px; color: var(--text);
  animation: pop .3s cubic-bezier(.34,1.56,.64,1); }

p, li { text-wrap: pretty; }

@media (orientation: landscape) and (max-height: 32rem) {
  .page { padding-top: 1.75rem; padding-bottom: 2.25rem; }
  .hero { padding-block: .5rem 2rem; }
  :root { --section-gap: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
