/* Two - warm, romantic, calm. Mobile first. */

:root {
  /* Render native controls (selects, date picker, checkbox) in light mode, so
     dropdown options stay readable even when the OS is in dark mode. */
  color-scheme: light;
  --cream: #fbf4ee;
  --blush: #f7e6e1;
  --blush-soft: #fcefe9;
  --rose: #c25e7e;
  --rose-deep: #97375a;
  --amber: #cf8347;
  --ink: #382a2d;
  --ink-soft: #715f63;
  --line: #ecd7d0;
  --card: #ffffff;
  --shadow: 0 18px 40px -24px rgba(120, 60, 75, 0.45);
  --shadow-soft: 0 10px 30px -22px rgba(120, 60, 75, 0.5);
  --radius: 22px;
  --radius-sm: 14px;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Nunito Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --maxw: 1080px;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 50% -10%, var(--blush-soft), transparent 60%),
    radial-gradient(900px 500px at 100% 100%, #fdeede, transparent 55%),
    var(--cream);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--rose-deep);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 10px 0;
  z-index: 10;
}
.skip-link:focus { left: 0; }

.app {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(20px, 5vw, 56px) clamp(16px, 5vw, 28px) 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
/* Content pages (e.g. occasion landing pages) stack their sections top to
   bottom instead of vertically centring a single screen. */
.app--page { display: block; }

.site-foot {
  text-align: center;
  padding: 0 16px 40px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.site-foot a { color: var(--rose-deep); text-decoration: none; font-weight: 600; }
.site-foot a:hover { text-decoration: underline; }
.site-foot span { margin: 0 8px; }

.legal { text-align: left; max-width: 720px; }
.legal h1 { margin-top: 0; }
.legal h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  margin: 28px 0 8px;
}
.legal p, .legal li { color: var(--ink); line-height: 1.65; }
.legal a { color: var(--rose-deep); font-weight: 600; }
.legal .updated { color: var(--ink-soft); font-size: 0.9rem; }
.legal .back { display: inline-block; margin-top: 28px; }

/* Screens */
.screen { display: none; width: 100%; }
.screen.is-active { display: block; animation: rise 0.5s ease both; }

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(26px, 6vw, 44px);
  max-width: 640px;
  margin-inline: auto;
}
.card--center { text-align: center; }

/* Type */
.kicker {
  font-family: var(--serif);
  font-style: italic;
  color: var(--rose);
  letter-spacing: 0.02em;
  margin: 0 0 10px;
  font-size: 1.05rem;
}
.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 6vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}
.title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 4.5vw, 2rem);
  margin: 0 0 20px;
}
.lede {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin: 0 0 22px;
}
.muted { color: var(--ink-soft); font-weight: 400; }

.reassure {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  justify-content: center;
}
.reassure li {
  background: var(--blush);
  color: var(--rose-deep);
  border-radius: 999px;
  padding: 7px 15px;
  font-size: 0.92rem;
  font-weight: 600;
}

.notice {
  background: var(--blush-soft);
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0 0 24px;
}

/* Buttons */
.btn {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  border: 0;
  border-radius: 999px;
  padding: 14px 28px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:focus-visible { outline: 3px solid var(--rose); outline-offset: 3px; }
.btn--primary {
  background: var(--rose-deep);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn--primary:hover { background: #82294a; transform: translateY(-1px); }
.btn--quiet {
  background: var(--blush);
  color: var(--rose-deep);
}
.btn--quiet:hover { background: #f1d8d1; }
.btn--text {
  background: transparent;
  color: var(--ink-soft);
  padding: 10px 12px;
}
.btn--text:hover { color: var(--rose-deep); }

/* Forms */
form { display: block; }
.field { margin: 0 0 18px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  display: block;
  font-weight: 600;
  margin: 0 0 7px;
  font-size: 0.98rem;
}
input[type="text"],
input[type="date"],
select {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input:focus, select:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(194, 94, 126, 0.16);
}
select option {
  background: #fff;
  color: var(--ink);
}
.form-error {
  color: var(--rose-deep);
  font-weight: 600;
  margin: 0 0 14px;
}
.btn--primary[type="submit"] { width: 100%; margin-top: 6px; }

.events-field { margin-bottom: 12px; }
.consent-field { margin-top: -4px; }
.consent-field .check span { font-weight: 400; color: var(--ink-soft); font-size: 0.88rem; }
.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 600;
  cursor: pointer;
  margin: 0;
}
.check input { width: auto; margin-top: 4px; flex: none; }
.hint { margin: 6px 0 0; font-size: 0.85rem; color: var(--ink-soft); }
.pay-email { text-align: left; max-width: 340px; margin: 0 auto 18px; }
.turnstile { display: flex; justify-content: center; margin: 0 0 16px; }

.limited { margin: 10px 0 0; font-size: 0.9rem; color: var(--ink-soft); }
.limited__badge {
  display: inline-block;
  background: var(--amber);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 9px;
  border-radius: 999px;
  margin-right: 8px;
}
.limited a { color: var(--rose-deep); font-weight: 700; text-decoration: none; }
.limited a:hover { text-decoration: underline; }

/* Progress */
.progress { margin: 0 0 10px; }
.progress__bar {
  height: 7px;
  background: var(--blush);
  border-radius: 999px;
  overflow: hidden;
}
.progress__fill {
  display: block;
  height: 100%;
  width: 4%;
  background: linear-gradient(90deg, var(--rose), var(--amber));
  border-radius: 999px;
  transition: width 0.4s ease;
}
.counter {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin: 0 0 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.q-momentum { color: var(--rose); font-style: italic; }

/* Questions */
.qfield { border: 0; padding: 0; margin: 0; }
.question {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 4.4vw, 1.85rem);
  line-height: 1.25;
  margin: 0 0 22px;
  padding: 0;
}
.question:focus-visible { outline: none; }

.options { display: grid; gap: 12px; }
.option {
  text-align: left;
  font-family: var(--sans);
  font-size: 1.04rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  cursor: pointer;
  transition: transform 0.12s ease, border-color 0.12s ease, background 0.12s ease, box-shadow 0.12s ease;
}
.option:hover {
  border-color: var(--rose);
  background: var(--blush-soft);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}
.option:focus-visible { outline: 3px solid var(--rose); outline-offset: 2px; }
.option.is-chosen {
  border-color: var(--rose-deep);
  background: var(--blush);
}

.own { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.own__label { color: var(--ink-soft); }
.own__row { display: flex; gap: 10px; }
.own__row input { flex: 1; }

.qnav { margin-top: 18px; display: flex; }

/* Loading */
.loading {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--rose-deep);
  margin: 18px 0 0;
}
.heart {
  width: 42px;
  height: 42px;
  margin: 0 auto;
  background: var(--rose);
  position: relative;
  transform: rotate(-45deg);
  border-radius: 0 0 8px 0;
  animation: beat 1.1s ease-in-out infinite;
}
.heart::before, .heart::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  background: var(--rose);
  border-radius: 50%;
}
.heart::before { top: -21px; left: 0; }
.heart::after { top: 0; right: -21px; }
@keyframes beat {
  0%, 100% { transform: rotate(-45deg) scale(1); }
  50% { transform: rotate(-45deg) scale(1.16); }
}

/* Plan */
.plan { width: 100%; }
.plan__head { text-align: center; margin-bottom: 14px; }
.weather-note {
  display: inline-block;
  background: var(--blush-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin: 6px auto 0;
}
.weather-advice {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 10px auto 0;
  max-width: 520px;
}
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  margin: 40px 0 18px;
}

/* Timeline */
.timeline { list-style: none; margin: 0; padding: 0; }
.stop {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 20px 22px;
  margin: 0 0 16px;
}
.stop__top {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.stop__num {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  flex: none;
  background: var(--rose-deep);
  color: #fff;
  border-radius: 50% 50% 50% 3px;
  font-size: 0.8rem;
  font-weight: 700;
}
.stop__time {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--rose-deep);
  font-weight: 500;
}
.badge {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--blush);
  color: var(--rose-deep);
}
.badge--food { background: #fbe3d2; color: #a4561f; }
.badge--walk { background: #dcebd9; color: #3f6b3a; }
.badge--activity { background: #e7e0f1; color: #5a4488; }
.badge--rest { background: #f7e6e1; color: var(--rose-deep); }
.stop__cost { margin-left: auto; font-weight: 700; color: var(--ink); }
.stop__title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0 0 6px;
}
.stop__desc { margin: 0 0 10px; color: var(--ink); }
.stop__where { color: var(--ink-soft); font-size: 0.94rem; font-weight: 600; }
.stop__look { margin: 10px 0 0; font-size: 0.9rem; }
.stop__look a { color: var(--rose-deep); font-weight: 700; text-decoration: none; }
.stop__look a:hover { text-decoration: underline; }

.verify {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  font-size: 0.92rem;
  color: var(--ink-soft);
  display: grid;
  gap: 4px;
}
.verify a { color: var(--rose-deep); font-weight: 700; text-decoration: none; }
.verify a:hover { text-decoration: underline; }
.verify--tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #3f6b3a;
}
.verify--unconfirmed { color: var(--amber); font-weight: 700; font-size: 0.85rem; }

.leg {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.86rem;
  margin: -4px 0 16px;
}
.leg span {
  background: var(--blush-soft);
  border-radius: 999px;
  padding: 4px 12px;
}

/* Gifts */
.gifts { display: grid; gap: 16px; grid-template-columns: 1fr; }
.gift {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 20px;
}
.gift__top { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.gift__name { font-family: var(--serif); font-size: 1.18rem; font-weight: 500; margin: 0; }
.gift__cost { font-weight: 700; white-space: nowrap; }
.gift__reason { margin: 8px 0 0; color: var(--ink-soft); }

/* Budget */
.budget {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 22px;
}
.budget__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
.budget__row span:first-child { color: var(--ink-soft); }
.budget__total {
  display: flex;
  justify-content: space-between;
  padding: 14px 0 4px;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
}
.budget__verdict {
  margin: 10px 0 0;
  color: var(--rose-deep);
  font-style: italic;
  font-family: var(--serif);
}

.plan__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin: 36px 0 0;
}
.plan__foot .btn { padding: 12px 22px; font-size: 0.95rem; }

/* The "see a sample day" link on the welcome screen */
.sample-link { margin-top: 10px; }

/* Sample-day banner, shown above the example plan */
.sample-banner {
  background: var(--blush);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 22px 24px;
  margin: 0 auto 26px;
  max-width: 680px;
  text-align: center;
}
.sample-banner__tag {
  font-family: var(--serif);
  font-style: italic;
  color: var(--rose);
  font-size: 1rem;
  margin: 0 0 6px;
}
.sample-banner__text { color: var(--ink); margin: 0 0 16px; }
.sample-banner .btn { padding: 12px 24px; font-size: 0.95rem; }

/* Discovery band on the finished plan (the viral hook for shared plans) */
.discover {
  margin: 34px auto 0;
  max-width: 540px;
  text-align: center;
  background: var(--blush-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.discover__text {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.pay-teaser {
  background: var(--blush-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  margin: 0 0 20px;
  text-align: left;
}
.teaser-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  margin: 0 0 8px;
  color: var(--rose-deep);
}
.teaser-intro { margin: 0 0 14px; color: var(--ink); }

/* Locked timeline: the shape of the day, detail blurred until unlocked */
.teaser-timeline { list-style: none; margin: 0; padding: 0; }
.teaser-stop {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  margin: 0 0 10px;
}
.teaser-stop:last-child { margin-bottom: 0; }
.teaser-stop__top { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 7px; }
.teaser-stop__time { font-family: var(--serif); font-size: 1.05rem; color: var(--rose-deep); font-weight: 500; }
.teaser-stop__area { color: var(--ink-soft); font-size: 0.88rem; font-weight: 600; margin-left: auto; }
.teaser-stop__title { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; margin: 0 0 9px; }
.teaser-stop__lock { display: flex; flex-direction: column; gap: 6px; margin: 0; }
.lockbar {
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blush), #efdbd4);
  opacity: 0.85;
}
.lockbar--short { width: 58%; }
.teaser-budget {
  margin: 14px 0 0;
  color: var(--rose-deep);
  font-style: italic;
  font-family: var(--serif);
}

/* What you unlock: the value stack beside the price */
.unlock {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin: 0 0 22px;
  text-align: left;
}
.unlock__head { font-weight: 700; margin: 0 0 12px; }
.unlock__list { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.unlock__list li { position: relative; padding-left: 28px; color: var(--ink); }
.unlock__list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rose-deep);
}
.pay-box { max-width: 380px; margin: 0 auto; text-align: center; }
.pay-box .btn--primary { width: 100%; margin-top: 4px; }

/* Welcome screen price transparency line */
.price-note { color: var(--ink-soft); font-size: 0.95rem; margin: 16px 0 0; }
.proof { color: var(--rose-deep); font-weight: 600; font-size: 0.95rem; margin: 10px 0 0; }

/* Testimonials (shown only when real ones are configured) */
.testimonial-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
.testimonial {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 22px;
  margin: 0;
}
.testimonial blockquote {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.45;
  color: var(--ink);
}
.testimonial figcaption { color: var(--ink-soft); font-weight: 600; font-size: 0.92rem; }
@media (min-width: 620px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }

/* Landing trust content under the hero (welcome screen only) */
.landing { max-width: 780px; margin: 0 auto; padding: 4px 4px 0; }
.landing > section { margin-top: 52px; }
.landing h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.55rem;
  text-align: center;
  margin: 0 0 24px;
}

.features__grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
.feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 22px;
}
.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--blush);
  color: var(--rose-deep);
  margin-bottom: 13px;
}
.feature__icon svg { width: 22px; height: 22px; }
.feature h3 { font-family: var(--serif); font-weight: 500; font-size: 1.12rem; margin: 0 0 6px; }
.feature p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }

.occasion-pills {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: center;
}
.occasion-pills li {
  background: var(--blush);
  color: var(--rose-deep);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 0.94rem;
}

.faq { max-width: 640px; margin-left: auto; margin-right: auto; }
.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin: 0 0 10px;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  padding: 15px 18px;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--rose-deep);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.15s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq details p { margin: 0; padding: 14px 18px; color: var(--ink-soft); }
.faq a { color: var(--rose-deep); font-weight: 700; }

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

/* Occasion + explore content pages */
.occasion-hero { max-width: 680px; }
.prose { max-width: 680px; margin: 0 auto; }
.prose p { color: var(--ink); font-size: 1.06rem; line-height: 1.7; margin: 0 0 16px; }
.includes { max-width: 560px; margin: 0 auto; }
.cta-band { text-align: center; }
.cta-band__text { text-align: center; color: var(--ink-soft); margin: 0 auto 14px; max-width: 520px; }

/* Fat footer nav (explore areas + occasions) */
.foot-nav { display: flex; flex-wrap: wrap; gap: 6px 12px; justify-content: center; align-items: baseline; margin: 0 auto 10px; max-width: 820px; }
.foot-nav__label { font-weight: 700; color: var(--ink); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; }
.foot-nav a { color: var(--rose-deep); text-decoration: none; font-weight: 600; font-size: 0.9rem; }
.foot-nav a:hover { text-decoration: underline; }
.foot-legal { margin: 14px 0 0; }

/* Explore: filter chips */
.filter { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 0 0 22px; }
.chip {
  font-family: var(--sans); font-weight: 700; font-size: 0.9rem;
  border: 1.5px solid var(--line); background: #fff; color: var(--ink-soft);
  border-radius: 999px; padding: 8px 16px; cursor: pointer;
  transition: border-color 0.12s ease, color 0.12s ease, background 0.12s ease;
}
.chip:hover { border-color: var(--rose); color: var(--rose-deep); }
.chip.is-active { background: var(--rose-deep); border-color: var(--rose-deep); color: #fff; }
.chip:focus-visible { outline: 3px solid var(--rose); outline-offset: 2px; }

/* Explore: spot directory */
.spot-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
.spot {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-soft); padding: 20px;
}
.spot__cat { display: inline-block; margin-bottom: 10px; }
.spot__name { font-family: var(--serif); font-weight: 500; font-size: 1.18rem; margin: 0 0 6px; }
.spot__blurb { margin: 0 0 12px; color: var(--ink-soft); }
.spot__links { margin: 0; font-size: 0.9rem; }
.spot__links a { color: var(--rose-deep); font-weight: 700; text-decoration: none; }
.spot__links a:hover { text-decoration: underline; }
.spot__links span { margin: 0 6px; color: var(--ink-soft); }
.spot__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.spot__head .spot__cat { margin-bottom: 0; }
.fav {
  flex: none; background: transparent; border: 0; padding: 2px; cursor: pointer;
  line-height: 0; border-radius: 8px;
}
.fav svg {
  width: 22px; height: 22px; fill: none; stroke: var(--rose); stroke-width: 1.8;
  transition: fill 0.12s ease, stroke 0.12s ease, transform 0.12s ease;
}
.fav:hover svg { transform: scale(1.1); }
.fav.is-saved svg { fill: var(--rose-deep); stroke: var(--rose-deep); }
.fav:focus-visible { outline: 3px solid var(--rose); outline-offset: 2px; }

.explore-map {
  height: 380px; border-radius: var(--radius); border: 1px solid var(--line);
  box-shadow: var(--shadow-soft); overflow: hidden; background: var(--blush-soft);
  margin: 0 0 8px;
}
.leaflet-div-icon.explore-pin { background: transparent; border: 0; }
.explore-pin span {
  display: block; width: 16px; height: 16px; border-radius: 50%;
  background: var(--rose-deep); border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(60, 20, 35, 0.4);
}

/* Explore: area cards */
.area-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
.area-card {
  display: block; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-soft); padding: 22px;
  text-decoration: none; color: var(--ink);
  transition: transform 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease;
}
.area-card:hover { transform: translateY(-2px); border-color: var(--rose); box-shadow: var(--shadow); }
.area-card h3 { font-family: var(--serif); font-weight: 500; font-size: 1.2rem; margin: 0 0 6px; color: var(--rose-deep); }
.area-card p { margin: 0; color: var(--ink-soft); }
.area-grid--links { grid-template-columns: repeat(2, 1fr); }
.area-card--small { padding: 14px 16px; }
.area-card--small h3 { margin: 0; font-size: 1.02rem; }

@media (min-width: 620px) {
  .spot-grid { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: repeat(3, 1fr); }
  .area-grid--links { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 980px) {
  .spot-grid { grid-template-columns: repeat(3, 1fr); }
}
.explore-teaser { text-align: center; }

.stop__swap {
  margin-top: 10px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.12s ease, color 0.12s ease;
}
.stop__swap:hover { border-color: var(--rose); color: var(--rose-deep); }

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

@media (max-width: 480px) {
  .field-row { grid-template-columns: 1fr; }
}

/* Plan layout: a route map beside the timeline on wide screens */
.plan__head { max-width: 680px; margin: 0 auto 14px; }
.plan-rest { max-width: 720px; margin: 0 auto; }
.plan-grid { display: block; }
.plan-aside { margin-top: 18px; }
.stop__venue {
  margin: 0 0 6px;
  font-weight: 700;
  color: var(--rose-deep);
  font-size: 1.02rem;
}
.map {
  height: 320px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  background: var(--blush-soft);
}
.map-note { font-size: 0.82rem; color: var(--ink-soft); text-align: center; margin: 8px 0 0; }

.leaflet-div-icon.pin { background: transparent; border: 0; }
.pin span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: var(--rose-deep);
  color: #fff;
  border-radius: 50% 50% 50% 3px;
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: 0 2px 6px rgba(60, 20, 35, 0.35);
}

@media (min-width: 980px) {
  .plan-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 26px;
    align-items: start;
  }
  .plan-aside { margin-top: 0; position: sticky; top: 24px; }
  .plan-main .section-title:first-child { margin-top: 0; }
  .map { height: 72vh; max-height: 640px; }
}

@media print {
  body { background: #fff; }
  .app { display: block; min-height: 0; max-width: 100%; padding: 0; }
  .site-foot, .plan__foot, .plan-aside, #map, .map-note, .stop__look,
  .stop__swap, .leg, .skip-link, .sample-banner, .discover { display: none !important; }
  .plan-grid { display: block; }
  .card, .stop, .gift, .budget {
    box-shadow: none;
    border: 1px solid #ddd;
    break-inside: avoid;
  }
  .stop__num { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}

@media (prefers-reduced-motion: reduce) {
  .screen.is-active { animation: none; }
  .heart { animation: none; }
  .btn:hover, .option:hover { transform: none; }
  .progress__fill { transition: none; }
}
