:root {
  --navy-950: #061732;
  --navy-800: #0b1d3a;
  --navy-700: #182d4d;
  --gold-500: #d4af37;
  --gold-300: #ebd27c;
  --porcelain: #f7f2e7;
  --mist: #e6e6e6;
  --ink: #18283d;
  --muted: #637083;
  --white: #ffffff;
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Manrope", Arial, sans-serif;
  --utility: "DM Mono", "SFMono-Regular", Consolas, monospace;
  --content-max: 1200px;
  --text-xs: 0.72rem;
  --text-sm: 0.86rem;
  --text-md: 1rem;
  --text-lg: 1.22rem;
  --space-section: clamp(5rem, 11vw, 9rem);
  --shadow-soft: 0 22px 60px rgba(6, 23, 50, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--porcelain);
  font-family: var(--body);
  font-size: var(--text-md);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

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

button,
select {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 5rem), var(--content-max));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 30;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 1rem;
  color: var(--navy-950);
  background: var(--gold-500);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  width: 178px;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.35rem, 3vw, 3rem);
  font-size: var(--text-sm);
  font-weight: 600;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  transition: color 180ms ease;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.55rem;
  left: 0;
  height: 1px;
  background: var(--gold-500);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.nav-cta):hover,
.site-nav > a:not(.nav-cta):focus-visible {
  color: var(--white);
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.75rem 1rem 0.75rem 1.15rem;
  color: var(--navy-950);
  background: var(--gold-500);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.nav-cta:hover {
  background: var(--gold-300);
  transform: translateY(-2px);
}

.nav-cta span,
.button span,
.text-link span,
.footer__details a span {
  display: inline-block;
  font-size: 1.1em;
  line-height: 1;
  transition: transform 180ms ease;
}

.nav-cta:hover span,
.button:hover span,
.text-link:hover span,
.footer__details a:hover span {
  transform: translate(2px, -2px);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.65rem;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.nav-toggle span:not(.visually-hidden) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 0.28rem 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-last-child(2) {
  transform: translateY(0.25rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-0.25rem) rotate(-45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-last-child(3) {
  opacity: 0;
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(29, 58, 97, 0.45), transparent 28%),
    linear-gradient(108deg, var(--navy-950) 0%, var(--navy-950) 53%, rgba(6, 23, 50, 0.85) 100%);
  content: "";
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.82fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  min-height: 780px;
  padding-top: 9.5rem;
  padding-bottom: 5rem;
}

.hero__copy {
  max-width: 600px;
  animation: rise-in 800ms 80ms both cubic-bezier(0.2, 0.75, 0.25, 1);
}

.eyebrow {
  margin: 0 0 1.35rem;
  color: var(--gold-300);
  font-family: var(--utility);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow span {
  padding: 0 0.5rem;
  color: var(--gold-500);
}

.eyebrow--dark {
  color: var(--navy-700);
}

.hero h1,
.section-heading h2,
.meet__copy h2,
.included__copy h2,
.areas h2,
.sms-contact__copy h2,
.referral h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(4.4rem, 8.2vw, 8rem);
}

.hero h1 em,
h2 em {
  color: var(--gold-500);
  font-style: italic;
  font-weight: 400;
}

.hero__lede {
  max-width: 490px;
  margin: 2.1rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 3.4rem;
  padding: 0.85rem 1.2rem 0.85rem 1.3rem;
  border: 1px solid transparent;
  font-size: var(--text-sm);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button--primary {
  color: var(--navy-950);
  background: var(--gold-500);
}

.button--primary:hover {
  background: var(--gold-300);
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.75);
}

.button--outline {
  margin-top: 2.6rem;
  color: var(--navy-800);
  border-color: var(--navy-800);
}

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

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

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

.hero__assurance {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  max-width: 360px;
  margin-top: 3.6rem;
}

.hero__assurance-line {
  flex: 0 0 2.7rem;
  height: 1px;
  background: var(--gold-500);
}

.hero__assurance p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--text-xs);
  line-height: 1.55;
}

.hero__visual {
  position: relative;
  width: 100%;
  max-width: 540px;
  justify-self: end;
  animation: rise-in 900ms 180ms both cubic-bezier(0.2, 0.75, 0.25, 1);
}

.hero__image-frame {
  position: relative;
  height: min(650px, 68vw);
  min-height: 540px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.72);
  border-radius: 280px 280px 50px 50px;
  background: var(--navy-800);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.hero__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 73% 48%;
  filter: saturate(0.86) contrast(1.03);
}

.hero__image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 23, 50, 0.04) 45%, rgba(6, 23, 50, 0.7) 100%);
}

.threshold {
  position: absolute;
  pointer-events: none;
}

.threshold--outer {
  inset: 1rem;
  border: 1px solid rgba(235, 210, 124, 0.72);
  border-radius: 250px 250px 38px 38px;
}

.threshold--inner {
  inset: 2.2rem 2.2rem 2.2rem 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom-color: transparent;
  border-radius: 230px 230px 28px 28px;
}

.hero__stamp {
  position: absolute;
  top: 3.8rem;
  left: -2.4rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 142px;
  padding: 0.75rem 1rem;
  color: var(--navy-950);
  background: var(--gold-500);
  font-family: var(--utility);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
  transform: rotate(4deg);
}

.hero__stamp-star {
  font-size: 1.55rem;
  line-height: 1;
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  bottom: 2rem;
  left: max(2.5rem, calc((100vw - var(--content-max)) / 2));
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.54);
  font-family: var(--utility);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__scroll span:last-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  color: var(--gold-500);
  border: 1px solid rgba(212, 175, 55, 0.55);
}

.service-strip {
  color: var(--navy-950);
  background: var(--gold-500);
}

.service-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 4.8rem;
}

.service-strip p,
.service-strip__places {
  margin: 0;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.service-strip__places {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--utility);
  font-size: 0.61rem;
  font-weight: 500;
}

.service-strip__places i {
  width: 0.22rem;
  height: 0.22rem;
  border-radius: 50%;
  background: var(--navy-950);
}

.section {
  padding: var(--space-section) 0;
}

.principles,
.services,
.reviews {
  background: var(--porcelain);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.56fr);
  align-items: end;
  gap: 4rem;
  margin-bottom: 4.2rem;
}

.section-heading--wide {
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.62fr);
}

.section-heading h2,
.meet__copy h2,
.included__copy h2,
.areas h2,
.sms-contact__copy h2,
.referral h2 {
  font-size: clamp(3.25rem, 5.5vw, 5.8rem);
}

.section-heading > p,
.meet__copy > p:not(.eyebrow),
.included__copy > p:not(.eyebrow),
.areas__layout > div > p:not(.eyebrow):not(.areas__note),
.sms-contact__copy > p,
.referral__inner > div > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-lg);
  line-height: 1.65;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(24, 40, 61, 0.18);
}

.principle-card {
  min-height: 300px;
  padding: 2rem 1.6rem 1.2rem 0;
  border-right: 1px solid rgba(24, 40, 61, 0.18);
}

.principle-card:not(:first-child) {
  padding-left: 1.6rem;
}

.principle-card:last-child {
  border-right: 0;
  padding-right: 0;
}

.principle-card__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 2.1rem;
  color: var(--gold-500);
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1.6rem;
  line-height: 1;
}

.principle-card__label,
.service-card__label {
  margin: 0 0 0.75rem;
  color: var(--navy-700);
  font-family: var(--utility);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.principle-card h3,
.service-card h3,
.process-step h3 {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.3vw, 2.25rem);
  font-weight: 500;
  line-height: 1.02;
}

.principle-card > p:last-child,
.service-card > div > p:last-child,
.process-step > p:last-child {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.7;
}

.meet {
  color: var(--ink);
  background: var(--white);
}

.meet__layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.86fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(3.5rem, 10vw, 9rem);
}

.meet__panel {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 20%, rgba(212, 175, 55, 0.24), transparent 26%),
    radial-gradient(circle at 20% 80%, rgba(47, 86, 133, 0.5), transparent 38%),
    var(--navy-800);
  border-radius: 280px 36px 36px 36px;
}

.meet__portrait,
.meet__portrait-shade {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
}

.meet__portrait {
  object-fit: cover;
  object-position: 52% 34%;
  filter: saturate(0.86) contrast(1.03);
}

.meet__portrait-shade {
  background: linear-gradient(180deg, rgba(6, 23, 50, 0.08) 26%, rgba(6, 23, 50, 0.84) 100%);
}

.meet__panel::before {
  position: absolute;
  z-index: 1;
  inset: 1.2rem;
  border: 1px solid rgba(212, 175, 55, 0.62);
  border-radius: 250px 24px 24px 24px;
  content: "";
}

.meet__panel::after {
  position: absolute;
  z-index: 1;
  top: 16%;
  right: -8%;
  width: 74%;
  height: 55%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom-color: transparent;
  border-radius: 50% 50% 0 0;
  content: "";
  transform: rotate(20deg);
}

.meet__panel-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: 3rem;
}

.meet__panel-inner .eyebrow {
  max-width: 160px;
  margin-bottom: 0.9rem;
}

.meet__panel-bottom {
  margin-top: auto;
}

.meet__panel-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(212, 175, 55, 0.65);
}

.meet__panel-footer span {
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.meet__panel-footer strong {
  max-width: 145px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--utility);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.55;
  text-align: right;
  text-transform: uppercase;
}

.meet__copy {
  max-width: 560px;
}

.meet__copy h2 {
  margin-bottom: 2rem;
}

.meet__copy blockquote {
  max-width: 490px;
  margin: 2.3rem 0;
  padding-left: 1.35rem;
  color: var(--navy-800);
  border-left: 2px solid var(--gold-500);
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-style: italic;
  line-height: 1.05;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--navy-800);
  border-bottom: 1px solid var(--gold-500);
  font-size: var(--text-sm);
  font-weight: 700;
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link:hover {
  color: #5e4a08;
  border-color: var(--navy-800);
}

.services {
  background: var(--porcelain);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(24, 40, 61, 0.22);
  border: 1px solid rgba(24, 40, 61, 0.22);
}

.service-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  min-height: 280px;
  padding: 2.3rem 2.2rem 2rem;
  background: var(--porcelain);
  border-radius: 0;
  transition: background 220ms ease, color 220ms ease;
}

.service-card:hover {
  color: var(--white);
  background: var(--navy-800);
}

.service-card:hover .service-card__label,
.service-card:hover h3,
.service-card:hover > div > p:last-child {
  color: inherit;
}

.service-card:hover .service-card__label {
  color: var(--gold-300);
}

.service-card h3 {
  max-width: 285px;
}

.service-card > div > p:last-child {
  max-width: 355px;
}

.service-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2.45rem;
  width: 2.45rem;
  height: 2.45rem;
  color: var(--navy-800);
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.service-card:hover .service-card__arrow {
  color: var(--navy-950);
  background: var(--gold-500);
  transform: translate(2px, -2px);
}

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

.section-heading--light > p {
  color: rgba(255, 255, 255, 0.62);
}

.section-heading--light h2 {
  color: var(--white);
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem;
}

.process-steps::before {
  position: absolute;
  top: 1.25rem;
  right: 10%;
  left: 0;
  height: 1px;
  background: rgba(212, 175, 55, 0.5);
  content: "";
}

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

.process-step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 2.4rem;
  color: var(--gold-300);
  background: var(--navy-950);
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  font-family: var(--utility);
  font-size: 0.63rem;
}

.process-step h3 {
  max-width: 185px;
  color: var(--white);
  font-size: clamp(1.6rem, 2.1vw, 2.1rem);
}

.process-step > p:last-child {
  max-width: 225px;
  color: rgba(255, 255, 255, 0.58);
}

.included {
  background: var(--white);
}

.included__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.included__copy {
  max-width: 480px;
}

.included__copy h2 {
  margin-bottom: 1.7rem;
}

.included__copy .text-link {
  margin-top: 2rem;
}

.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  padding: clamp(3.4rem, 5vw, 4.8rem);
  background: var(--porcelain);
  border: 1px solid rgba(24, 40, 61, 0.15);
  border-radius: 120px 24px 24px 24px;
}

.checklist span {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 2.7rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(24, 40, 61, 0.14);
  color: var(--navy-800);
  font-size: var(--text-sm);
}

.checklist span::before {
  width: 0.45rem;
  height: 0.45rem;
  background: var(--gold-500);
  content: "";
}

.referral {
  position: relative;
  overflow: hidden;
  color: var(--navy-950);
  background: var(--gold-500);
}

.referral::before {
  position: absolute;
  top: -70%;
  right: 18%;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(6, 23, 50, 0.15);
  border-radius: 50%;
  content: "";
}

.referral__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  min-height: 390px;
}

.referral h2 {
  max-width: 610px;
  margin-bottom: 1.2rem;
  font-size: clamp(3.2rem, 6vw, 6.3rem);
}

.referral h2 em {
  color: var(--white);
}

.referral__inner > div > p:not(.eyebrow) {
  max-width: 550px;
  color: rgba(6, 23, 50, 0.72);
}

.referral .button {
  margin-top: 2rem;
}

.referral__mark {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-items: end;
  min-width: 215px;
  min-height: 215px;
  padding: 2rem;
  color: var(--gold-500);
  background: var(--navy-950);
  border-radius: 50%;
  transform: rotate(7deg);
}

.referral__mark span {
  align-self: start;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.referral__mark strong {
  font-family: var(--display);
  font-size: 6rem;
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.75;
}

.referral__mark small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--utility);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  line-height: 1.55;
  text-align: right;
  text-transform: uppercase;
}

.review-placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  overflow: hidden;
  padding: 2rem 2.6rem 1.8rem;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0%, rgba(212, 175, 55, 0.2), transparent 34%),
    var(--navy-800);
  border: 1px solid rgba(212, 175, 55, 0.52);
  border-radius: 22px 22px 120px 22px;
}

.review-placeholder::before {
  position: absolute;
  top: -8rem;
  right: 7%;
  width: 19rem;
  height: 19rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.review-placeholder__topline,
.review-placeholder__footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.review-placeholder__topline {
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--utility);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.review-placeholder__source {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.review-placeholder__google-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  color: var(--navy-950);
  background: var(--white);
  border-radius: 50%;
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.review-placeholder__stars {
  color: var(--gold-300);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
}

.review-placeholder__body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 1.6rem;
}

.review-placeholder__quote {
  color: var(--gold-500);
  font-family: var(--display);
  font-size: 7rem;
  line-height: 0.55;
}

.review-placeholder__title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
}

.review-placeholder__body p:not(.review-placeholder__title) {
  max-width: 560px;
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: var(--text-sm);
}

.review-placeholder__footer {
  padding-top: 1.15rem;
  color: rgba(255, 255, 255, 0.46);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-family: var(--utility);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.review-placeholder__footer .text-link {
  color: var(--white);
  white-space: nowrap;
}

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

.areas__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.85fr);
  align-items: center;
  gap: clamp(3rem, 10vw, 9rem);
}

.areas h2 {
  max-width: 650px;
  margin-bottom: 1.7rem;
}

.areas h2 em {
  color: var(--gold-300);
}

.areas__layout > div > p:not(.eyebrow):not(.areas__note) {
  max-width: 530px;
  color: rgba(255, 255, 255, 0.7);
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1.4rem;
  max-width: 560px;
  margin-top: 2.2rem;
}

.area-list span {
  padding-top: 0.8rem;
  color: var(--white);
  border-top: 1px solid rgba(212, 175, 55, 0.55);
  font-family: var(--display);
  font-size: 1.4rem;
  line-height: 1.1;
}

.areas__note {
  max-width: 470px;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: var(--text-sm);
}

.google-map-placeholder {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 24px 140px 24px 24px;
  background: rgba(6, 23, 50, 0.28);
}

.google-map-placeholder__embed {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0.55;
  filter: grayscale(0.8) contrast(1.05) sepia(0.12);
}

.google-map-placeholder__map {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(132deg, transparent 48%, rgba(212, 175, 55, 0.18) 48.2%, transparent 48.5%),
    linear-gradient(54deg, transparent 48%, rgba(212, 175, 55, 0.14) 48.2%, transparent 48.5%),
    linear-gradient(24deg, transparent 47%, rgba(255, 255, 255, 0.06) 47.2%, transparent 47.5%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 3.4rem),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 3.4rem);
}

.google-map-placeholder__map::before,
.google-map-placeholder__map::after {
  position: absolute;
  height: 1px;
  background: rgba(212, 175, 55, 0.65);
  content: "";
  transform-origin: left;
}

.google-map-placeholder__map::before {
  top: 37%;
  left: 30%;
  width: 52%;
  transform: rotate(18deg);
}

.google-map-placeholder__map::after {
  top: 61%;
  left: 46%;
  width: 32%;
  transform: rotate(-42deg);
}

.google-map-placeholder__pin {
  position: absolute;
  z-index: 1;
  width: 0.9rem;
  height: 0.9rem;
  background: var(--gold-500);
  border: 0.2rem solid var(--navy-800);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.75);
}

.google-map-placeholder__pin--one {
  top: 31%;
  left: 29%;
}

.google-map-placeholder__pin--two {
  top: 48%;
  left: 70%;
}

.google-map-placeholder__pin--three {
  top: 67%;
  left: 49%;
}

.google-map-placeholder__content {
  position: absolute;
  z-index: 2;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  max-width: 300px;
  padding: 1.5rem;
  background: rgba(6, 23, 50, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.56);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

.google-map-placeholder__content .eyebrow {
  margin-bottom: 0.75rem;
}

.google-map-placeholder__content h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 0.95;
}

.google-map-placeholder__content > p:not(.eyebrow) {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: var(--text-sm);
  line-height: 1.55;
}

.google-map-placeholder__status {
  display: inline-block;
  margin-top: 1.15rem;
  color: var(--gold-300);
  font-family: var(--utility);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.sms-contact {
  background: var(--porcelain);
}

.sms-contact__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  align-items: stretch;
  gap: clamp(3rem, 8vw, 8rem);
}

.sms-contact__copy {
  align-self: center;
  max-width: 520px;
}

.sms-contact__copy h2 {
  margin-bottom: 1.7rem;
}

.sms-contact__copy > p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-lg);
  line-height: 1.65;
}

.sms-contact__promises {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.sms-contact__promises li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--navy-700);
  font-size: var(--text-sm);
}

.sms-contact__promises li span {
  color: var(--gold-500);
}

.sms-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  overflow: hidden;
  padding: 3rem;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(212, 175, 55, 0.22), transparent 30%),
    var(--navy-800);
  border-radius: 140px 24px 24px 24px;
  box-shadow: var(--shadow-soft);
}

.sms-card::before,
.sms-card::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.sms-card::before {
  top: -8rem;
  right: -4rem;
  width: 22rem;
  height: 22rem;
}

.sms-card::after {
  right: 12%;
  bottom: -10rem;
  width: 24rem;
  height: 24rem;
}

.sms-card__topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.sms-card .eyebrow {
  margin-bottom: 0;
}

.sms-card__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  color: var(--navy-950);
  background: var(--gold-500);
  border-radius: 50%;
  font-size: 1.35rem;
}

.sms-card h3 {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: auto 0 1.25rem;
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.sms-card > p {
  position: relative;
  z-index: 1;
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--text-lg);
  line-height: 1.55;
}

.sms-card__footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.25rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.65);
}

.sms-card__footer span,
.sms-card__footer strong {
  font-family: var(--utility);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.sms-card__footer span {
  color: var(--gold-300);
}

.sms-card__footer strong {
  max-width: 170px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  text-align: right;
}

.sms-card__phone {
  color: inherit;
  text-decoration: none;
}

.sms-card__phone:hover,
.sms-card__phone:focus-visible {
  color: var(--gold-300);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.sms-card[data-sms-number] .sms-card__footer strong {
  color: var(--white);
}

.site-footer {
  color: var(--white);
  background: var(--navy-950);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  gap: 2rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.footer__top .brand {
  width: 195px;
}

.footer__top > p {
  margin: 0;
  color: var(--gold-300);
  font-family: var(--display);
  font-size: 1.7rem;
  line-height: 1;
}

.footer__top > p span {
  display: inline-block;
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--utility);
  font-size: 0.6rem;
  letter-spacing: 0.11em;
  line-height: 1.5;
  text-transform: uppercase;
}

.footer__details {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--utility);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: right;
  text-transform: uppercase;
}

.footer__details a {
  color: var(--gold-300);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-family: var(--utility);
  font-size: 0.58rem;
  letter-spacing: 0.07em;
  line-height: 1.5;
  text-transform: uppercase;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .container {
    width: min(calc(100% - 4rem), var(--content-max));
  }

  .hero__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
    gap: 3.5rem;
  }

  .hero__stamp {
    left: -1.3rem;
  }

  .section-heading,
  .section-heading--wide {
    gap: 2.5rem;
  }

  .included__layout,
  .sms-contact__layout {
    gap: 4rem;
  }
}

@media (max-width: 820px) {
  .site-nav {
    gap: 1.2rem;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 10rem;
  }

  .hero__copy {
    max-width: 650px;
  }

  .hero__visual {
    justify-self: start;
    max-width: 590px;
  }

  .hero__image-frame {
    height: 610px;
  }

  .hero__scroll {
    display: none;
  }

  .section-heading,
  .section-heading--wide,
  .meet__layout,
  .included__layout,
  .areas__layout,
  .sms-contact__layout {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .section-heading--wide {
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

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

  .principle-card:nth-child(2) {
    border-right: 0;
  }

  .principle-card:nth-child(n + 3) {
    border-top: 1px solid rgba(24, 40, 61, 0.18);
  }

  .meet__panel {
    max-width: 540px;
  }

  .included__layout,
  .sms-contact__layout {
    gap: 3rem;
  }

  .review-placeholder {
    gap: 1.5rem;
  }

  .review-placeholder__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }

  .review-placeholder__footer .text-link {
    justify-self: start;
  }

  .google-map-placeholder {
    max-width: 500px;
    min-height: 400px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 2.25rem), var(--content-max));
  }

  .nav-wrap {
    min-height: 92px;
  }

  .brand {
    width: 148px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 1.125rem;
    left: 1.125rem;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 0.65rem;
    background: var(--navy-800);
    border: 1px solid rgba(212, 175, 55, 0.5);
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open {
    display: flex;
    flex-direction: column;
  }

  .site-nav > a:not(.nav-cta) {
    padding: 0.8rem 0.9rem;
  }

  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    justify-content: space-between;
    margin-top: 0.4rem;
  }

  .hero,
  .hero__inner {
    min-height: auto;
  }

  .hero__inner {
    gap: 3rem;
    padding-top: 8.2rem;
    padding-bottom: 4.5rem;
  }

  .hero h1 {
    max-width: 440px;
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .hero__lede {
    margin-top: 1.7rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 2rem;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__assurance {
    margin-top: 2.5rem;
  }

  .hero__image-frame {
    height: 480px;
    min-height: 0;
    border-radius: 200px 200px 32px 32px;
  }

  .threshold--outer {
    border-radius: 180px 180px 24px 24px;
  }

  .threshold--inner {
    border-radius: 160px 160px 18px 18px;
  }

  .hero__stamp {
    top: 2rem;
    left: 0.6rem;
    min-width: 125px;
    padding: 0.6rem 0.75rem;
    font-size: 0.5rem;
  }

  .service-strip__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.7rem;
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
  }

  .service-strip__places {
    flex-wrap: wrap;
    gap: 0.4rem 0.65rem;
    line-height: 1.7;
  }

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

  .principle-card,
  .principle-card:not(:first-child) {
    min-height: 0;
    padding: 1.6rem 0;
    border-right: 0;
    border-top: 1px solid rgba(24, 40, 61, 0.18);
  }

  .principle-card:first-child {
    border-top: 0;
  }

  .principle-card__mark {
    margin-bottom: 1.35rem;
  }

  .meet__panel,
  .meet__panel-inner {
    min-height: 440px;
  }

  .meet__panel-inner {
    padding: 2rem;
  }

  .meet__panel-footer {
    align-items: start;
    flex-direction: column;
    gap: 0.75rem;
  }

  .meet__panel-footer strong {
    max-width: none;
    text-align: left;
  }

  .service-card {
    min-height: 0;
    padding: 1.7rem 1.4rem;
  }

  .service-card__arrow {
    flex-basis: 2.1rem;
    width: 2.1rem;
    height: 2.1rem;
  }

  .process-steps {
    gap: 2rem;
  }

  .process-steps::before {
    top: 0;
    bottom: 0;
    left: 1.25rem;
    width: 1px;
    height: auto;
    right: auto;
  }

  .process-step {
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    column-gap: 1rem;
  }

  .process-step__number {
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }

  .process-step h3,
  .process-step > p:last-child {
    max-width: none;
  }

  .process-step > p:last-child {
    margin-top: 0.5rem;
  }

  .checklist {
    grid-template-columns: 1fr;
    padding: 2.25rem 1.8rem;
    border-radius: 70px 18px 18px 18px;
  }

  .referral__inner {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .referral__mark {
    align-self: flex-end;
    min-width: 175px;
    min-height: 175px;
    padding: 1.5rem;
  }

  .referral__mark strong {
    font-size: 5rem;
  }

  .review-placeholder {
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 18px 18px 70px 18px;
  }

  .review-placeholder__topline,
  .review-placeholder__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }

  .review-placeholder__body {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .review-placeholder__quote {
    font-size: 5rem;
  }

  .review-placeholder__footer .text-link {
    white-space: normal;
  }

  .area-list {
    grid-template-columns: 1fr;
  }

  .google-map-placeholder {
    min-height: 310px;
  }

  .sms-card {
    min-height: 360px;
    padding: 2rem;
    border-radius: 70px 18px 18px 18px;
  }

  .sms-card h3 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .sms-card__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 1.5rem;
  }

  .sms-card__footer strong {
    max-width: none;
    text-align: left;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .footer__details {
    align-items: flex-start;
    text-align: left;
  }

  .footer__bottom {
    flex-direction: column;
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
  }
}

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

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