:root {
  --navy: #0F1B2D;
  --navy-deep: #0A1320;
  --navy-soft: #1B2840;
  --gold: #C9A961;
  --gold-bright: #D4B876;
  --gold-deep: #A88B47;
  --paper: #FAFAF7;
  --ink: #1A1F2E;
  --ink-soft: #3A4254;
  --line: #E5E2D9;
  --white: #fff;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --header: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 20px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.is-input-focused .sticky-call {
  transform: translateY(120%);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 50;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-150%);
}

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

.container {
  width: calc(100% - 32px);
  max-width: 1120px;
  margin-inline: auto;
}

.container--narrow {
  max-width: 780px;
}

.utility {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.utility__inner {
  min-height: 38px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.utility p {
  margin: 0;
}

.utility a {
  color: var(--gold-bright);
  font-weight: 700;
}

.utility__address {
  display: none;
}

.pulse {
  width: 8px;
  height: 8px;
  margin-right: 8px;
  display: inline-block;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 0 0 rgba(212, 184, 118, 0.7);
  animation: pulse 1.9s infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 250, 247, 0.86);
  border-bottom: 1px solid rgba(229, 226, 217, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand__mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--navy);
}

.brand__mark svg,
.header-call svg,
.sticky-call svg,
.footer svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav {
  display: none;
}

.header-call {
  min-height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 15px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 64px;
  background:
    radial-gradient(circle at 18% 10%, rgba(201, 169, 97, 0.22), transparent 34%),
    linear-gradient(135deg, var(--paper), #f1eee6);
}

.hero__grid {
  display: grid;
  gap: 38px;
  align-items: center;
}

.eyebrow,
.kicker {
  margin: 0 0 12px;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(40px, 10.6vw, 86px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 10vw, 64px);
}

h3 {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
}

em {
  color: var(--gold-deep);
  font-style: italic;
}

.hero__sub,
.section-head p,
.areas__copy > p {
  max-width: 670px;
  color: var(--ink-soft);
  font-size: 18px;
}

.hero__actions,
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid transparent;
  font-weight: 800;
}

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

.btn--ghost {
  border-color: rgba(15, 27, 45, 0.2);
  color: var(--navy);
}

.btn--gold {
  min-height: 64px;
  padding-inline: 34px;
  background: var(--gold-bright);
  color: var(--navy-deep);
  font-size: 23px;
}

.trust-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.trust-list li {
  position: relative;
  padding-left: 14px;
}

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

.location-card {
  overflow: hidden;
  transform: rotate(0.5deg);
  background: var(--white);
  box-shadow: 0 28px 70px rgba(10, 19, 32, 0.18);
}

.location-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--navy);
}

.location-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-card__media span {
  position: absolute;
  left: 14px;
  top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  background: rgba(10, 19, 32, 0.82);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.location-card__media i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-bright);
}

.location-card__meta {
  display: grid;
}

.location-card__meta p {
  margin: 0;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  border-top: 1px solid var(--line);
}

.location-card small {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.location-card strong {
  color: var(--navy);
  font-size: 15px;
}

.location-card .gold {
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 23px;
}

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

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

.numbers p {
  margin: 0;
  padding: 24px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.numbers p:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.numbers strong {
  display: block;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 38px;
  line-height: 0.9;
}

.numbers span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.section {
  padding: 70px 0;
}

.section-head {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-head--wide {
  margin-inline: 0;
  text-align: left;
}

.services__grid {
  display: grid;
  gap: 14px;
}

.service-card,
.area-cards article {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.service-card {
  padding: 24px;
  min-height: 240px;
}

.service-card span,
.why__list span,
.steps__grid span {
  display: block;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 700;
  line-height: 0.85;
}

.service-card h3 {
  margin: 20px 0 12px;
}

.service-card p {
  color: var(--ink-soft);
}

.service-card .price {
  color: var(--gold-deep);
  font-weight: 800;
}

.service-card--feature {
  display: grid;
  gap: 22px;
  background:
    radial-gradient(circle at 0 0, rgba(201, 169, 97, 0.18), transparent 38%),
    var(--navy);
  color: var(--white);
  border-color: var(--navy-soft);
}

.service-card--feature h3,
.service-card--feature p {
  color: var(--white);
}

.service-card--feature .price {
  color: var(--gold-bright);
}

.service-card--feature img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.why,
.big-cta,
.footer {
  background: var(--navy-deep);
  color: var(--white);
}

.why {
  background:
    radial-gradient(circle at 12% 10%, rgba(201, 169, 97, 0.16), transparent 32%),
    var(--navy-deep);
}

.why__grid,
.areas__grid {
  display: grid;
  gap: 36px;
}

.kicker--light,
.why em {
  color: var(--gold-bright);
}

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

.why__list article {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.why__list article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.why__list h3 {
  margin: 0 0 6px;
  color: var(--white);
}

.why__list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.area-cards {
  display: grid;
  gap: 12px;
}

.area-cards article {
  padding: 22px;
}

.area-cards h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 32px;
}

.area-cards p {
  margin: 0;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.steps__grid {
  display: grid;
}

.steps__grid article {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.steps__grid h3 {
  margin: 18px 0 10px;
}

.steps__grid p {
  margin: 0;
  color: var(--ink-soft);
}

.reviews__columns {
  column-count: 1;
  column-gap: 28px;
}

.reviews article {
  display: inline-block;
  width: 100%;
  margin: 0 0 22px;
  padding: 24px;
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.58);
}

.stars {
  margin-bottom: 14px;
  color: var(--gold-deep);
  letter-spacing: 0;
}

blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  line-height: 1.2;
}

cite {
  display: block;
  margin-top: 18px;
  color: var(--ink-soft);
  font-style: normal;
  font-weight: 700;
}

.big-cta {
  padding: 78px 0;
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(212, 184, 118, 0.22), transparent 34%),
    radial-gradient(circle at 80% 65%, rgba(201, 169, 97, 0.18), transparent 32%),
    var(--navy-deep);
}

.big-cta h2 {
  margin-bottom: 12px;
  color: var(--white);
}

.big-cta p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
}

.big-cta small {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.66);
}

.map-section h2 {
  max-width: 780px;
}

.map-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
}

.map-wrap iframe {
  display: block;
  filter: grayscale(0.22) contrast(1.06);
}

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

.faq h2 {
  margin-bottom: 28px;
}

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

details {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 700;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 18px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--gold-deep);
  transition: transform 0.2s ease;
}

details[open] summary::after {
  content: "\00d7";
  transform: rotate(90deg);
}

details p {
  margin: -6px 0 22px;
  color: var(--ink-soft);
}

.contact__head {
  margin-bottom: 26px;
}

.contact__grid {
  display: grid;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
}

.contact__grid article {
  padding: 24px;
}

.contact__grid article + article {
  border-top: 1px solid var(--line);
}

.contact__grid p {
  margin: 0 0 10px;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact__grid a,
.contact__grid strong {
  display: block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.contact__grid span,
.map-link {
  margin-top: 12px;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
}

.contact__grid .map-link {
  color: var(--gold-deep);
}

.footer {
  padding: 52px 0 102px;
}

.footer__top {
  display: grid;
  gap: 28px;
}

.footer__brand {
  display: flex;
  gap: 12px;
}

.footer__brand span {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  border: 1px solid rgba(212, 184, 118, 0.36);
}

.footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
}

.footer h2 {
  margin-bottom: 10px;
  color: var(--gold-bright);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.74);
}

.footer__bottom {
  display: grid;
  gap: 12px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom p:last-child {
  color: var(--gold-bright);
}

.sticky-call {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 45;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--gold-bright);
  color: var(--navy-deep);
  box-shadow: 0 18px 45px rgba(10, 19, 32, 0.28);
  transition: transform 0.2s ease;
}

.sticky-call svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.sticky-call span {
  display: grid;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sticky-call strong {
  margin-top: 1px;
  font-size: 21px;
  letter-spacing: 0;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 8px rgba(212, 184, 118, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 184, 118, 0);
  }
}

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

@media (min-width: 480px) {
  .container {
    width: calc(100% - 44px);
  }

  .numbers__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .numbers p,
  .numbers p:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    border-bottom: 0;
  }

  .numbers p:last-child {
    border-right: 0;
  }
}

@media (min-width: 600px) {
  .area-cards,
  .contact__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__grid article + article {
    border-top: 0;
  }

  .contact__grid article:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .reviews__columns {
    column-count: 2;
  }
}

@media (min-width: 720px) {
  .utility__inner {
    grid-template-columns: 1fr auto 1fr;
  }

  .utility__address {
    display: block;
    justify-self: center;
  }

  .utility a {
    justify-self: end;
  }

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

  .service-card--feature {
    grid-column: span 2;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
  }

  .service-card--feature img {
    height: 100%;
    min-height: 280px;
  }
}

@media (min-width: 600px) {
  .header-call {
    display: inline-flex;
  }
}

@media (min-width: 720px) {
  .sticky-call {
    display: none;
  }

  .footer {
    padding-bottom: 52px;
  }
}

@media (min-width: 820px) {
  .hero {
    padding: 82px 0 88px;
  }

  .hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .why__grid {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .areas__grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
  }

  .steps__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps__grid article {
    padding: 0 28px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .steps__grid article:first-child {
    border-left: 0;
    padding-left: 0;
  }

  .reviews__columns {
    column-count: 3;
  }

  .contact__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact__grid article {
    border-right: 1px solid var(--line);
  }

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

  .contact__grid article:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .footer__top,
  .footer__bottom {
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
  }

  .footer__bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 900px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 800;
  }

  .nav a:hover,
  .utility a:hover,
  .footer a:hover {
    color: var(--gold-deep);
  }

  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-card--feature {
    grid-column: span 2;
  }

  .service-card:nth-child(5) {
    grid-column: 2 / span 2;
  }
}
