:root {
  --navy: #073b4c;
  --navy-deep: #052e3c;
  --teal: #047482;
  --teal-light: #dceff0;
  --gold: #8b681f;
  --gold-light: #ead9ae;
  --cream: #f6f2e9;
  --paper: #fffdf9;
  --white: #ffffff;
  --ink: #173139;
  --muted: #5d6c70;
  --line: #dce4e3;
  --success: #24775d;
  --shadow-sm: 0 12px 30px rgba(7, 59, 76, 0.08);
  --shadow-lg: 0 28px 70px rgba(7, 59, 76, 0.15);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1180px;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(4, 116, 130, 0.48);
  outline-offset: 4px;
}

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

h1,
h2,
h3,
h4 {
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
  overflow-wrap: anywhere;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4.3vw, 4.25rem);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

h4 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

p {
  margin-bottom: 22px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.container--narrow {
  width: min(calc(100% - 40px), 800px);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 104px 0;
}

.section--compact {
  padding: 72px 0;
}

.section--cream {
  background: var(--cream);
}

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

.section--dark {
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy);
}

.section--dark h2,
.section--dark h3,
.section--teal h2,
.section--teal h3 {
  color: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 52px;
}

.home-hero__grid > *,
.trust-strip__grid > *,
.cards > *,
.feature-grid > *,
.section-heading > *,
.situation-grid > *,
.steps > *,
.process-grid > *,
.feature-points > *,
.page-hero__inner > *,
.page-intro > *,
.contact-grid > *,
.footer__grid > * {
  min-width: 0;
}

.section-heading > *:last-child {
  margin-bottom: 8px;
}

.section-heading--center {
  display: block;
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading--center p {
  max-width: 650px;
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  background: var(--gold);
  content: "";
}

.section--dark .eyebrow,
.section--teal .eyebrow,
.page-hero .eyebrow {
  color: var(--gold-light);
}

.lead {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.65;
}

.section--dark .lead,
.section--teal .lead,
.page-hero .lead {
  color: rgba(255, 255, 255, 0.78);
}

.muted {
  color: var(--muted);
}

.accent {
  color: var(--teal);
}

.gold {
  color: var(--gold);
}

.topbar {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy-deep);
  font-size: 0.79rem;
  line-height: 1.4;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.topbar__links {
  display: flex;
  gap: 22px;
  align-items: center;
}

.topbar a {
  color: var(--white);
  text-decoration: none;
}

.topbar a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(7, 59, 76, 0.1);
  background: var(--paper);
}

.header__inner {
  display: flex;
  min-height: 92px;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
}

.brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  color: var(--navy);
  text-decoration: none;
}

.brand__crop {
  position: relative;
  width: 222px;
  aspect-ratio: 2.1;
  overflow: hidden;
}

.brand__crop img {
  position: absolute;
  top: 0;
  left: 0;
  width: 145.5%;
  height: auto;
  max-width: none;
  transform: translate(-15.5%, -22%);
}

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

.nav__links {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav__link {
  position: relative;
  display: inline-block;
  padding: 10px 0;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.nav__link::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav__link:hover::after,
.nav__link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__link[aria-current="page"] {
  color: var(--teal);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 0.91rem;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease;
}

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

.btn--primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 10px 24px rgba(4, 116, 130, 0.24);
}

.btn--primary:hover {
  background: #035f6b;
  box-shadow: 0 14px 30px rgba(4, 116, 130, 0.3);
}

.btn--gold {
  color: var(--navy-deep);
  background: var(--gold-light);
}

.btn--gold:hover {
  background: #f2e0b1;
}

.btn--outline {
  border-color: rgba(7, 59, 76, 0.24);
  color: var(--navy);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--teal);
  background: var(--teal-light);
}

.btn--light {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn--light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.btn svg,
.text-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--teal);
  font-weight: 750;
  text-decoration: none;
}

.text-link svg {
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.home-hero {
  position: relative;
  padding: 68px 0 76px;
  overflow: hidden;
  background:
    radial-gradient(circle at 2% 20%, rgba(234, 217, 174, 0.46), transparent 26%),
    linear-gradient(180deg, #fffdf9 0%, #f8f5ee 100%);
}

.home-hero::after {
  position: absolute;
  right: -110px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(4, 116, 130, 0.16);
  border-radius: 50%;
  content: "";
}

.home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: 62px;
  align-items: center;
}

.home-hero h1 {
  max-width: 660px;
}

.home-hero__copy .lead {
  max-width: 610px;
  margin-bottom: 32px;
}

.hero-note {
  display: flex;
  margin-top: 24px;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-note svg {
  width: 20px;
  color: var(--gold);
}

.hero-visual {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border-radius: 42px 42px 130px 42px;
  background: var(--cream);
  box-shadow: var(--shadow-lg);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
  object-position: 80% center;
}

.hero-visual__badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  display: flex;
  max-width: 270px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  align-items: center;
  gap: 13px;
  color: var(--navy);
  background: rgba(255, 253, 249, 0.9);
  font-size: 0.85rem;
  font-weight: 650;
  line-height: 1.45;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.hero-visual__badge svg {
  width: 26px;
  flex: 0 0 auto;
  color: var(--gold);
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

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

.trust-item {
  display: flex;
  min-height: 112px;
  padding: 24px 34px;
  align-items: flex-start;
  gap: 15px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item .trust-item__icon {
  display: grid;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex: 0 0 auto;
  place-items: center;
  color: var(--teal);
  background: var(--teal-light);
}

.trust-item__icon svg {
  width: 21px;
  height: 21px;
}

.trust-item strong,
.trust-item span {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.trust-item strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.3;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

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

.card {
  position: relative;
  display: flex;
  min-height: 100%;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  flex-direction: column;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(7, 59, 76, 0.02);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card:hover {
  border-color: rgba(4, 116, 130, 0.38);
  transform: translateY(-7px);
  box-shadow: var(--shadow-sm);
}

.card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  border-radius: 16px;
  place-items: center;
  color: var(--teal);
  background: var(--teal-light);
}

.card__icon--gold {
  color: var(--gold);
  background: #f7edd3;
}

.card__icon svg {
  width: 29px;
  height: 29px;
}

.card p {
  color: var(--muted);
}

.card .text-link {
  margin-top: auto;
  padding-top: 12px;
}

.card__kicker {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 84px;
  align-items: center;
}

.feature-panel {
  position: relative;
  padding: 54px;
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy);
  box-shadow: var(--shadow-lg);
}

.feature-panel::before {
  position: absolute;
  top: 30px;
  right: 34px;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(234, 217, 174, 0.2);
  border-radius: 50%;
  content: "";
}

.feature-panel h2,
.feature-panel h3 {
  color: var(--white);
}

.feature-panel .eyebrow {
  color: var(--gold-light);
}

.check-list,
.plain-list,
.contact-list,
.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 15px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
}

.check-list li::before {
  position: absolute;
  top: 0.31em;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  font-size: 0.71rem;
  font-weight: 800;
  content: "✓";
}

.feature-panel .check-list li::before,
.section--dark .check-list li::before {
  color: var(--navy);
  background: var(--gold-light);
}

.feature-points {
  display: grid;
  margin-top: 38px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 32px;
}

.feature-point {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.feature-point strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.18rem;
}

.feature-point span {
  color: var(--muted);
  font-size: 0.88rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
  counter-increment: step;
}

.step::before {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border: 1px solid rgba(234, 217, 174, 0.55);
  border-radius: 50%;
  place-items: center;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.12rem;
  content: counter(step, decimal-leading-zero);
}

.step p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.step h3 {
  color: var(--white);
  font-size: 1.34rem;
}

.quote-panel {
  position: relative;
  max-width: 930px;
  margin-inline: auto;
  padding: 64px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.quote-panel::before {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 0.6;
  content: "“";
}

.quote-panel blockquote {
  margin: 0 auto 22px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.35;
}

.quote-panel cite {
  color: var(--muted);
  font-size: 0.84rem;
  font-style: normal;
}

.cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, 0.8);
  background: var(--navy);
}

.cta::before,
.cta::after {
  position: absolute;
  border: 1px solid rgba(234, 217, 174, 0.15);
  border-radius: 50%;
  content: "";
}

.cta::before {
  top: -160px;
  right: -60px;
  width: 400px;
  height: 400px;
}

.cta::after {
  right: 90px;
  bottom: -250px;
  width: 460px;
  height: 460px;
}

.cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  padding: 64px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: center;
}

.cta h2 {
  max-width: 700px;
  margin-bottom: 14px;
  color: var(--white);
}

.cta p {
  max-width: 670px;
  margin-bottom: 0;
}

.cta__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-hero {
  position: relative;
  padding: 95px 0 88px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.8);
  background:
    radial-gradient(circle at 82% 32%, rgba(4, 116, 130, 0.45), transparent 30%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
}

.page-hero::before {
  position: absolute;
  top: -190px;
  right: -100px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(234, 217, 174, 0.14);
  border-radius: 50%;
  content: "";
}

.page-hero::after {
  position: absolute;
  right: 25%;
  bottom: -320px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 80px;
  align-items: end;
}

.page-hero h1 {
  max-width: 850px;
  color: var(--white);
  font-size: clamp(3.1rem, 6vw, 5.7rem);
}

.page-hero .lead {
  max-width: 720px;
  margin-bottom: 30px;
}

.page-hero__aside {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}

.page-hero__aside strong {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.22rem;
}

.page-hero__aside p {
  margin-bottom: 0;
  font-size: 0.85rem;
}

.page-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 84px;
  align-items: start;
}

.page-intro__sticky {
  position: sticky;
  top: 150px;
}

.info-list {
  display: grid;
  gap: 18px;
}

.info-item {
  display: grid;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
}

.info-item:last-child {
  border-bottom: 1px solid var(--line);
}

.info-item__icon {
  display: grid;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  place-items: center;
  color: var(--teal);
  background: var(--teal-light);
}

.info-item__icon svg {
  width: 24px;
  height: 24px;
}

.info-item h3 {
  margin-bottom: 6px;
  font-size: 1.35rem;
}

.info-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.situation-card {
  position: relative;
  min-height: 245px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.situation-card::after {
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(4, 116, 130, 0.18);
  border-radius: 50%;
  content: "";
  transition: transform 280ms ease;
}

.situation-card:hover::after {
  transform: scale(1.3);
}

.situation-card__number {
  display: block;
  margin-bottom: 36px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.situation-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  counter-reset: process;
}

.process-item {
  position: relative;
  min-height: 230px;
  padding: 30px 36px 30px 0;
  border-top: 1px solid var(--line);
  counter-increment: process;
}

.process-item:not(:nth-child(3n + 1)) {
  padding-left: 36px;
  border-left: 1px solid var(--line);
}

.process-item::before {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1rem;
  content: counter(process, decimal-leading-zero);
}

.process-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.split-panel {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-lg);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.split-panel__side {
  padding: 52px;
}

.split-panel__side + .split-panel__side {
  border-left: 1px solid var(--line);
  background: var(--cream);
}

.plain-list {
  display: grid;
  gap: 12px;
}

.plain-list li {
  position: relative;
  padding-left: 23px;
}

.plain-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.service-banner {
  display: grid;
  padding: 45px 48px;
  border: 1px solid rgba(4, 116, 130, 0.18);
  border-radius: var(--radius-md);
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  background: var(--teal-light);
}

.service-banner__icon {
  display: grid;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  place-items: center;
  color: var(--white);
  background: var(--teal);
}

.service-banner__icon svg {
  width: 28px;
}

.service-banner h3,
.service-banner p {
  margin-bottom: 4px;
}

.service-banner p {
  color: var(--muted);
  font-size: 0.88rem;
}

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

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  padding: 24px 60px 24px 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 600;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

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

.faq-item summary::before,
.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 18px;
  height: 2px;
  background: var(--teal);
  content: "";
  transition: transform 180ms ease;
}

.faq-item summary::after {
  transform: rotate(90deg);
}

.faq-item[open] summary::after {
  transform: rotate(0);
}

.faq-item__content {
  max-width: 820px;
  padding: 0 58px 22px 0;
  color: var(--muted);
}

.faq-item__content p:last-child {
  margin-bottom: 0;
}

.notice {
  padding: 20px 24px;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--muted);
  background: #fbf5e8;
  font-size: 0.83rem;
}

.notice p:last-child {
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
  align-items: start;
}

.contact-card {
  padding: 38px;
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
}

.contact-card h2,
.contact-card h3 {
  color: var(--white);
}

.contact-list {
  display: grid;
  margin-top: 30px;
  gap: 20px;
}

.contact-list li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
}

.contact-list svg {
  width: 21px;
  margin-top: 4px;
  color: var(--gold-light);
}

.contact-list strong,
.contact-list span,
.contact-list a {
  display: block;
}

.contact-list strong {
  color: var(--white);
  font-size: 0.84rem;
}

.contact-list span,
.contact-list a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.86rem;
}

.form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.form__field {
  display: grid;
  gap: 7px;
}

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

.form label,
.form legend {
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 750;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid #cfdad8;
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form textarea {
  min-height: 145px;
  resize: vertical;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--teal);
  outline: none;
  box-shadow: 0 0 0 4px rgba(4, 116, 130, 0.11);
}

.form__check {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.77rem;
}

.form__check input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.form__note,
.form__status {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.77rem;
}

.form__status {
  display: none;
  padding: 12px 15px;
  border-radius: 8px;
  color: var(--success);
  background: #e6f3ed;
}

.form__status.is-visible {
  display: block;
}

.legal-content h2 {
  margin-top: 54px;
  font-size: 2.1rem;
}

.legal-content h3 {
  margin-top: 34px;
  font-size: 1.45rem;
}

.legal-content a {
  color: var(--teal);
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.4rem;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-meta {
  margin-bottom: 34px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--muted);
  background: var(--cream);
  font-size: 0.83rem;
}

.site-footer {
  padding: 76px 0 28px;
  color: rgba(255, 255, 255, 0.68);
  background: var(--navy-deep);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.72fr 0.72fr 0.9fr;
  gap: 56px;
}

.footer-wordmark {
  display: inline-grid;
  gap: 5px;
  color: var(--white);
  text-decoration: none;
}

.footer-wordmark__name {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 600;
  letter-spacing: 0.015em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-wordmark__tagline {
  color: var(--gold-light);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.footer__brand p {
  max-width: 380px;
  margin-top: 16px;
  font-size: 0.84rem;
}

.footer__title {
  margin-bottom: 20px;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-list {
  display: grid;
  gap: 9px;
}

.footer-list a,
.footer-list span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.83rem;
  text-decoration: none;
}

.footer-list a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer__bottom {
  display: flex;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 0.72rem;
}

.footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

.lead,
.card,
.feature-panel,
.info-item,
.contact-card,
.legal-content,
.faq-item,
.footer-list,
.footer__bottom {
  overflow-wrap: anywhere;
}

.floating-contact {
  position: fixed;
  z-index: 900;
  right: 20px;
  bottom: 20px;
  display: flex;
  height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  align-items: center;
  gap: 10px;
  color: var(--white);
  background: #187b66;
  font-size: 0.8rem;
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(5, 46, 60, 0.28);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
}

.floating-contact:hover {
  transform: translateY(-3px);
}

.floating-contact svg {
  width: 20px;
}

.floating-contact.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .nav__links {
    gap: 18px;
  }

  .nav {
    gap: 18px;
  }

  .nav__link {
    font-size: 0.86rem;
  }

  .brand__crop {
    width: 190px;
  }

  .home-hero__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1.08fr);
    gap: 42px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 510px;
  }

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

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

  .cards > :last-child:nth-child(odd),
  .situation-grid > :last-child:nth-child(odd) {
    width: 100%;
    max-width: calc((100% - 22px) / 2);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .feature-grid,
  .page-intro,
  .contact-grid {
    gap: 52px;
  }

  .footer__grid {
    grid-template-columns: 1.25fr repeat(3, 0.7fr);
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .topbar {
    display: none;
  }

  .site-header {
    background: var(--paper);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header {
    top: 0;
  }

  .header__inner {
    min-height: 78px;
  }

  .brand__crop {
    width: 168px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    z-index: 999;
    top: 81px;
    right: 0;
    bottom: auto;
    left: 0;
    height: calc(100vh - 81px);
    height: calc(100dvh - 81px);
    visibility: hidden;
    overflow-y: auto;
    padding: 34px 20px 50px;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav__links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav__link {
    display: block;
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.45rem;
  }

  .nav__link::after {
    display: none;
  }

  .nav .btn {
    width: 100%;
    margin-top: 12px;
  }

  .home-hero {
    padding-top: 52px;
  }

  .home-hero__grid,
  .feature-grid,
  .page-hero__inner,
  .page-intro,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .home-hero__copy {
    max-width: 740px;
  }

  .hero-visual {
    min-height: clamp(540px, 72vw, 650px);
    border-radius: 34px 34px 100px 34px;
  }

  .hero-visual img {
    min-height: clamp(540px, 72vw, 650px);
    object-position: right center;
  }

  .page-hero__inner {
    gap: 38px;
  }

  .page-hero__aside {
    max-width: 480px;
  }

  .page-intro__sticky {
    position: static;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .process-item:not(:nth-child(3n + 1)) {
    padding-left: 0;
    border-left: 0;
  }

  .process-item:nth-child(even) {
    padding-left: 32px;
    border-left: 1px solid var(--line);
  }

  .cta__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cta__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 46px 30px;
  }

  .floating-contact {
    display: none;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .container,
  .container--narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  h2 {
    font-size: clamp(1.85rem, 8vw, 3.2rem);
  }

  .section {
    padding: 76px 0;
  }

  .section--compact {
    padding: 54px 0;
  }

  .topbar {
    display: none;
  }

  .nav {
    top: 81px;
    height: calc(100vh - 81px);
    height: calc(100dvh - 81px);
  }

  .brand__crop {
    width: 168px;
  }

  .header__inner {
    min-height: 78px;
  }

  .home-hero {
    padding: 42px 0 56px;
  }

  .home-hero h1 {
    font-size: clamp(2.4rem, 9vw, 3.2rem);
  }

  .home-hero__grid {
    gap: 36px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: clamp(320px, 92vw, 420px);
  }

  .hero-visual {
    border-radius: 26px 26px 76px 26px;
  }

  .hero-visual img {
    object-position: 74% center;
  }

  .hero-visual__badge {
    right: 18px;
    bottom: 18px;
    left: 18px;
    max-width: none;
  }

  .button-row .btn {
    width: 100%;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 94px;
    padding: 20px 14px;
  }

  .trust-item + .trust-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .cards,
  .situation-grid,
  .steps,
  .feature-points,
  .process-grid,
  .form,
  .split-panel,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .cards > :last-child:nth-child(odd),
  .situation-grid > :last-child:nth-child(odd) {
    width: auto;
    max-width: none;
    grid-column: auto;
  }

  .card {
    padding: 28px;
  }

  .feature-panel,
  .quote-panel,
  .split-panel__side,
  .contact-card {
    padding: 34px 26px;
  }

  .process-item,
  .process-item:nth-child(even),
  .process-item:not(:nth-child(3n + 1)) {
    min-height: auto;
    padding: 28px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .split-panel__side + .split-panel__side {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-banner {
    padding: 30px 24px;
    grid-template-columns: 1fr;
  }

  .service-banner__icon {
    width: 54px;
    height: 54px;
  }

  .page-hero {
    padding: 72px 0 68px;
  }

  .page-hero h1 {
    font-size: clamp(2.4rem, 9vw, 3.2rem);
  }

  .cta__inner {
    padding: 42px 26px;
  }

  .cta__actions {
    flex-direction: column;
  }

  .cta__actions .btn {
    width: 100%;
  }

  .footer__grid {
    gap: 34px;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .topbar,
  .site-header,
  .floating-contact,
  .cta,
  .site-footer {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .section,
  .page-hero {
    padding: 32px 0;
  }

  .page-hero {
    color: #000;
    background: #fff;
  }

  .page-hero h1,
  .page-hero .lead {
    color: #000;
  }
}
