:root {
  --green-common: #1d5c3a;
  --green-accent: #4caf78;
  --black: #111111;
  --cream: #f5f0e8;
  --coral: #e8532a;
  --sand: #c9b99a;
  --warm-white: #fafaf8;
  --text-muted: rgba(17, 17, 17, 0.68);
  --surface-soft: #f1eadf;
  --surface-strong: #ece3d4;
  --shadow-soft: 0 24px 60px rgba(17, 17, 17, 0.06);
  --max-width: 1180px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);
  --section-space: clamp(4rem, 8vw, 7rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "DM Sans", sans-serif;
  color: var(--black);
  background:
    radial-gradient(circle at top right, rgba(201, 185, 154, 0.22), transparent 28%),
    linear-gradient(180deg, var(--warm-white) 0%, #f7f4ee 100%);
  line-height: 1.45;
}

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

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

button,
a.button {
  font: inherit;
}

.site-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 var(--gutter) 2rem;
}

.site-header,
.site-footer,
.hero,
.section-heading-inline,
.venue-layout {
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
}

.site-header {
  align-items: center;
  padding: 1.25rem 0 0;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-mark,
.footer-brand {
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-line,
.eyebrow,
.section-note,
.venue-label {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.site-nav {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  font-size: 0.95rem;
}

.site-nav a,
.site-footer a {
  transition: color 140ms ease;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--green-common);
}

.section {
  padding: var(--section-space) 0 0;
}

.hero {
  align-items: end;
  min-height: min(82vh, 880px);
  padding-top: clamp(5rem, 11vw, 8rem);
}

.hero-copy {
  max-width: 40rem;
}

.hero-meta {
  align-self: center;
  padding: 1.5rem 0 0;
  color: var(--text-muted);
}

.hero-meta p {
  margin: 0 0 0.55rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-weight: 600;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.4rem, 9vw, 7rem);
  line-height: 0.94;
}

h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.98;
}

h3 {
  font-size: 1.15rem;
}

.hero-text,
.section-heading p:last-child,
.venue p,
.site-footer p,
.event-meta,
.event-description {
  color: var(--text-muted);
}

.hero-text {
  max-width: 27rem;
  margin: 1.4rem 0 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    opacity 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--green-common);
  color: var(--warm-white);
}

.button-primary:hover {
  background: #17492e;
}

.button-secondary {
  background: rgba(17, 17, 17, 0.05);
}

.button-secondary:hover {
  background: rgba(17, 17, 17, 0.09);
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading-inline {
  align-items: end;
}

.intro-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.intro-points p,
.venue p,
.section-note,
.site-footer p,
.steps,
.venue-block span {
  margin: 0;
}

.events-list {
  display: grid;
  gap: 1rem;
}

.event-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: end;
  padding: 1.5rem 0;
}

.event-row + .event-row {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.event-main,
.event-title-group,
.event-details {
  display: grid;
}

.event-main,
.event-title-group {
  gap: 0.85rem;
}

.event-title {
  font-size: 1.4rem;
}

.event-meta {
  font-size: 0.95rem;
}

.event-cell {
  display: grid;
  gap: 0.2rem;
}

.event-details {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.9rem 1.25rem;
}

.event-label {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.event-value {
  font-size: 1rem;
}

.event-value.highlight {
  color: var(--green-common);
}

.venue-layout {
  align-items: start;
}

.venue-layout p {
  max-width: 34rem;
  font-size: 1.05rem;
}

.venue-block {
  display: grid;
  gap: 0.35rem;
  min-width: 17rem;
  padding: 1.5rem;
  background: var(--surface-soft);
  border-radius: 1.6rem;
  box-shadow: var(--shadow-soft);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding-top: 2rem;
  font-size: 1.08rem;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  counter-increment: step;
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Syne", sans-serif;
  font-size: 0.9rem;
  color: var(--green-common);
}

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

.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 1.8rem;
  background: var(--surface-strong);
}

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

.site-footer {
  padding: 4rem 0 1rem;
  align-items: end;
}

.site-footer p + p {
  margin-top: 0.35rem;
}

@media (max-width: 980px) {
  .hero,
  .site-header,
  .section-heading-inline,
  .venue-layout,
  .site-footer {
    flex-direction: column;
  }

  .hero {
    min-height: auto;
    padding-top: 4rem;
  }

  .hero-meta {
    padding-top: 0;
  }

  .intro-points,
  .steps,
  .gallery {
    grid-template-columns: 1fr;
  }

  .event-row {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 1.4rem 0 1.6rem;
  }

  .event-row .event-action .button {
    width: 100%;
  }

  .event-details {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .venue-block {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .site-shell {
    padding-bottom: 1.25rem;
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4.4rem);
  }

  h2 {
    max-width: none;
  }

  .site-nav {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .button,
  .hero-actions .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .event-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
