:root {
  --warm-white: #fffdfc;
  --paper: #fbf7f4;
  --blush: #f5ece7;
  --champagne: #b79257;
  --deep-brown: #4b3c36;
  --mid-brown: #7a6860;
  --soft-border: #e9ddd6;
  --plum: #72535b;
  --plum-dark: #5f454d;
  --white: #ffffff;
  --success: #2d6a4f;
  --danger: #a23d46;
  --shadow: 0 28px 80px rgba(75, 60, 54, 0.14);
  --shadow-soft: 0 16px 45px rgba(75, 60, 54, 0.09);
  --radius-lg: 30px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--deep-brown);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  background:
    radial-gradient(circle at 7% 8%, rgba(245,236,231,.95), transparent 32%),
    radial-gradient(circle at 95% 20%, rgba(183,146,87,.13), transparent 28%),
    linear-gradient(180deg, var(--warm-white), #fffaf7);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 90 90'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
}

a { color: inherit; }
button, input { font: inherit; }

.page-shell {
  width: min(1480px, 100%);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 76px);
}

.site-header {
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}


.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.brand-copy { display: grid; }
.brand-copy strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  line-height: 1;
}
.brand-copy small,
.header-note {
  color: var(--mid-brown);
  font-size: 11px;
  margin-top: 5px;
}

.header-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--soft-border);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 7px 24px rgba(75,60,54,.04);
}
.header-note span { color: var(--success); font-size: 8px; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(410px, .72fr);
  align-items: center;
  gap: clamp(52px, 6.5vw, 105px);
  min-height: calc(100vh - 164px);
  padding: 38px 0 68px;
}

.hero-content { min-width: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--plum);
  text-transform: uppercase;
  letter-spacing: .125em;
  font-size: 10px;
  line-height: 1.5;
  font-weight: 700;
}
.eyebrow.centered { justify-content: center; }
.eyebrow-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--champagne);
  box-shadow: 0 0 0 5px rgba(183,146,87,.13);
}

h1, h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  margin: 0;
}

.hero h1 {
  max-width: 860px;
  margin-top: 23px;
  font-size: clamp(50px, 5.05vw, 78px);
  line-height: .98;
  font-weight: 600;
  letter-spacing: -.043em;
  text-wrap: balance;
}
.hero h1 em { color: var(--plum); font-style: normal; }

.hero-lead {
  max-width: 720px;
  color: var(--mid-brown);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.72;
  margin: 25px 0 24px;
}

.benefit-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 27px;
}
.benefit-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid var(--soft-border);
  border-radius: 999px;
  color: var(--deep-brown);
  background: rgba(255,255,255,.68);
  font-size: 11px;
  font-weight: 600;
}
.benefit-strip i {
  color: var(--champagne);
  font-size: 9px;
  font-style: normal;
  letter-spacing: .05em;
}

.event-details {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 850px;
}
.event-item {
  min-width: 0;
  display: flex;
  gap: 10px;
  align-items: center;
  border-top: 1px solid var(--soft-border);
  padding: 15px 5px 0 0;
}
.event-icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blush);
  color: var(--champagne);
  font-size: 9px;
  font-weight: 700;
}
.event-item span:last-child { min-width: 0; display: grid; }
.event-item small {
  color: var(--mid-brown);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.event-item strong {
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.speaker-card {
  margin: 31px 0 0;
  display: flex;
  align-items: flex-end;
  gap: 15px;
  max-width: 500px;
}
.speaker-image-wrap {
  width: 88px;
  height: 106px;
  overflow: hidden;
  border-radius: 48px 48px 15px 15px;
  background: var(--blush);
  box-shadow: 0 13px 34px rgba(75,60,54,.13);
}
.speaker-image { width: 100%; height: 100%; object-fit: cover; }
.speaker-card figcaption { padding-bottom: 7px; display: grid; }
.speaker-card figcaption span,
.speaker-card figcaption small { color: var(--mid-brown); font-size: 11px; }
.speaker-card figcaption strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 23px;
  line-height: 1.1;
  margin: 2px 0;
}

.form-panel { position: relative; }
.form-panel::before {
  content: "";
  position: absolute;
  inset: 7% -8% -6% 12%;
  border-radius: 48% 52% 60% 40% / 45% 43% 57% 55%;
  background: linear-gradient(145deg, rgba(245,236,231,.9), rgba(183,146,87,.15));
  transform: rotate(-5deg);
  filter: blur(.2px);
}
.form-card {
  position: relative;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(233,221,214,.92);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  padding: clamp(27px, 3vw, 41px);
  backdrop-filter: blur(16px);
}
.form-heading {
  border-bottom: 1px solid var(--soft-border);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.form-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.form-kicker span {
  color: var(--champagne);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.form-kicker strong {
  color: var(--mid-brown);
  font-size: 10px;
  font-weight: 600;
}
.form-heading h2 {
  font-size: clamp(36px, 3vw, 48px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -.03em;
  margin: 10px 0;
}
.form-heading p {
  margin: 0;
  color: var(--mid-brown);
  font-size: 13px;
  line-height: 1.6;
}

.field { margin: 0 0 12px; border: 0; padding: 0; }
.field > label,
.field legend {
  display: block;
  color: var(--deep-brown);
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 7px;
}
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"] {
  width: 100%;
  height: 50px;
  border: 1px solid var(--soft-border);
  border-radius: var(--radius-sm);
  background: var(--warm-white);
  color: var(--deep-brown);
  padding: 0 15px;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}
.field input::placeholder { color: #aa9c95; }
.field input:focus {
  border-color: rgba(114,83,91,.65);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(114,83,91,.09);
}
.field input[aria-invalid="true"] { border-color: var(--danger); }
.field-error {
  min-height: 14px;
  display: block;
  color: var(--danger);
  font-size: 10px;
  margin-top: 3px;
}

.radio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.radio-card { position: relative; cursor: pointer; }
.radio-card input { position: absolute; opacity: 0; pointer-events: none; }
.radio-card span {
  min-height: 41px;
  border: 1px solid var(--soft-border);
  border-radius: 11px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 7px;
  color: var(--mid-brown);
  background: rgba(255,255,255,.72);
  font-size: 10.5px;
  font-weight: 600;
  transition: all 150ms ease;
}
.radio-card input:checked + span {
  background: var(--plum);
  border-color: var(--plum);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(114,83,91,.19);
}
.radio-card input:focus-visible + span { outline: 3px solid rgba(114,83,91,.2); }

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: flex-start;
  color: var(--mid-brown);
  font-size: 10.5px;
  line-height: 1.5;
  cursor: pointer;
}
.consent input {
  margin: 2px 0 0;
  accent-color: var(--plum);
  width: 16px;
  height: 16px;
}
.consent a { color: var(--plum); font-weight: 600; }
.consent-error { margin: 3px 0 9px 27px; }

.primary-button {
  width: 100%;
  min-height: 57px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--plum), var(--plum-dark));
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
  cursor: pointer;
  box-shadow: 0 15px 28px rgba(114,83,91,.24);
  transition: transform 150ms ease, box-shadow 150ms ease, opacity 150ms ease;
}
.primary-button b { margin-left: 8px; font-size: 17px; }
.primary-button:hover { transform: translateY(-1px); box-shadow: 0 18px 32px rgba(114,83,91,.3); }
.primary-button:focus-visible { outline: 4px solid rgba(114,83,91,.22); outline-offset: 2px; }
.primary-button:disabled { opacity: .7; cursor: progress; }
.button-loading { display: none; }
.primary-button.is-loading .button-label { display: none; }
.primary-button.is-loading .button-loading { display: inline; }

.form-message { margin-top: 12px; font-size: 11px; text-align: center; }
.form-message.is-error { color: var(--danger); }
.security-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  color: var(--success);
  font-size: 9.5px;
  margin-top: 13px;
}
.legal-note {
  color: #9b8d86;
  font-size: 9px;
  text-align: center;
  line-height: 1.5;
  margin: 10px auto 0;
  max-width: 430px;
}
.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px,1px,1px,1px) !important;
}

.site-footer {
  min-height: 64px;
  border-top: 1px solid var(--soft-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--mid-brown);
  font-size: 10px;
}
.site-footer a { color: var(--plum); text-decoration: none; font-weight: 600; }
.gtm-frame { display: none; visibility: hidden; }

.thank-you-body { display: grid; place-items: center; padding: 24px; }
.thank-you-card {
  width: min(610px, 100%);
  background: rgba(255,255,255,.96);
  border: 1px solid var(--soft-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(35px, 7vw, 70px);
  text-align: center;
}
.success-icon {
  margin: 0 auto 23px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: rgba(45,106,79,.11);
  border: 1px solid rgba(45,106,79,.21);
  color: var(--success);
  border-radius: 50%;
  font-size: 26px;
  font-weight: 700;
}
.thank-you-card h1 {
  font-size: clamp(45px, 7vw, 66px);
  line-height: .98;
  font-weight: 600;
  letter-spacing: -.04em;
  margin: 22px 0;
}
.thank-you-card > p { color: var(--mid-brown); line-height: 1.7; }
.event-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--soft-border);
  border-radius: 15px;
  margin: 28px 0;
  overflow: hidden;
}
.event-summary span { padding: 16px; display: grid; }
.event-summary span + span { border-left: 1px solid var(--soft-border); }
.event-summary small {
  color: var(--mid-brown);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 9px;
}
.event-summary strong { margin-top: 4px; font-size: 13px; }
.link-button { display: grid; place-items: center; text-decoration: none; }
.pending-box {
  display: grid;
  gap: 5px;
  padding: 18px;
  border: 1px solid var(--soft-border);
  border-radius: 14px;
  background: var(--paper);
}
.pending-box strong { font-family: "Cormorant Garamond", serif; font-size: 24px; }
.pending-box span { color: var(--mid-brown); font-size: 12px; }

.legal-body { padding: 30px 18px 80px; }
.legal-page {
  width: min(850px, 100%);
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--soft-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(28px, 6vw, 70px);
}
.back-link {
  display: inline-block;
  color: var(--plum);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 38px;
}
.legal-page h1 { font-size: clamp(48px, 7vw, 72px); line-height: 1; margin: 19px 0 23px; }
.legal-intro {
  color: var(--mid-brown);
  font-size: 18px;
  line-height: 1.7;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--soft-border);
}
.legal-page section { padding: 22px 0; border-bottom: 1px solid var(--soft-border); }
.legal-page h2 { font-size: 28px; margin-bottom: 9px; }
.legal-page p { color: var(--mid-brown); line-height: 1.75; }
.policy-version { font-size: 11px; margin-top: 28px; }

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 56px;
    padding-top: 34px;
  }
  .hero-content { text-align: center; }
  .hero h1,
  .hero-lead,
  .event-details,
  .speaker-card { margin-left: auto; margin-right: auto; }
  .benefit-strip { justify-content: center; }
  .event-item { text-align: left; }
  .speaker-card { justify-content: center; text-align: left; }
  .form-panel { width: min(620px,100%); margin: 0 auto; }
}

@media (max-width: 700px) {
  .page-shell { padding: 0 17px; }
  .site-header { min-height: 80px; }
  .header-note { display: none; }
  .brand-copy small {
    display: block;
    font-size: .58rem;
    line-height: 1.15;
    letter-spacing: .02em;
    white-space: normal;
  }
  .hero { padding: 22px 0 48px; gap: 38px; }
  .eyebrow { font-size: 9px; }
  .hero h1 { font-size: clamp(42px, 12.7vw, 58px); margin-top: 17px; }
  .hero-lead { font-size: 14px; line-height: 1.65; margin: 20px auto 22px; }
  .benefit-strip { gap: 7px; }
  .benefit-strip span { padding: 8px 10px; font-size: 9.5px; }
  .event-details { grid-template-columns: 1fr 1fr; gap: 13px 9px; }
  .event-item { padding-top: 12px; }
  .speaker-card { margin-top: 27px; }
  .form-card { border-radius: 22px; padding: 25px 20px; }
  .form-heading h2 { font-size: 39px; }
  .radio-grid { grid-template-columns: 1fr; }
  .radio-card span { min-height: 42px; }
  .site-footer { flex-direction: column; justify-content: center; gap: 6px; text-align: center; padding: 17px 0; }
  .thank-you-card { padding: 38px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
