:root {
  --cream: #fff8f0;
  --cream-deep: #f5ebe0;
  --paper: #ffffff;
  --ink: #1a1a1a;
  --ink-muted: #5c534a;
  --red: #d32f2f;
  --red-dark: #b71c1c;
  --green: #2e7d32;
  --green-dark: #1b5e20;
  --yellow: #ffc107;
  --orange: #ff8f00;
  --line: #e8ddd2;
  --shadow: 0 18px 50px rgba(26, 26, 26, 0.08);
  --radius: 16px;
  --radius-lg: 24px;
  --wrap: 1140px;
  --step: clamp(64px, 8vw, 104px);
  --display: "Fredoka", system-ui, sans-serif;
  --sans: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.75rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; }

img, svg, iframe { max-width: 100%; display: block; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}

.sr-only, .skip-link:not(:focus) {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link:focus {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 100;
  background: var(--paper);
  color: var(--green);
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section {
  padding-block: var(--step);
}

.section-head.center { text-align: center; max-width: 720px; margin-inline: auto; }

.section-lede {
  font-size: 1.08rem;
  color: var(--ink-muted);
  max-width: 62ch;
}

.section-head.center .section-lede { margin-inline: auto; }

.center { text-align: center; }

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
}

.brand-logo { width: 42px; height: auto; }

.brand-text span { color: var(--green); }

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a:not(.btn) {
  font-weight: 600;
  color: var(--ink-muted);
}

.nav-list a:not(.btn):hover { color: var(--red); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle .bar,
.nav-toggle .bar::before,
.nav-toggle .bar::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  position: relative;
}

.nav-toggle .bar::before,
.nav-toggle .bar::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle .bar::before { top: -7px; }
.nav-toggle .bar::after { top: 7px; }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 2px solid transparent;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-family: var(--display);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn:hover { background: var(--red-dark); transform: translateY(-1px); }

.btn-sm { padding: 8px 16px; font-size: 0.92rem; }
.btn-lg { padding: 14px 24px; font-size: 1rem; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover { background: var(--paper); color: var(--red); }

/* hero */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(48px, 8vw, 88px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 193, 7, 0.25), transparent 45%),
    radial-gradient(circle at 85% 10%, rgba(211, 47, 47, 0.12), transparent 40%),
    linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-soon {
  background: var(--red);
  color: #fff;
  margin-bottom: 1rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--green);
}

.lede {
  font-size: 1.12rem;
  color: var(--ink-muted);
  max-width: 54ch;
  margin: 1rem 0 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 1.25rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-tags li {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 4px solid var(--paper);
}

/* split layouts */
.split, .visit-grid, .event-grid, .contact-grid, .catering-grid, .community-grid {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.split, .visit-grid, .event-grid, .contact-grid, .catering-grid {
  grid-template-columns: 1fr 1fr;
}

.community-grid { grid-template-columns: 0.9fr 1.1fr; }

.about-visual img {
  margin-inline: auto;
  max-width: 280px;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,0.08));
}

.tagline-quote {
  margin-top: 1rem;
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--green-dark);
}

/* menu */
.section-menu { background: var(--paper); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 2rem;
}

.menu-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.menu-card-featured {
  grid-column: span 3;
  background: linear-gradient(135deg, var(--red) 0%, #e53935 100%);
  color: #fff;
  border: 0;
}

.menu-card-featured .menu-kicker { opacity: 0.9; }
.menu-card-featured .menu-price { color: var(--yellow); }

.menu-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.menu-price {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--red);
  margin: 0.35rem 0 0.75rem;
}

.menu-list {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink-muted);
}

/* promos */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 2rem;
}

.promo-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.promo-card-accent {
  background: linear-gradient(160deg, var(--yellow), #ffe082);
}

.promo-icon { font-size: 1.8rem; display: block; margin-bottom: 0.5rem; }

.promo-price {
  font-family: var(--display);
  font-size: 1.75rem;
  color: var(--red);
  margin: 0.35rem 0 0.75rem;
}

/* event */
.section-event {
  background:
    radial-gradient(circle at 100% 0%, rgba(46, 125, 50, 0.08), transparent 40%),
    var(--cream-deep);
}

.event-details {
  list-style: none;
  margin: 1.25rem 0;
  padding: 0;
}

.event-details li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.event-cta-note {
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--red);
}

/* visit */
.hours-list {
  list-style: none;
  margin: 1.25rem 0;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
}

.visit-address {
  font-style: normal;
  line-height: 1.7;
  margin: 1rem 0;
}

.visit-actions, .brand-actions, .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1rem;
}

.social-links a {
  font-weight: 600;
  color: var(--green-dark);
}

.map-wrap iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* community */
.section-community { background: var(--paper); }

.community-grid img {
  max-width: 280px;
  margin-inline: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* brand panel */
.brand-panel {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
}

.brand-panel .eyebrow { color: var(--yellow); }
.brand-panel .section-lede { color: rgba(255,255,255,0.78); }

/* forms */
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 4vw, 32px);
  box-shadow: var(--shadow);
}

.form-card h3 {
  margin-bottom: 1rem;
  color: var(--red);
}

.field { margin-bottom: 14px; }

.field label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.optional { font-weight: 400; color: var(--ink-muted); font-size: 0.88rem; }

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  background: #fff;
}

.field textarea { resize: vertical; min-height: 96px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-actions { margin-top: 8px; }

.form-status {
  min-height: 1.4em;
  margin-top: 12px;
  font-weight: 600;
}

.form-status.is-success { color: var(--green-dark); }
.form-status.is-error { color: var(--red-dark); }
.form-status.is-warn { color: var(--orange); }

/* steps & units */
.section-how { background: var(--paper); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 2rem;
}

.step-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.step-card-accent {
  background: linear-gradient(160deg, rgba(46, 125, 50, 0.08), rgba(255, 193, 7, 0.15));
  border-color: rgba(46, 125, 50, 0.25);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.units-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  margin-top: 2rem;
}

.unit-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.unit-card-main {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: #fff;
  border: 0;
}

.feature-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--ink-muted);
}

.unit-card-main .feature-list { color: rgba(255,255,255,0.9); }

.feature-list.compact { list-style: none; padding: 0; }

.feature-list.compact li {
  padding: 8px 0 8px 1.4rem;
  position: relative;
}

.feature-list.compact li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.section-vendors { background: var(--cream-deep); }

.vendor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.section-breakfast { background: var(--paper); }

.breakfast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
  margin-top: 2rem;
}

.breakfast-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 4px solid var(--cream);
}

.breakfast-logo { max-width: 140px; margin-bottom: 1rem; }

.breakfast-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.25rem;
}

.inline-menu {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 1rem 0 0;
}

.inline-menu li {
  padding: 6px 12px;
  background: var(--cream);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
}

.event-panel {
  margin-top: 2.5rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 4vw, 32px);
}

.event-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 32px);
  align-items: start;
}

.form-card-compact { box-shadow: none; border: 1px dashed var(--line); }

.section-invest { background: var(--cream-deep); }

.invest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.invest-note { font-size: 0.95rem; color: var(--ink-muted); margin-top: 1rem; }

.contact-list {
  list-style: none;
  margin: 1rem 0 1.5rem;
  padding: 0;
  line-height: 1.8;
}

.contact-list a { color: var(--green-dark); font-weight: 600; }

/* footer */
.site-footer {
  background: var(--green-dark);
  color: #fff;
  padding: 40px 0;
}

.footer-inner {
  display: grid;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand p { margin: 0; opacity: 0.88; max-width: 36ch; }

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav a:hover { color: var(--yellow); }

.copyright { opacity: 0.7; font-size: 0.92rem; margin: 0; }

/* responsive */
@media (max-width: 960px) {
  .hero-grid,
  .split,
  .visit-grid,
  .event-grid,
  .contact-grid,
  .catering-grid,
  .community-grid,
  .menu-grid,
  .promo-grid,
  .steps-grid,
  .units-grid,
  .vendor-grid,
  .breakfast-grid,
  .event-panel-grid,
  .invest-grid {
    grid-template-columns: 1fr;
  }

  .menu-card-featured { grid-column: span 1; }

  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }

  .nav-list {
    position: fixed;
    inset: 72px 0 auto 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 24px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-list.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list li .btn { width: 100%; }
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}
