:root {
  --panel: #ffffff;
  --panel-soft: #fbf6ea;
  --panel-warm: #fffaf0;
  --gold: #c79b32;
  --gold-deep: #8a6320;
  --gold-soft: #f2dda2;
  --black: #1b1712;
  --text: #2c2418;
  --muted: #7b6742;
  --line: rgba(199, 155, 50, 0.24);
  --shadow: 0 18px 40px rgba(40, 28, 10, 0.1);
  --shadow-hover: 0 24px 48px rgba(40, 28, 10, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(199, 155, 50, 0.09), transparent 26%),
    radial-gradient(circle at bottom right, rgba(138, 99, 32, 0.08), transparent 22%),
    linear-gradient(180deg, #fffdf8 0%, #ffffff 36%, #fbf6eb 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.page-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 40px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Garamond, "Palatino Linotype", Georgia, serif;
  font-size: 1.45rem;
  letter-spacing: 0.03em;
  color: var(--black);
}

.brand-mark-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 18px rgba(199, 155, 50, 0.18);
}

.topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--black);
  font-size: 0.96rem;
}

.topbar-links a {
  padding: 6px 0;
  transition: color 180ms ease;
}

.topbar-links a:hover,
.topbar-links a:focus-visible,
.topbar-links a.is-active {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fffdf8;
  color: var(--black);
  cursor: pointer;
  box-shadow: var(--shadow);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--black);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero,
.page-hero,
.section,
.footer,
.highlight-band {
  position: relative;
}

.hero {
  padding: 42px 0 20px;
}

.hero-home {
  min-height: calc(100vh - 120px);
  display: grid;
  place-items: center;
}

.hero-copy,
.page-hero,
.panel,
.service-card,
.hours-card,
.footer,
.event-card,
.event-spotlight,
.event-spotlight-card,
.story-panel {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 48px;
  border-radius: 40px;
  background:
    linear-gradient(180deg, rgba(72, 56, 27, 0.88), rgba(151, 116, 39, 0.76));
}

.hero-copy-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: min(980px, 100%);
}

.hero-logo {
  width: min(220px, 48vw);
  margin-bottom: 18px;
  filter: drop-shadow(0 0 24px rgba(199, 155, 50, 0.28));
}

.page-hero {
  margin-top: 28px;
  padding: 40px;
  border-radius: 34px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(82, 62, 28, 0.86), rgba(168, 128, 40, 0.7));
}

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

.hero-copy .eyebrow,
.page-hero .eyebrow,
.footer .eyebrow {
  color: var(--gold-soft);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Garamond, "Palatino Linotype", Georgia, serif;
  line-height: 1;
}

h1 {
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  color: #fff9ea;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  color: var(--black);
}

h3 {
  font-size: 1.85rem;
  color: var(--black);
}

.hero-text,
.panel p,
.service-card p,
.hours-card p,
.footer-note p,
.highlight-band p,
.event-card p,
.story-panel p,
.event-spotlight p,
.event-spotlight-card p {
  line-height: 1.75;
  color: #4f4126;
}

.hero-text {
  margin: 20px 0 0;
  font-size: 1.05rem;
  color: #f4ead1;
}

.hero-text.narrow {
  max-width: 66ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  justify-content: center;
}

.left-actions {
  justify-content: flex-start;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(138, 99, 32, 0.18);
}

.button-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fffdf8;
}

.button-secondary {
  border: 1px solid rgba(255, 246, 226, 0.55);
  background: rgba(255, 250, 238, 0.18);
  color: #fff4d2;
}

.event-button-light {
  border-color: rgba(138, 99, 32, 0.26);
  background: rgba(255, 255, 255, 0.76);
  color: var(--gold-deep);
}

.highlight-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 12px 0 20px;
}

.highlight-band article {
  text-align: center;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.highlight-band article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.mini-heading,
.stat {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.section {
  padding: 64px 0 0;
}

.section-tight {
  padding-top: 28px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  text-align: center;
}

.split-layout,
.hours-layout,
.service-grid,
.event-grid,
.story-layout {
  display: grid;
  gap: 20px;
}

.split-layout,
.story-layout {
  grid-template-columns: repeat(2, 1fr);
}

.panel,
.story-panel {
  min-height: 100%;
  padding: 30px;
  border-radius: 28px;
  text-align: center;
  background: var(--panel);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.panel:hover,
.story-panel:hover,
.service-card:hover,
.hours-card:hover,
.event-card:hover,
.event-spotlight:hover,
.event-spotlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.accent-panel,
.accent-story {
  background: linear-gradient(160deg, #fff9ec, #f8efda);
}

.feature-list {
  margin: 14px 0 0;
  padding-left: 0;
  color: var(--text);
  line-height: 1.8;
  list-style-position: inside;
  text-align: center;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-grid.two-up {
  grid-template-columns: repeat(2, 1fr);
}

.service-grid.three-up {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  padding: 28px;
  border-radius: 28px;
  background: #ffffff;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card p,
.event-card p {
  margin-top: 14px;
}

.icon-ready {
  position: relative;
  padding-top: 70px;
}

.icon-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f7e2a8, #c79b32);
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 800;
}

.hours-layout {
  grid-template-columns: repeat(3, 1fr);
}

.hours-card {
  padding: 28px;
  border-radius: 28px;
  background: var(--panel-warm);
  text-align: center;
}

.hours-time {
  margin: 10px 0 0;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--black);
}

.hours-time.accent {
  color: var(--gold);
}

.event-grid {
  grid-template-columns: 1.25fr 1fr 1fr;
}

.launch-event-grid {
  align-items: stretch;
}

.event-card,
.event-spotlight-card {
  padding: 28px;
  border-radius: 28px;
  background: #ffffff;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.featured-event {
  background:
    radial-gradient(circle at top right, rgba(199, 155, 50, 0.13), transparent 30%),
    linear-gradient(180deg, #fff9ec, #f8efdc);
}

.launch-event-main {
  grid-row: span 2;
}

.event-spotlight {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  padding: 22px;
  border-radius: 30px;
  background: linear-gradient(180deg, #fffdf8, #f8efda);
}

.event-spotlight-copy,
.event-spotlight-card {
  padding: 18px;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 72px;
  padding: 34px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(75, 58, 27, 0.9), rgba(153, 117, 38, 0.76));
  text-align: center;
}

.footer-note {
  max-width: 48ch;
}

.footer h2,
.footer .footer-note p,
.footer .footer-note a {
  color: #f7e8bc;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 22px 16px 8px;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .highlight-band,
  .split-layout,
  .story-layout,
  .service-grid,
  .service-grid.two-up,
  .service-grid.three-up,
  .hours-layout,
  .event-grid,
  .event-spotlight {
    grid-template-columns: 1fr;
  }

  .launch-event-main {
    grid-row: auto;
  }

  .topbar {
    border-radius: 28px;
    padding: 18px 20px;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, 1200px);
    padding-top: 12px;
  }

  .topbar {
    border-radius: 28px;
    padding: 18px;
  }

  .topbar {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
  }

  .topbar-links {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    gap: 12px;
    text-align: center;
    padding-top: 8px;
    border-top: 1px solid var(--line);
  }

  .topbar.is-open .topbar-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .brand-mark {
    justify-content: flex-start;
    text-align: left;
  }

  .brand-mark-logo {
    width: 30px;
    height: 30px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .topbar.is-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .topbar.is-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .topbar.is-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-copy,
  .page-hero,
  .panel,
  .story-panel,
  .service-card,
  .hours-card,
  .event-card,
  .event-spotlight,
  .event-spotlight-card,
  .footer,
  .highlight-band article,
  .site-footer {
    padding: 22px;
    border-radius: 24px;
  }

  h1 {
    font-size: clamp(2.15rem, 11vw, 3.5rem);
  }

  h2,
  .page-title {
    max-width: none;
  }

  .hero-logo {
    width: min(170px, 44vw);
  }

  .hero-home {
    min-height: auto;
  }

  .hero {
    padding: 28px 0 12px;
  }

  .left-actions {
    justify-content: center;
  }
}
