﻿:root {
  --navy: #06346f;
  --navy-dark: #02285a;
  --blue: #168ddd;
  --blue-soft: #eaf7ff;
  --green: #43b34f;
  --green-dark: #24893a;
  --ink: #0c2e5f;
  --muted: #49627f;
  --line: rgba(6, 52, 111, 0.14);
  --paper: #f7fbff;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(6, 52, 111, 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;
  line-height: 1.45;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.page-shell {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 96px;
  padding: 0 44px;
  background: var(--white);
  border-bottom: 0;
  backdrop-filter: none;
}

.brand {
  position: relative;
  z-index: 25;
  display: block;
  width: 138px;
  height: 96px;
}

.brand img {
  position: absolute;
  top: 6px;
  left: 0;
  z-index: 26;
  width: 153px;
  height: 153px;
  max-width: none;
  margin-top: 0;
  object-fit: contain;
  border-radius: 50%;
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding: 30px 0 24px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 19px;
  height: 3px;
  background: var(--blue);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links .is-active::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 9px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.primary,
.nav-book {
  color: var(--white);
  background: linear-gradient(180deg, #09478e, var(--navy-dark));
  box-shadow: 0 12px 28px rgba(6, 52, 111, 0.24);
}

.nav-book {
  font-weight: 500;
}

.secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--blue);
  font-weight: 500;
}

.outline {
  color: var(--green-dark);
  background: var(--white);
  border-color: var(--green);
}

.green {
  color: var(--white);
  background: linear-gradient(180deg, #4fc05c, var(--green-dark));
}

.nav-book {
  border-radius: 999px;
}

.button-icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.hero-calendar-icon {
  object-fit: contain;
}

.calendar-mark {
  border: 2px solid currentColor;
  border-radius: 4px;
}

.calendar-mark::before {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 5px;
  height: 2px;
  background: currentColor;
}

.calendar-mark::after {
  content: "";
  position: absolute;
  left: 4px;
  top: -4px;
  width: 8px;
  height: 5px;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.quote-mark {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.quote-mark::before,
.quote-mark::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.quote-mark::before {
  left: 7px;
  top: 2px;
  width: 2px;
  height: 10px;
  transform: rotate(38deg);
}

.quote-mark::after {
  left: 3px;
  top: 7px;
  width: 10px;
  height: 2px;
  transform: rotate(38deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 510px;
  background: #edf8ff;
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: min(58%, 720px);
  min-height: 510px;
  padding: 60px 24px 40px 98px;
}

.hero-copy::after {
  content: none;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(3rem, 4vw, 4rem);
  line-height: 0.98;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero-title-accent {
  color: var(--blue);
}

.hero h1::after {
  content: none;
}

.hero-lede {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 500;
}

.hero-copy p:not(.hero-lede):not(.serving-note) {
  max-width: 520px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 22px 0;
}

.hero-actions .button {
  font-weight: 500;
}

.serving-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.serving-note::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url("assets/icon-location-green.webp") center / contain no-repeat;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #eaf7ff;
}

.hero-banner {
  position: absolute;
  top: 0;
  right: 0;
  left: 30%;
  width: 70%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 56%;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 72%, rgba(255, 255, 255, 0.72) 86%, rgba(255, 255, 255, 0) 100%);
}

.hero-visual::after {
  content: none;
}

.hero-life-badge {
  position: absolute;
  display: block;
  right: 82px;
  bottom: 44px;
  z-index: 4;
  width: 158px;
  height: 158px;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(6, 52, 111, 0.18));
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 18px 96px;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-strip article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 0 22px;
  border-right: 1px solid var(--line);
}

.feature-strip article:last-child {
  border-right: 0;
}

.feature-strip h2 {
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 1rem;
}

.feature-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.feature-icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.service-icon {
  width: 116px;
  height: 94px;
  object-fit: contain;
}

.section {
  padding: 28px 96px;
}

.section-heading {
  margin-bottom: 22px;
}

.section-heading.center {
  text-align: center;
}

.section-heading h2,
.split-band h2,
.testimonial-copy h2,
.quote-intro h2 {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: clamp(1.8rem, 2.3vw, 2.5rem);
  line-height: 1.05;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

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

.service-card,
.price-card,
.testimonial-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(6, 52, 111, 0.1);
}

.service-card {
  display: grid;
  justify-items: center;
  min-height: 232px;
  padding: 28px 22px;
  text-align: center;
}

.service-card h3 {
  margin: 12px 0 8px;
  color: var(--navy);
  font-size: 1.2rem;
}

.service-card p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.94rem;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: var(--blue);
  font-weight: 500;
}

.service-card a::after {
  content: "→";
  display: inline-flex;
  align-items: center;
  color: currentColor;
  font-size: 1.5em;
  line-height: 1;
  transform: translateY(-1px);
}

.service-details {
  scroll-margin-top: 110px;
  background: linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
}

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

.service-detail-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(6, 52, 111, 0.1);
}

.service-detail-grid h3 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: 1.22rem;
}

.service-detail-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.44;
}

.detail-rates {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 500;
}

.detail-rates span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(6, 52, 111, 0.1);
}

.detail-rates strong {
  flex: 0 0 auto;
  color: var(--blue);
  font-weight: 500;
}

.split-band {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 42px;
  align-items: center;
  background: linear-gradient(90deg, #eef8ff, #ffffff);
}

.why-panel {
  position: relative;
  min-height: 224px;
  padding-right: 34px;
  border-right: 1px solid var(--line);
}

.why-panel ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-weight: 500;
  max-width: calc(100% - 132px);
}

.why-panel li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.why-panel li::before {
  content: "";
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  background: url("assets/icon-check-circle.svg") center / contain no-repeat;
}

.why-illustration {
  position: absolute;
  right: 28px;
  bottom: 0;
  width: 138px;
  height: auto;
  pointer-events: none;
}

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

.price-card {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 210px;
  padding: 24px 22px 18px;
  text-align: center;
}

.price-card.popular {
  border: 2px solid var(--blue);
}

.popular-label {
  position: absolute;
  top: -12px;
  left: 50%;
  width: 160px;
  padding: 5px 10px;
  color: var(--white);
  background: var(--blue);
  border-radius: 6px;
  transform: translateX(-50%);
  font-size: 0.78rem;
  font-weight: 500;
}

.price-card h3 {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 1.28rem;
}

.price-card p,
.price-card span,
.price-card small {
  color: var(--muted);
}

.price-card p {
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.price-card span {
  font-weight: 800;
}

.price-card strong {
  color: var(--navy);
  font-size: 2.25rem;
  line-height: 1;
}

.price-card .button {
  width: min(180px, 100%);
  min-height: 34px;
  margin-top: 12px;
  padding: 9px 12px;
  border-radius: 6px;
  font-weight: 500;
}

.testimonial-area {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}

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

.testimonial-grid article {
  padding: 12px 16px;
}

.stars {
  display: inline-block;
  color: var(--green);
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: 1px;
}

.testimonial-grid p {
  margin: 5px 0 8px;
  color: var(--ink);
  font-size: 0.76rem;
  line-height: 1.32;
}

.testimonial-grid strong {
  color: var(--muted);
  font-size: 0.72rem;
}

.area-card {
  position: relative;
  align-self: stretch;
  overflow: hidden;
  height: auto;
  min-height: 0;
  color: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, var(--navy), #0a4f9a);
}

.area-card > img {
  position: absolute;
  inset: 0 0 0 auto;
  width: 54%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.area-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 45, 101, 1) 0%, rgba(3, 45, 101, 1) 48%, rgba(3, 45, 101, 0.62) 62%, rgba(3, 45, 101, 0.08) 100%);
}

.area-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.area-content {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: center;
  max-width: 410px;
  height: 100%;
  padding: 16px 32px;
}

.area-card h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.36rem;
  line-height: 1.05;
}

.area-card p {
  max-width: 380px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.78rem;
  line-height: 1.35;
}

.quote-section {
  display: grid;
  grid-template-columns: 0.68fr 1fr;
  gap: 32px;
  padding: 26px 96px;
  background: linear-gradient(90deg, #f8fcff, #edf8ff);
  border-top: 1px solid var(--line);
}

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

.quote-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 500;
}

.quote-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.quote-points img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

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

.quote-form label {
  display: grid;
  gap: 0;
}

.quote-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

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

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

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(22, 141, 221, 0.22);
  border-color: var(--blue);
}

.message-field {
  grid-column: 1 / -1;
}

.submit-button {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 40px;
  border-radius: 6px;
  font-weight: 500;
}

.site-footer {
  display: grid;
  grid-template-columns: 180px 1.2fr 1fr 1fr;
  gap: 48px;
  padding: 30px 96px 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #00265a);
}

.footer-logo img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  background: var(--white);
  border-radius: 50%;
}

.site-footer h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 500;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 5px 28px;
}

.footer-links a {
  margin: 0;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.socials span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  overflow: hidden;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 900;
}

.socials img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.socials .social-circle-icon {
  transform: scale(1.58);
}

.footer-copy {
  grid-column: 1 / 3;
  align-self: end;
  margin: 0;
  font-size: 0.76rem;
}

@media (max-width: 1180px) {
  .page-shell {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .site-header {
    grid-template-columns: 128px 1fr auto;
    padding: 0 26px;
  }

  .brand {
    width: 108px;
    height: 96px;
  }

  .brand img {
    top: 4px;
    width: 119px;
    height: 119px;
  }

  .nav-links {
    gap: 22px;
  }

  .hero-copy {
    width: min(70%, 720px);
    padding: 56px 40px 26px;
  }

  .hero-copy::after {
    content: none;
  }

  .hero-visual {
    min-height: 0;
  }

  .feature-strip,
  .section,
  .quote-section,
  .site-footer {
    padding-left: 40px;
    padding-right: 40px;
  }

  .feature-strip,
  .service-grid,
  .service-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .feature-strip article {
    border-right: 0;
    padding: 0;
  }

  .split-band,
  .testimonial-area,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .why-panel {
    padding-right: 0;
    border-right: 0;
  }

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

@media (max-width: 760px) {
  .site-header {
    position: static;
    grid-template-columns: 84px 1fr;
    min-height: 90px;
    padding: 12px 20px;
  }

  .brand {
    width: 78px;
    height: 78px;
  }

  .brand img {
    top: 0;
    width: 86px;
    height: 86px;
  }

  .nav-links {
    display: none;
  }

  .nav-book {
    justify-self: end;
    padding: 10px 16px;
  }

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

  .hero h1 {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

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

  .hero-visual {
    min-height: 0;
  }

  .hero-visual::before {
    width: 100%;
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 76%, rgba(255, 255, 255, 0.78) 100%);
  }

  .hero-life-badge {
    display: none !important;
  }

  .feature-strip,
  .service-grid,
  .service-detail-grid,
  .pricing-grid,
  .testimonial-grid,
  .quote-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .feature-strip,
  .section,
  .quote-section,
  .site-footer {
    padding: 28px 20px;
  }

  .feature-strip article {
    grid-template-columns: 44px 1fr;
  }

  .why-panel {
    min-height: 0;
  }

  .why-panel ul {
    max-width: none;
  }

  .why-illustration {
    position: static;
    width: 132px;
    margin: 18px auto 0;
  }

  .message-field {
    grid-column: 1 / -1;
  }

}

