:root {
  --navy: #041833;
  --navy-2: #0a2444;
  --gold: #c99732;
  --gold-2: #e1b24e;
  --ink: #0d1724;
  --muted: #5f6d7d;
  --line: #dbe4ee;
  --panel: #f6f8fb;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(4, 24, 51, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand img {
  display: block;
  width: min(260px, 48vw);
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  padding: 10px 12px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
}

nav a:hover {
  background: var(--panel);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 86px);
  padding: 0;
  background: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--white) 0%, var(--white) 38%, rgba(255, 255, 255, 0.88) 45%, rgba(255, 255, 255, 0.34) 54%, rgba(255, 255, 255, 0) 64%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
}

.hero-copy,
.section-heading {
  max-width: 760px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, 50vw);
  padding: clamp(54px, 8vw, 108px) clamp(20px, 5vw, 72px);
}

.hero-photo {
  position: absolute;
  inset: 0 0 0 38%;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(4, 24, 51, 0.06), rgba(4, 24, 51, 0)),
    url("assets/miami-waterfront.avif") center / cover no-repeat;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}

h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 20px;
}

.lead {
  max-width: 680px;
  color: #304357;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions,
.calendar-fallback {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--navy);
}

.button.primary:hover {
  background: var(--navy-2);
}

.button.secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.button.secondary:hover {
  border-color: var(--gold);
}

.section {
  padding: clamp(62px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.section-heading p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.steps article {
  min-height: 220px;
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--gold);
  font-weight: 900;
}

.steps p,
.site-footer span,
.site-footer small {
  color: var(--muted);
  line-height: 1.55;
}

.faq {
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin-top: 30px;
}

details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  max-width: 980px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}

.source-links span {
  font-weight: 800;
  color: var(--navy);
}

.source-links a {
  padding: 8px 10px;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.source-links a:hover {
  border-color: var(--gold);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  background: var(--panel);
}

.intake-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cbd7e4;
  border-radius: 6px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(201, 151, 50, 0.22);
  border-color: var(--gold);
}

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

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.schedule {
  background: var(--white);
}

.calendar-wrap {
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.calendar-fallback {
  margin: 18px 0 0;
  color: var(--muted);
}

.calendar-fallback a {
  color: var(--navy);
  font-weight: 800;
}

.site-footer {
  display: grid;
  gap: 8px;
  padding: 34px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--navy);
}

.site-footer strong {
  color: var(--gold-2);
}

.site-footer span,
.site-footer small {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 880px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .hero {
    min-height: 760px;
  }

  .hero::after {
    background: linear-gradient(180deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 48%, rgba(255, 255, 255, 0.18) 70%, rgba(255, 255, 255, 0) 100%);
  }

  .hero-copy {
    width: 100%;
    padding-bottom: 28px;
  }

  .hero-photo {
    inset: 42% 0 0 0;
  }

  .steps,
  .intake-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  nav a {
    padding-inline: 8px;
    font-size: 13px;
  }

  h1 {
    font-size: 40px;
  }

  .button {
    width: 100%;
  }
}
