:root {
  --green: #344b35;
  --dark: #101b20;
  --orange: #c96822;
  --cream: #f4efe6;
  --white: #ffffff;
  --muted: #6d756c;
  --border: #d8d0c4;
}

/* FONT SETUP
   H1 = Anton
   H2/H3/CTA/nav = Antonio
   Body text/forms = League Spartan
*/

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "League Spartan", Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  font-size: 18px;
}

.hero {
  min-height: 90vh;
  padding: 24px;
  background:
    linear-gradient(rgba(244, 239, 230, 0.88), rgba(244, 239, 230, 0.95)),
    radial-gradient(circle at top right, rgba(201, 104, 34, 0.25), transparent 35%);
}

.nav {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Antonio", Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.nav-link {
  font-family: "Antonio", Arial, Helvetica, sans-serif;
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-content {
  max-width: 980px;
  margin: 90px auto 0;
  text-align: center;
}

.hero-logo {
  width: min(680px, 86vw);
  height: auto;
  display: block;
  margin: 0 auto 28px;
  filter: drop-shadow(0 18px 38px rgba(16, 27, 32, 0.18));
}

.eyebrow {
  font-family: "Antonio", Arial, Helvetica, sans-serif;
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 17px;
  margin: 0 0 18px;
}

h1 {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(42px, 7.5vw, 92px);
  line-height: 0.96;
  margin: 20px 0;
  color: var(--green);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

h2 {
  font-family: "Antonio", Arial, Helvetica, sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  margin: 0 0 20px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

h3 {
  font-family: "Antonio", Arial, Helvetica, sans-serif;
  margin-top: 0;
  color: var(--green);
  font-size: 26px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

p {
  font-family: "League Spartan", Arial, Helvetica, sans-serif;
  font-weight: 500;
}

.lead {
  max-width: 760px;
  margin: 0 auto 32px;
  font-size: clamp(21px, 2.2vw, 26px);
  line-height: 1.35;
  font-weight: 500;
}

.button {
  display: inline-block;
  border: 0;
  border-radius: 999px;
  padding: 16px 28px;
  background: var(--orange);
  color: var(--white);
  font-family: "Antonio", Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  font-size: 18px;
}

.button:hover {
  opacity: 0.92;
}

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

.section > p {
  max-width: 760px;
  font-size: 21px;
  line-height: 1.45;
}

.dark {
  max-width: none;
  background: var(--green);
  color: var(--white);
  text-align: center;
}

.dark h2 {
  color: var(--white);
}

.dark p {
  margin-left: auto;
  margin-right: auto;
  color: var(--white);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.cards article {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
}

.cards article p {
  font-size: 19px;
  line-height: 1.4;
}

.form {
  max-width: 640px;
  display: grid;
  gap: 16px;
}

.privacy-note {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.35;
}

.guide-story {
  max-width: none;
  min-height: 620px;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) 1.3fr;
  align-items: stretch;
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
}

.guide-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 500px;
  padding: 80px clamp(32px, 5vw, 90px);
}

.guide-copy h2 {
  color: var(--white);
}

.guide-copy p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 22px;
  line-height: 1.45;
}

.guide-copy strong {
  color: var(--orange);
}

.guide-image {
  position: relative;
  min-height: 620px;
  background-image:
    linear-gradient(90deg, var(--dark) 0%, rgba(16, 27, 32, 0.92) 10%, rgba(16, 27, 32, 0.55) 32%, rgba(16, 27, 32, 0.08) 58%),
    url("./assets/aleks.jpg");
  background-size: cover;
  background-position: center calc(50% - 100px);
}

.guide-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 27, 32, 0.12), rgba(16, 27, 32, 0.28));
  pointer-events: none;
}

.values-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.values-section h2 {
  max-width: 860px;
}

.values-section p {
  max-width: 820px;
  font-size: 22px;
  line-height: 1.45;
}

.location-section {
  padding-left: 24px;
  padding-right: 24px;
}

.location-content {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.location-content p {
  font-size: 22px;
  line-height: 1.45;
}

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

.button-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 22px;
}

.modal.hidden {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 27, 32, 0.72);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 28px 80px rgba(16, 27, 32, 0.28);
}

.modal-logo {
  width: 120px;
  height: auto;
  display: block;
  margin: 0 auto 18px;
}

.modal-card h2 {
  margin-bottom: 16px;
}

.modal-card p {
  font-size: 19px;
  line-height: 1.45;
  margin: 0 0 14px;
}

.modal-close-button {
  margin-top: 14px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: "Antonio", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 760px) {
  .guide-story {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .guide-copy {
    padding: 64px 20px 28px;
    max-width: none;
  }

  .guide-image {
    width: 100vw;
    min-height: 100svh;
    margin-left: calc(50% - 50vw);
    background-image:
      linear-gradient(
        180deg,
        var(--dark) 0%,
        rgba(16, 27, 32, 0.45) 20%,
        rgba(16, 27, 32, 0.05) 52%
      ),
      url("./assets/aleks.jpg");
    background-size: cover;
    background-position: center center;
  }
  .location-content {
    grid-template-columns: 1fr;
  }

  .location-actions {
    justify-content: stretch;
  }

  .location-actions .button {
    width: 100%;
  }
}

label {
  display: grid;
  gap: 8px;
  font-family: "League Spartan", Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 18px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 15px 16px;
  font-family: "League Spartan", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 500;
  background: var(--white);
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(201, 104, 34, 0.18);
  border-color: var(--orange);
}

textarea {
  resize: vertical;
}

.checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 500;
  line-height: 1.35;
}

.checkbox input {
  width: auto;
  margin-top: 6px;
}

.form-message {
  font-family: "League Spartan", Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.whatsapp {
  background: var(--green);
  text-align: center;
}

.hidden {
  display: none;
}

.footer {
  padding: 32px 24px;
  text-align: center;
  color: var(--muted);
  font-family: "League Spartan", Arial, Helvetica, sans-serif;
  font-weight: 500;
}

/*Video section*/

.video-section {
  text-align: center;
}

.video-section h2 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.video-intro {
  max-width: 700px;
  margin: 0 auto;
  font-size: 22px;
  line-height: 1.45;
}

.video-wrapper {
  width: min(100%, 430px);
  margin: 34px auto 0;
  overflow: hidden;
  border-radius: 28px;
  background: var(--dark);
  box-shadow: 0 24px 60px rgba(16, 27, 32, 0.18);
}

.video-wrapper video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: var(--dark);
}

@media (max-width: 760px) {
  .video-intro {
    font-size: 20px;
  }

  .video-wrapper {
    margin-top: 26px;
    border-radius: 20px;
  }
}

/* Mobile */

@media (max-width: 760px) {
  body {
    font-size: 17px;
  }

  .hero {
    min-height: auto;
    padding: 20px;
  }

  .hero-content {
    margin-top: 64px;
  }

  .hero-logo {
    width: min(520px, 92vw);
    margin-bottom: 22px;
  }

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

  .nav {
    align-items: flex-start;
  }

  h1 {
    font-size: clamp(42px, 13vw, 68px);
  }

  .lead {
    font-size: 21px;
  }

  .section {
    padding: 62px 20px;
  }

  .section > p {
    font-size: 20px;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

#nextEventContent h2 {
  margin-top: 8px;
}

@media (max-width: 760px) {
  .nav-actions {
    gap: 12px;
  }

  .nav-actions .nav-link {
    font-size: 14px;
  }
}
