:root {
  --bg: #f8f6f2;
  --bg-soft: #fcfaf6;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --line: rgba(15, 23, 42, 0.1);
  --brand: #0b3d3b;
  --brand-deep: #071f1e;
  --accent: #c6a96b;
  --shadow: 0 16px 36px rgba(7, 31, 30, 0.08);
  --shadow-soft: 0 10px 24px rgba(7, 31, 30, 0.05);
  --radius: 26px;
  --radius-sm: 18px;
  --container: 1180px;
  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(198, 169, 107, 0.1), transparent 30%),
    linear-gradient(180deg, #faf8f3 0%, #f8f6f2 48%, #f5f2ed 100%);
}

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

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

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

button {
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(248, 246, 242, 0.84);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.nav-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  max-width: 100%;
}

.site-logo {
  display: block;
  flex: 0 0 auto;
  line-height: 0;
  width: clamp(10.5rem, 30vw, 14.75rem);
  max-width: 100%;
}

.site-logo svg {
  display: block;
  width: 100%;
  height: auto;
}

.site-logo .logo-main,
.site-logo .logo-sub {
  transition: fill 0.25s ease;
}

.logo--light .logo-main {
  fill: #0f172a;
}

.logo--light .logo-sub {
  fill: #64748b;
}

.logo--dark .logo-main {
  fill: #f8fafc;
}

.logo--dark .logo-sub {
  fill: #cbd5e1;
}

.footer-brand .site-logo {
  width: clamp(11rem, 32vw, 15.5rem);
}

.menu-toggle {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  align-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
}

.menu-toggle span {
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  right: 0;
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

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

.site-nav a {
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  font-weight: 600;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--text);
  background: rgba(11, 61, 59, 0.08);
}

.nav-cta {
  margin-top: 0.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.55rem;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #b99755);
  box-shadow: 0 12px 26px rgba(198, 169, 107, 0.22);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.btn-sm {
  min-height: 3rem;
  padding: 0.8rem 1.15rem;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-home {
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 5rem 0 4rem;
  background:
    linear-gradient(120deg, rgba(7, 31, 30, 0.88), rgba(11, 61, 59, 0.52)),
    url("https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.page-hero {
  min-height: 22rem;
  display: flex;
  align-items: end;
  padding: 6.5rem 0 3rem;
  color: #fff;
}

.page-hero-services {
  background:
    radial-gradient(circle at top right, rgba(198, 169, 107, 0.1), transparent 24%),
    linear-gradient(120deg, rgba(7, 31, 30, 0.96), rgba(9, 44, 43, 0.9)),
    linear-gradient(135deg, rgba(11, 61, 59, 0.88), rgba(7, 31, 30, 0.98));
}

.page-hero-content-services {
  max-width: 42rem;
}

.page-hero-content-services h1 {
  margin-bottom: 0.95rem;
}

.page-hero-content-services p:last-child {
  max-width: 38rem;
  line-height: 1.62;
}

.page-hero-portfolio {
  background:
    linear-gradient(120deg, rgba(7, 31, 30, 0.86), rgba(11, 61, 59, 0.48)),
    url("https://images.unsplash.com/photo-1448630360428-65456885c650?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.page-hero-about {
  background:
    linear-gradient(120deg, rgba(7, 31, 30, 0.86), rgba(11, 61, 59, 0.48)),
    url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.page-hero-contact {
  background:
    linear-gradient(120deg, rgba(7, 31, 30, 0.86), rgba(11, 61, 59, 0.48)),
    url("https://images.unsplash.com/photo-1416331108676-a22ccb276e35?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.page-hero-terms {
  min-height: 18.5rem;
  padding: 5.6rem 0 2.35rem;
  background:
    radial-gradient(circle at top right, rgba(198, 169, 107, 0.12), transparent 22%),
    linear-gradient(135deg, rgba(7, 31, 30, 1), rgba(7, 31, 30, 0.92));
}

.page-hero-privacy {
  min-height: 18.5rem;
  padding: 5.6rem 0 2.35rem;
  background:
    radial-gradient(circle at top right, rgba(198, 169, 107, 0.1), transparent 22%),
    linear-gradient(135deg, rgba(7, 31, 30, 1), rgba(8, 39, 49, 0.92));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 31, 30, 0.16), rgba(7, 31, 30, 0.5)),
    radial-gradient(circle at top right, rgba(198, 169, 107, 0.16), transparent 28%);
  pointer-events: none;
}

.hero-grid,
.page-hero-content {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  gap: 2rem;
}

.hero-copy {
  color: #fff;
  max-width: 40rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.4rem, 10vw, 4.9rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(1.8rem, 7vw, 3.1rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-copy p,
.page-hero-content p,
.cta-band p,
.quote-panel p {
  color: rgba(255, 255, 255, 0.86);
}

.hero-text {
  margin-top: 1.25rem;
  max-width: 34rem;
  font-size: 1.05rem;
}

.hero-trust-line {
  margin-top: 1rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  letter-spacing: 0.01em;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.hero-points li {
  padding-left: 1.4rem;
  position: relative;
  color: rgba(255, 255, 255, 0.82);
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 0.68rem;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
}

.hero-card {
  align-self: end;
}

.glass-card,
.feature-card,
.service-card,
.portfolio-card,
.process-step,
.contact-form,
.contact-panel,
.info-panel,
.quote-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.glass-card {
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  color: #fff;
}

.card-label {
  display: inline-flex;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1rem;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.3rem 0 1.6rem;
}

.location-grid span {
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  font-weight: 700;
}

.hero-stat-row {
  display: grid;
  gap: 1rem;
}

.hero-stat-row strong,
.info-row strong,
.contact-details strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.hero-stat-row span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
}

.section {
  padding: 5.75rem 0;
}

.section-soft {
  background: rgba(255, 255, 255, 0.42);
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.section-heading p {
  margin-top: 1rem;
}

.feature-grid,
.service-grid,
.process-grid,
.portfolio-grid {
  display: grid;
  gap: 1.25rem;
}

.feature-card,
.service-card,
.process-step,
.contact-form,
.contact-panel,
.info-panel,
.quote-panel {
  padding: 1.55rem;
  background: var(--surface);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  height: 100%;
}

.feature-card:hover,
.service-card:hover,
.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 61, 59, 0.18);
  box-shadow: 0 18px 34px rgba(7, 31, 30, 0.1);
}

.feature-number,
.process-step span {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  margin-bottom: 1rem;
  background: rgba(198, 169, 107, 0.16);
  color: var(--brand);
  font-weight: 800;
}

.split-grid,
.contact-grid {
  display: grid;
  gap: 1.25rem;
}

.home-benefits-grid {
  align-items: stretch;
}

.section-trust-home {
  padding-top: 4.5rem;
  padding-bottom: 4.75rem;
}

.section-benefits-home {
  padding-top: 5rem;
  padding-bottom: 5.25rem;
}

.service-list {
  display: grid;
  gap: 1rem;
}

.home-service-list {
  gap: 1.05rem;
}

.service-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.home-service-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
}

.home-service-card h3 {
  margin-bottom: 0.5rem;
}

.home-service-card p {
  line-height: 1.58;
}

.service-card-large h2 {
  font-size: 1.45rem;
}

.service-grid-premium {
  align-items: stretch;
  gap: 1.35rem;
}

.service-grid-premium .service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  padding: 1.6rem 1.7rem 1.8rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 246, 242, 0.94));
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.25s ease;
}

.service-grid-premium .service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(to right, #bfa046, #1f4f46);
  opacity: 0.6;
}

.service-grid-premium .service-card:hover,
.service-grid-premium .service-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.06);
}

.service-grid-premium .service-card h2 {
  margin-bottom: 0.8rem;
  line-height: 1.12;
  color: var(--text);
}

.service-grid-premium .service-card p {
  line-height: 1.64;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.3rem;
  font-weight: 800;
  color: var(--brand);
}

.section-kicker {
  margin-bottom: 0.65rem;
  font-size: 1.02rem;
  color: var(--text);
}

.premium-bullet-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.05rem;
  display: grid;
  gap: 0.85rem;
}

.premium-bullet-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text);
  font-weight: 600;
}

.premium-bullet-list li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #b99755);
  box-shadow: 0 0 0 6px rgba(198, 169, 107, 0.12);
}

.feature-card-highlight {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 1.2rem 1.25rem;
}

.trust-card-grid .trust-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.trust-card-grid .trust-card h3 {
  margin-bottom: 0.45rem;
}

.trust-card-grid .trust-card p,
.process-grid-equal .process-step p {
  margin-top: 0.45rem;
  line-height: 1.54;
}

.process-step {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.process-grid-equal .process-step {
  padding: 1.15rem 1.25rem 1.25rem;
}

.process-grid-equal .process-step span {
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
  color: rgba(198, 169, 107, 0.82);
  background: rgba(198, 169, 107, 0.12);
  box-shadow: inset 0 0 0 1px rgba(198, 169, 107, 0.12);
  font-weight: 700;
}

.process-grid-equal .process-step h3 {
  margin-bottom: 0.35rem;
}

.process-grid-equal .process-step p {
  line-height: 1.5;
}

.section-services-home {
  padding-bottom: 4.15rem;
}

.section-process-home {
  padding-top: 4.05rem;
}

.section-proof-home {
  padding-top: 0;
  padding-bottom: 4.15rem;
}

.proof-band {
  display: grid;
  gap: 1rem;
  padding: 1.6rem 1.75rem;
  border: 1px solid rgba(11, 61, 59, 0.12);
  border-radius: calc(var(--radius) - 2px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(198, 169, 107, 0.08)),
    var(--surface);
  box-shadow: 0 14px 30px rgba(7, 31, 30, 0.06);
}

.proof-band h2 {
  max-width: 42rem;
  font-size: clamp(1.55rem, 4.8vw, 2.3rem);
}

.proof-band p:last-child {
  max-width: 34rem;
  color: var(--text);
}

.process-step::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--brand));
}

.cta-band {
  padding: 0 0 5.75rem;
}

.cta-shell {
  padding: 1.6rem;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(7, 31, 30, 0.98), rgba(11, 61, 59, 0.92)),
    radial-gradient(circle at top right, rgba(198, 169, 107, 0.22), transparent 24%);
  box-shadow: 0 22px 44px rgba(7, 31, 30, 0.16);
}

.cta-shell h2 {
  color: #fff;
  margin-bottom: 0.8rem;
}

.cta-shell .btn-primary {
  box-shadow: 0 18px 36px rgba(198, 169, 107, 0.34);
  filter: saturate(1.05) brightness(1.05);
}

.cta-shell .btn-primary:hover,
.cta-shell .btn-primary:focus-visible {
  box-shadow: 0 20px 40px rgba(198, 169, 107, 0.38);
}

.page-hero-content {
  max-width: 48rem;
}

.page-hero-content-terms {
  max-width: 44rem;
}

.page-hero-content-terms h1 {
  margin-bottom: 0.55rem;
}

.page-meta {
  margin-bottom: 0.7rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.68);
}

.page-hero-content-terms p {
  max-width: 40rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.15rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #bfa046;
}

.service-grid-premium .check-list {
  margin-top: 1.25rem;
  gap: 0.78rem;
}

.service-grid-premium .check-list li {
  line-height: 1.55;
}

.section-services-primary {
  padding-top: 5.15rem;
  padding-bottom: 4.6rem;
}

.section-services-difference {
  padding-top: 4.8rem;
  padding-bottom: 4.7rem;
}

.section-services-difference .split-grid {
  gap: 1.5rem;
}

.section-services-difference .split-copy h2 {
  margin-bottom: 0.8rem;
}

.section-services-difference .split-copy p:last-child {
  max-width: 35rem;
}

.cta-band-services {
  padding-top: 0.3rem;
}

.info-panel,
.contact-panel {
  display: grid;
  gap: 1rem;
}

.info-row,
.contact-details div {
  padding-top: 1rem;
  border-top: 1px solid rgba(20, 33, 41, 0.08);
}

.info-row:first-child,
.contact-details div:first-child {
  border-top: 0;
  padding-top: 0;
}

.portfolio-card {
  overflow: hidden;
  background: var(--surface-strong);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.portfolio-visual {
  min-height: 14rem;
  background-size: cover;
  background-position: center;
}

.visual-one {
  background:
    linear-gradient(135deg, rgba(7, 38, 50, 0.2), rgba(13, 107, 111, 0.18)),
    url("https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
}

.visual-two {
  background:
    linear-gradient(135deg, rgba(7, 38, 50, 0.2), rgba(13, 107, 111, 0.18)),
    url("https://images.unsplash.com/photo-1448630360428-65456885c650?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
}

.visual-three {
  background:
    linear-gradient(135deg, rgba(7, 38, 50, 0.2), rgba(13, 107, 111, 0.18)),
    url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
}

.visual-four {
  background:
    linear-gradient(135deg, rgba(7, 38, 50, 0.2), rgba(13, 107, 111, 0.18)),
    url("https://images.unsplash.com/photo-1416331108676-a22ccb276e35?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
}

.portfolio-copy {
  padding: 1.3rem;
}

.portfolio-tag {
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.55rem;
}

.quote-panel {
  background:
    linear-gradient(145deg, rgba(11, 61, 59, 0.05), rgba(198, 169, 107, 0.1)),
    var(--surface);
}

.privacy-overview .eyebrow {
  color: var(--brand);
}

.privacy-overview h2 {
  color: var(--text);
  margin-bottom: 0.8rem;
}

.privacy-overview p {
  color: var(--muted);
}

.quote-panel blockquote {
  margin: 1rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 5vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.contact-form {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
  color: var(--text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(20, 33, 41, 0.14);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
}

.contact-form .btn:disabled {
  opacity: 0.75;
  cursor: wait;
  transform: none;
}

.form-status {
  padding: 0.85rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(184, 68, 43, 0.18);
  background: rgba(184, 68, 43, 0.08);
  color: var(--text);
}

.form-note {
  margin-top: -0.2rem;
  font-size: 0.94rem;
  color: var(--muted);
}

.business-line {
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: rgba(198, 169, 107, 0.12);
  border: 1px solid rgba(198, 169, 107, 0.18);
  color: var(--text);
}

.site-footer {
  padding: 2rem 0 2.4rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: #071f1e;
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.footer-copy {
  margin-top: 1rem;
  max-width: 20rem;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 0.75rem;
  color: #fff;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer p {
  margin-top: 0.35rem;
}

.site-footer h4 + p {
  white-space: nowrap;
}

.footer-note {
  opacity: 0.8;
  font-size: 0.95rem;
  line-height: 1.6;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
}

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

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-enabled .reveal-delay {
  transition-delay: 0.15s;
}

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

body.nav-open {
  overflow: hidden;
}

@media (min-width: 700px) {
  .feature-grid,
  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .home-benefits-grid {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.86fr);
  }

  .trust-card-grid .trust-card,
  .home-service-list .home-service-card,
  .process-grid-equal .process-step {
    min-height: 100%;
  }

  .cta-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .proof-band {
    grid-template-columns: minmax(0, 1.4fr) minmax(16rem, 0.8fr);
    align-items: end;
  }
}

@media (max-width: 699px) {
  .section-trust-home,
  .section-benefits-home,
  .section-services-home,
  .section-process-home,
  .section-proof-home {
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
  }

  .page-hero-content-services h1 {
    margin-bottom: 0.75rem;
  }

  .page-hero-content-services p:last-child {
    line-height: 1.58;
  }

  .section-services-primary {
    padding-top: 4.4rem;
    padding-bottom: 4rem;
  }

  .section-services-difference {
    padding-top: 4.15rem;
    padding-bottom: 4.1rem;
  }

  .service-grid-premium {
    gap: 1rem;
  }

  .service-grid-premium .service-card {
    padding: 1.45rem 1.35rem 1.65rem;
  }

  .feature-card-highlight {
    padding: 1.25rem;
  }

  .page-hero-terms {
    min-height: 16.5rem;
    padding: 5rem 0 2rem;
  }

  .page-hero-privacy {
    min-height: 16.5rem;
    padding: 5rem 0 2rem;
  }

  .page-hero-content-terms h1 {
    margin-bottom: 0.45rem;
  }
}

@media (min-width: 920px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
    border: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.25rem;
  }

  .site-nav a {
    padding: 0.7rem 0.9rem;
  }

  .nav-cta {
    margin-top: 0;
    margin-left: 0.35rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
    align-items: end;
  }

  .split-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: start;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
  }

  .contact-form {
    gap: 1.1rem;
  }

  .contact-form .btn {
    width: auto;
    min-width: 12rem;
    justify-self: start;
  }

  .form-note {
    max-width: 24rem;
  }

  .footer-grid {
    grid-template-columns: 1.1fr 0.75fr 0.8fr 0.9fr;
    align-items: start;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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