:root {
  --navy: #17335b;
  --navy-deep: #10243f;
  --orange: #e8651c;
  --teal: #17655a;
  --bg: #fbf8f1;
  --ink: #1c2b40;
  --line: rgba(23, 51, 91, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Barlow", system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
}

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

a { color: var(--teal); }

/* ---------- top ribbon ---------- */
.ribbon {
  background: var(--navy);
  color: #fff;
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
}
.ribbon .dot { color: var(--orange); margin: 0 0.5em; }

/* ---------- nav ---------- */
header.site {
  border-bottom: 2px solid var(--navy);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav {
  max-width: 68rem;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.wordmark {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  line-height: 1.1;
}
.wordmark small {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--teal);
}
nav.links {
  display: flex;
  gap: 1.5rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1rem;
}
nav.links a {
  color: var(--navy);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
nav.links a:hover, nav.links a[aria-current] { border-bottom-color: var(--orange); }

/* ---------- hero ---------- */
.hero {
  text-align: center;
  padding: clamp(2.5rem, 7vw, 5rem) 1.25rem 0;
}
.hero img.badge {
  width: min(24rem, 82vw);
  margin: 0 auto;
  animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero h1 {
  font-family: "Yellowtail", cursive;
  font-weight: 400;
  color: var(--teal);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  margin: 1.5rem auto 0.5rem;
  text-wrap: balance;
  animation: rise 0.9s 0.12s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero p.lede {
  max-width: 40rem;
  margin: 0 auto;
  animation: rise 0.9s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero .cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0 0;
  animation: rise 0.9s 0.28s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero img.badge, .hero h1, .hero p.lede, .hero .cta-row { animation: none; }
  html { scroll-behavior: auto; }
}

.btn {
  display: inline-block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 1.05rem;
  text-decoration: none;
  padding: 0.8rem 1.9rem;
  border-radius: 999px;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: #cf5613; transform: translateY(-2px); }
.btn-ghost { color: var(--navy); border: 2px solid var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

/* ---------- sections ---------- */
main { display: block; }
section.band { padding: clamp(3rem, 8vw, 5.5rem) 1.25rem; }
.wrap { max-width: 68rem; margin: 0 auto; }

h2.script {
  font-family: "Yellowtail", cursive;
  font-weight: 400;
  color: var(--navy);
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin: 0 0 0.5rem;
  text-wrap: balance;
}
h2.script::after {
  content: "";
  display: block;
  width: 4.5rem;
  height: 3px;
  background: var(--orange);
  margin-top: 0.6rem;
  border-radius: 2px;
}
.center h2.script::after { margin-inline: auto; }
.center { text-align: center; }

/* menu preview */
.menu-band { background: var(--navy); color: #fff; }
.menu-band h2.script { color: #fff; }
.menu-pages {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding: 1.5rem 0 0.75rem;
  scroll-snap-type: x mandatory;
}
.menu-pages a {
  flex: 0 0 clamp(11rem, 22vw, 14rem);
  scroll-snap-align: start;
  border-radius: 6px;
  overflow: hidden;
  outline: 3px solid transparent;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), outline-color 0.25s;
}
.menu-pages a:hover { transform: translateY(-6px); outline-color: var(--orange); }
.menu-pages img { border-radius: 6px; }
.menu-band .note { color: rgba(255, 255, 255, 0.85); max-width: 42ch; }

/* pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  margin-top: 2.5rem;
}
.pillars h3 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal);
  font-size: 1.2rem;
  margin: 0 0 0.4rem;
}
.pillars p { margin: 0; }

/* about page */
.prose {
  max-width: 44rem;
  margin: 0 auto;
}
.prose p { margin: 1.2rem 0; text-wrap: pretty; }
.prose .pull {
  font-family: "Yellowtail", cursive;
  font-size: 1.7rem;
  color: var(--orange);
  line-height: 1.35;
  margin: 2.2rem 0;
}

/* footer */
footer.site {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding: 2.5rem 1.25rem;
  font-size: 0.95rem;
}
footer.site .motto {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #fff;
  margin-bottom: 0.75rem;
}
footer.site .motto .dot { color: var(--orange); margin: 0 0.4em; }
footer.site a { color: #fff; }
