@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&display=swap");

:root {
  color-scheme: dark;
  --bg: #294330;
  --bg-deep: #22382a;
  --text: #f2ede1;
  --muted: rgba(242, 237, 225, 0.72);
  --accent: #c6a24b;
  --card: #f2ede1;
  --card-text: #495e4d;
  --field-border: #d8d1c1;
  --section-bg: #f4efe3;
  --section-text: #4f5f52;
  --section-muted: #516552;
  --section-border: #dbd4c2;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(198, 162, 75, 0.08), transparent 22%),
    radial-gradient(circle at 82% 12%, rgba(242, 237, 225, 0.05), transparent 24%),
    linear-gradient(180deg, #2d4834 0%, var(--bg) 38%, #243b2c 100%);
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
p {
  margin: 0;
}

.page-shell {
  min-height: 100vh;
}

.section-width {
  width: min(100%, 1440px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 2.4vw, 2.5rem);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='900' viewBox='0 0 1200 900' fill='none'%3E%3Cpath d='M-20 170C130 120 250 120 380 170C510 220 640 220 790 170C940 120 1060 120 1220 170' stroke='%23d9d2c2' stroke-opacity='0.28' stroke-width='1.5'/%3E%3Cpath d='M-40 300C120 250 260 250 410 300C560 350 690 350 840 300C990 250 1120 250 1260 300' stroke='%23d9d2c2' stroke-opacity='0.22' stroke-width='1.5'/%3E%3Cpath d='M-60 430C100 380 250 380 400 430C550 480 700 480 850 430C1000 380 1140 380 1280 430' stroke='%23d9d2c2' stroke-opacity='0.18' stroke-width='1.5'/%3E%3Cpath d='M-70 560C100 510 270 510 420 560C570 610 720 610 870 560C1020 510 1140 510 1290 560' stroke='%23d9d2c2' stroke-opacity='0.2' stroke-width='1.5'/%3E%3Cpath d='M-90 690C80 640 250 640 400 690C550 740 710 740 860 690C1010 640 1130 640 1310 690' stroke='%23d9d2c2' stroke-opacity='0.16' stroke-width='1.5'/%3E%3Cpath d='M-120 820C40 770 210 770 360 820C510 870 680 870 830 820C980 770 1140 770 1330 820' stroke='%23d9d2c2' stroke-opacity='0.14' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.hero__bg::before,
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero__bg::before {
  background:
    linear-gradient(180deg, rgba(41, 67, 48, 0) 0%, rgba(41, 67, 48, 0.25) 100%),
    radial-gradient(circle at 90% 18%, rgba(198, 162, 75, 0.15), transparent 16%);
}

.hero__bg::after {
  background:
    linear-gradient(90deg, rgba(41, 67, 48, 0.86) 0%, rgba(41, 67, 48, 0.45) 45%, rgba(41, 67, 48, 0.18) 100%);
}
.topbar__wrapper {
      border-bottom: 1px solid rgba(242, 237, 225, 0.15);

}

.topbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.brand__title {
  font-size: clamp(0.8rem, 1.3vw, 1.3rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1;
}

.brand__subtitle {
  margin-top: 0.7rem;
  color: rgba(242, 237, 225, 0.72);
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.topbar__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  letter-spacing: 0.03em;

  color: rgba(242, 237, 225, 0.9);
  font-size: 1rem;
}

.topbar__meta strong {
  font-weight: 800;
  color: var(--text);
}

.hero__content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: start;
  gap: clamp(2rem, 4vw, 4.5rem);
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

.hero__copy {
    padding-top: 6rem;
  max-width: 42rem;
  padding-bottom: 1rem;
}

.dot{
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50px;
   
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.85rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 1.1rem;
  max-width: 15ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 5vw, 5rem);
  line-height: 1.1;
  font-weight: 800;
  /* letter-spacing: 0.03em; */
}

.accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

.hero__description {
  margin-top: 1.25rem;
  max-width: 32.5rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.6;
}

.hero-footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(242, 237, 225, 0.15);
  text-align: center;
}

.hero-footer p {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 500;
  color: rgba(242, 237, 225, 0.8);
  line-height: 1.5;
}

.hero-footer span {
  color: var(--accent);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero-footer {
    padding: 1rem;
  }

  .hero-footer p {
    font-size: 1rem;
  }

  .hero-footer span {
    display: block;
    margin-top: 0.35rem;
    font-size: 1.1rem;
  }
}

.event-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
  max-width: 36rem;
  border-top: 1px solid rgba(242, 237, 225, 0.16);
  /* border-bottom: 1px solid rgba(242, 237, 225, 0.16); */
}

.event-meta__item {
  min-height: 4.6rem;
  padding: 1rem 1rem 0.95rem 0;
  border-right: 1px solid rgba(242, 237, 225, 0.16);
}

.event-meta__item:nth-child(2) {
  padding-left: 1rem;
}

.event-meta__item--full {
  padding-left: 0;
}

.event-meta__item:nth-child(2) {
  border-right: none;
}

.event-meta__item--full {
  grid-column: 1 / -1;
  border-right: none;
}

.event-meta__label {
  display: block;
  margin-bottom: 0.25rem;
  color: #739566;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.event-meta__value {
  color: rgba(242, 237, 225, 0.92);
  font-size: 0.98rem;
}

.hero__form {
  justify-self: end;
  width: min(100%, 34rem);
}

.registration-card {
  color-scheme: light;
  background: var(--card);
  color: var(--card-text);
  border-radius: 1.4rem;
  padding: clamp(1.25rem, 2.6vw, 1.7rem);
  box-shadow: var(--shadow);
}

.registration-card h2 {
  font-family: "Cormorant Garamond", serif;
  color: var(--card-text);
  font-size: clamp(1.8rem, 2.8vw, 2.2rem);
  line-height: 1;
  font-weight: 800;
}

.registration-card > p {
  margin-top: 0.55rem;
  color: rgba(73, 94, 77, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

.message-card {
  width: min(100%, 46rem);
  padding: clamp(2rem, 5vw, 4rem);
}

.message-card h1 {
  margin: 0;
  color: var(--card-text);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  font-weight: 800;
}

.message-card p {
  margin: 1.35rem 0 0;
  color: rgba(73, 94, 77, 0.9);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.55;
}

.message-card .button {
  margin-top: 2rem;
  min-height: 3.35rem;
  padding-inline: 1.8rem;
}

.field {
  margin-top: 1rem;
}

.field label {
  display: block;
  margin-bottom: 0.42rem;
  color: #313d34;
  font-size: 0.82rem;
  font-weight: 800;
}

.field label span {
  font-weight: 500;
  color: rgba(49, 61, 52, 0.7);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--field-border);
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.88);
  color: #243127;
  outline: none;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease,
    transform 150ms ease;
}

.field input,
.field select {
  min-height: 2.6rem;
  padding: 0.65rem 0.8rem;
}

.field textarea {
  min-height: 4.1rem;
  padding: 0.75rem 0.8rem;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(73, 94, 77, 0.6);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(198, 162, 75, 0.95);
  box-shadow: 0 0 0 3px rgba(198, 162, 75, 0.18);
}

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

.phone-row {
  display: grid;
  grid-template-columns: 4.2rem minmax(0, 1fr);
  gap: 0.55rem;
}

.consent {
  display: grid;
  grid-template-columns: 1rem 1fr;
  gap: 0.6rem;
  align-items: start;
  margin-top: 1rem;
  font-weight: 500;
  color: rgba(73, 94, 77, 0.88);
  font-size: 0.9rem;
  line-height: 1.55;
}

.consent input {
  margin-top: 0.3rem;
  width: 1.3rem;
  accent-color: var(--accent);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.95rem;
  padding-inline: 1.1rem;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #2c2510;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    transform 150ms ease,
    filter 150ms ease,
    box-shadow 150ms ease;
}

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

.button--small {
  min-height: 2.7rem;
  padding-inline: 1.4rem;
}

.button--block {
  width: 100%;
  margin-top: 1rem;
}

.card-note {
  margin-top: 0.75rem;
  color: rgba(73, 94, 77, 0.8);
  font-size: 0.72rem;
  text-align: center;
}

.footer {
  position: relative;
  z-index: 1;
  padding: 1rem 0 1.1rem;
  border-top: 1px solid rgba(242, 237, 225, 0.14);
}

.footer p {
  color: rgba(242, 237, 225, 0.74);
  font-size: 0.78rem;
  text-align: center;
  letter-spacing: 0.02em;
}

.footer span {
  color: var(--accent);
}

.insights {
  background: var(--section-bg);
  color: var(--section-text);
}

.insights__inner {
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
}

.section-heading {
  text-align: center;
  max-width: 62rem;
  margin: 0 auto;
}

.section-heading__eyebrow {
  display: inline-block;
  width: 100%;
  color: #ba7252;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-heading__eyebrow--small {
  font-size: 0.82rem;
}

.section-heading h2 {
  margin-top: 1rem;
  color: #233127;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.7rem, 4.4vw, 4.6rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.section-heading__description {
  margin: 1rem auto 0;
  max-width: 48rem;
  color: var(--section-muted);
  font-weight: 500;
  font-size: clamp(1.02rem, 1.7vw, 1.3rem);
  line-height: 1.65;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 2.8rem;
}

.insight-card {
  min-height: 19rem;
  padding: 2rem 1.85rem 1.8rem;
  border: 1px solid var(--section-border);
  border-radius: 1.2rem;
  background: #e8e2d1;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
}

.insight-card__icon {
  display: block;
  width: 2.65rem;
  height: 2.65rem;
  object-fit: contain;
  margin-bottom: 1.45rem;
}

.insight-card__kicker {
  color: #b68f3f;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.insight-card h3 {
  margin-top: 0.65rem;
  color: #334739;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.95rem, 2.4vw, 2.5rem);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.insight-card p {
  margin-top: 0.9rem;
   color: var(--section-muted);
  font-weight: 500;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.5;
}

.insight-card--featured {
  border-color: #d5a93f;
  background:#ece5d1}

.insight-card--featured .insight-card__kicker,
.insight-card--featured h3 {
  color: #b68f3f;
}

.audience {
  padding-top: 2.75rem;
}

.audience__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.35rem;
}

.audience__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 2.8rem;
  padding: 0.4rem 1rem;
  border: 1px solid #d5cfbf;
  border-radius: 999px;
  background: rgba(242, 237, 225, 0.58);
  color: var(--section-text);
  font-weight: 500;
  font-size: 0.95rem;
}

.venue {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #294330 0%, #274031 100%);
  color: var(--text);
}

.venue__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1280' height='840' viewBox='0 0 1280 840' fill='none'%3E%3Cpath d='M-30 90C110 40 270 40 410 90C550 140 700 140 840 90C980 40 1130 40 1310 90' stroke='%23d8d1c2' stroke-opacity='0.22' stroke-width='1.5'/%3E%3Cpath d='M-40 250C110 200 260 200 400 250C540 300 700 300 840 250C980 200 1130 200 1320 250' stroke='%23d8d1c2' stroke-opacity='0.2' stroke-width='1.5'/%3E%3Cpath d='M-40 420C110 370 260 370 400 420C540 470 700 470 840 420C980 370 1130 370 1320 420' stroke='%23d8d1c2' stroke-opacity='0.16' stroke-width='1.5'/%3E%3Cpath d='M-50 620C100 570 260 570 400 620C540 670 700 670 840 620C980 570 1130 570 1330 620' stroke='%23d8d1c2' stroke-opacity='0.14' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.venue__bg::before,
.venue__bg::after {
  content: "";
  position: absolute;
  inset: 0;
}

.venue__bg::before {
  background:
    radial-gradient(circle at 14% 20%, rgba(198, 162, 75, 0.08), transparent 20%),
    radial-gradient(circle at 88% 16%, rgba(242, 237, 225, 0.05), transparent 18%);
}

.venue__bg::after {
  background:
    linear-gradient(90deg, rgba(41, 67, 48, 0.18) 0%, rgba(41, 67, 48, 0.08) 52%, rgba(41, 67, 48, 0.18) 100%);
}

.venue__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: clamp(2rem, 4.5vw, 4.5rem);
  align-items: center;
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
}

.venue__copy {
  max-width: 42rem;
}

.venue__eyebrow {
  color: #8ea66f;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.venue h2 {
  margin-top: 0.95rem;
  max-width: 14ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.venue__address {
  margin-top: 1.45rem;
  color: rgba(242, 237, 225, 0.92);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.15;
  font-weight: 500;
}

.venue__subaddress,
.venue__timing {
  margin-top: 0.25rem;
  color: rgba(242, 237, 225, 0.74);
   font-weight: 500;
    font-size: clamp(1.02rem, 1.6vw, 1.2rem);
    line-height: 1.5;
}

.venue__facts {
  width: min(100%, 36rem);
  margin-top: 1.65rem;
  border: 1px solid rgba(242, 237, 225, 0.24);
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.01);
}

.venue__fact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1rem 1.15rem;
  border-top: 1px solid rgba(242, 237, 225, 0.14);
}

.venue__fact:first-child {
  border-top: none;
}

.venue__fact span {
  color: rgba(242, 237, 225, 0.9);
  font-size: 0.98rem;
}

.venue__fact strong {
  color: #9eb06e;
  font-size: 1rem;
  font-weight: 800;
  text-align: right;
}

.venue__button {
  margin-top: 1.7rem;
  padding-inline: 1.45rem;
  box-shadow: 0 0 0 1px rgba(198, 162, 75, 0.08), 0 18px 32px rgba(198, 162, 75, 0.2);
}

.venue__visual {
  position: relative;
  min-height: 34rem;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 2rem; */
  border: 1px dashed rgba(242, 237, 225, 0.12);
  border-radius: 1.35rem;
  background: rgba(32, 52, 39, 0.12);
}

.venue__visual::before,
.venue__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

/* .venue__visual::before {
  background:
    radial-gradient(circle at 30% 22%, rgba(242, 237, 225, 0.04), transparent 18%),
    radial-gradient(circle at 72% 64%, rgba(198, 162, 75, 0.03), transparent 22%);
} */

.venue__visual::after {
  box-shadow:
    inset 0 0 0 1px rgba(242, 237, 225, 0.04),
    inset 0 0 0 18px rgba(255, 255, 255, 0.01);
}

.venue__visual span {
  position: relative;
  z-index: 1;
  color: rgba(242, 237, 225, 0.8);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta-banner {
  background: var(--section-bg);
  color: #233127;
  border-top: 1px solid rgba(41, 67, 48, 0.06);
}

.cta-banner__inner {
  min-height: 14rem;
  display: grid;
  place-items: center;
  gap: 1rem;
  text-align: center;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.cta-banner h2 {
  max-width: 20ch;
  color: #233127;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.cta-banner p {
  color: #5e6b60;
    font-weight: 500;
    font-size: clamp(1.02rem, 1.6vw, 1.2rem);
    line-height: 1.5;
}

.cta-banner__button {
  min-width: 12.4rem;
  margin-top: 0.5rem;
  box-shadow: 0 16px 30px rgba(198, 162, 75, 0.18);
}

.site-footer {
  background: #244030;
  color: rgba(242, 237, 225, 0.86);
  padding-top: 3.2rem;
  padding-bottom: 1.4rem;
}

.site-footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.site-footer__title {
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1;
  font-weight: 500;
}

.site-footer__subtitle {
  margin-top: 0.6rem;
  color: #8ea66f;
  font-size: 0.8rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.site-footer__contact {
  text-align: right;
}

.site-footer__contact p {
  color: rgba(242, 237, 225, 0.88);
  font-size: 1rem;
  line-height: 1.6;
}

.site-footer__rule {
  width: min(100%, 1440px);
  height: 1px;
  margin: 2rem auto 1.1rem;
  background: rgba(242, 237, 225, 0.16);
}

.site-footer__bottom p {
  color: rgba(242, 237, 225, 0.76);
  font-size: 0.88rem;
  line-height: 1.6;
}

@media (max-width: 1080px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar__meta {
    width: 100%;
    justify-content: space-between;
  }

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

  .hero__form {
    justify-self: start;
    width: min(100%, 34rem);
  }

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

  .insight-card--featured {
    grid-column: 1 / -1;
  }

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

  .venue__copy {
    max-width: 100%;
  }

  .venue__visual {
    min-height: 26rem;
  }

  .site-footer__inner {
    flex-direction: column;
  }

  .site-footer__contact {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
  }

  .hero__content {
    gap: 1.5rem;
  }

  .topbar__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }

  .topbar__meta span {
    font-size: 0.95rem;
  }
  .hero__copy {
    padding-top: 1.5rem;
  }

  .hero h1 {
    /* max-width: 10ch; */
    font-size: clamp(2rem, 14vw, 3.4rem);
  }

  .event-meta {
    grid-template-columns: 1fr;
  }

  .event-meta__item,
  .event-meta__item:nth-child(2) {
    border-right: none;
    padding-left: 0;
    padding-right: 0;
  }

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

  .phone-row {
    grid-template-columns: 4rem minmax(0, 1fr);
  }

  .registration-card {
    padding: 1.1rem;
    border-radius: 1.2rem;
  }

  .insights__inner {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .insights-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .insight-card {
    min-height: auto;
    padding: 1.55rem 1.35rem 1.4rem;
  }

  .audience {
    padding-top: 2.1rem;
  }

  .audience__chips {
    gap: 0.7rem;
  }

  .audience__chips span {
    min-height: 2.55rem;
    font-size: 0.9rem;
  }

  .venue__inner {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .venue h2 {
    max-width: 12ch;
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .venue__address {
    margin-top: 1.15rem;
  }

  .venue__facts {
    width: 100%;
    margin-top: 1.35rem;
  }

  .venue__fact {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .venue__fact strong {
    text-align: left;
  }

  .venue__visual {
    min-height: 20rem;
    border-radius: 1.1rem;
  }

  .cta-banner__inner {
    min-height: auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .cta-banner__button {
    width: 100%;
    max-width: 14rem;
  }

  .site-footer {
    padding-top: 2.5rem;
  }

  .site-footer__bottom p {
    font-size: 0.82rem;
  }
}

@media (max-width: 520px) {
  .topbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .brand__subtitle {
    letter-spacing: 0.18em;
  }

  .hero__content {
    padding-top: 1.8rem;
    padding-bottom: 1.8rem;
  }

  .hero__description {
    font-size: 0.98rem;
  }

  .eyebrow {
    font-size: 0.68rem;
  }

  .button--small {
    width: 100%;
  }

  .venue__button {
    width: 100%;
  }

  .cta-banner h2 {
    /* max-width: 10ch; */
    font-size: clamp(2.35rem, 9vw, 2.2rem);
  }

  .site-footer__bottom p {
    font-size: 0.78rem;
  }
}
