@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&family=Fraunces:opsz,wght@9..144,500;9..144,700&display=swap");

:root {
  --bg: #f7f2e9;
  --surface: #fffdfa;
  --text: #191716;
  --muted: #5e5a55;
  --line: #d8d0c4;
  --accent: #0f766e;
  --accent-soft: #d6f2ef;
  --radius: 20px;
  --shadow: 0 14px 36px rgba(25, 23, 22, 0.08);
  --max: 980px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 10%, #ffe6bf 0, rgba(255, 230, 191, 0) 38%),
    radial-gradient(circle at 92% 20%, #d3e8f4 0, rgba(211, 232, 244, 0) 34%),
    var(--bg);
  line-height: 1.5;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.02em;
}

main {
  padding-bottom: 3.5rem;
  padding-top: 1rem;
}

.hero {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

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

.hero-copy {
  padding: clamp(1.4rem, 4vw, 3rem);
}

.hero-brand {
  margin: 0 0 1rem;
}

h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.02;
  margin: 0;
}

.lead {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--muted);
  margin: 1.15rem 0 0;
  max-width: 50ch;
}

.hero-copy .lead + .lead {
  margin-top: 0.9rem;
}

.hero-image-slot {
  min-height: 300px;
  border-left: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(15, 118, 110, 0.18), rgba(255, 255, 255, 0) 55%),
    repeating-linear-gradient(
      -45deg,
      rgba(25, 23, 22, 0.06),
      rgba(25, 23, 22, 0.06) 10px,
      transparent 10px,
      transparent 22px
    ),
    #f1ede6;
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section {
  margin-top: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1rem, 3vw, 1.7rem);
}

h2 {
  margin: 0 0 1rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.35rem, 3.6vw, 2rem);
}

.section-intro {
  color: var(--muted);
  margin: 0 0 1rem;
}

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

.schedule-note {
  margin: 0;
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.92rem;
}

.card {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 1rem;
}

.time {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: var(--accent);
  margin: 0;
}

.event {
  margin: 0.35rem 0 0;
  font-size: 1.08rem;
  font-weight: 700;
}

.submit-panel {
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.submit-panel h3 {
  font-family: "Fraunces", Georgia, serif;
  margin: 0;
  font-size: clamp(1.15rem, 3vw, 1.5rem);
}

.submit-panel p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.submit-form {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.95rem;
  max-width: 560px;
}

.submit-form label {
  display: grid;
  gap: 0.32rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.submit-form input,
.submit-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font: inherit;
  padding: 0.62rem 0.7rem;
}

.submit-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.form-note a,
.form-note a:link,
.form-note a:visited,
.form-note a:hover,
.form-note a:active {
  color: var(--muted);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1rem;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(15, 118, 110, 0.26);
}

.fade-up {
  animation: fade-up 620ms ease both;
}

.delay {
  animation-delay: 140ms;
}

@keyframes fade-up {
  from {
    transform: translateY(12px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 850px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-slot {
    min-height: 220px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

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