:root {
  --banana: #F7C948;
  --banana-200: #FBE28B;
  --leaf: #1E7C5C;
  --ocean: #2C6ECB;
  --ink: #2B2B2B;
  --cream: #FFFCF5;
  --stone: #E5E7EB;
  --card: #FFFFFF;
  --shadow: 0 8px 20px rgba(0, 0, 0, .08);
  --radius: 16px;
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Nunito", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  scroll-behavior: smooth
}

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

a {
  color: var(--ocean);
  text-decoration: none
}

a:hover {
  text-decoration: underline
}

.container {
  width: min(1100px, 92vw);
  margin-inline: auto
}

.section-pad {
  padding: 72px 0
}

.section-pad.alt {
  background: var(--cream)
}

.section-title {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  margin: 0 0 24px
}

.lead {
  font-size: 1.05rem;
  color: #374151
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  background: var(--banana);
  z-index: 50;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08)
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 800;
  color: #2B2B2B
}

.brand-text {
  letter-spacing: .2px
}

.site-nav {
  display: flex;
  gap: 16px;
  align-items: center
}

.site-nav a {
  padding: 8px 10px;
  border-radius: 10px;
  color: #2B2B2B;
  font-weight: 700
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.35)
}

.site-nav .cta {
  background: var(--leaf);
  color: #fff;
  border-color: transparent
}

.site-nav .cta:hover {
  filter: brightness(1.05)
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 1.5rem
}

/* Hero */
.hero {
  position: relative;
  background: radial-gradient(1200px 600px at 80% -10%, #FFF5CC 0%, #FFF9E6 60%, #ffffff 100%);
  border-bottom: 1px solid var(--stone)
}

.hero-inner {
  padding: 64px 0 48px;
  text-align: center
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 8px
}

.subhead {
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  max-width: 60ch;
  margin: 0 auto 16px
}

.hero-meta {
  display: flex;
  gap: 16px;
  justify-content: center;
  color: #fff;
  margin-top: 8px;
  font-weight: 700;
}

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

.btn {
  display: inline-block;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--stone);
  background: #fff;
  font-weight: 700
}

.btn:hover {
  box-shadow: var(--shadow)
}

.btn.primary {
  background: var(--ocean);
  color: #fff;
  border-color: transparent
}

.btn.primary:hover {
  filter: brightness(1.05)
}

.btn.small {
  padding: 8px 12px;
  font-size: .95rem
}

/* Grids & cards */
.grid {
  display: grid;
  gap: 18px
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr))
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr))
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr))
}

@media (max-width:900px) {
  .grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

@media (max-width:640px) {

  .grid.two,
  .grid.three,
  .grid.four {
    grid-template-columns: 1fr
  }
}

.card {
  background: var(--card);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow)
}

.card.mini {
  padding: 14px
}

.step {
  position: relative;
  padding-top: 24px
}

.step-num {
  position: absolute;
  top: -16px;
  left: 16px;
  background: var(--banana);
  color: #111;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid rgba(0, 0, 0, .07)
}

/* Timeline */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px
}

.timeline li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start
}

.timeline .dot {
  width: 12px;
  height: 12px;
  background: var(--leaf);
  border-radius: 999px;
  margin-top: 7px
}

.timeline .content h3 {
  margin: 0 0 6px
}

/* Lists/notes */
.list {
  padding-left: 18px
}

.list li {
  margin: 6px 0
}

.note {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #F0F7F2;
  border: 1px solid #CFE7D7
}

/* Form */
form {
  display: grid;
  gap: 22px
}

fieldset {
  border: 1px solid var(--stone);
  padding: 16px;
  border-radius: 12px
}

legend {
  padding: 0 6px;
  font-weight: 800
}

label {
  display: grid;
  gap: 6px;
  margin: 8px 0
}

input,
select,
textarea {
  border: 1px solid var(--stone);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 1rem
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(37, 99, 235, .25);
  border-color: #93c5fd
}

.choices {
  display: flex;
  gap: 16px;
  align-items: center
}

.attendee-list {
  display: grid;
  gap: 8px
}

.attendee-row {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 8px
}

.form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--stone);
  background: #fff
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  align-items: center;
  flex-wrap: wrap
}

.footer-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.smallprint {
  color: #6b7280;
  font-size: .95rem;
  margin-top: 6px
}

/* Mobile nav */
@media (max-width:880px) {
  .nav-toggle {
    display: inline-block
  }

  .site-nav {
    position: fixed;
    inset: 60px 10px auto 10px;
    background: #fff;
    border: 1px solid var(--stone);
    border-radius: 14px;
    padding: 12px;
    flex-direction: column;
    gap: 2px;
    box-shadow: var(--shadow);
    display: none
  }

  .site-nav.open {
    display: flex
  }
}

/* Hero background variant */
.hero-with-bg {
  position: relative;
  min-height: clamp(340px, 60vh, 520px);
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center center;
  color: #fff;
}

.hero-with-bg .hero-inner {
  position: relative;
  z-index: 2
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .35), rgba(0, 0, 0, .35));
  z-index: 1
}

/* Photos */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px
}

.photo-grid .photo {
  grid-column: span 12;
  border-radius: 14px;
  overflow: hidden;
  display: block;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .08);
  transition: transform .15s ease, box-shadow .15s ease
}

.photo-grid .photo:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .12)
}

.photo-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover
}

@media (min-width:720px) {
  .photo-grid .photo:nth-child(1) {
    grid-column: span 5
  }

  .photo-grid .photo:nth-child(2) {
    grid-column: span 7
  }

  .photo-grid .photo:nth-child(3) {
    grid-column: span 12
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .85);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999
}

.lightbox.open {
  display: flex
}

.lightbox img {
  max-width: min(1200px, 92vw);
  max-height: 82vh;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .5)
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  border-radius: 999px;
  width: 40px;
  height: 40px;
  cursor: pointer
}

.lightbox-cap {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  background: rgba(0, 0, 0, .35);
  padding: 6px 10px;
  border-radius: 999px;
  max-width: 90vw;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}