/* DayOut marketing landing — aligned with the app (cream / sage / sun). */
:root {
  --cream: #faf6ef;
  --cream-soft: #f3efe6;
  --charcoal: #2c2a26;
  --charcoal-muted: #6b6560;
  --sage-deep: #4a6b4e;
  --sage: #7fa06f;
  --sage-tint: #e5ede2;
  --sun: #f4c430;
  --coral: #e0876a;
  --lavender: #9a8fc4;
  --card: #ffffff;
  --border: rgba(44, 42, 38, 0.1);
  --shadow: 0 18px 44px rgba(44, 42, 38, 0.12);
  --shadow-sm: 0 6px 18px rgba(44, 42, 38, 0.08);
  --radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.container {
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: 0 22px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--sage-deep);
  margin: 0 0 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 14px;
  padding: 13px 22px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  font-size: 0.98rem;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--sage-deep); color: #fff; box-shadow: var(--shadow-sm); }
.btn-ghost { background: transparent; color: var(--sage-deep); border-color: rgba(74, 107, 78, 0.3); }
.btn-lg { padding: 15px 26px; font-size: 1.02rem; }
.btn.disabled { opacity: 0.6; pointer-events: none; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, 0.85);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--charcoal);
}
.brand .mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(44, 42, 38, 0.15);
}
.brand .mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { text-decoration: none; color: var(--charcoal-muted); font-weight: 600; font-size: 0.95rem; }
.nav-links a:hover { color: var(--charcoal); }
/* The CTA is an <a> inside .nav-links, so it needs to win over the link colour above. */
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover { color: #fff; }
.nav-links a.btn { padding: 10px 18px; }
@media (max-width: 720px) {
  .nav-links a:not(.btn) { display: none; }
}

/* ---------- Hero ---------- */
.hero { padding: 60px 0 40px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 6px 0 16px;
}
.hero h1 .accent { color: var(--sage-deep); }
.hero p.sub {
  font-size: 1.12rem;
  color: var(--charcoal-muted);
  max-width: 30ch;
  margin: 0 0 26px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-note { margin: 14px 0 0; font-size: 0.86rem; color: var(--charcoal-muted); }

.hero-visual { position: relative; }
.hero-photo {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.float-card {
  position: absolute;
  background: var(--card);
  border-radius: 16px;
  padding: 10px 13px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
}
.float-card .dot { font-size: 1rem; }
/* Anchored to the image corners so they sit tidily on the photo. */
.fc-1 { top: 16px; left: 16px; }
.fc-2 { top: 50%; right: 16px; transform: translateY(-50%); }
.fc-3 { bottom: 16px; left: 16px; }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin: 8px auto 0; }
  .float-card { font-size: 0.82rem; padding: 8px 11px; }
  .fc-1 { top: 12px; left: 12px; }
  .fc-2 { right: 12px; }
  .fc-3 { bottom: 12px; left: 12px; }
}

/* ---------- Stats bar ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 22px 0 8px;
}
.stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  text-align: center;
}
.stat .n { font-size: 1.7rem; font-weight: 800; color: var(--sage-deep); }
.stat .l { font-size: 0.86rem; color: var(--charcoal-muted); font-weight: 600; }
@media (max-width: 620px) { .stats { grid-template-columns: 1fr; } }

/* ---------- Section ---------- */
.section { padding: 62px 0; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 38px; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); margin: 0 0 10px; letter-spacing: -0.01em; }
.section-head p { color: var(--charcoal-muted); font-size: 1.05rem; margin: 0; }
.alt { background: var(--cream-soft); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
}
.step .icon {
  width: 46px; height: 46px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px; font-size: 22px;
}
.step h3 { margin: 0 0 6px; font-size: 1.15rem; }
.step p { margin: 0; color: var(--charcoal-muted); font-size: 0.96rem; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

/* Feature split */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.feature-row + .feature-row { margin-top: 56px; }
.feature-row.reverse .feature-media { order: 2; }
.feature-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 11;
}
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-text h3 { font-size: 1.5rem; margin: 8px 0 12px; }
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.feature-list li { display: flex; gap: 10px; align-items: flex-start; color: var(--charcoal); }
.feature-list .tick {
  flex: 0 0 auto; width: 22px; height: 22px; border-radius: 7px;
  background: var(--sage-tint); color: var(--sage-deep);
  display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.8rem;
}
@media (max-width: 820px) {
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-media { order: 0; }
}

/* Places grid */
.places { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.place {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.place-img { aspect-ratio: 3 / 2; overflow: hidden; }
.place-img img { width: 100%; height: 100%; object-fit: cover; }
.place-body { padding: 14px 16px 18px; }
.place-body h3 { margin: 0 0 2px; font-size: 1.08rem; }
.place-meta { display: flex; align-items: center; gap: 8px; color: var(--charcoal-muted); font-size: 0.88rem; }
.rating { color: var(--charcoal); font-weight: 700; }
.rating .star { color: var(--sun); }
@media (max-width: 820px) { .places { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .places { grid-template-columns: 1fr; } }

/* FAQ */
.faq { max-width: 720px; margin: 0 auto; display: grid; gap: 12px; }
.faq details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 4px 18px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 14px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--sage-deep); font-weight: 800; font-size: 1.2rem; }
.faq details[open] summary::after { content: "–"; }
.faq p { margin: 0 0 16px; color: var(--charcoal-muted); }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--sage-deep), var(--sage));
  color: #fff;
  border-radius: 28px;
  padding: 46px 30px;
  text-align: center;
  box-shadow: var(--shadow);
}
.cta-band h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); margin: 0 0 10px; }
.cta-band p { margin: 0 0 22px; opacity: 0.92; }
.cta-band .btn-primary { background: #fff; color: var(--sage-deep); }

/* ---------- Content pages (privacy / terms / support) ---------- */
.page-hero { padding: 48px 0 6px; }
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin: 6px 0 0; letter-spacing: -0.01em; }
.page-hero .updated { color: var(--charcoal-muted); font-size: 0.92rem; margin: 8px 0 0; }

.prose-wrap { padding: 22px 0 8px; }
.prose {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
}
.prose > :first-child { margin-top: 0; }
.prose h2 { font-size: 1.2rem; margin: 28px 0 8px; }
.prose h3 { font-size: 1.02rem; margin: 18px 0 6px; }
.prose p, .prose li { color: var(--charcoal); font-size: 0.98rem; }
.prose ul { padding-left: 1.15rem; display: grid; gap: 6px; margin: 8px 0; }
.prose a { color: var(--sage-deep); font-weight: 600; }
.prose code { background: var(--sage-tint); padding: 1px 6px; border-radius: 6px; font-size: 0.85em; }
@media (max-width: 620px) { .prose { padding: 22px 18px; } }

/* Footer */
.site-footer { padding: 44px 0 40px; border-top: 1px solid var(--border); margin-top: 60px; }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; align-items: center; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-nav a { color: var(--sage-deep); text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.footer-legal { color: var(--charcoal-muted); font-size: 0.85rem; }
