:root {
  color-scheme: light;
  --ink: #111318;
  --slate: #2f3440;
  --muted: #5d6472;
  --mist: #e9e7e1;
  --paper: #f9f6f1;
  --bronze: #d47d37;
  --teal: #0b6e77;
  --teal-dark: #0b4d55;
  --accent: #f2c14e;
  --shadow: rgba(12, 14, 18, 0.15);
  --shadow-strong: rgba(12, 14, 18, 0.25);
  --font-display: "Bebas Neue", "Impact", "Arial Narrow", sans-serif;
  --font-body: "Space Grotesk", "Segoe UI", sans-serif;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --content-width: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: radial-gradient(circle at 20% 20%, #fcead1 0%, transparent 55%),
    radial-gradient(circle at 80% 0%, #e2f7f6 0%, transparent 45%),
    linear-gradient(180deg, #fdf7ef 0%, #f4efe6 65%, #efe7db 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 0);
  background-size: 20px 20px;
  opacity: 0.2;
  pointer-events: none;
  z-index: -1;
}

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

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

.container {
  width: min(100% - 32px, var(--content-width));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  background: var(--ink);
  color: white;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  z-index: 10;
}

.skip-link:focus {
  left: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  background: rgba(249, 246, 241, 0.88);
  border-bottom: 1px solid rgba(17, 19, 24, 0.08);
  z-index: 5;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 12px;
  background: white;
  box-shadow: 0 8px 20px var(--shadow);
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 1px;
}

.site-nav {
  display: flex;
  gap: 18px;
  font-weight: 600;
}

.nav-link {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--slate);
}

.nav-link.is-active,
.nav-link:hover {
  background: rgba(11, 110, 119, 0.12);
  color: var(--teal-dark);
}

.hero {
  padding: 80px 0 60px;
}

.hero-grid {
  display: grid;
  gap: 32px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.hero-copy {
  display: grid;
  gap: 18px;
  animation: float-in 0.6s ease-out;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 0.85rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  margin: 0;
  letter-spacing: 2px;
}

.hero-logo {
  max-width: 780px;
  width: 100%;
  height: auto;
  display: block;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px var(--shadow);
}

.btn-primary {
  background: var(--teal);
  color: white;
}

.btn-ghost {
  background: white;
  border-color: rgba(17, 19, 24, 0.1);
  color: var(--slate);
}

.btn-outline {
  border-color: rgba(11, 110, 119, 0.5);
  color: var(--teal-dark);
  background: transparent;
}

.event-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 18px 40px var(--shadow-strong);
  display: grid;
  gap: 16px;
  animation: float-in 0.8s ease-out;
}

.event-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.event-card-header h2 {
  margin: 0;
  font-size: 1.4rem;
}

.event-badge {
  background: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
}

.event-details {
  display: grid;
  gap: 10px;
}

.event-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px dashed rgba(17, 19, 24, 0.12);
  padding-bottom: 8px;
}

.event-label {
  font-weight: 600;
  color: var(--muted);
}

.event-value {
  font-weight: 600;
  text-align: right;
}

.event-fallback {
  background: rgba(212, 125, 55, 0.12);
  color: var(--teal-dark);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.highlights {
  padding: 40px 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 20px;
  letter-spacing: 1px;
}

.highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.highlight-item {
  background: white;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: 0 12px 20px var(--shadow);
  font-weight: 600;
}

.vendor-callout {
  padding: 40px 0;
}

.callout-inner {
  background: var(--teal-dark);
  color: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.about {
  padding: 40px 0 80px;
}

.about-text {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.7;
  max-width: 760px;
}

.site-footer {
  border-top: 1px solid rgba(17, 19, 24, 0.08);
  padding: 24px 0 40px;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-main {
  padding: 60px 0 80px;
}

.contact-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.contact-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: 0 12px 24px var(--shadow);
}

.contact-card ul {
  padding-left: 18px;
  margin: 12px 0 0;
}

.contact-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 20px 45px var(--shadow-strong);
  display: grid;
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 6px;
}

.form-field input,
.form-field textarea,
.form-field select {
  border: 1px solid rgba(17, 19, 24, 0.2);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 1rem;
  font-family: var(--font-body);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: 2px solid rgba(11, 110, 119, 0.4);
  border-color: var(--teal);
}

.field-error {
  min-height: 16px;
  font-size: 0.85rem;
  color: #b0402b;
}

.field-error.is-visible {
  min-height: 20px;
}

.form-field.is-invalid input,
.form-field.is-invalid textarea,
.form-field.is-invalid select {
  border-color: #b0402b;
  background: #fff4f2;
}

.form-actions {
  display: grid;
  gap: 8px;
}

.form-note {
  color: var(--muted);
  margin: 0;
}

.form-error {
  background: #fff4f2;
  color: #8f2f20;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
}

.form-success {
  background: #e7f6f1;
  color: #1b5e50;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .hero {
    padding: 40px 0 30px;
  }

  .event-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .event-value {
    text-align: left;
  }

  .callout-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .event-card {
    padding: 18px;
  }

  .event-details {
    gap: 6px;
  }

  .btn {
    width: 100%;
  }
}
