:root {
  --cream: #fbf5ea;
  --cream-deep: #f3e8d5;
  --ink: #2b2118;
  --ink-soft: #5c4f42;
  --saffron: #e08a1e;
  --saffron-deep: #c96f12;
  --terracotta: #b3502f;
  --terracotta-deep: #8f3d22;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.wrap--narrow { max-width: 640px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--saffron-deep);
  margin: 0 0 12px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  opacity: 0.6;
}

.eyebrow--light { color: rgba(255,255,255,0.9); }

h1, h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  color: var(--terracotta-deep);
}

p { margin: 0 0 16px; color: var(--ink-soft); }

/* Hero */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43,33,24,0.2) 0%, rgba(43,33,24,0.25) 30%, rgba(43,33,24,0.75) 65%, rgba(43,33,24,0.95) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 24px 64px;
  color: #fff;
  text-align: center;
}

.hero__content h1 {
  font-size: clamp(2.8rem, 9vw, 5.4rem);
  font-weight: 600;
  margin-bottom: 10px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.hero__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.92);
  margin-bottom: 22px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}

.hero__lede {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.88);
  max-width: 440px;
  margin: 0 auto 32px;
  line-height: 1.55;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}

.hero__cta {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 0.95rem;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.hero__cta:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

/* Story */

.story { padding: 96px 0 80px; }

.story h2 { max-width: 620px; }

.story p { max-width: 620px; font-size: 1.05rem; }

.story__location {
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--cream-deep);
  font-size: 0.95rem;
}

.story__location-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--saffron-deep);
  margin-right: 10px;
}

/* Quote block */

.quote-block {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--saffron-deep) 100%);
  padding: 72px 0;
  text-align: center;
}

.quote-block blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3.5vw, 2.1rem);
  font-weight: 500;
  color: #fff;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.4;
  position: relative;
}

.quote-block blockquote::before {
  content: "\201C";
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

/* Gallery */

.gallery { padding: 88px 0; }

.gallery h2 { max-width: 560px; }

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.grid__item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: var(--cream-deep);
  position: relative;
}

.grid__item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.grid__item:hover img { transform: scale(1.04); }

.grid__item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 14px 12px;
  font-size: 0.85rem;
  color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 100%);
  font-style: italic;
}

.grid__item--video video {
  width: 100%;
  height: 100%;
  aspect-ratio: 480 / 864;
  object-fit: cover;
  background: #000;
}

/* Press */

.press { padding: 24px 0 88px; }

.press__figure { margin: 0; }

.press__figure img {
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(43,33,24,0.15);
}

.press__figure figcaption {
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* Get involved */

.involved {
  background: var(--cream-deep);
  padding: 88px 0;
  text-align: center;
}

.involved h2 { color: var(--terracotta-deep); }

.involved p { max-width: 480px; margin-left: auto; margin-right: auto; }

.involved__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--terracotta);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 999px;
  margin-top: 8px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.involved__cta:hover {
  background: var(--terracotta-deep);
  transform: translateY(-1px);
}

.involved__wa-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.involved__email {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.involved__secondary {
  display: inline-block;
  margin-top: 28px;
  font-size: 0.9rem;
  color: var(--terracotta-deep);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.involved__secondary:hover { border-color: var(--terracotta-deep); }

/* Footer */

.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 32px 0;
  text-align: center;
  font-size: 0.85rem;
}

.footer p { color: inherit; margin: 0 0 4px; }

.footer__sub { color: rgba(255,255,255,0.5); }

/* Reveal-on-scroll (progressive enhancement; see script.js) */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__img { transition: none; transform: none; }
  .grid__item:hover img { transform: none; }
}

/* Tablet / desktop */

@media (min-width: 720px) {
  .grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .story, .gallery, .press, .involved { padding-top: 120px; padding-bottom: 120px; }
}

@media (min-width: 1024px) {
  .grid { grid-template-columns: repeat(4, 1fr); }
}
