:root {
  --ink: #192434;
  --navy: #07304a;
  --navy-2: #0d4968;
  --cream: #fff7f1;
  --shell: #f7e9e1;
  --blush: #d98978;
  --rose: #c76f64;
  --sand: #d9b88f;
  --muted: #6f625e;
  --line: rgba(25, 36, 52, 0.14);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(25, 36, 52, 0.15);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Candara, Optima, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 46px);
  background: rgba(255, 247, 241, 0.9);
  border-bottom: 1px solid rgba(25, 36, 52, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background: var(--rose);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  letter-spacing: 0;
  box-shadow: 0 10px 24px rgba(199, 111, 100, 0.26);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.05;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.nav-toggle {
  display: none;
}

.section-pad {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  align-items: center;
  gap: clamp(38px, 6vw, 76px);
  min-height: auto;
  padding-top: clamp(36px, 5vw, 68px);
  padding-bottom: clamp(54px, 7vw, 90px);
}

.hero-copy {
  max-width: 720px;
}

.script {
  margin: 0 0 10px;
  color: var(--rose);
  font-family: "Segoe Script", "Bradley Hand ITC", cursive;
  font-size: clamp(24px, 3.2vw, 42px);
  line-height: 1.05;
}

.hero-script {
  margin: 0 0 14px;
  color: var(--rose);
  font-family: "Segoe Script", "Bradley Hand ITC", cursive;
  font-size: clamp(26px, 3.5vw, 46px);
  line-height: 1;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(42px, 5.4vw, 66px);
  line-height: 0.98;
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
}

h3 {
  font-size: 24px;
  line-height: 1.12;
}

.hero-lede {
  max-width: 610px;
  margin: 18px 0 0;
  color: #3e4b57;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 14px 28px rgba(7, 48, 74, 0.2);
}

.button.secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-row span {
  padding: 9px 13px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.hero-media {
  position: relative;
  isolation: isolate;
}

.hero-media::before {
  position: absolute;
  inset: 11% -8% -8% 11%;
  z-index: -1;
  content: "";
  background: var(--navy);
  border-radius: 8px;
}

.hero-media img,
.feature-image img,
.phone-stack img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: min(100%, 470px);
  height: auto;
  max-height: min(72vh, 720px);
  object-fit: contain;
  object-position: center;
}

.intro-band {
  padding: clamp(34px, 5vw, 54px) clamp(20px, 5vw, 56px);
  color: var(--white);
  background: var(--navy);
}

.intro-band p {
  width: min(900px, 100%);
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 4vw, 46px);
  line-height: 1.12;
  text-align: center;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-heading.narrow {
  max-width: 760px;
}

.section-heading p:not(.script) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-grid article {
  min-height: 292px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.icon-wrap {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--sand);
  background: var(--navy);
  border-radius: 999px;
}

.icon-wrap svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-grid p,
.resource-grid p,
.feature-copy p,
.social-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 7vw, 84px);
}

.feature-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

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

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

.steps li::before {
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--white);
  background: var(--rose);
  border-radius: 999px;
  content: counter(step);
  font-weight: 800;
}

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

.steps strong {
  color: var(--navy);
  font-size: 18px;
}

.steps span {
  margin-top: 4px;
  color: var(--muted);
}

.quote-band {
  padding: clamp(54px, 8vw, 96px) 20px;
  text-align: center;
  background: var(--shell);
  border-block: 1px solid rgba(25, 36, 52, 0.08);
}

.quote-band blockquote {
  width: min(920px, 100%);
  margin: 0 auto;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 68px);
  line-height: 1.06;
}

.quote-band cite {
  display: block;
  margin-top: 18px;
  color: var(--rose);
  font-family: "Segoe Script", "Bradley Hand ITC", cursive;
  font-size: 30px;
  font-style: normal;
}

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

.resource-grid article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(25, 36, 52, 0.08);
}

.resource-grid img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center 18%;
}

.resource-grid div {
  padding: 22px;
}

.social-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(30px, 7vw, 80px);
}

.phone-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.phone-stack img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.phone-stack img:nth-child(2) {
  margin-top: 42px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 520px);
  gap: clamp(30px, 7vw, 84px);
  align-items: start;
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-methods a {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 13px 16px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fffaf6;
  border: 1px solid rgba(25, 36, 52, 0.18);
  border-radius: 6px;
  font: 16px/1.35 Candara, Optima, "Segoe UI", Arial, sans-serif;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.button:focus-visible,
.site-nav a:focus-visible,
.contact-methods a:focus-visible {
  outline: 3px solid rgba(217, 184, 143, 0.7);
  outline-offset: 3px;
}

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

.form-note.is-ready {
  color: var(--navy);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 640px);
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 46px);
  color: rgba(255, 255, 255, 0.76);
  background: var(--navy);
}

.site-footer strong {
  display: block;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.site-footer p {
  margin: 6px 0 0;
}

.disclaimer {
  font-size: 14px;
}

@media (max-width: 940px) {
  .nav-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 999px;
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--navy);
  }

  .site-nav {
    position: fixed;
    top: 81px;
    right: 18px;
    display: none;
    min-width: 220px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .hero,
  .feature-split,
  .social-proof,
  .contact,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  .hero-media {
    width: min(390px, 100%);
    margin: 0 auto;
  }

  .service-grid,
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero-media::before {
    inset: 8% 0 -5% 8%;
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand small {
    max-width: 180px;
  }

  .section-pad {
    width: min(100% - 28px, var(--max));
    padding: 56px 0;
  }

  h1 {
    font-size: clamp(40px, 13vw, 62px);
  }

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

  .trust-row span {
    width: 100%;
  }

  .service-grid,
  .resource-grid,
  .phone-stack {
    grid-template-columns: 1fr;
  }

  .service-grid article {
    min-height: auto;
  }

  .phone-stack {
    width: min(360px, 100%);
    margin-inline: auto;
  }

  .phone-stack img:nth-child(2) {
    margin-top: 0;
  }

  .contact-form {
    padding: 20px;
  }
}

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