/* ==========================================================================
   Ibom Hospitality Summit 2026 — site stylesheet
   ========================================================================== */

:root {
  --ink:        #241109;
  --bg:         #F5F3EF;
  --white:      #ffffff;
  --mint:       #00E6A0;
  --blue:       #3B2FE8;
  --sky:        #D3E4FA;
  --coral:      #FF5A3C;
  --whatsapp:   #25D366;

  --ink-88:  rgba(36, 17, 9, .88);
  --ink-78:  rgba(36, 17, 9, .78);
  --ink-72:  rgba(36, 17, 9, .72);
  --ink-62:  rgba(36, 17, 9, .62);
  --ink-55:  rgba(36, 17, 9, .55);
  --ink-45:  rgba(36, 17, 9, .45);

  --line:        rgba(36, 17, 9, .10);
  --line-mid:    rgba(36, 17, 9, .12);
  --line-strong: rgba(36, 17, 9, .22);
  --line-btn:    rgba(36, 17, 9, .25);
  --line-dark:   #2A2A2A;

  --on-dark-88: rgba(255, 255, 255, .88);
  --on-dark-72: rgba(255, 255, 255, .72);
  --on-dark-68: rgba(255, 255, 255, .68);
  --on-dark-60: rgba(255, 255, 255, .60);
  --on-dark-50: rgba(255, 255, 255, .50);
  --on-dark-45: rgba(255, 255, 255, .45);

  --danger: #C42B1C;
  --success: #0A7A55;

  --gutter: clamp(20px, 4vw, 56px);
  --maxw: 1240px;
  --radius-card: 14px;
  --radius-field: 10px;
  --radius-pill: 99px;

  --ease: cubic-bezier(.34, 1.56, .64, 1);
}

/* --- reset / base ------------------------------------------------------- */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'General Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, iframe { max-width: 100%; }

a { color: var(--ink); }
a:hover { color: var(--mint); }

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

::selection { background: var(--mint); color: var(--ink); }

a, button, select, input, textarea {
  transition: background .3s ease, color .3s ease, border-color .3s ease,
              box-shadow .3s ease, transform .3s ease;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px) scale(.97) }
  to   { opacity: 1; transform: translateY(0) scale(1) }
}
@keyframes spin { to { transform: rotate(360deg) } }

/* --- layout scaffolding -------------------------------------------------- */

.page { min-height: 100vh; display: flex; flex-direction: column; }

.container { max-width: var(--maxw); margin: 0 auto; }
.container--narrow { max-width: 760px; margin: 0 auto; }

.section { padding: clamp(48px, 6vw, 88px) var(--gutter); }
.section--lg { padding: clamp(56px, 7vw, 104px) var(--gutter); }
.section--ruled { border-top: 1px solid var(--line); }
.section--ruled-bottom { border-bottom: 1px solid var(--line); }

/* Anchor targets (#enquire, #apply, #main) must clear the 74px sticky nav,
   or the jump leaves the section heading hidden underneath it. */
section[id], main[id] { scroll-margin-top: 96px; }

.section--dark {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 100px) var(--gutter);
}
/* Plain links go white on dark, but buttons keep their own colours — without
   the :not(.btn) this outranks .btn--white and hides the label. */
.section--dark a:not(.btn) { color: var(--white); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 300;
  background: var(--ink);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus { left: 0; color: var(--white); }

/* Decorative background blobs. Position is set per-instance inline. */
.blob {
  position: absolute;
  background-color: var(--sky);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
}
.eyebrow--mint { color: var(--mint); }

.rule-label {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  padding-top: 8px;
}

/* --- typography ---------------------------------------------------------- */

.h1 {
  margin: 0;
  font-size: clamp(38px, 6.4vw, 88px);
  line-height: 1;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.h1--home {
  font-size: clamp(44px, 8.4vw, 118px);
  line-height: .98;
  max-width: 12em;
}
.h2 { margin: 0; font-size: clamp(26px, 3.4vw, 44px); letter-spacing: -.025em; line-height: 1.15; }
.h2--lg { font-size: clamp(30px, 4.4vw, 58px); letter-spacing: -.03em; line-height: 1.05; }
.h3 { margin: 0; font-size: clamp(22px, 2.6vw, 32px); font-weight: 700; letter-spacing: -.02em; }

.thin { font-weight: 400; }
.bold { font-weight: 700; }

.lede {
  margin: 26px 0 0;
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.5;
  color: var(--ink-72);
  max-width: 38em;
}

.muted { color: var(--ink-62); }
.note { margin: 12px 0 0; font-size: 14px; color: var(--ink-62); }

/* --- buttons ------------------------------------------------------------- */

.btn {
  display: inline-block;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  padding: 15px 32px;
  cursor: pointer;
}
.btn--sm  { font-size: 14px; padding: 11px 22px; }
.btn--md  { font-size: 14px; padding: 13px 28px; }
.btn--lg  { font-size: 16px; padding: 16px 32px; }

.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: var(--mint); color: var(--ink); }

.btn--white { background: var(--white); color: var(--ink); }
.btn--white:hover { background: var(--mint); color: var(--ink); }

.btn--light {
  background: var(--white);
  color: var(--ink);
  border-color: rgba(36, 17, 9, .18);
}
.btn--light:hover { border-color: var(--ink); color: var(--ink); }

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-btn);
}
.btn--outline:hover { border-color: var(--ink); color: var(--ink); }

.btn--submit { align-self: flex-start; background: var(--ink); color: var(--white); }
.btn--submit:hover:not(:disabled) { background: var(--blue); color: var(--white); }
.btn--block { width: 100%; }

.btn:disabled { cursor: not-allowed; opacity: .72; }

.btn__spinner {
  display: none;
  width: 15px;
  height: 15px;
  margin-right: 9px;
  vertical-align: -2px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
.btn.is-busy .btn__spinner { display: inline-block; }

.link-quiet {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-62);
}
.link-quiet:hover { color: var(--mint); }

/* --- WhatsApp float ------------------------------------------------------ */

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  height: 52px;
  padding: 0 20px 0 14px;
  border-radius: var(--radius-pill);
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
  text-decoration: none;
  transition: transform .4s var(--ease), border-radius .4s var(--ease),
              background .3s ease, box-shadow .3s ease;
}
.wa-float:hover {
  background: #1ebe5b;
  transform: scale(1.06);
  border-radius: 38% 62% 63% 37% / 55% 45% 55% 45%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .4);
}
.wa-float svg { width: 28px; height: 28px; flex: none; fill: var(--white); }
.wa-float span { color: var(--white); font-size: 14px; font-weight: 600; white-space: nowrap; }

@media (max-width: 520px) {
  .wa-float { padding: 0; width: 52px; justify-content: center; }
  .wa-float span { display: none; }
}

/* --- announcement bar ---------------------------------------------------- */

.announce {
  background: var(--coral);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  text-align: center;
}
.announce a { color: var(--white); font-weight: 600; }
.announce a:hover { color: var(--ink); }
.announce__tag {
  background: var(--ink);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  flex: none;
}

/* --- navigation ---------------------------------------------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 243, 239, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--gutter);
}

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo:hover { color: var(--ink); }
.logo__mark { display: flex; align-items: flex-end; gap: 3px; }
.logo__i { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.logo__dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.logo__stem { width: 7px; height: 21px; background: currentColor; }
.logo__h { font-weight: 700; font-size: 30px; line-height: .75; letter-spacing: -.02em; }
.logo__wordmark { font-size: 9.5px; letter-spacing: .26em; font-weight: 500; line-height: 1.5; }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
}
.nav__link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-72);
  white-space: nowrap;
}
.nav__link:hover { color: var(--mint); }
.nav__link[aria-current="page"] { font-weight: 600; color: var(--ink); }

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line-btn);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
}
.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform .25s ease, opacity .2s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav { flex-wrap: wrap; }
  .nav__toggle { display: block; }
  .nav__links {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 8px;
  }
  .nav__links.is-open { display: flex; }
  .nav__link {
    padding: 13px 2px;
    border-top: 1px solid var(--line);
    font-size: 15px;
  }
  .nav__links .btn { margin-top: 14px; }
}

/* --- hero ---------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vw, 110px) var(--gutter);
}
.hero--home { padding: clamp(56px, 9vw, 130px) var(--gutter) clamp(72px, 8vw, 120px); }
.hero__inner { position: relative; max-width: var(--maxw); margin: 0 auto; }

.hero__kicker {
  margin: 0 0 22px;
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 600;
  letter-spacing: .02em;
}
.hero__sub {
  margin: 34px 0 0;
  font-size: clamp(17px, 1.8vw, 23px);
  line-height: 1.45;
  max-width: 34em;
  color: var(--ink-88);
}
.hero__meta { margin: 16px 0 0; font-size: clamp(14px, 1.3vw, 16px); font-weight: 600; }

.hero__seal {
  position: absolute;
  right: clamp(16px, 6vw, 90px);
  bottom: clamp(24px, 5vw, 64px);
  width: clamp(110px, 13vw, 168px);
  height: clamp(110px, 13vw, 168px);
  transform: rotate(-12deg);
}
@media (max-width: 720px) { .hero__seal { display: none; } }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 38px; }
.btn-row--tight { margin-top: 30px; gap: 12px; }

/* --- split rows ---------------------------------------------------------- */

.split {
  display: flex;
  gap: clamp(28px, 5vw, 80px);
  flex-wrap: wrap;
  align-items: flex-start;
}
.split__body { flex: 1 1 480px; min-width: 280px; }

/* --- stats --------------------------------------------------------------- */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(28px, 3vw, 48px);
}
.stat { border-top: 3px solid var(--mint); padding-top: 18px; }
.stat__num {
  font-size: clamp(38px, 4.6vw, 60px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
}
.stat__label { margin-top: 10px; font-size: 15px; font-weight: 600; }
.stat__sub { margin-top: 6px; font-size: 13px; line-height: 1.5; color: var(--ink-62); }

/* --- numbered reason list ------------------------------------------------ */

.ruled-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  border-top: 1px solid var(--line-mid);
}
.reason {
  border-bottom: 1px solid var(--line-mid);
  padding: 26px 22px 26px 0;
  display: flex;
  gap: 16px;
  align-items: baseline;
}
.reason__n { font-size: 12px; font-weight: 600; color: var(--blue); min-width: 26px; }
.reason__t { font-size: 17px; font-weight: 600; }
.reason__d { margin-top: 5px; font-size: 14px; line-height: 1.5; color: var(--ink-62); }

/* --- simple ruled lists (About) ------------------------------------------ */

.col-head {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.col-head__chip { width: 10px; height: 10px; border-radius: 2px; flex: none; }
.chip-blue  { background: var(--blue); }
.chip-coral { background: var(--coral); }
.chip-mint  { background: var(--mint); }

.ruled-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-mid);
}
.ruled-list li {
  border-bottom: 1px solid var(--line-mid);
  padding: 13px 0;
  font-size: 14.5px;
}

.tri-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(32px, 4vw, 56px);
}

/* --- impact list (dark) -------------------------------------------------- */

.impact {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0 clamp(28px, 4vw, 56px);
}
.impact li {
  border-top: 1px solid var(--line-dark);
  padding: 18px 0;
  display: flex;
  gap: 14px;
  align-items: baseline;
}
.impact__n { font-size: 12px; font-weight: 600; color: var(--mint); min-width: 26px; flex: none; }
.impact__t { font-size: 15px; line-height: 1.5; color: var(--on-dark-88); }

/* --- speaker cards ------------------------------------------------------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.card-grid--speakers { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.speaker {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.speaker__photo {
  aspect-ratio: 1 / 1;
  background: repeating-linear-gradient(-45deg, #ECE9E2, #ECE9E2 10px, var(--bg) 10px, var(--bg) 20px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.speaker__photo img { width: 100%; height: 100%; object-fit: cover; }
.speaker__placeholder {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  color: var(--ink-45);
}
.speaker__body { padding: 18px 18px 20px; }
.speaker__name { font-size: 16px; font-weight: 700; }
.speaker__title { margin-top: 3px; font-size: 13px; font-weight: 500; color: var(--ink-62); }
.speaker__topic { margin-top: 10px; font-size: 13px; line-height: 1.45; color: rgba(36, 17, 9, .75); }

.speaker--tba {
  border: 1px dashed rgba(36, 17, 9, .28);
  border-radius: var(--radius-card);
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 20px;
}
.speaker--tba .badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* --- partner placeholder / logo strip ------------------------------------ */

.empty-state {
  margin-top: 32px;
  border: 1px dashed var(--line-btn);
  border-radius: var(--radius-card);
  padding: 44px 24px;
  text-align: center;
}
.empty-state__title { font-size: 16px; font-weight: 600; }
.empty-state__sub { margin-top: 6px; font-size: 14px; color: rgba(36, 17, 9, .6); }

/* --- sponsorship tiers --------------------------------------------------- */

.tiers {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: stretch;
}
.tier {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line-mid);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.tier--dark { background: var(--ink); color: var(--white); }
.tier__tag { font-size: 12px; font-weight: 600; letter-spacing: .2em; }
.tier__name {
  margin-top: 14px;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -.02em;
}
.tier__hr { margin: 20px 0; height: 1px; background: currentColor; opacity: .15; border: 0; }
.tier__benefits {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.tier__benefits li { display: flex; gap: 10px; align-items: baseline; }
.tier__benefits li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  flex: none;
  position: relative;
  top: -1px;
}
.tier__benefits span { font-size: 13.5px; line-height: 1.45; opacity: .88; }
.tier__cta {
  margin-top: 24px;
  text-decoration: none;
  text-align: center;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
}
.tier__cta:hover { background: var(--blue); color: var(--white); }
.tier--dark .tier__cta { background: var(--white); color: var(--ink); }
.tier--dark .tier__cta:hover { background: var(--mint); color: var(--ink); }

.cat-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  border-top: 1px solid var(--line-mid);
}
.cat-grid > div {
  border-bottom: 1px solid var(--line-mid);
  padding: 22px 20px 22px 0;
  font-size: 16px;
  font-weight: 600;
}

.chips { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }
.chip {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-pill);
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, .9);
}

/* --- bullet list (dark, Speakers) ---------------------------------------- */

.why-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-dark);
}
.why-list li {
  border-bottom: 1px solid var(--line-dark);
  padding: 16px 0;
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-size: 15px;
  line-height: 1.5;
  color: var(--on-dark-88);
}
.why-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  flex: none;
  position: relative;
  top: -1px;
}

/* --- forms --------------------------------------------------------------- */

.form { margin-top: 36px; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.form-stack { margin-top: 18px; display: flex; flex-direction: column; gap: 18px; }
.form-stack--modal { margin-top: 24px; gap: 16px; }

.field { display: flex; flex-direction: column; gap: 7px; }
.field__label { font-size: 13px; font-weight: 600; }
.field__optional { font-weight: 400; color: var(--ink-55); }

.field input,
.field select,
.field textarea {
  border: 1px solid var(--line-strong);
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-field);
  padding: 13px 15px;
  font-size: 15px;
  outline: none;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 108px; }
.field select { appearance: auto; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59, 47, 232, .14);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-45); }

/* invalid state — only after a submit attempt or blur */
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--danger);
}
.field__error {
  display: none;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--danger);
}
.field__error.is-shown { display: block; }

.form-status {
  display: none;
  margin-top: 4px;
  padding: 14px 16px;
  border-radius: var(--radius-field);
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid transparent;
}
.form-status.is-shown { display: block; }
.form-status--error {
  background: #FDF0EE;
  border-color: rgba(196, 43, 28, .3);
  color: #7C1B10;
}

.form-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* success panel that replaces the form */
.form-success {
  display: none;
  margin-top: 28px;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  text-align: center;
}
.form-success.is-shown { display: block; }
.form-success__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}
.form-success__title { font-size: 17px; font-weight: 700; }
.form-success__body { margin-top: 8px; font-size: 14px; line-height: 1.55; color: var(--ink-62); }

.is-hidden { display: none !important; }

/* --- modal --------------------------------------------------------------- */

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(36, 17, 9, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn .25s ease;
}
.modal[hidden] { display: none; }

.modal__panel {
  background: var(--bg);
  border-radius: 18px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 32px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
  animation: slideUp .3s var(--ease);
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(36, 17, 9, .08);
  color: var(--ink);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__close:hover { background: var(--mint); color: var(--ink); }
.modal__eyebrow {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--ink-55);
}
.modal__title { margin: 0; font-size: 28px; font-weight: 700; letter-spacing: -.02em; }

body.is-modal-open { overflow: hidden; }

/* --- venue map ----------------------------------------------------------- */

.venue { display: flex; gap: clamp(28px, 4vw, 56px); flex-wrap: wrap; align-items: stretch; }
.venue__copy {
  flex: 1 1 320px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.venue__map {
  flex: 1 1 420px;
  min-width: 280px;
  min-height: 340px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line-mid);
}
.venue__map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* --- footer -------------------------------------------------------------- */

.footer {
  background: var(--ink);
  color: var(--white);
  padding: clamp(48px, 6vw, 80px) var(--gutter) 40px;
  margin-top: auto;
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  gap: clamp(32px, 5vw, 80px);
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer__brand { flex: 1 1 260px; min-width: 240px; }
.footer__col { flex: 0 1 auto; }
.footer__heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--on-dark-50);
}
.footer__list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.footer a { color: var(--white); text-decoration: none; font-size: 14px; }
.footer a:hover { color: var(--mint); }
.footer__addr {
  margin: 22px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--on-dark-60);
  font-style: normal;
}
.footer__tags { margin: 14px 0 0; font-size: 13px; color: var(--on-dark-60); }
.footer__bottom {
  max-width: var(--maxw);
  margin: 48px auto 0;
  border-top: 1px solid var(--line-dark);
  padding-top: 22px;
  font-size: 12px;
  color: var(--on-dark-45);
}

/* --- file input (speaker headshot) --------------------------------------- */

.field input[type="file"] {
  border: 1px dashed rgba(36, 17, 9, .3);
  border-radius: var(--radius-field);
  background: var(--white);
  padding: 20px;
  font-size: 13px;
  color: var(--ink-55);
  cursor: pointer;
}
.field input[type="file"]:hover { border-color: var(--blue); }
.field input[type="file"]::file-selector-button {
  margin-right: 14px;
  padding: 9px 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: var(--bg);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.field input[type="file"]:hover::file-selector-button {
  background: var(--mint);
  border-color: var(--mint);
}
.field__hint { margin: 0; font-size: 13px; color: var(--ink-55); }
