:root {
  --navy: #07172b;
  --navy-soft: #0d2542;
  --blue: #204d7a;
  --silver: #b8c1cc;
  --silver-light: #e4e8ed;
  --white: #ffffff;
  --off-white: #f6f7f9;
  --ink: #162033;
  --muted: #647084;
  --line: rgba(7, 23, 43, 0.13);
  --shadow: 0 24px 70px rgba(7, 23, 43, 0.16);
  --radius: 20px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(900px, 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(7, 23, 43, 0.94);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  color: var(--white);
  text-decoration: none;
}

.brand-main {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
}

.brand-sub {
  margin-top: 5px;
  color: var(--silver);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--navy);
  background: linear-gradient(135deg, #ffffff, #cbd3dc);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.17);
}

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

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  background: transparent;
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.9rem;
}

.button-full {
  width: 100%;
}

.hero {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 15%, rgba(73, 117, 161, 0.33), transparent 32%),
    linear-gradient(135deg, #061426, #0c2848 70%, #081a2f);
}

.hero-grid {
  display: grid;
  min-height: 760px;
  align-items: center;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  padding-block: 90px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--silver);
}

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

h1,
h2 {
  font-family: var(--serif);
  line-height: 0.98;
}

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(4rem, 8vw, 7.5rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  letter-spacing: -0.035em;
}

h3 {
  line-height: 1.25;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 34px;
  color: #d6dee7;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.text-link {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  color: var(--silver);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  max-width: 480px;
  justify-self: end;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 220px 220px 26px 26px;
  background: linear-gradient(180deg, #bfc8d3, #7b8999);
  box-shadow: var(--shadow);
}

.photo-frame img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  object-position: center top;
}

.photo-placeholder {
  display: none;
  min-height: 590px;
  place-items: center;
  padding: 30px;
  color: var(--navy);
  text-align: center;
}

.photo-placeholder div {
  display: grid;
  gap: 8px;
}

.photo-placeholder strong {
  font-family: var(--serif);
  font-size: 2rem;
}

.photo-placeholder span {
  font-size: 0.85rem;
}

.signature-card {
  position: absolute;
  right: -28px;
  bottom: 38px;
  display: grid;
  min-width: 260px;
  gap: 3px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 20px 24px;
  background: rgba(7, 23, 43, 0.9);
  box-shadow: var(--shadow);
}

.signature-name {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 700;
}

.signature-card span:last-child {
  color: var(--silver);
  font-size: 0.82rem;
}

.question-strip {
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #dce2e8, #ffffff, #dce2e8);
}

.question-strip p {
  margin: 0;
  padding: 22px 0;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  text-align: center;
}

.section {
  padding: 110px 0;
}

.section-light {
  background: var(--off-white);
}

.section-dark {
  color: var(--white);
  background: var(--navy);
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  margin-bottom: 52px;
}

.section-heading p:last-child {
  color: var(--muted);
}

.section-dark .section-heading p:last-child {
  color: #c9d1db;
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.question-card,
.service-card,
.process-step {
  border-radius: var(--radius);
}

.question-card {
  min-height: 240px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(7, 23, 43, 0.06);
}

.question-number {
  display: inline-block;
  margin-bottom: 35px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.question-card h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 1.75rem;
}

.question-card p,
.service-card p,
.process-step p,
.about-copy p {
  color: var(--muted);
}

.centered-action {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 260px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--navy-soft);
}

.service-card h3 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: 2rem;
}

.service-card p {
  color: #cbd4df;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-step {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.process-step > span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-weight: 800;
}

.process-step h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 2rem;
}

.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
}

.about-copy {
  max-width: 700px;
  font-size: 1.05rem;
}

.about-signoff {
  display: grid;
  gap: 3px;
  margin-top: 35px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.about-signoff strong {
  font-family: var(--serif);
  font-size: 1.7rem;
}

.about-signoff span {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.faq-list {
  margin-top: 44px;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 46px 24px 0;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  right: 4px;
  content: "+";
  color: var(--blue);
  font-size: 1.4rem;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  max-width: 760px;
  padding: 0 0 24px;
  color: var(--muted);
}

.form-section {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 10%, rgba(50, 95, 140, 0.34), transparent 30%),
    var(--navy);
}

.form-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
}

.form-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.form-intro p {
  color: #cbd4df;
}

.contact-card {
  display: grid;
  gap: 5px;
  margin-top: 35px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.contact-card span {
  color: var(--silver);
  font-size: 0.84rem;
}

.contact-card a {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
}

.lead-form {
  padding: 36px;
  border-radius: 24px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.field label,
.contact-preference legend {
  font-size: 0.86rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfd6df;
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(32, 77, 122, 0.12);
}

textarea {
  resize: vertical;
}

.contact-preference {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 0 20px;
  border: 0;
  padding: 0;
}

.contact-preference legend {
  width: 100%;
  margin-bottom: 2px;
}

.contact-preference label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.9rem;
}

.contact-preference input,
.consent input {
  width: auto;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 6px 0 20px;
  color: var(--muted);
  font-size: 0.78rem;
}

.consent input {
  margin-top: 4px;
}

.form-disclaimer,
.form-message {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
}

.form-message {
  min-height: 20px;
  color: var(--blue);
  font-weight: 700;
}

.site-footer {
  padding: 60px 0 24px;
  color: var(--white);
  background: #040e1a;
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
}

.footer-grid p,
.footer-contact span,
.footer-bottom {
  color: #9eabba;
}

.footer-contact {
  display: grid;
  justify-items: end;
  gap: 6px;
}

.footer-contact a {
  font-weight: 750;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .section-heading,
  .about-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    gap: 50px;
    padding-block: 70px;
  }

  .hero-visual {
    width: min(100%, 520px);
    justify-self: center;
  }

  .section-heading,
  .about-grid,
  .form-grid {
    gap: 30px;
  }

  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .form-intro {
    position: static;
  }

  .footer-grid,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-contact {
    justify-items: start;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .site-header .button {
    display: none;
  }

  h1 {
    font-size: clamp(3.35rem, 17vw, 5rem);
  }

  .hero {
    text-align: left;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-row {
    display: grid;
    gap: 4px;
  }

  .trust-row span[aria-hidden="true"] {
    display: none;
  }

  .photo-frame,
  .photo-frame img,
  .photo-placeholder {
    min-height: 470px;
    height: 470px;
  }

  .signature-card {
    right: 12px;
    bottom: 16px;
    min-width: auto;
  }

  .section {
    padding: 78px 0;
  }

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

  .lead-form {
    padding: 24px 18px;
  }
}


.google-form-shell {
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.google-form-shell iframe {
  display: block;
  width: 100%;
  min-height: 1500px;
  border: 0;
  background: #ffffff;
}

@media (max-width: 680px) {
  .google-form-shell iframe {
    min-height: 1650px;
  }
}
