@font-face {
  font-family: "Poppins";
  src: url("assets/poppins-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/poppins-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/poppins-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/poppins-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ground: #ffffff;
  --dark: #0e1d19;
  --card: #20351d;
  --card-hover: #2a4426;
  --footer: #1c3327;
  --panel-top: #1b2f25;
  --panel-bottom: #17271f;
  --teal: #42a8c2;
  --teal-deep: #006a85;
  --green: #87bd8f;
  --green-hover: #ffa48a;
  --gold: #e0a82e;
  --heading-light: #e7ebe9;
  --body: #334155;
  --body-muted: #475569;
  --line: #dfe7e3;
  --font-display: "Poppins", Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--ground);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  left: 18px;
  top: -70px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--ground);
  color: var(--dark);
  font-weight: 700;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.shell {
  width: min(1180px, calc(100% - clamp(40px, 10vw, 112px)));
  margin-inline: auto;
}

.section {
  padding-block: clamp(80px, 10vw, 150px);
}

.section-dark {
  background: var(--dark);
  color: rgba(231, 235, 233, 0.72);
}

.section-light {
  background: var(--ground);
  color: var(--body);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.06;
}

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

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

.eyebrow {
  margin-bottom: 20px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  line-height: 1.4;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 51px;
  padding: 15px 34px;
  border: 0;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

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

.button-green {
  background: var(--green);
  color: var(--dark);
  box-shadow: 0 12px 30px rgba(14, 29, 25, 0.18);
}

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

.button-dark {
  background: var(--dark);
  color: var(--heading-light);
}

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

.button:focus-visible,
.text-link:focus-visible,
.desktop-nav a:focus-visible,
.header-cta:focus-visible,
.mobile-menu a:focus-visible,
.faq-item button:focus-visible,
.footer-column a:focus-visible,
.footer-bottom a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--ground);
  background: transparent;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header.is-scrolled,
.site-header.is-open,
.site-header.site-header-solid {
  color: var(--dark);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(0, 106, 133, 0.18), 0 8px 30px rgba(14, 29, 25, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  width: min(1280px, 100%);
  height: 76px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-lockup {
  position: relative;
  display: inline-flex;
  height: 44px;
  aspect-ratio: 1.955 / 1;
}

.brand-lockup img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

.brand-dark {
  opacity: 0;
}

.brand-light {
  position: absolute;
  inset: 0 auto auto 0;
  opacity: 1;
}

.brand-dark,
.brand-light {
  transition: opacity 0.4s ease;
}

.site-header.is-scrolled .brand-dark,
.site-header.is-open .brand-dark,
.site-header.site-header-solid .brand-dark {
  opacity: 1;
}

.site-header.is-scrolled .brand-light,
.site-header.is-open .brand-light,
.site-header.site-header-solid .brand-light {
  opacity: 0;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 32px);
  margin-left: auto;
  margin-right: 36px;
}

.desktop-nav a {
  position: relative;
  padding-block: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover::after {
  opacity: 0.7;
  transform: scaleX(1);
}

.header-cta {
  flex: 0 0 auto;
  padding: 11px 25px;
  border-radius: 12px;
  background: var(--ground);
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.site-header.is-scrolled .header-cta,
.site-header.is-open .header-cta,
.site-header.site-header-solid .header-cta {
  background: var(--dark);
  color: var(--heading-light);
}

.header-cta:hover {
  transform: translateY(-1px);
  background: var(--green);
  color: var(--dark);
}

.menu-toggle {
  display: none;
  padding: 10px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-line {
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.site-header.is-open .menu-line-top {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .menu-line-mid {
  opacity: 0;
}

.site-header.is-open .menu-line-bottom {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  height: min(940px, 100svh);
  overflow: hidden;
  background: var(--dark);
}

.hero-picture,
.hero-picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-picture img {
  object-fit: cover;
  object-position: center;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 21, 17, 0.9) 0%, rgba(8, 21, 17, 0.66) 38%, rgba(8, 21, 17, 0.1) 72%),
    linear-gradient(180deg, rgba(8, 21, 17, 0.22) 0%, transparent 34%, rgba(8, 21, 17, 0.22) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-top: 70px;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 42px;
  color: var(--heading-light);
  font-size: clamp(2.65rem, 5vw, 4.6rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.04;
  animation: fade-up 0.8s ease 0.08s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  animation: fade-up 0.9s ease 0.2s both;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0 4px;
  border-bottom: 1px solid rgba(231, 235, 233, 0.45);
  color: var(--heading-light);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.text-link svg,
.card-link svg {
  transition: transform 0.25s ease;
}

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

.hero-caption {
  position: absolute;
  bottom: 35px;
  left: 0;
  margin-bottom: 0;
  color: rgba(231, 235, 233, 0.72);
  font-size: 13px;
  letter-spacing: 0.02em;
  animation: fade-up 1s ease 0.32s both;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.stats-section {
  padding-block: clamp(40px, 5vw, 64px);
  background: var(--dark);
}

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

.stat {
  padding: 8px 12px;
  text-align: center;
}

.stat:not(:last-child) {
  border-right: 1px solid rgba(66, 168, 194, 0.2);
}

.stat strong {
  display: block;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
  font-weight: 400;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 11px;
  color: rgba(231, 235, 233, 0.65);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.services-section {
  padding-top: clamp(72px, 8vw, 120px);
}

.section-intro-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.intro-copy {
  max-width: 25rem;
  margin-bottom: 0;
  color: rgba(231, 235, 233, 0.7);
  font-size: 15px;
  line-height: 1.8;
}

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

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 490px;
  padding: clamp(26px, 2.8vw, 36px);
  border: 1px solid rgba(66, 168, 194, 0.22);
  border-radius: 14px;
  background: var(--panel-top);
  color: rgba(231, 235, 233, 0.69);
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  border-color: rgba(135, 189, 143, 0.48);
  background: var(--panel-bottom);
  transform: translateY(-5px);
}

.card-rule {
  display: block;
  width: 46px;
  height: 3px;
  margin-bottom: 28px;
  border-radius: 99px;
  background: var(--teal);
}

.service-card h3,
.value-card h3 {
  margin-bottom: 14px;
  color: var(--heading-light);
  font-size: clamp(1.14rem, 1.45vw, 1.42rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.32;
}

.service-card .price {
  min-height: 42px;
  margin-bottom: 22px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.55;
}

.service-card > p:not(.price) {
  margin-bottom: 30px;
  font-size: 14.5px;
  line-height: 1.75;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.why-image-wrap {
  position: relative;
  min-height: 600px;
  height: 100%;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 26px 60px rgba(14, 29, 25, 0.14);
}

.why-image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-section h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  line-height: 1.08;
}

.why-lead {
  max-width: 35rem;
  margin-bottom: 44px;
  color: var(--body);
  font-size: 16px;
  line-height: 1.8;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 34px;
}

.value-card .card-rule {
  width: 34px;
  height: 2px;
  margin-bottom: 18px;
}

.value-card h3 {
  margin-bottom: 9px;
  color: var(--dark);
  font-size: 1rem;
  line-height: 1.4;
}

.value-card p {
  margin-bottom: 0;
  color: var(--body-muted);
  font-size: 14px;
  line-height: 1.65;
}

.reviews-section {
  overflow: hidden;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(44px, 7vw, 90px);
  align-items: center;
}

.reviews-heading h2 {
  margin-bottom: 32px;
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
}

.testimonial-stack {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-stack::before {
  position: absolute;
  inset: -70px -70px auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(66, 168, 194, 0.08);
  content: "";
  filter: blur(4px);
}

.testimonial-card {
  position: relative;
  z-index: 1;
  padding: 26px;
  border: 1px solid rgba(66, 168, 194, 0.2);
  border-radius: 14px;
  background: linear-gradient(145deg, var(--panel-top), var(--panel-bottom));
}

.testimonial-card:nth-child(even) {
  transform: translateY(24px);
}

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

.stars svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.testimonial-card blockquote {
  margin-bottom: 18px;
  color: rgba(231, 235, 233, 0.76);
  font-size: 14px;
  line-height: 1.72;
}

.reviewer {
  margin-bottom: 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.pricing-section {
  padding-block: clamp(70px, 9vw, 130px);
}

.pricing-intro {
  max-width: 750px;
  margin-inline: auto;
  text-align: center;
}

.pricing-intro h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
}

.pricing-intro > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--body-muted);
  font-size: 15.5px;
  line-height: 1.8;
}

.rates {
  max-width: 832px;
  margin: clamp(52px, 6vw, 78px) auto 0;
  padding-top: clamp(34px, 4vw, 46px);
  border-top: 1px solid rgba(66, 168, 194, 0.24);
  text-align: center;
}

.rates > h3 {
  margin-bottom: 16px;
  color: var(--dark);
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  line-height: 1.25;
}

.rates > p {
  margin-bottom: clamp(28px, 3.4vw, 38px);
  color: var(--body-muted);
  font-size: 15px;
  line-height: 1.8;
}

.rate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(66, 168, 194, 0.24);
  border-radius: 14px;
  background: rgba(66, 168, 194, 0.24);
}

.rate-card {
  padding: clamp(24px, 2.6vw, 30px) clamp(18px, 2vw, 26px);
  background: var(--ground);
  transition: background-color 0.3s ease;
}

.rate-card:hover {
  background: #f4f8f6;
}

.rate-card h4 {
  margin-bottom: 10px;
  color: var(--dark);
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  font-weight: 500;
  line-height: 1.35;
}

.rate-card strong {
  color: var(--teal-deep);
  font-size: 12.5px;
  letter-spacing: 0.04em;
}

.faq-shell {
  width: min(860px, calc(100% - clamp(40px, 10vw, 112px)));
  margin-inline: auto;
}

.faq-heading {
  margin-bottom: clamp(48px, 6vw, 72px);
  text-align: center;
}

.faq-heading h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
}

.faq-list {
  border-top: 1px solid rgba(66, 168, 194, 0.26);
}

.faq-item {
  border-bottom: 1px solid rgba(66, 168, 194, 0.26);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  width: 100%;
  padding: 25px 0;
  border: 0;
  background: transparent;
  color: var(--heading-light);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  color: var(--teal);
  transition: transform 0.25s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

.faq-vertical {
  transform-origin: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.faq-item.is-open .faq-vertical {
  opacity: 0;
  transform: scaleY(0);
}

.faq-panel p {
  max-width: 760px;
  margin-bottom: 0;
  padding: 0 56px 28px 0;
  color: rgba(231, 235, 233, 0.68);
  font-size: 15px;
  line-height: 1.8;
}

.contact-section {
  padding-block: clamp(80px, 10vw, 140px);
  background: linear-gradient(110deg, #f7faf8 0%, #ffffff 65%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(44px, 7vw, 90px);
  align-items: start;
}

.contact-copy h2 {
  margin-bottom: 18px;
  color: var(--dark);
  font-size: clamp(2.25rem, 4vw, 3.7rem);
}

.contact-copy > p {
  max-width: 31rem;
  margin-bottom: 0;
  color: var(--body-muted);
  font-size: 15px;
  line-height: 1.8;
}

.contact-copy .contact-lead {
  margin-bottom: 7px;
  color: var(--dark);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
}

.check-icon {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: rgba(66, 168, 194, 0.13);
  color: var(--teal-deep);
}

.contact-rule {
  width: 100%;
  height: 1px;
  margin-block: 31px;
  background: var(--line);
}

address {
  display: grid;
  gap: 16px;
  color: var(--body-muted);
  font-size: 14px;
  font-style: normal;
}

address > a,
address > span {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 11px;
  align-items: start;
}

address a:hover {
  color: var(--teal-deep);
}

.contact-icon {
  color: var(--teal-deep);
}

.contact-card {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--ground);
  box-shadow: 0 24px 60px rgba(14, 29, 25, 0.09);
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--body-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: 0;
  background: var(--ground);
  color: var(--body);
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 124px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8a9892;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(66, 168, 194, 0.12);
}

#contact-form .button {
  align-self: flex-start;
}

.form-note {
  margin: -8px 0 0;
  color: var(--body-muted);
  font-size: 12px;
  line-height: 1.6;
}

.form-note a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-status {
  min-height: 0;
  margin: 0;
  color: var(--teal-deep);
  font-size: 14px;
  font-weight: 700;
}

.contact-hero {
  position: relative;
  isolation: isolate;
  min-height: 560px;
  padding: calc(76px + clamp(56px, 7vw, 104px)) 0 clamp(64px, 8vw, 112px);
  overflow: hidden;
  background: var(--dark);
}

.contact-hero-image,
.contact-hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: center;
}

.contact-hero-scrim {
  z-index: -1;
  background: rgba(14, 29, 25, 0.78);
}

.contact-hero-inner {
  position: relative;
}

.contact-hero-kicker {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-transform: uppercase;
}

.contact-hero h1 {
  max-width: none;
  margin-bottom: 0;
  color: var(--heading-light);
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.6vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.12;
}

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

.contact-hero-lede {
  max-width: 56ch;
  margin: 24px 0 0;
  color: rgba(231, 235, 233, 0.88);
  font-size: 16.5px;
  line-height: 1.8;
}

.contact-hero-strong {
  margin-top: 18px;
  color: var(--heading-light);
  font-weight: 700;
}

.contact-hero-tag {
  margin: 18px 0 0;
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 600;
}

.contact-details-section {
  padding-block: clamp(56px, 7vw, 96px);
  background: var(--ground);
}

.contact-details-section h2 {
  color: var(--dark);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.contact-details-copy {
  max-width: 68ch;
  margin: 18px 0 0;
  color: var(--body);
  font-size: 16px;
  line-height: 1.8;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
  margin-top: clamp(36px, 4.5vw, 56px);
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 30px 28px;
  border: 1px solid rgba(224, 168, 46, 0.2);
  border-radius: 14px;
  background: linear-gradient(160deg, var(--panel-top) 0%, var(--panel-bottom) 100%);
  box-shadow: 0 18px 38px rgba(14, 29, 25, 0.22);
}

.contact-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(224, 168, 46, 0.14);
  color: var(--gold);
}

.contact-info-card h3 {
  margin-bottom: 0;
  color: var(--heading-light);
  font-size: 18.5px;
  line-height: 1.3;
}

.contact-info-card p,
.contact-info-card address {
  margin: 14px 0 0;
  color: rgba(231, 235, 233, 0.82);
  font-size: 14px;
  line-height: 1.7;
}

.contact-info-card address {
  display: block;
  font-style: normal;
}

.contact-info-card a {
  overflow-wrap: anywhere;
}

.contact-info-card a:hover {
  color: var(--gold);
}

.contact-map {
  margin-top: clamp(36px, 4.5vw, 56px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  line-height: 0;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: clamp(300px, 42vw, 440px);
  border: 0;
}

.contact-page-touch {
  padding-block: clamp(76px, 9vw, 132px) clamp(88px, 10vw, 148px);
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal) 58%, var(--footer) 100%);
}

.contact-page-touch .contact-copy h2,
.contact-page-touch .contact-copy .contact-lead,
.contact-page-touch .check-list li {
  color: #ffffff;
}

.contact-page-touch .contact-copy > p,
.contact-page-touch address {
  color: rgba(255, 255, 255, 0.88);
}

.contact-page-touch .check-icon {
  border: 1px solid rgba(224, 168, 46, 0.6);
  background: rgba(14, 29, 25, 0.34);
  color: var(--gold);
}

.contact-page-touch .contact-rule {
  background: rgba(255, 255, 255, 0.28);
}

.contact-page-touch .contact-icon {
  color: var(--gold);
}

.contact-page-touch address a:hover {
  color: #ffffff;
}

.site-footer {
  padding: clamp(56px, 7vw, 88px) 0 40px;
  background: var(--footer);
  color: rgba(231, 235, 233, 0.68);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.15fr 1.15fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand > a {
  display: inline-flex;
  margin-bottom: 18px;
}

.footer-brand > a img {
  width: auto;
  height: 60px;
}

.footer-brand > p {
  max-width: 22rem;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.8;
}

.bbb-badge {
  width: 190px;
  height: auto;
  margin-top: 25px;
  border-radius: 8px;
}

.social-group {
  margin-top: 25px;
}

.footer-column,
.social-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-column h2,
.social-group h2 {
  margin-bottom: 7px;
  color: var(--green);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column .footer-service-item,
.social-group a {
  color: rgba(231, 235, 233, 0.72);
  font-size: 14px;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.footer-column a:hover,
.social-group a:hover,
.footer-bottom a:hover {
  color: var(--green);
}

.footer-column .footer-divider {
  width: 100%;
  margin-top: 5px;
  padding-top: 14px;
  border-top: 1px solid rgba(66, 168, 194, 0.22);
}

.footer-contact p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid rgba(66, 168, 194, 0.2);
}

.footer-bottom p {
  margin: 0;
  color: rgba(231, 235, 233, 0.45);
  font-size: 12px;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: rgba(231, 235, 233, 0.62);
  font-size: 12px;
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 17px;
    margin-right: 22px;
  }

  .desktop-nav a {
    font-size: 12px;
  }

  .header-cta {
    padding-inline: 20px;
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .mobile-menu {
    position: fixed;
    inset: 76px 0 auto;
    display: flex;
    flex-direction: column;
    max-height: calc(100svh - 76px);
    padding: 18px clamp(20px, 5vw, 56px) 28px;
    overflow-y: auto;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.985);
    color: var(--dark);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

  .site-header.is-open .mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
  }

  .mobile-menu .mobile-cta {
    margin-top: 18px;
    padding: 14px 20px;
    border: 0;
    border-radius: 10px;
    background: var(--dark);
    color: var(--heading-light);
    text-align: center;
    text-transform: uppercase;
  }

  .why-grid,
  .reviews-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .why-image-wrap {
    min-height: 510px;
    aspect-ratio: 4 / 3;
  }

  .reviews-heading {
    max-width: 620px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    gap: 16px 28px;
    padding-top: 16px;
    border-top: 1px solid rgba(66, 168, 194, 0.2);
  }

  .footer-contact h2 {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 700px;
  }

  .hero-scrim {
    background: linear-gradient(90deg, rgba(8, 21, 17, 0.9) 0%, rgba(8, 21, 17, 0.58) 65%, rgba(8, 21, 17, 0.2) 100%);
  }

  .hero h1 {
    margin-bottom: 32px;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .stat {
    padding: 24px 10px;
  }

  .stat:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(66, 168, 194, 0.2);
  }

  .section-intro-split {
    display: grid;
    align-items: start;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .value-grid {
    gap: 27px 24px;
  }

  .testimonial-stack {
    grid-template-columns: 1fr;
  }

  .testimonial-card:nth-child(even) {
    transform: none;
  }

  .rate-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

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

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

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

@media (max-width: 520px) {
  .shell,
  .faq-shell {
    width: min(100% - 40px, 1180px);
  }

  .brand-lockup {
    height: 39px;
  }

  .contact-hero {
    min-height: 540px;
  }

  .contact-hero-scrim {
    background: rgba(14, 29, 25, 0.82);
  }

  .contact-info-card {
    padding: 26px 22px;
  }

  .hero {
    min-height: 700px;
    height: 100svh;
  }

  .hero-picture img {
    object-position: center 40%;
  }

  .hero-scrim {
    background: linear-gradient(180deg, rgba(8, 21, 17, 0.55) 0%, rgba(8, 21, 17, 0.54) 34%, rgba(8, 21, 17, 0.92) 100%);
  }

  .hero-inner {
    justify-content: flex-end;
    padding: 0 0 96px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.15rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

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

  .hero-caption {
    bottom: 24px;
  }

  h2,
  .why-section h2,
  .reviews-heading h2,
  .pricing-intro h2,
  .faq-heading h2 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .why-image-wrap {
    min-height: 410px;
    aspect-ratio: 4 / 5;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    padding-inline: 22px;
    text-align: center;
  }

  .faq-item button {
    gap: 16px;
    padding-block: 22px;
    font-size: 0.95rem;
  }

  .faq-panel p {
    padding-right: 28px;
  }

  .contact-card {
    padding: 25px 20px;
  }

  #contact-form .button {
    align-self: stretch;
  }

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

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

  .footer-column {
    padding-top: 22px;
    border-top: 1px solid rgba(66, 168, 194, 0.2);
  }

  .footer-bottom div {
    gap: 12px 18px;
  }
}

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