/* JBCASL style sample — Soft / warm local.
   Cream + sand + terracotta/peach accents (Clay-like warmth). Not seafoam/teal. */

:root {
  --cream: #faf6ef;
  --sand: #f3e8d8;
  --sand-deep: #e8d5bc;
  --terracotta: #c45c3a;
  --terracotta-deep: #9a4028;
  --peach: #f3c4a8;
  --peach-soft: #fde8d8;
  --sage: #8a9a7b;           /* soft sage only as quiet secondary — not teal */
  --ink: #2c2824;
  --muted: #6b6258;
  --white: #fffefb;
  --border: #e4d4c0;
  --radius: 20px;
  --radius-sm: 14px;
  --font: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  --sans: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --max: 64rem;
  --narrow: 38rem;
  --shadow: 0 8px 28px rgba(44, 40, 36, 0.06);
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--terracotta-deep); text-underline-offset: 0.15em; }
a:hover, a:focus-visible { color: var(--terracotta); }

:focus-visible { outline: 3px solid var(--terracotta); outline-offset: 2px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--terracotta); color: #fff; padding: 0.5rem 1rem; border-radius: 8px;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

.wrap { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.wrap.narrow { width: min(100% - 2rem, var(--narrow)); }

.sample-bar {
  background: var(--sand); border-bottom: 1px solid var(--border);
  padding: 0.7rem 0; font-size: 0.8125rem;
}
.sample-bar-inner {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1rem;
  align-items: center; justify-content: space-between;
}
.sample-label {
  margin: 0; color: var(--muted); font-weight: 600; font-size: 0.75rem;
}
.sample-nav { display: flex; flex-wrap: wrap; gap: 0.35rem 0.85rem; list-style: none; margin: 0; padding: 0; }
.sample-nav a { color: var(--terracotta-deep); text-decoration: none; }
.sample-nav a[aria-current="page"] {
  font-weight: 700; border-bottom: 2px solid var(--terracotta);
}

.site-header { padding: 1.25rem 0 0; }
.header-row {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand {
  display: flex; align-items: center; gap: 0.7rem;
  text-decoration: none; color: var(--ink); font-weight: 700;
}
.brand img { width: 52px; height: 52px; border-radius: 50%; box-shadow: var(--shadow); }
.brand span { font-family: var(--font); font-size: 1.25rem; }
.header-nav { display: flex; gap: 1rem; list-style: none; margin: 0; padding: 0; font-size: 0.9rem; }
.header-nav a { text-decoration: none; color: var(--muted); }
.header-nav a:hover { color: var(--terracotta-deep); }

.hero { padding: 2.5rem 0 3rem; }
.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
}
@media (min-width: 640px) {
  .hero-card { padding: 2.75rem 2.5rem; }
}
.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem; font-weight: 600; color: var(--terracotta);
  letter-spacing: 0.04em;
}
.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font);
  font-size: clamp(1.85rem, 5vw, 2.65rem);
  line-height: 1.2; font-weight: 700; color: var(--ink);
}
.lede { margin: 0 0 1.5rem; color: var(--muted); max-width: 34rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.draft-banner {
  margin: 1.25rem 0 0; padding: 0.75rem 1rem;
  background: var(--peach-soft); border-radius: var(--radius-sm);
  font-size: 0.9rem; color: var(--terracotta-deep);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.8rem 1.4rem; font-weight: 700; font-size: 0.95rem;
  text-decoration: none; border-radius: 999px; border: 2px solid transparent;
  font-family: var(--sans);
}
.btn-primary { background: var(--terracotta); color: #fff; }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--terracotta-deep); color: #fff; }
.btn-ghost { background: transparent; color: var(--terracotta-deep); border-color: var(--sand-deep); }
.btn-ghost:hover { border-color: var(--terracotta); color: var(--terracotta-deep); }

.section { padding: 3rem 0; }
.section h2 {
  margin: 0 0 1rem;
  font-family: var(--font);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
}
.section-intro { margin: 0 0 1.75rem; color: var(--muted); }

.cozy-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) {
  .cozy-grid.two { grid-template-columns: 1fr 1fr; }
  .cozy-grid.three { grid-template-columns: 1fr 1fr 1fr; }
}

.cozy-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow);
}
.cozy-card h3, .cozy-card h4 {
  margin: 0 0 0.5rem;
  font-family: var(--font); font-size: 1.15rem;
}
.cozy-card p, .cozy-card ul { margin: 0; color: var(--muted); font-size: 0.95rem; }
.cozy-card ul { margin-top: 0.75rem; padding-left: 1.1rem; }
.cozy-card li { margin-bottom: 0.3rem; }
.cozy-card.tint { background: var(--peach-soft); border-color: transparent; }
.cozy-card.sand { background: var(--sand); border-color: transparent; }

.amount {
  display: block; margin: 0.35rem 0;
  font-family: var(--font);
  font-size: 1.85rem; font-weight: 700; color: var(--terracotta-deep); line-height: 1.1;
}
.per { font-size: 1rem; font-weight: 600; color: var(--muted); }
.meta { font-size: 0.85rem; color: var(--terracotta); font-weight: 600; margin: 0 0 0.5rem; }

.price-group { margin-top: 2.25rem; }
.price-group:first-of-type { margin-top: 0; }
.price-group > h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font); font-size: 1.25rem;
}
.price-group-blurb { margin: 0 0 1rem; color: var(--muted); font-size: 0.95rem; }

.platform-note, .soft-disclaimer {
  margin: 1.25rem 0 0; font-size: 0.9rem; color: var(--muted);
}



.place-band {
  background: var(--sand);
  border-block: 1px solid var(--border);
  padding: 2.5rem 0;
}
.place-grid {
  display: grid; gap: 1.5rem; align-items: center;
}
@media (min-width: 720px) {
  .place-grid { grid-template-columns: 1.15fr 1fr; gap: 2rem; }
}
.place-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  /* warm treatment */
  filter: sepia(0.18) saturate(0.92) brightness(1.02);
}
.place-photo img {
  width: 100%; height: min(52vw, 22rem); object-fit: cover; object-position: center;
}
.place-copy h2 {
  font-family: var(--font); margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3.5vw, 2rem); font-weight: 700;
}
.place-copy p { margin: 0; color: var(--muted); max-width: 28rem; }

.contact { text-align: center; padding-bottom: 3.5rem; }
.contact-email { margin: 1.25rem 0 0.5rem; }

.site-footer {
  background: var(--sand-deep);
  padding: 2.25rem 0 2.75rem;
  font-size: 0.875rem; color: var(--muted);
}
.footer-inner { display: flex; flex-direction: column; gap: 0.4rem; align-items: flex-start; }
.footer-brand {
  display: flex; align-items: center; gap: 0.65rem;
  color: var(--ink); margin: 0 0 0.35rem;
}
.footer-brand img { width: 56px; height: 56px; border-radius: 50%; }
.site-footer p { margin: 0; }

/* Soft entrance */
[data-enter], .cozy-card {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--stagger, 0ms);
}
[data-enter].is-in, .cozy-card.is-in {
  opacity: 1; transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-enter], .cozy-card {
    opacity: 1; transform: none; transition: none;
  }
}
