:root {
  --navy: #0b1f4d;
  --navy-deep: #071632;
  --navy-soft: #17336e;
  --gold: #d4a017;
  --gold-light: #e4c25d;
  --gold-pale: #f8edcc;
  --white: #ffffff;
  --off-white: #faf8f3;
  --cream: #f3eee4;
  --text: #20242d;
  --muted: #626875;
  --border: #e7e1d3;
  --success: #176b4a;
  --error: #9e2e2e;
  --shadow-sm: 0 12px 30px rgba(7, 22, 50, 0.08);
  --shadow-lg: 0 28px 70px rgba(7, 22, 50, 0.16);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1200px;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--off-white);
  color: var(--text);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-is-open {
  overflow: hidden;
}

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

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

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

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

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

h1,
h2,
h3,
h4 {
  color: var(--navy);
  font-family: "Libre Caslon Text", Georgia, serif;
  font-weight: 700;
  line-height: 1.18;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 5vw, 4.35rem);
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 3.8vw, 3.15rem);
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.section-anchor {
  scroll-margin-top: 116px;
}

.section {
  padding-block: clamp(72px, 8vw, 112px);
  background: var(--white);
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 12px 16px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-bottom: 18px;
  color: #8a6500;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.105em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  display: none;
  content: none;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 9px;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(212, 160, 23, 0.35);
  outline-offset: 3px;
}

.button--large {
  min-height: 56px;
  padding-inline: 28px;
}

.button--gold {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 12px 24px rgba(212, 160, 23, 0.18);
}

.button--gold:hover {
  background: var(--gold-light);
  box-shadow: 0 16px 30px rgba(212, 160, 23, 0.28);
}

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

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

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.button--outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.button--full {
  width: 100%;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.text-link .icon,
.service-card__link .icon {
  transition: transform 180ms ease;
}

.text-link:hover .icon,
.service-card__link:hover .icon {
  transform: translateX(5px);
}

.top-bar {
  min-height: 31px;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
}

.top-bar__inner {
  display: flex;
  min-height: 31px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.top-bar p {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
}

.top-bar .icon {
  color: var(--gold-light);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(11, 31, 77, 0.08);
  background: rgba(250, 248, 243, 0.96);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.admin-bar .site-header {
  top: 32px;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 10px 32px rgba(7, 22, 50, 0.09);
}

.site-header__inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  min-width: 225px;
  align-items: center;
  gap: 13px;
}

.brand__logo,
.brand__custom-logo img {
  width: 57px;
  height: 57px;
  border: 2px solid rgba(212, 160, 23, 0.25);
  border-radius: 50%;
  background: #000;
  object-fit: cover;
}

.brand__name {
  color: var(--navy);
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.34rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  white-space: nowrap;
}

.site-nav {
  margin-left: auto;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 31px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__list a {
  position: relative;
  display: block;
  padding-block: 30px;
  color: #3e4655;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

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

.site-nav__list a:hover {
  color: var(--navy);
}

.site-nav__list a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle,
.site-nav__mobile-cta {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(74px, 8vw, 112px);
  background:
    radial-gradient(circle at 8% 10%, rgba(228, 194, 93, 0.12), transparent 31%),
    radial-gradient(circle at 92% 32%, rgba(228, 194, 93, 0.08), transparent 28%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: var(--white);
}

.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent 25%, #000 100%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(54px, 7vw, 94px);
}

.hero h1 {
  color: var(--white);
}

.hero h1 span {
  color: var(--gold-light);
}

.hero__lead {
  max-width: 670px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  font-weight: 500;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 32px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.83rem;
  list-style: none;
}

.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero__trust .icon {
  color: var(--gold-light);
}

.hero__visual {
  position: relative;
  min-width: 0;
}

.hero__image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.05 / 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-lg);
}

.hero__image-frame::before {
  position: absolute;
  inset: 14px;
  z-index: 1;
  border: 1px solid rgba(228, 194, 93, 0.38);
  border-radius: 20px;
  content: "";
  pointer-events: none;
}

.hero__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-card {
  position: absolute;
  right: -24px;
  bottom: 28px;
  display: flex;
  max-width: 320px;
  align-items: center;
  gap: 14px;
  padding: 17px 19px;
  border: 1px solid rgba(212, 160, 23, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  box-shadow: var(--shadow-lg);
}

.trust-card__icon {
  display: grid;
  width: 45px;
  height: 45px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-pale);
  color: #8a6500;
}

.trust-card strong,
.trust-card span {
  display: block;
}

.trust-card strong {
  font-size: 0.86rem;
}

.trust-card div span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
}

.trust-strip {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

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

.trust-item {
  display: flex;
  min-height: 106px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 22px 18px;
  border-right: 1px solid var(--border);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-align: center;
  text-transform: uppercase;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item .icon {
  width: 28px;
  height: 28px;
  color: #8a6500;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: center;
  gap: clamp(54px, 8vw, 102px);
}

.section-copy > p:not(.eyebrow) {
  color: #535b68;
  font-size: 1.04rem;
  font-weight: 500;
}

.media-card {
  position: relative;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--off-white);
  box-shadow: var(--shadow-sm);
}

.media-card::before {
  position: absolute;
  top: -22px;
  right: -22px;
  width: 120px;
  height: 120px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-radius: 0 24px 0 0;
  content: "";
}

.media-card img {
  width: 100%;
  border-radius: 18px;
}

.media-card__badge {
  position: absolute;
  right: 40px;
  bottom: -25px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 18px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.media-card__badge .icon {
  color: var(--gold-light);
}

.value-list {
  display: grid;
  gap: 11px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.value-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #3f4754;
  font-weight: 600;
}

.value-list .icon {
  color: #8a6500;
}

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

.section-heading--left {
  max-width: none;
  margin-inline: 0;
  text-align: left;
}

.section-heading > p:not(.eyebrow) {
  color: #555d69;
  font-size: 1.03rem;
  font-weight: 500;
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 190ms ease, border-color 190ms ease, box-shadow 190ms ease;
}

.service-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  content: "";
  transform: scaleX(0);
  background: var(--gold);
  transform-origin: left;
  transition: transform 190ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 160, 23, 0.42);
  box-shadow: var(--shadow-sm);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card--featured {
  grid-column: span 2;
  min-height: 310px;
  border-color: rgba(212, 160, 23, 0.42);
  background:
    radial-gradient(circle at 100% 0, rgba(212, 160, 23, 0.16), transparent 36%),
    var(--white);
}

.service-card__icon,
.reason-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 14px;
  background: var(--gold-pale);
  color: #8a6500;
}

.service-card__icon .icon,
.reason-card__icon .icon {
  width: 29px;
  height: 29px;
}

.service-card__badge {
  position: absolute;
  top: 28px;
  right: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--gold-pale);
  color: #765700;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card p {
  margin-bottom: 25px;
  color: var(--muted);
  font-weight: 500;
}

.service-card__list {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  color: #4b5260;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.52;
  list-style: none;
}

.service-card__list li {
  display: grid;
  grid-template-columns: 19px minmax(0, 1fr);
  align-items: start;
  gap: 8px;
}

.service-card__list .icon {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  color: #8a6500;
  stroke-width: 2.2;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.centered-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 46px;
  text-align: center;
}

.centered-cta p {
  margin: 0;
  color: var(--muted);
}

.mobile-banner {
  position: relative;
  overflow: hidden;
  padding-block: clamp(74px, 8vw, 102px);
  background:
    radial-gradient(circle at 95% 10%, rgba(228, 194, 93, 0.13), transparent 28%),
    linear-gradient(125deg, var(--navy-deep), var(--navy));
  color: var(--white);
}

.mobile-banner__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
  align-items: center;
  gap: clamp(52px, 7vw, 90px);
}

.mobile-banner h2 {
  color: var(--white);
}

.mobile-banner__content > p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.77);
  font-size: 1.05rem;
}

.mobile-banner__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 22px;
  margin: 30px 0 34px;
}

.mobile-banner__features span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.91rem;
}

.mobile-banner__features .icon {
  color: var(--gold-light);
}

.mobile-banner__visual {
  position: relative;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-lg);
}

.mobile-banner__visual img {
  width: 100%;
  border-radius: 19px;
}

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

.reason-card {
  padding: 28px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.reason-card:hover {
  transform: translateY(-5px);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.reason-card__icon {
  margin-inline: auto;
}

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

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.process-grid::before {
  position: absolute;
  top: 44px;
  right: 8%;
  left: 8%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-step__number {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  margin: 0 auto 24px;
  border: 1px solid rgba(212, 160, 23, 0.38);
  border-radius: 50%;
  background: var(--white);
  color: #8a6500;
  box-shadow: var(--shadow-sm);
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 1.35rem;
}

.process-step h3 {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.process-step p {
  color: var(--muted);
  font-size: 0.84rem;
}

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

.testimonial-card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(7, 22, 50, 0.06);
}

.testimonial-card::after {
  position: absolute;
  top: 18px;
  right: 24px;
  content: "“";
  color: rgba(212, 160, 23, 0.15);
  font-family: Georgia, serif;
  font-size: 5.7rem;
  line-height: 1;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
  color: var(--gold);
}

.stars .icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke-width: 1.2;
}

.testimonial-card blockquote {
  position: relative;
  z-index: 1;
  min-height: 112px;
  margin-bottom: 24px;
  color: #434a57;
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
}

.testimonial-card__person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-pale);
  color: #8a6500;
}

.testimonial-card__person strong,
.testimonial-card__person span {
  display: block;
}

.testimonial-card__person strong {
  color: var(--navy);
  font-size: 0.85rem;
}

.testimonial-card__person div span {
  color: var(--muted);
  font-size: 0.72rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: start;
  gap: clamp(42px, 7vw, 86px);
}

.faq-list {
  display: grid;
  gap: 13px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--white);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font-weight: 700;
  text-align: left;
}

.faq-item__plus {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.faq-item__plus::before,
.faq-item__plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  content: "";
  transform: translate(-50%, -50%);
  background: var(--gold);
  transition: transform 180ms ease;
}

.faq-item__plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item button[aria-expanded="true"] .faq-item__plus::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-item__answer {
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-item__answer p {
  margin: 0;
}

.support-card {
  position: sticky;
  top: 138px;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
}

.support-card h2 {
  color: var(--white);
  font-size: 1.85rem;
}

.support-card__icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--gold-light);
}

.support-card__icon .icon {
  width: 31px;
  height: 31px;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(76px, 8vw, 112px);
  background:
    radial-gradient(circle at 100% 0, rgba(228, 194, 93, 0.13), transparent 29%),
    linear-gradient(140deg, var(--navy-deep), var(--navy));
  color: var(--white);
}

.contact-section__heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.contact-section__heading h2 {
  color: var(--white);
}

.contact-section__heading > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.77);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  align-items: start;
  gap: clamp(34px, 6vw, 72px);
}

.contact-card {
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow-lg);
}

.appointment-form,
.appointment-form label {
  display: grid;
  gap: 9px;
}

.appointment-form {
  gap: 20px;
}

.appointment-form label {
  color: #3e4654;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

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

.form-row--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid #dcd6c9;
  border-radius: 9px;
  outline: none;
  background: #fbfaf7;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 170ms ease, box-shadow 170ms ease, background-color 170ms ease;
}

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

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.12);
}

.consent-field {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-size: 0.77rem !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  line-height: 1.5;
  text-transform: none !important;
}

.consent-field input {
  width: 17px;
  min-height: 17px;
  margin-top: 3px;
  padding: 0;
}

.form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-notice {
  margin-bottom: 22px;
  padding: 12px 14px;
  border-radius: 9px;
  font-size: 0.86rem;
}

.form-notice--success {
  border: 1px solid rgba(23, 107, 74, 0.25);
  background: rgba(23, 107, 74, 0.09);
  color: var(--success);
}

.form-notice--error {
  border: 1px solid rgba(158, 46, 46, 0.25);
  background: rgba(158, 46, 46, 0.08);
  color: var(--error);
}

.contact-detail-list {
  display: grid;
  gap: 16px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.05);
}

.contact-detail > .icon {
  width: 27px;
  height: 27px;
  color: var(--gold-light);
}

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

.contact-detail span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.map-placeholder {
  position: relative;
  display: grid;
  min-height: 275px;
  place-items: center;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: #d8d8d2;
  color: var(--navy);
  text-align: center;
}

.map-placeholder__grid {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(32deg, transparent 47%, rgba(11, 31, 77, 0.18) 48%, rgba(11, 31, 77, 0.18) 52%, transparent 53%),
    linear-gradient(135deg, transparent 47%, rgba(11, 31, 77, 0.13) 48%, rgba(11, 31, 77, 0.13) 52%, transparent 53%);
  background-size: 70px 70px, 110px 110px;
}

.map-placeholder > span,
.map-placeholder > strong,
.map-placeholder > small {
  position: relative;
  z-index: 1;
}

.map-placeholder > span {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: -38px;
  border-radius: 50%;
  background: var(--gold);
}

.map-placeholder > span .icon {
  width: 28px;
  height: 28px;
}

.map-placeholder > strong {
  align-self: end;
}

.map-placeholder > small {
  align-self: start;
  color: #5c626b;
}

.site-footer {
  padding-top: 74px;
  background: #050f25;
  color: rgba(255, 255, 255, 0.65);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr 0.9fr 1fr;
  gap: 48px;
  padding-bottom: 58px;
}

.brand--footer {
  min-width: 0;
  margin-bottom: 21px;
}

.brand--footer .brand__name {
  color: var(--gold-light);
}

.footer-brand p {
  max-width: 430px;
}

.footer-title {
  margin-bottom: 20px;
  color: var(--gold-light);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  transition: color 170ms ease, transform 170ms ease;
}

.footer-links a:hover {
  display: inline-block;
  transform: translateX(4px);
  color: var(--white);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.footer-contact .icon {
  margin-top: 4px;
  color: var(--gold-light);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}

.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  transition: background-color 170ms ease, border-color 170ms ease, color 170ms ease, transform 170ms ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy-deep);
}

.footer-bottom {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.76rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a:hover {
  color: var(--white);
}

.standard-page {
  min-height: 60vh;
  padding-block: 80px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease var(--reveal-delay, 0ms), transform 700ms ease var(--reveal-delay, 0ms);
}

.reveal--delay {
  --reveal-delay: 110ms;
}

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

@media (max-width: 1120px) {
  .site-header__cta {
    display: none;
  }

  .hero__grid,
  .mobile-banner__grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.84fr);
  }

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

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

  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 42px;
  }

  .process-grid::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 34px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 74px;
  }

  .admin-bar .site-header {
    top: 46px;
  }

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

  .top-bar__inner p:last-child {
    display: none;
  }

  .top-bar__inner {
    justify-content: center;
  }

  .site-header__inner {
    min-height: var(--header-height);
  }

  .brand {
    min-width: 0;
  }

  .brand__logo,
  .brand__custom-logo img {
    width: 50px;
    height: 50px;
  }

  /*
   * Keep the mobile drawer attached to the viewport rather than the sticky
   * header. Backdrop filters can otherwise turn a fixed child into a header-
   * sized containing block, which lets page artwork paint through the menu.
   */
  .site-header {
    overflow: visible;
    background: var(--off-white);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) + 31px);
    right: 0;
    bottom: auto;
    left: 0;
    z-index: 1100;
    display: flex;
    visibility: hidden;
    width: 100%;
    height: calc(100dvh - var(--header-height) - 31px);
    min-height: calc(100vh - var(--header-height) - 31px);
    flex-direction: column;
    padding: 22px max(22px, env(safe-area-inset-right)) calc(30px + env(safe-area-inset-bottom)) max(22px, env(safe-area-inset-left));
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translate3d(100%, 0, 0);
    background-color: var(--off-white);
    opacity: 0;
    box-shadow: -18px 24px 42px rgba(7, 22, 50, 0.16);
    -webkit-overflow-scrolling: touch;
    transition: transform 240ms ease, opacity 180ms ease, visibility 240ms ease;
  }

  .admin-bar .site-nav {
    top: calc(var(--header-height) + 77px);
    height: calc(100dvh - var(--header-height) - 77px);
    min-height: calc(100vh - var(--header-height) - 77px);
  }

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

  .site-nav__list {
    display: grid;
    gap: 0;
  }

  .site-nav__list li {
    border-bottom: 1px solid var(--border);
  }

  .site-nav__list a {
    padding: 18px 4px;
    font-size: 0.88rem;
  }

  .site-nav__list a::after {
    display: none;
  }

  .site-nav__mobile-cta {
    display: inline-flex;
    width: 100%;
    margin-top: 24px;
  }

  .menu-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    color: var(--navy);
    cursor: pointer;
  }

  .menu-toggle .icon {
    width: 25px;
    height: 25px;
  }

  .menu-toggle__close {
    display: none;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__open {
    display: none;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__close {
    display: block;
  }

  .hero__grid,
  .mobile-banner__grid,
  .split-layout,
  .contact-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero__content {
    max-width: 760px;
  }

  .hero__visual,
  .mobile-banner__visual,
  .media-card {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .hero__image-frame {
    aspect-ratio: 1.35 / 1;
  }

  .trust-card {
    right: 18px;
  }

  .split-layout--media-left .media-card {
    order: 2;
  }

  .split-layout--media-left .section-copy {
    order: 1;
  }

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

  .testimonial-card:last-child {
    grid-column: 1 / -1;
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .support-card {
    position: static;
  }

  .contact-details {
    max-width: 680px;
    margin-inline: auto;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 104px;
  }

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

  .section {
    padding-block: 68px;
  }

  .site-header__inner {
    gap: 12px;
  }

  .brand {
    gap: 10px;
  }

  .brand__name {
    max-width: none;
    font-size: 0.92rem;
    line-height: 1.05;
    white-space: nowrap;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 10vw, 3rem);
    line-height: 1.08;
  }

  .hero {
    padding-block: 64px 78px;
  }

  .hero__grid,
  .mobile-banner__grid {
    gap: 44px;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .hero__trust {
    display: grid;
  }

  .hero__image-frame {
    aspect-ratio: 1 / 0.85;
  }

  .trust-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 24px);
    max-width: none;
    margin: -30px auto 0;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .media-card__badge {
    position: relative;
    right: auto;
    bottom: auto;
    justify-content: center;
    margin: 14px 0 -8px;
  }

  .services-grid,
  .reasons-grid,
  .testimonials-grid,
  .form-row,
  .form-row--three {
    grid-template-columns: 1fr;
  }

  .service-card--featured {
    grid-column: auto;
  }

  .testimonials-grid .testimonial-card:last-child {
    grid-column: auto;
    width: auto;
  }

  .centered-cta {
    flex-direction: column;
  }

  .mobile-banner__features {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-step {
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: center;
    column-gap: 18px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    text-align: left;
  }

  .process-step__number {
    grid-row: 1 / span 2;
    width: 68px;
    height: 68px;
    margin: 0;
  }

  .process-step h3,
  .process-step p {
    margin-bottom: 0;
  }

  .contact-actions,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    padding-block: 24px;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .top-bar {
    display: none;
  }

  .site-nav {
    top: var(--header-height);
    height: calc(100dvh - var(--header-height));
    min-height: calc(100vh - var(--header-height));
  }

  .admin-bar .site-nav {
    top: calc(var(--header-height) + 46px);
    height: calc(100dvh - var(--header-height) - 46px);
    min-height: calc(100vh - var(--header-height) - 46px);
  }

  .brand__logo,
  .brand__custom-logo img {
    width: 44px;
    height: 44px;
  }

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

  .brand {
    gap: 8px;
  }

  .brand__name {
    max-width: none;
    font-size: clamp(0.76rem, 3.75vw, 0.88rem);
    white-space: nowrap;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 10.5vw, 2.55rem);
  }

  .hero__image-frame {
    aspect-ratio: 1 / 0.95;
    border-radius: 19px;
  }

  .trust-item {
    min-height: 98px;
    flex-direction: column;
    gap: 8px;
    font-size: 0.67rem;
  }

  .service-card,
  .testimonial-card,
  .contact-card,
  .support-card {
    padding: 24px 20px;
  }

  .service-card__badge {
    position: static;
    align-self: flex-start;
    margin: -7px 0 16px;
  }

  .faq-item button {
    padding: 18px;
  }

  .map-placeholder {
    min-height: 240px;
  }
}

@media (max-width: 360px) {
  .brand__logo,
  .brand__custom-logo img {
    width: 40px;
    height: 40px;
  }

  .brand__name {
    font-size: 0.74rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

/* Yelp reviews integration */
.button--yelp {
  background: #d32323;
  color: #fff;
  box-shadow: 0 12px 24px rgba(211, 35, 35, 0.18);
}

.button--yelp:hover {
  background: #b91f1f;
  box-shadow: 0 16px 30px rgba(211, 35, 35, 0.25);
}

.yelp-review-summary {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  margin-top: 18px;
  padding: 10px 16px;
  border: 1px solid rgba(211, 35, 35, 0.16);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  box-shadow: 0 8px 24px rgba(7, 22, 50, 0.05);
  font-size: 0.82rem;
}

.yelp-review-summary__mark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #d32323;
  font-weight: 800;
}

.yelp-review-summary__mark .icon,
.button--yelp .icon {
  width: 18px;
  height: 18px;
}

.stars > span {
  display: inline-flex;
}

.stars .is-inactive {
  color: #d8d8d8;
}

.testimonial-card__avatar {
  overflow: hidden;
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card__review-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: #b91f1f;
  font-size: 0.76rem;
  font-weight: 700;
}

.testimonial-card__review-link .icon {
  width: 16px;
  height: 16px;
}

.testimonial-card__review-link:hover {
  color: #8f1717;
}

.yelp-cta {
  margin-top: 34px;
}

@media (max-width: 640px) {
  .yelp-review-summary {
    border-radius: 14px;
  }

  .yelp-cta .button {
    width: 100%;
  }
}
