@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
  --parchment: #eadcc6;
  --parchment-light: #f5ead9;
  --clay: #9a5f3c;
  --terra: #b46f45;
  --earth: #4a2c1f;
  --brown: #2f1b13;
  --olive: #6b7053;
  --cream: #fff7ea;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--parchment);
  color: var(--earth);
  font-family: 'Lato', system-ui, sans-serif;
  line-height: 1.6;
}

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

.hero {
  min-height: 25vh;
  background-image: url('assets/banner.jpg');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  min-height: 25vh;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(47,27,19,.76), rgba(47,27,19,.34), rgba(47,27,19,.12));
  padding: 6rem 8%;
}

.hero-content {
  max-width: 720px;
  color: var(--cream);
}

.hero-logo {
  width: min(520px, 90vw);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.35));
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--olive);
  margin: 0 0 .75rem;
}

.hero .eyebrow { color: #cfd8a0; }

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.8rem);
  max-width: 900px;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  color: var(--brown);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.65rem;
  color: var(--brown);
}

.hero-text {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  max-width: 650px;
  margin: 1.4rem 0 2rem;
}

.buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: .95rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, opacity .2s ease;
}

.button:hover { transform: translateY(-2px); opacity: .92; }

.primary {
  background: var(--terra);
  color: var(--cream);
}

.secondary {
  border: 1px solid rgba(255,247,234,.8);
  color: var(--cream);
}

.section {
  padding: 5.5rem 8%;
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  font-size: 1.15rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.card {
  background: var(--parchment-light);
  border: 1px solid rgba(74,44,31,.14);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(74,44,31,.12);
}

.card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.card h3 {
  padding: 1.15rem 1.25rem 1.35rem;
}

.split {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 4rem;
  align-items: center;
  background: var(--parchment-light);
}

.round-logo {
  width: min(360px, 80vw);
  margin: 0 auto;
  border-radius: 50%;
  box-shadow: 0 20px 55px rgba(74,44,31,.2);
}

.process {
  background:
    radial-gradient(circle at top left, rgba(154,95,60,.22), transparent 36%),
    var(--parchment);
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.process p:not(.eyebrow), .events p {
  font-size: 1.18rem;
}

.events {
  text-align: center;
  background: var(--earth);
  color: var(--cream);
}

.events h2 { color: var(--cream); }

.events .eyebrow { color: #cfd8a0; }

footer {
  text-align: center;
  padding: 4rem 8%;
  background: var(--brown);
  color: var(--cream);
}

.footer-logo {
  width: 95px;
  height: 95px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1rem;
}

footer h2 {
  color: var(--cream);
  font-size: 2.8rem;
}

footer a {
  color: var(--cream);
}

.social {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 2rem;
}

.social a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,247,234,.5);
}

.small {
  font-size: .85rem;
  opacity: .72;
}

@media (max-width: 900px) {
  .hero-overlay {
    background: linear-gradient(180deg, rgba(47,27,19,.78), rgba(47,27,19,.38));
    align-items: flex-end;
    padding: 4rem 6%;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .split {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .hero, .hero-overlay {
    min-height: 86vh;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .card img {
    height: 320px;
  }

  .section {
    padding: 4rem 6%;
  }

  .buttons {
    flex-direction: column;
  }

  .button {
    text-align: center;
  }
}
