:root {
  --green: #2E5339;
  --green-deep: #22402B;
  --gold: #C5A53B;
  --gold-light: #D4B85A;
  --sage: #E8F5E9;
  --cream: #FAFAFA;
  --cream-warm: #F5F0E8;
  --dark: #1a1a1a;
  --text: #333333;
  --text-light: #6b6b6b;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 500; line-height: 1.1; }

.eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.caption {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text-light);
  margin-top: 0.7rem;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.05) 35%, rgba(0,0,0,0.55) 80%, rgba(0,0,0,0.78) 100%);
  z-index: -1;
}
.hero__top { padding: clamp(1.4rem, 3vw, 2.4rem); }
.hero__logo { width: 104px; border-radius: 10px; }
.hero__content { padding: clamp(1.6rem, 5vw, 4.5rem); max-width: 900px; }
.hero__title {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-style: italic;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.hero__sub {
  margin-top: 1.2rem;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 300;
  max-width: 640px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}
.hero__meta {
  margin-top: 1.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.scroll-cue {
  position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ---------- SECTIONS ---------- */
section { padding: clamp(4rem, 8vw, 8rem) clamp(1.4rem, 5vw, 3rem); }
.wrap { max-width: 660px; margin: 0 auto; text-align: center; }
.wrap--wide { max-width: 1100px; }
.section-h { font-size: clamp(2rem, 4.5vw, 3.2rem); color: var(--green); margin-bottom: 1.6rem; }
.section-h.light { color: #fff; }
.lead { font-size: clamp(1.05rem, 2vw, 1.2rem); color: var(--text); }
.lead + .lead { margin-top: 1.3rem; }
.attribution { margin-top: 2rem; font-size: 0.9rem; color: var(--text-light); font-style: italic; }

/* ---------- STAT BAND (the transformation) ---------- */
.transform { background: var(--sage); }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px; margin: 0 auto 3rem;
  text-align: center;
}
.stat__num { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 6vw, 4rem); color: var(--green); font-weight: 600; line-height: 1; }
.stat__label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-light); margin-top: 0.6rem; }

/* ---------- FULL-BLEED DIVIDER ---------- */
.bleed { padding: 0; }
.bleed img { width: 100%; aspect-ratio: 21/9; object-fit: cover; }

/* ---------- MATERIALS ---------- */
.materials { background: var(--green); color: #fff; }
.cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem;
  max-width: 1100px; margin: 3rem auto 0;
}
.card { background: rgba(255,255,255,0.07); border-radius: 14px; overflow: hidden; }
.card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.card__body { padding: 1.4rem 1.4rem 1.7rem; text-align: left; }
.card__name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--gold-light); margin-bottom: 0.5rem; }
.card__desc { font-size: 0.92rem; color: rgba(255,255,255,0.82); }

/* ---------- MAKING GRID ---------- */
.grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem;
  max-width: 1100px; margin: 3rem auto 0;
}
.grid figure { position: relative; }
.grid img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 10px; }
.grid figure.span2 { grid-column: 1 / -1; }
.grid figure.span2 img { aspect-ratio: 21/9; }

.videowrap {
  max-width: 1100px; margin: 2.2rem auto 0;
  position: relative; aspect-ratio: 16/9; border-radius: 12px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}
.videowrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- GALLERY ---------- */
.gallery { background: var(--cream); }
.gallery__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 1.6rem;
  max-width: 1100px; margin: 3.4rem auto 0;
}
.gitem { margin: 0; }
.gitem img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}
.gitem--wide { grid-column: 1 / -1; }
.gitem--wide img { aspect-ratio: 21/9; }
.gitem figcaption {
  text-align: left; margin-top: 0.9rem;
  font-size: 0.9rem; color: var(--text-light); line-height: 1.55;
}
.gitem figcaption strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: 1.35rem; line-height: 1.2;
  color: var(--green); margin-bottom: 0.25rem;
}

/* ---------- INVITATION ---------- */
.invite { background: var(--cream-warm); }
.btn {
  display: inline-block; margin-top: 2rem;
  background: var(--green); color: #fff; text-decoration: none;
  padding: 1rem 2.4rem; border-radius: 8px;
  text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.82rem; font-weight: 600;
  transition: background 0.25s ease, transform 0.25s ease;
}
.btn:hover { background: var(--green-deep); transform: translateY(-2px); }
.contact { margin-top: 1.6rem; font-size: 0.92rem; color: var(--text-light); }
.contact a { color: var(--green); text-decoration: none; font-weight: 500; }

/* ---------- FOOTER ---------- */
footer { background: var(--dark); color: rgba(255,255,255,0.7); text-align: center; padding: 3.5rem 1.4rem; }
footer img { width: 64px; margin: 0 auto 1.4rem; border-radius: 10px; }
footer p { font-size: 0.85rem; margin: 0.3rem 0; }
footer .muted { color: rgba(255,255,255,0.4); font-size: 0.78rem; }

/* ---------- FADE-IN ---------- */
.fade { opacity: 0; transform: translateY(20px); transition: opacity 0.75s ease, transform 0.75s ease; }
.fade.visible { opacity: 1; transform: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 820px) {
  .cards, .grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .hero__logo { width: 76px; }
  .grid figure.span2 img { aspect-ratio: 16/10; }
}
