
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Anton&display=swap');

:root{
  --cream: #fef9f3;
  --cream-panel: #faf6ec;
  --green-deep: #04361d;
  --black-mid: #1e1e1e;
  --green-line: #2c5c43;
  --gold: #e2a233;
  --gold-soft: #eec98a;
  --ink: #142a1f;
  --serif: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "BN Dime", "Anton", "Arial Narrow Bold", sans-serif;
  --red: #ff5120;
  --cream-text: #ffeec7;
  --max-w: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans), sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-size: 1.25rem;
}

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

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

.wrap{
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; }
}

/* ---------- focus visibility ---------- */
a:focus-visible, button:focus-visible, input:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.announce{
  background: var(--green-deep);
  color: var(--cream-panel);
  text-align: center;
  font-family: var(--sans), serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 16px;
}
.announce a{
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}

.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0 10px;
  position: relative;
  flex-direction: row;
  gap: 18px;
}
.nav .brand{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  order: 0;
}
.nav .brand img{ height: 200px; width: auto; }
.nav .brand span{
  font-family: var(--serif), sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--green-deep);
  letter-spacing: 0.02em;
}
.nav ul{
  list-style: none;
  display: flex;
  gap: 34px;
  margin: 0;
  padding: 0;
}
.nav ul li a{
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black-mid);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
  font-weight: 700;
}
.nav ul li a:hover{
  border-color: var(--gold);
  color: var(--green-deep);
}
.nav-toggle{ display: none; }

@media (max-width: 720px){
  .nav { flex-direction: column; }
  .nav .brand { justify-content: center; }
  .nav ul { justify-content: center; flex-wrap: wrap; }
  .nav ul li a { font-size: 0.75rem; }
}

.zigzag{
  height: 26px;
  width: 100%;
}
.zigzag.to-cream{
  background:
    linear-gradient(135deg, var(--cream) 25%, transparent 25%) 0 50% / 40px 40px,
    linear-gradient(225deg, var(--cream) 25%, transparent 25%) 0 50% / 40px 40px;
  background-color: var(--green-deep);
  background-repeat: repeat-x;
}
.zigzag.to-green{
  background:
    linear-gradient(135deg, var(--green-deep) 25%, transparent 25%) 0 50% / 40px 40px,
    linear-gradient(225deg, var(--green-deep) 25%, transparent 25%) 0 50% / 40px 40px;
  background-color: var(--cream);
  background-repeat: repeat-x;
}
.zigzag.to-panel{
  background:
    linear-gradient(135deg, var(--cream-panel) 25%, transparent 25%) 0 50% / 34px 34px,
    linear-gradient(225deg, var(--cream-panel) 25%, transparent 25%) 0 50% / 34px 34px;
  background-color: var(--cream);
  background-repeat: repeat-x;
}

.hero{
  padding: 64px 0 40px;
  text-align: center;
  position: relative;
}
.hero .eyebrow{
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 18px;
}
.hero h1{
  font-family: var(--display);
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  color: var(--green-deep);
  font-size: clamp(2.2rem, 8vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  max-width: 880px;
  margin: 0 auto 22px;
}
.hero p.sub{
  max-width: 90%;
  margin: 0 auto 30px;
  color: var(--black-mid);
  font-size: 1.25rem;
}
.btn{
  display: inline-block;
  background: var(--red);
  color: var(--cream-panel);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 999px;
  border: 5px solid var(--green-deep);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn:hover{
  background: var(--green-deep);
  color: var(--red);
  transform: translateY(-2px);
  border-color: var(--red);
}
.btn.outline{
  background: transparent;
  color: var(--red);
  border-color: #000000;
  border-width: 3px;
}
.btn.outline:hover{
  background: var(--red);
  color: var(--cream-panel);
  border-color: var(--red);
}

.hero-mark{
  margin: 8px auto 0;
  width: 190px;
}

section{ position: relative; }

.section-head{
  text-align: center;
  max-width: 840px;
  margin: 0 auto 46px;
}
.section-head .eyebrow{
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 12px;
}
.section-head h2{
  font-family: var(--display);
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--red);
  font-size: clamp(1.8rem, 5.5vw, 5rem);
  margin: 0 0 14px;
  line-height: 0.98;
  letter-spacing: -0.01em;
}
.section-head.green h2{
  color: var(--cream-text);
}
.section-head p{
  color: var(--black-mid);
  line-height: 1.6;
  margin: 0;
}

.gather{
  background: var(--green-deep);
  color: var(--cream-panel);
  padding: 70px 0 90px;
}
.gather .section-head p{ color: var(--cream-panel); }
.gather .section-head .eyebrow{ color: var(--gold-soft); }

.photo-row{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 10px;
}
.photo-row figure{
  margin: 0;
  background: var(--cream-panel);
  padding: 12px 12px 20px;
  border-radius: 4px;
  box-shadow: 0 18px 34px rgba(0,0,0,0.28);
  transition: transform 0.3s ease;
}

.photo-row figure{ transform: rotate(-5deg); margin-top: 0; }
.photo-row figure:nth-child(1){ /* same height as others */ }
.photo-row figure:nth-child(2){ /* same height as others */ }
.photo-row figure:nth-child(3){ /* same height as others */ }
.photo-row figure:hover{ transform: rotate(0deg) translateY(0) scale(1.03); }

.photo-row img{
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 2px;
}
.photo-row figcaption{
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--black-mid);
  text-align: center;
  padding-top: 10px;
}

.why{
  background: var(--cream);
  padding: 96px 0;
}
.why .grid{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.why .copy .eyebrow{
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 14px;
}
.why .copy h2{
  font-family: var(--display);
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--green-deep);
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin: 0 0 26px;
  max-width: 560px;
}

.hover-list{
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(22,58,43,0.15);
}
.hover-list li{
  border-bottom: 1px solid rgba(22,58,43,0.15);
  padding: 18px 4px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: default;
  transition: padding-left 0.25s ease, background 0.25s ease;
}
.hover-list li:hover{
  padding-left: 14px;
  background: rgba(226,162,51,0.08);
}
.hover-list li .num{
  font-family: var(--serif);
  font-style: italic;
  color: var(--red);
  font-size: 0.95rem;
  min-width: 26px;
}
.hover-list li span.txt{
  font-size: 1.25rem;
  font-width: 600;
  color: var(--black-mid);
  transition: color 0.25s ease;
}
.hover-list li:hover span.txt{ color: var(--green-deep); font-weight: 500; }

.stagger{
  position: relative;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stagger img{
  position: absolute;
  border-radius: 6px;
  box-shadow: 0 20px 40px rgba(22,58,43,0.25);
  object-fit: cover;
  border: 6px solid var(--cream-panel);
  transition: transform 0.35s ease, opacity 0.35s ease;
  opacity: 0;
  pointer-events: none;
  width: 380px;
  height: 380px;
}
.stagger img.active{
  opacity: 1;
  pointer-events: auto;
}
.stagger img:nth-child(1){
  transform: rotate(-5deg);
  z-index: 1;
}
.stagger img:nth-child(1).active{
  transform: rotate(-5deg) scale(1);
}
.stagger img:nth-child(2){
  transform: rotate(4deg);
  z-index: 2;
}
.stagger img:nth-child(2).active{
  transform: rotate(4deg) scale(1);
}
.stagger img:nth-child(3){
  transform: rotate(-3deg);
  z-index: 3;
}
.stagger img:nth-child(3).active{
  transform: rotate(-3deg) scale(1);
}
.stagger img:nth-child(4){
  transform: rotate(6deg);
  z-index: 1;
}
.stagger img:nth-child(4).active{
  transform: rotate(6deg) scale(1);
}
.stagger img:nth-child(5){
  transform: rotate(-6deg);
  z-index: 2;
}
.stagger img:nth-child(5).active{
  transform: rotate(-6deg) scale(1);
}
.stagger img:hover{ transform: rotate(0deg) scale(1.08); z-index: 4; }

.event{
  display: grid;
  grid-template-columns: 60% 40%;
  min-height: 500px;
  overflow: hidden;
}
.event-image-side{
  position: relative;
  overflow: hidden;
}
.event-image-side::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(253, 254, 187, 0.35);
  z-index: 2;
  mix-blend-mode: multiply;
}
.event-image-side img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}
.event-details-side{
  background: var(--black-mid);
  color: var(--cream-panel);
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrap-event{
  width: 100%;
}
.event-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.event-content .eyebrow{
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin: 0 0 12px;
}
.event-content h2{
  font-family: var(--display);
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--cream-panel);
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.event-content h3{
  font-family: var(--display);
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--cream-panel);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.1;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.event-content .event-meta{
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
  line-height: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 20px;
}
.event-content .event-meta li strong{
  color: var(--cream-panel);
  display: inline-block;
  width: 120px;
  font-weight: 600;
}
.event-content .cta-row{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn.outline-light{
  background: transparent;
  color: var(--cream-panel);
  border-color: var(--cream-panel);
  border-width: 3px;
}
.btn.outline-light:hover{
  background: var(--cream-panel);
  color: var(--red);
  border-color: var(--red);
}

.loop{
  background: var(--green-deep);
  color: var(--cream-panel);
  padding: 96px 0 100px;
  text-align: center;
}
.loop .eyebrow{
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
  margin: 0 0 16px;
}
.loop h2{
  font-family: var(--display);
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--cream-text);
  font-size: clamp(1.8rem, 6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}
.loop > .wrap > p{
  max-width: 480px;
  margin: 0 auto 22px;
  color: var(--gold-soft);
  line-height: 1.6;
}

form.signup{
  max-width: 560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
}
form.signup .field-email,
form.signup .field-submit{ grid-column: 1 / -1; }

form.signup label{
  display: block;
  font-size: 1.10rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 8px;
}
form.signup input{
  width: 100%;
  background: var(--cream-panel);
  border: 1px solid var(--green-line);
  border-radius: 6px;
  padding: 13px 15px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
}
form.signup input::placeholder{ color: #8a9a90; }
form.signup input:focus{
  outline: none;
  border-color: var(--gold);
}
form.signup button{
  width: 100%;
  border: none;
  margin-top: 4px;
}
.form-note{
  margin-top: 18px;
  font-size: 0.8rem;
  color: var(--gold-soft);
  opacity: 0.85;
}

footer{
  background: var(--ink);
  color: var(--cream-panel);
  padding: 34px 0 28px;
  text-align: center;
}
.footer-links{
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 34px;
  margin: 0 0 16px;
  padding: 0;
  flex-wrap: wrap;
}
.footer-links li a{
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-panel);
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.footer-links li a:hover{
  color: var(--gold);
  border-color: var(--gold);
}
footer .copy{
  font-size: 0.75rem;
  color: rgba(245,239,226,0.55);
  letter-spacing: 0.03em;
}

@media (max-width: 900px){
  body {font-size: 1rem;}
  .why .grid{ grid-template-columns: 1fr; }
  .nav .brand img{ height: 80px; width: auto; }
  .stagger{ display: none; height: 420px; margin-top: 20px; }
  .event{ grid-template-columns: 1fr; }
  .event-image-side{ min-height: 300px; }
  .event-details-side{ padding: 40px 30px; }
  .hero p.sub { font-size: 1rem;}
  .hover-list li span.txt { font-size: 1rem; }
  form.signup label{ font-size: 0.90rem; }
}

@media (max-width: 640px){
  .wrap{ padding: 0 20px; }
  .nav { flex-direction: column; }
  .nav .brand img{ height: 80px; width: auto; }
  .nav ul { display: flex; gap: 20px; justify-content: center; margin-top: 10px; }
  .photo-row{ grid-template-columns: 1fr; }
  .photo-row figure{ transform: rotate(-2.5deg); }
  form.signup{ grid-template-columns: 1fr; }
  .stagger { display: none;  height: 350px; }
  .stagger img { width: 300px; height: 300px; right: -30px; }
  .event { min-height: auto; }
  .event-image-side{ min-height: 250px; }
  .event-details-side { padding: 30px 20px; }
  .event-content h2 { font-size: 1.6rem; }
  .event-content h3 { font-size: 1.4rem; }
  .event-content .event-meta { font-size: 0.95rem; }
  .hero p.sub { font-size: 1rem;}
  .hover-list li span.txt { font-size: 1rem; }
}

.success-main {
  padding: 10px 0 80px;
  text-align: center;
}

.success-main .hero{
  padding: 10px 0 80px;
  text-align: center;
}

.success-main .sub {
  max-width: 760px;
  margin: 0 auto 12px;
}

.success-signature {
  margin: 20px 0 0;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.5;
}

.success-image-wrap {
  margin-top: 30px;
  border-radius: 8px;
  overflow: hidden;
}

.success-image-wrap img {
  width: 100%;
  height: clamp(260px, 44vw, 460px);
  object-fit: cover;
}

@media (max-width: 640px) {
  .success-main {
    padding-top: 0;
  }

  .success-main .sub {
    font-size: 1rem;
  }
}