:root {
  --navy: #07111f;
  --navy-soft: #0d1a2b;
  --black: #050608;
  --ivory: #fbf8f0;
  --white: #ffffff;
  --muted: #c7ced9;
  --muted-dark: #667085;
  --gold: #cda45e;
  --gold-soft: #f3dfb2;
  --line: rgba(255, 255, 255, 0.13);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ivory);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(120deg, rgba(205, 164, 94, 0.12), transparent 34%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.07), transparent 28%),
    linear-gradient(180deg, var(--navy), var(--black) 54%);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 8, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 1px solid rgba(205, 164, 94, 0.58);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold), #7e5b23);
  color: #111;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
}

.brand-logo {
  overflow: hidden;
  background: #050608;
}

.brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 14px;
  text-transform: uppercase;
}

.brand small {
  margin-top: 4px;
  color: var(--gold-soft);
  font-size: 12px;
}

.header-cta,
.sticky-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.header-cta:hover,
.sticky-cta:hover {
  transform: translateY(-1px);
}

.header-cta {
  min-height: 42px;
  padding: 0 14px;
  background: var(--ivory);
  color: var(--black);
  font-size: 12px;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 58px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  min-height: calc(100svh - 72px);
  align-items: center;
  padding-top: 44px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 11vw, 84px);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 8vw, 52px);
  line-height: 1.03;
}

h3 {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.hero-subtitle,
.section-heading p,
.meet-copy p,
.final-cta p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  margin: 26px 0 14px;
}

.button {
  width: 100%;
  padding: 0 24px;
  font-size: 14px;
}

.button-primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #111;
  box-shadow: 0 18px 48px rgba(205, 164, 94, 0.25);
}

.button-secondary {
  border: 1px solid rgba(205, 164, 94, 0.5);
  background: rgba(205, 164, 94, 0.08);
  color: var(--ivory);
}

.helper-note {
  max-width: 640px;
  color: var(--gold-soft);
  font-size: 14px;
  line-height: 1.5;
}

.leader-card {
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.portrait-slot,
.portrait-large {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(205, 164, 94, 0.36);
  background:
    linear-gradient(160deg, rgba(205, 164, 94, 0.35), transparent 42%),
    linear-gradient(180deg, #142239, #070b13);
}

.portrait-slot {
  min-height: 260px;
}

.portrait-slot img,
.portrait-large img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-kicker,
.role {
  color: var(--gold-soft);
  font-weight: 750;
}

.leader-card h2 {
  margin-bottom: 6px;
  font-size: 34px;
}

.leader-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading.compact {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.feature-grid,
.check-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.feature {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.feature span {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-weight: 800;
}

.feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.split-section,
.meet-section {
  display: grid;
  gap: 28px;
  align-items: center;
}

.steps {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding: 18px 18px 18px 68px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  counter-increment: step;
}

.steps li::before {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  content: counter(step);
  font-weight: 850;
}

.steps strong,
.steps span {
  display: block;
}

.steps span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.portrait-large {
  min-height: 360px;
}

.portrait-slot img {
  aspect-ratio: 1.22 / 1;
  object-position: 58% 30%;
}

.portrait-large img {
  aspect-ratio: 4 / 5;
  object-position: 58% 28%;
}

.check-grid {
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-grid li {
  position: relative;
  padding: 16px 16px 16px 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: var(--ivory);
  font-weight: 720;
}

.check-grid li::before {
  position: absolute;
  left: 16px;
  color: var(--gold-soft);
  content: "✓";
}

.booking-panel {
  overflow: hidden;
  border: 1px solid rgba(205, 164, 94, 0.26);
  border-radius: var(--radius);
  background: var(--ivory);
  color: var(--black);
  box-shadow: var(--shadow);
}

.lead-form {
  padding: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: #1d2939;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d0d5dd;
  border-radius: var(--radius);
  padding: 12px 13px;
  background: #fff;
  color: #101828;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(205, 164, 94, 0.32);
  border-color: var(--gold);
}

.privacy {
  margin: 16px 0;
  color: var(--muted-dark);
  font-size: 12px;
  line-height: 1.55;
}

.form-button {
  min-height: 54px;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: #344054;
  font-size: 13px;
}

.calendar-panel,
.confirmation-panel {
  border-top: 1px solid #e4e7ec;
  background: #fff;
}

.calendar-heading {
  padding: 20px 20px 0;
}

.calendar-heading .eyebrow {
  color: #8a6525;
}

.calendar-heading h3 {
  color: #101828;
}

.calendar-heading p {
  max-width: 700px;
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.55;
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: 20px;
}

fieldset {
  display: grid;
  gap: 12px;
  padding: 0;
  border: 0;
  margin: 0;
}

legend {
  margin-bottom: 10px;
  color: #101828;
  font-weight: 850;
}

.date-options,
.time-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.booking-option {
  display: block;
  cursor: pointer;
}

.booking-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-option span {
  display: grid;
  place-items: center;
  min-height: 48px;
  border: 1px solid #d0d5dd;
  border-radius: var(--radius);
  padding: 10px 12px;
  background: #fff;
  color: #101828;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.booking-option input:checked + span {
  border-color: #9f752f;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #101828;
  box-shadow: 0 10px 24px rgba(205, 164, 94, 0.26);
}

.booking-option input:focus-visible + span {
  outline: 3px solid rgba(205, 164, 94, 0.32);
  outline-offset: 2px;
}

.booking-note {
  margin: 0;
  color: var(--muted-dark);
  font-size: 12px;
  line-height: 1.55;
}

.confirmation-panel {
  padding: 22px 20px 24px;
}

.confirmation-panel .eyebrow {
  color: #8a6525;
}

.confirmation-panel h3 {
  color: #101828;
}

.confirmation-panel p:last-child {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.55;
}

.is-hidden {
  display: none;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

summary {
  padding: 18px;
  font-weight: 800;
  cursor: pointer;
}

details p {
  padding: 0 18px 18px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.final-cta {
  text-align: center;
}

.final-cta .button {
  margin-top: 10px;
}

.site-footer {
  display: grid;
  gap: 6px;
  padding: 28px 18px 92px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}

.site-footer p {
  margin: 0;
}

.sticky-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 20;
  min-height: 54px;
  background: var(--ivory);
  color: var(--black);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.36);
  font-size: 14px;
}

@media (max-width: 359px) {
  .site-header {
    padding-inline: 12px;
  }

  .header-cta {
    display: none;
  }

  .section {
    width: min(100% - 24px, 1120px);
  }
}

@media (max-width: 520px) {
  .header-cta {
    display: none;
  }

  h1 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .hero-subtitle {
    font-size: 16px;
  }
}

@media (min-width: 640px) {
  .button {
    width: auto;
  }

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

  .full-span {
    grid-column: 1 / -1;
  }

  .lead-form {
    padding: 28px;
  }

  .booking-form {
    padding: 28px;
  }

  .date-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .time-options {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 860px) {
  .section {
    padding: 78px 0;
  }

  .hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  }

  .split-section,
  .meet-section {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .meet-section {
    grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  }

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

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

  .sticky-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 28px;
  }
}
