@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:wght@300;400;500;700&display=swap");

/* ── Design Tokens ── */
:root {
  --color-bg: #ffffff;
  --color-surface: #ffffff;
  --color-primary: #fdda24;
  --color-secondary: #000000;
  --color-ink: #000000;
  --color-muted: #b2b2b2;
  --color-border: #b2b2b2;
  --color-jacaranda: #8a7fcc;
  --color-terracotta: #d45c39;
  --color-river: #4f98bf;

  --radius-md: 12px;

  --section-padding: 32px;
  --hero-gap: 32px;
  --card-gap: 32px;
  --card-aspect-ratio: 1 / 1;
  --card-padding: 24px;
  --card-radius: 12px;
  --card-border: 1px solid #b2b2b2;
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter Tight", sans-serif;
  background: var(--color-bg);
  color: var(--color-ink);
}

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

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

/* ── Navigation ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-surface);
  padding: 8px 32px;
}

.nav__logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}

/* ── Hero ── */
.hero {
  background: var(--color-primary);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--hero-gap);
  padding: var(--section-padding);
}

.hero__label {
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__headline {
  font-weight: 700;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.9;
  margin-bottom: 24px;
  color: var(--color-river);
}

.hero__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  max-width: 42ch;
  margin-bottom: 32px;
}

.hero__event {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero__cta-primary {
  display: inline-flex;
  align-items: center;
  background: var(--color-surface);
  color: var(--color-secondary);
  font-family: "Inter Tight", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}

.hero__cta-primary:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.hero__cta-secondary {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero__cta-secondary:hover {
  text-decoration: underline;
}

.hero__image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ── Cards ── */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
  padding: var(--section-padding);
  background: var(--color-bg);
}

.card {
  border: var(--card-border);
  border-radius: var(--card-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease;
}

.card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.card__image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
}

.card__overlay-text {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  padding: 12px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.card__body {
  padding: var(--card-padding);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.card__heading {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
}

.card__copy {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-ink);
}

.card__link {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: auto;
}

.card__link:hover {
  text-decoration: underline;
}

/* ── FAQ ── */
.faq {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--section-padding);
}

.faq__heading {
  font-weight: 300;
  font-size: 32px;
  line-height: 1.15;
  margin-bottom: 32px;
}

.faq__item {
  border-top: 1px solid var(--color-border);
}

.faq__item:last-child {
  border-bottom: 1px solid var(--color-border);
}

.faq__question {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: "▾";
  font-size: 14px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

details[open] .faq__question::after {
  transform: rotate(180deg);
}

.faq__answer {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-ink);
  padding: 0 0 20px;
}

/* ── Footer ── */
.footer {
  background: var(--color-primary);
  padding: var(--section-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.footer__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__logo {
  height: 40px;
  width: 200px;
  object-fit: contain;
  object-position: center;
}

/* Footer bar — activates when placeholder is filled in */
.footer__bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
  font-size: 14px;
}

.footer__social-label {
  font-weight: 400;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__links a {
  font-weight: 400;
  font-size: 14px;
  color: var(--color-ink);
}

.footer__links a:hover {
  text-decoration: underline;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  :root {
    --card-padding: 20px;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  :root {
    --card-padding: 16px;
  }

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

  .hero__image-wrap {
    order: 1;
  }

  .hero__content {
    order: 0;
  }

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