:root {
  --ink: #14201B;
  --ink-2: #20302C;
  --clay: #4E968A;
  --clay-2: #6BB3A7;
  --clay-soft: rgba(78, 150, 138, 0.14);
  --olive: #B88A48;
  --cream: #F6F8F5;
  --cream-2: #EEF3EF;
  --paper: #ffffff;
  --line: #DDE7E1;
  --muted: #4B5D55;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.1);
  --shadow-strong: 0 34px 100px rgba(20, 32, 27, 0.22);
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(78, 150, 138, 0.18), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(125, 138, 104, 0.16), transparent 30%),
    linear-gradient(180deg, var(--cream) 0%, #fffdf8 44%, var(--cream-2) 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(20, 32, 27, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 32, 27, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 84%, transparent);
}

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

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

button {
  font: inherit;
}

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

.shell {
  width: min(100% - 44px, var(--content));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  inset: 18px 0 auto;
  z-index: 50;
}

.nav {
  position: relative;
  min-height: 74px;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--white);
  background: rgba(20, 32, 27, 0.72);
  box-shadow: 0 18px 60px rgba(19, 12, 9, 0.26);
  backdrop-filter: blur(22px);
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-name {
  font-size: clamp(1.05rem, 1.8vw, 1.34rem);
  font-weight: 950;
  letter-spacing: 0;
}

.menu-toggle {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

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

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

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

.nav-links {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border-radius: 28px;
  background: rgba(20, 32, 27, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-strong);
}

.nav.is-open .nav-links {
  display: flex;
  animation: menuIn 0.22s ease both;
}

.nav-links a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0;
  background: rgba(255, 255, 255, 0.05);
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
  background: rgba(78, 150, 138, 0.18);
  transform: translateY(-1px);
}

.header-cta {
  display: none;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 42%),
    linear-gradient(135deg, var(--clay) 0%, var(--clay-2) 100%);
  box-shadow: 0 20px 44px rgba(78, 150, 138, 0.28);
}

.button-secondary,
.cta-link {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.button-lg {
  min-height: 58px;
  padding-inline: 28px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 128px 0 76px;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(78, 150, 138, 0.22), transparent 30%),
    radial-gradient(circle at 8% 80%, rgba(125, 138, 104, 0.2), transparent 30%),
    linear-gradient(135deg, #14201B 0%, #20302C 56%, #34766D 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 70px),
    linear-gradient(90deg, rgba(255,255,255,0.03), transparent 42%);
  background-size: 72px 72px, auto;
  opacity: 0.5;
  animation: gridDrift 16s linear infinite;
}

.hero::after {
  content: "";
  position: absolute;
  width: min(58vw, 720px);
  aspect-ratio: 1;
  right: -10%;
  top: 16%;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 62%),
    conic-gradient(from 120deg, rgba(78,150,138,0.24), rgba(125,138,104,0.12), rgba(255,255,255,0.04), rgba(78,150,138,0.24));
  filter: blur(1px);
  animation: slowSpin 18s linear infinite;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(20, 32, 27, 0.1), rgba(20, 32, 27, 0.52));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  grid-template-areas:
    "copy media"
    "support media";
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
}

.hero-copy {
  grid-area: copy;
  max-width: 780px;
}

.hero-support {
  grid-area: support;
}

.hero-media {
  grid-area: media;
  position: relative;
  min-height: min(640px, 70svh);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 28% 16%, rgba(78,150,138,0.34), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-strong);
  isolation: isolate;
}

.hero-placeholder::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
}

.placeholder-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  right: -80px;
  bottom: -80px;
  border-radius: 999px;
  background: rgba(78, 150, 138, 0.22);
  filter: blur(26px);
  animation: glowFloat 6s ease-in-out infinite;
}

.placeholder-content {
  position: relative;
  z-index: 2;
  width: min(100% - 42px, 430px);
  padding: 28px;
  border-radius: 26px;
  text-align: center;
  color: var(--white);
  background: rgba(20, 32, 27, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.placeholder-content span {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--clay), var(--clay-2));
  font-size: 1.45rem;
  font-weight: 950;
}

.placeholder-content strong {
  display: block;
  font-size: 1.24rem;
}

.placeholder-content p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.hero-badge,
.section-tag,
.trust-kicker,
.service-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--clay);
  background: var(--clay-soft);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-badge {
  color: #ffe4d3;
  background: rgba(78, 150, 138, 0.16);
  border: 1px solid rgba(78, 150, 138, 0.24);
}

h1,
h2,
h3,
strong {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  line-height: 0.9;
  font-weight: 950;
  text-transform: uppercase;
  text-wrap: balance;
}

h1 > span {
  display: block;
}

.hero-type {
  min-height: 1.06em;
}

.typed,
.typed-wrap {
  display: inline-flex;
  align-items: center;
}

.typed-accent {
  color: #8ED0C3;
  text-shadow: 0 0 36px rgba(78, 150, 138, 0.28);
}

.typed::after {
  content: "";
  width: 3px;
  height: 0.86em;
  margin-left: 9px;
  display: inline-block;
  background: currentColor;
  animation: blink 0.85s step-end infinite;
}

.hero-text {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.benefit-item {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 22px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(14px);
  animation: softRise 0.7s ease both;
}

.benefit-item:nth-child(2) {
  animation-delay: 0.12s;
}

.benefit-item:nth-child(3) {
  animation-delay: 0.24s;
}

.benefit-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(78, 150, 138, 0.16);
}

.trust-bar {
  position: relative;
  z-index: 3;
  margin-top: -34px;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  align-items: center;
  gap: 28px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(20, 32, 27, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.trust-copy strong {
  display: block;
  font-size: clamp(1.18rem, 2vw, 1.7rem);
  line-height: 1.16;
}

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

.trust-stats article {
  min-height: 104px;
  display: grid;
  align-content: center;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,248,239,0.74));
  border: 1px solid rgba(20, 32, 27, 0.08);
}

.trust-stats strong {
  color: var(--clay);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1;
}

.trust-stats span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.section {
  position: relative;
  padding: clamp(78px, 9vw, 128px) 0;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .section-tag {
  margin-inline: auto;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4.5rem);
  line-height: 0.94;
  font-weight: 950;
  text-transform: uppercase;
  text-wrap: balance;
}

.section-heading p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.split-copy {
  max-width: 1080px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 54px);
  margin: 0 auto 46px;
}

.split-copy p {
  margin: 0;
  padding-left: 24px;
  border-left: 3px solid rgba(78, 150, 138, 0.38);
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  line-height: 1.72;
}

.pillars-grid,
.services-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

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

.feature-card,
.service-card,
.faq-card,
.contact-card,
.map-card,
.result-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 32, 27, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 330px;
  padding: 28px;
  border-radius: 26px;
}

.feature-card::before,
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--clay), var(--olive), transparent);
}

.feature-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -58px;
  bottom: -58px;
  border-radius: 999px;
  background: rgba(78, 150, 138, 0.09);
}

.feature-card span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--clay);
  background: var(--clay-soft);
  font-size: 0.8rem;
  font-weight: 950;
}

.feature-card h3,
.service-card h3,
.method-step h3 {
  text-wrap: balance;
}

.feature-card h3 {
  margin: 18px 0 12px;
  font-size: 1.12rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.feature-card p,
.service-card p,
.method-step p,
.about-copy p,
.result-meta p,
.faq-card p,
.contact-card p {
  color: var(--muted);
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.services-section {
  background:
    radial-gradient(circle at 8% 20%, rgba(125, 138, 104, 0.14), transparent 28%),
    linear-gradient(180deg, #fffdf8 0%, #f6ecdf 100%);
}

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

.service-card {
  min-height: 380px;
  padding: 34px;
  border-radius: 30px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: var(--clay);
  background: var(--clay-soft);
  font-size: 1.35rem;
}

.service-kicker {
  margin-top: 22px;
  margin-bottom: 0;
}

.service-card h3 {
  margin: 12px 0 10px;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
}

.service-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--clay);
}

.card-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--clay);
  font-weight: 950;
}

.method-section,
.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 10%, rgba(78, 150, 138, 0.2), transparent 30%),
    linear-gradient(135deg, #14201B 0%, #20302C 100%);
}

.method-section .section-heading p,
.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.method-timeline {
  position: relative;
  display: grid;
  max-width: 1000px;
  margin: 0 auto;
  gap: 0;
}

.method-timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(78,150,138,0.7), transparent);
}

.method-step {
  position: relative;
  width: min(50% - 38px, 450px);
  padding: 26px;
  border-radius: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.method-step:nth-child(odd) {
  justify-self: start;
}

.method-step:nth-child(even) {
  justify-self: end;
}

.method-step::before {
  content: "";
  position: absolute;
  top: 28px;
  right: -51px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--clay-2);
  box-shadow: 0 0 0 8px rgba(78, 150, 138, 0.14);
}

.method-step:nth-child(even)::before {
  left: -51px;
  right: auto;
}

.method-step span {
  color: #8ED0C3;
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.method-step h3 {
  margin: 12px 0 8px;
  font-size: 1.12rem;
}

.method-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  grid-template-areas:
    "image heading"
    "image body";
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
}

.about-heading {
  grid-area: heading;
}

.about-image {
  grid-area: image;
}

.about-copy {
  grid-area: body;
}

.about-photo-card {
  position: relative;
  aspect-ratio: 2 / 3;
  min-height: 0;
  overflow: hidden;
  border-radius: 32px;
  background: #14201B;
  box-shadow: var(--shadow-strong);
}

.about-photo-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
}

.about-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.credential-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.credential-list span {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(78, 150, 138, 0.09);
  border: 1px solid rgba(78, 150, 138, 0.13);
  font-weight: 850;
}

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

.stats-strip article {
  padding: 18px 12px;
  border-radius: 18px;
  text-align: center;
  background: var(--paper);
  border: 1px solid rgba(20, 32, 27, 0.08);
  box-shadow: 0 14px 36px rgba(44, 28, 20, 0.08);
}

.stats-strip strong {
  display: block;
  color: var(--clay);
  font-size: 1.45rem;
}

.stats-strip span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.marquee-shell {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 0 18px;
  scrollbar-width: thin;
  scrollbar-color: rgba(78, 150, 138, 0.66) rgba(255, 255, 255, 0.09);
  -webkit-overflow-scrolling: touch;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 2px;
  scroll-snap-type: x proximity;
}

.marquee-shell::-webkit-scrollbar {
  height: 10px;
}

.marquee-shell::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.marquee-shell::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(78, 150, 138, 0.66);
}

.results-hint {
  margin: 0 0 18px;
  text-align: center;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 750;
}

.result-card {
  flex: 0 0 330px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
  scroll-snap-align: start;
}

.result-placeholder {
  min-height: 310px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 22% 20%, rgba(78,150,138,0.3), transparent 34%),
    linear-gradient(145deg, #20302C, #14201B);
}

.result-placeholder span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--clay);
  font-weight: 950;
}

.result-meta {
  padding: 18px 18px 22px;
}

.result-meta strong {
  color: var(--white);
}

.result-meta p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.cta-ribbon {
  padding: 0;
  background: linear-gradient(180deg, #20302C 0 50%, var(--cream) 50% 100%);
}

.cta-ribbon-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 18%, rgba(255,255,255,0.16), transparent 30%),
    linear-gradient(135deg, var(--clay), #34766D 58%, #20302C 100%);
  box-shadow: var(--shadow-strong);
}

.cta-ribbon-card .section-tag {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.cta-ribbon-copy h2 {
  text-transform: uppercase;
}

.cta-ribbon-copy p:last-child {
  color: rgba(255, 255, 255, 0.76);
}

.cta-ribbon-actions {
  display: grid;
  gap: 12px;
  min-width: 220px;
}

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

.faq-card {
  border-radius: 18px;
}

.faq-card summary {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 22px;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-weight: 900;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--clay);
}

.faq-card[open] summary::after {
  content: "−";
}

.faq-card p {
  margin: 0;
  padding: 0 22px 22px;
}

.contact-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(78,150,138,0.16), transparent 30%),
    linear-gradient(180deg, var(--cream) 0%, #fffdf8 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.22fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: stretch;
}

.contact-section .section-heading {
  margin: 0;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 14%, rgba(78,150,138,0.22), transparent 30%),
    linear-gradient(135deg, #14201B, #34766D);
  box-shadow: var(--shadow-strong);
}

.contact-section .section-heading .section-tag {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.contact-section .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-stack {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
}

.contact-card {
  display: grid;
  align-content: center;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 26px;
}

.contact-card p {
  margin: 0 0 14px;
}

.contact-card strong {
  color: var(--ink);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.contact-actions .cta-link {
  color: var(--clay);
  border-color: rgba(78, 150, 138, 0.24);
  background: rgba(78, 150, 138, 0.08);
}

.map-card {
  min-height: 100%;
  border-radius: 26px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  border: 0;
}

.site-footer {
  position: relative;
  padding: 0 0 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 16% 0%, rgba(78,150,138,0.18), transparent 32%),
    linear-gradient(180deg, #14201B 0%, #0C1511 100%);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 70px 70px;
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 1.1fr 0.95fr;
  gap: 28px;
}

.footer-brand,
.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-mark {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.footer-brand strong {
  font-size: 1.5rem;
  font-weight: 950;
}

.footer-brand p,
.footer-col span,
.footer-col a {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.94rem;
  font-weight: 700;
}

.footer-col strong {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.footer-col a:hover,
.footer-col a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #8ED0C3;
}

.footer-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.18s;
}

.reveal-delay-3 {
  transition-delay: 0.26s;
}

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

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@keyframes menuIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes glowFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-18px, -14px, 0) scale(1.08);
  }
}

@keyframes slowSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes gridDrift {
  to {
    background-position: 72px 72px, 0 0;
  }
}

@keyframes softRise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .menu-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-links a {
    min-height: 38px;
    padding-inline: 9px;
    border: 0;
    background: transparent;
    white-space: nowrap;
  }

  .header-cta {
    min-width: 150px;
    display: inline-flex;
    white-space: nowrap;
  }
}

@media (max-width: 1120px) {
  .hero {
    min-height: auto;
    text-align: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "media"
      "support";
  }

  .hero-copy,
  .hero-support {
    margin-inline: auto;
  }

  .hero-badge,
  .hero-text {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-media {
    width: min(100%, 720px);
    min-height: 430px;
    margin-inline: auto;
  }

  .hero-benefits {
    max-width: 720px;
    margin-inline: auto;
  }

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

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

  .about-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "image"
      "body";
  }

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

@media (max-width: 880px) {
  .shell {
    width: min(100% - 28px, var(--content));
  }

  .site-header {
    inset: 12px 0 auto;
  }

  .nav {
    min-height: 66px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 1.06rem;
  }

  .hero {
    padding: 104px 0 58px;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 4.2rem);
  }

  .hero-media {
    min-height: 320px;
    border-radius: 26px;
  }

  .hero-benefits,
  .services-grid,
  .faq-grid,
  .split-copy,
  .contact-stack {
    grid-template-columns: 1fr;
  }

  .benefit-item {
    min-height: 70px;
    justify-content: flex-start;
    text-align: left;
  }

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

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

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

  .method-timeline::before {
    left: 12px;
  }

  .method-step,
  .method-step:nth-child(even),
  .method-step:nth-child(odd) {
    width: calc(100% - 44px);
    justify-self: end;
  }

  .method-step::before,
  .method-step:nth-child(even)::before {
    left: -43px;
    right: auto;
  }

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

  .cta-ribbon-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-ribbon-card .section-tag {
    margin-inline: auto;
  }

  .cta-ribbon-actions {
    min-width: 0;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .footer-col {
    justify-items: center;
  }

  .footer-bottom {
    justify-content: center;
  }

  .footer-bottom nav {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 22px, var(--content));
  }

  .nav {
    padding-left: 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button,
  .button-lg {
    width: 100%;
  }

  .placeholder-content {
    width: min(100% - 28px, 390px);
    padding: 22px;
  }

  .feature-card,
  .service-card,
  .contact-card,
  .contact-section .section-heading,
  .cta-ribbon-card {
    border-radius: 22px;
    padding: 24px 20px;
  }

  .pillars-grid,
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .result-card {
    flex-basis: min(82vw, 300px);
  }

  .result-placeholder {
    min-height: 250px;
  }
}

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

/* InstaShape palette pass: remove warm brown direction and keep hero contained. */
body {
  background:
    radial-gradient(circle at 12% 4%, rgba(78, 150, 138, 0.16), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(184, 138, 72, 0.12), transparent 30%),
    linear-gradient(180deg, #F6F8F5 0%, #FFFFFF 44%, #EEF3EF 100%);
}

body::before {
  background-image:
    linear-gradient(rgba(78, 150, 138, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 150, 138, 0.035) 1px, transparent 1px);
}

.nav {
  background: rgba(20, 32, 27, 0.78);
  box-shadow: 0 18px 60px rgba(20, 32, 27, 0.22);
}

.nav-links {
  background: rgba(20, 32, 27, 0.97);
}

.button-primary {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 42%),
    linear-gradient(135deg, #4E968A 0%, #34766D 100%);
  box-shadow: 0 20px 44px rgba(78, 150, 138, 0.28);
}

.hero {
  background:
    radial-gradient(circle at 78% 22%, rgba(107, 179, 167, 0.2), transparent 30%),
    radial-gradient(circle at 8% 80%, rgba(184, 138, 72, 0.12), transparent 30%),
    linear-gradient(135deg, #14201B 0%, #20302C 56%, #34766D 100%);
}

.hero::before {
  background:
    linear-gradient(115deg, rgba(255,255,255,0.07) 0 1px, transparent 1px 70px),
    linear-gradient(90deg, rgba(255,255,255,0.03), transparent 42%);
}

.hero::after {
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 62%),
    conic-gradient(from 120deg, rgba(78,150,138,0.26), rgba(184,138,72,0.14), rgba(255,255,255,0.04), rgba(78,150,138,0.26));
}

.hero-backdrop {
  background: linear-gradient(180deg, rgba(20, 32, 27, 0.08), rgba(20, 32, 27, 0.42));
}

.hero-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(34px, 4.5vw, 76px);
}

.hero-copy {
  max-width: 720px;
}

.hero-media {
  background:
    radial-gradient(circle at 28% 16%, rgba(107,179,167,0.32), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.placeholder-glow {
  background: rgba(107, 179, 167, 0.22);
}

.placeholder-content {
  background: rgba(20, 32, 27, 0.48);
}

.placeholder-content span,
.result-placeholder span,
.faq-card summary::after {
  background: linear-gradient(135deg, #4E968A, #34766D);
}

.hero-badge {
  color: #DFF3EF;
  background: rgba(78, 150, 138, 0.16);
  border-color: rgba(107, 179, 167, 0.28);
}

h1 {
  max-width: 720px;
  min-height: 1.96em;
  font-size: clamp(2.25rem, 4.15vw, 4.7rem);
  line-height: 0.98;
}

.hero-type {
  min-height: 0.98em;
  max-width: 100%;
  font-size: 1em;
}

.typed {
  min-width: 0;
  max-width: 100%;
  white-space: normal;
}

.typed-accent {
  color: #8ED0C3;
  text-shadow: 0 0 36px rgba(107, 179, 167, 0.28);
}

.hero-text {
  max-width: 620px;
}

.benefit-item,
.trust-grid,
.feature-card,
.service-card,
.faq-card,
.contact-card,
.map-card,
.stats-strip article {
  border-color: rgba(221, 231, 225, 0.9);
}

.services-section,
.contact-section {
  background:
    radial-gradient(circle at 8% 20%, rgba(78, 150, 138, 0.12), transparent 28%),
    linear-gradient(180deg, #FFFFFF 0%, #EEF3EF 100%);
}

.method-section,
.section-dark {
  background:
    radial-gradient(circle at 82% 10%, rgba(107, 179, 167, 0.2), transparent 30%),
    linear-gradient(135deg, #14201B 0%, #20302C 100%);
}

.result-placeholder {
  background:
    radial-gradient(circle at 24% 20%, rgba(107,179,167,0.28), transparent 34%),
    linear-gradient(135deg, #20302C, #34766D);
}

.contact-pitch-card {
  background:
    radial-gradient(circle at 100% 28%, rgba(107, 179, 167, 0.22), transparent 35%),
    radial-gradient(circle at 100% 55%, transparent 0 30%, rgba(107, 179, 167, 0.14) 30.2% 30.6%, transparent 31% 100%),
    linear-gradient(145deg, #14201B 0%, #34766D 100%);
}

.contact-pitch-card::after,
.contact-mini-card > span,
.contact-pitch-icon {
  border-color: rgba(107, 179, 167, 0.34);
}

.contact-pitch-icon,
.contact-mini-card > span,
.contact-pitch-card h3 em {
  color: #8ED0C3;
}

.contact-section .section-heading .section-tag,
.section-tag,
.trust-kicker,
.service-kicker {
  color: #34766D;
  background: rgba(78, 150, 138, 0.12);
}

.contact-section .section-heading .section-tag {
  border-color: rgba(78, 150, 138, 0.22);
}

.contact-icon,
.map-location-card span,
.contact-proof-row span,
.card-link,
.footer-col a:hover,
.footer-col a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #4E968A;
}

.contact-icon {
  background: rgba(78, 150, 138, 0.1);
}

.contact-actions .cta-link {
  color: #34766D;
  border-color: rgba(78, 150, 138, 0.26);
  background: rgba(78, 150, 138, 0.08);
}

.site-footer {
  background:
    radial-gradient(circle at 16% 0%, rgba(78,150,138,0.18), transparent 32%),
    linear-gradient(180deg, #14201B 0%, #0C1511 100%);
}

@media (min-width: 1121px) {
  .hero-copy,
  .hero-support {
    min-width: 0;
  }

  h1 > span:first-child {
    max-width: 11.5ch;
  }

  .hero-type {
    max-width: 12.6ch;
  }
}

/* Focused refinements: fixed hero typewriter, clean services, contact showcase. */
h1 {
  min-height: 1.76em;
  font-size: clamp(2.1rem, 4.9vw, 4.65rem);
  line-height: 0.96;
}

.hero-type {
  min-height: 0.92em;
  display: block;
  font-size: 1em;
  line-height: 1.02;
}

.typed {
  min-width: 20ch;
  white-space: nowrap;
}

.card-icon {
  display: none;
}

.service-kicker {
  margin-top: 0;
}

.contact-section {
  padding-block: clamp(78px, 9vw, 118px);
  background:
    radial-gradient(circle at 20% 6%, rgba(78, 150, 138, 0.12), transparent 28%),
    linear-gradient(180deg, #F6F8F5 0%, #fffdf8 100%);
}

.contact-section .section-heading {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 0;
  color: var(--ink);
  text-align: center;
  background: transparent;
  box-shadow: none;
}

.contact-section .section-heading .section-tag {
  margin-inline: auto;
  color: var(--clay);
  background: rgba(78, 150, 138, 0.1);
  border: 1px solid rgba(78, 150, 138, 0.22);
}

.contact-section .section-heading h2 {
  font-family: inherit;
  font-size: clamp(2rem, 4.5vw, 4.5rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
}

.contact-section .section-heading p {
  max-width: 620px;
  margin-inline: auto;
  color: #6b5d54;
}

.contact-showcase {
  display: grid;
  grid-template-columns: 1.05fr 0.92fr 1.08fr;
  gap: 22px;
  align-items: stretch;
}

.contact-pitch-card,
.contact-card,
.map-card {
  min-height: 560px;
  border-radius: 34px;
  box-shadow: 0 24px 70px rgba(75, 43, 28, 0.12);
}

.contact-pitch-card {
  position: relative;
  display: grid;
  align-content: center;
  padding: clamp(28px, 4vw, 44px);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 100% 28%, rgba(78, 150, 138, 0.22), transparent 35%),
    radial-gradient(circle at 100% 55%, transparent 0 30%, rgba(78, 150, 138, 0.14) 30.2% 30.6%, transparent 31% 100%),
    linear-gradient(145deg, #21140f 0%, #5a3122 100%);
}

.contact-pitch-card::after {
  content: "";
  position: absolute;
  inset: auto -22% -26% auto;
  width: 420px;
  aspect-ratio: 1;
  border-radius: 999px;
  border: 1px solid rgba(78, 150, 138, 0.24);
}

.contact-pitch-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 999px;
  color: #8ED0C3;
  border: 1px solid rgba(78, 150, 138, 0.42);
}

.contact-pitch-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 4vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.contact-pitch-card h3 em {
  display: block;
  color: #e19469;
  font-style: normal;
}

.contact-pitch-card > p {
  max-width: 320px;
  margin: 28px 0 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.contact-pitch-card > strong {
  max-width: 300px;
  color: #fff;
  font-size: 1.06rem;
}

.contact-mini-card {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 42px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-mini-card > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  border-radius: 16px;
  color: #8ED0C3;
  border: 1px solid rgba(78, 150, 138, 0.32);
}

.contact-mini-card p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.contact-card {
  display: grid;
  align-content: center;
  padding: clamp(24px, 3vw, 36px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(78, 150, 138, 0.1);
  backdrop-filter: blur(18px);
}

.contact-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(20, 32, 27, 0.1);
}

.contact-row:first-child {
  padding-top: 0;
}

.contact-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--clay);
  background: rgba(78, 150, 138, 0.08);
}

.contact-row p,
.contact-card p {
  margin: 0;
  color: #5f554d;
}

.contact-row strong {
  display: block;
  color: var(--ink);
}

.contact-actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

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

.contact-actions .cta-link {
  color: #34766D;
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(78, 150, 138, 0.28);
}

.contact-response {
  margin-top: 16px !important;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 800;
}

.map-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(78, 150, 138, 0.16);
  background: #f3e8dc;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  border: 0;
  filter: sepia(0.22) saturate(0.82) brightness(1.03);
}

.map-action,
.map-location-card {
  position: absolute;
  z-index: 2;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 36px rgba(75, 43, 28, 0.13);
  backdrop-filter: blur(14px);
}

.map-action {
  top: 28px;
  left: 28px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  color: #34766D;
  font-weight: 950;
}

.map-location-card {
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px;
}

.map-location-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  border-radius: 999px;
  color: var(--clay);
  border: 1px solid rgba(78, 150, 138, 0.22);
}

.map-location-card p {
  margin: 0;
  color: #66594f;
}

.map-location-card strong {
  display: block;
  color: var(--ink);
}

.contact-proof-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.contact-proof-row article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding-right: 18px;
  border-right: 1px solid rgba(20, 32, 27, 0.12);
}

.contact-proof-row article:last-child {
  border-right: 0;
}

.contact-proof-row span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--clay);
  font-size: 1.45rem;
}

.contact-proof-row strong,
.contact-proof-row p {
  grid-column: 2;
  margin: 0;
}

.contact-proof-row strong {
  color: var(--ink);
  line-height: 1.15;
}

.contact-proof-row p {
  color: var(--muted);
  font-size: 0.92rem;
}

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

  .contact-pitch-card,
  .contact-card,
  .map-card {
    min-height: auto;
  }

  .map-card iframe {
    min-height: 380px;
  }

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

  .contact-proof-row article:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 880px) {
  h1 {
    min-height: 1.9em;
    font-size: clamp(2rem, 10vw, 3.6rem);
  }

  .hero-type {
    font-size: 1em;
    min-height: 1.12em;
  }

  .typed {
    min-width: 0;
    white-space: normal;
  }

  .contact-section .section-heading h2 {
    font-size: clamp(2rem, 9.5vw, 3.6rem);
  }

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

  .contact-proof-row article,
  .contact-proof-row article:nth-child(2) {
    border-right: 0;
    padding: 0 0 16px;
    border-bottom: 1px solid rgba(20, 32, 27, 0.1);
  }

  .contact-proof-row article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  h1 {
    min-height: 2.06em;
    font-size: clamp(1.9rem, 10.4vw, 3.05rem);
  }

  .hero-type {
    font-size: 1em;
  }

  .contact-pitch-card h3 {
    font-size: clamp(2.4rem, 15vw, 3.4rem);
  }

  .contact-row {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .contact-icon {
    width: 36px;
    height: 36px;
  }

  .map-action {
    top: 18px;
    left: 18px;
  }

  .map-location-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
}

/* Final InstaShape brand lock: green/gold palette and safe desktop hero. */
body {
  color: #14201B;
  background:
    radial-gradient(circle at 12% 4%, rgba(78, 150, 138, 0.16), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(184, 138, 72, 0.12), transparent 30%),
    linear-gradient(180deg, #F6F8F5 0%, #FFFFFF 44%, #EEF3EF 100%);
}

body::before {
  background-image:
    linear-gradient(rgba(78, 150, 138, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 150, 138, 0.035) 1px, transparent 1px);
}

.nav,
.nav-links {
  background: rgba(20, 32, 27, 0.92);
}

.button-primary,
.placeholder-content span,
.result-placeholder span,
.faq-card summary::after {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.16), transparent 42%),
    linear-gradient(135deg, #4E968A 0%, #34766D 100%);
  box-shadow: 0 20px 44px rgba(78, 150, 138, 0.28);
}

.hero {
  background:
    radial-gradient(circle at 78% 22%, rgba(107, 179, 167, 0.2), transparent 30%),
    radial-gradient(circle at 8% 80%, rgba(184, 138, 72, 0.12), transparent 30%),
    linear-gradient(135deg, #14201B 0%, #20302C 56%, #34766D 100%);
}

.hero::after {
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 62%),
    conic-gradient(from 120deg, rgba(78,150,138,0.26), rgba(184,138,72,0.14), rgba(255,255,255,0.04), rgba(78,150,138,0.26));
}

.hero-backdrop {
  background: linear-gradient(180deg, rgba(20, 32, 27, 0.08), rgba(20, 32, 27, 0.42));
}

.hero-media {
  background:
    radial-gradient(circle at 28% 16%, rgba(107,179,167,0.32), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.placeholder-glow {
  background: rgba(107, 179, 167, 0.22);
}

.placeholder-content {
  background: rgba(20, 32, 27, 0.48);
}

.hero-badge {
  color: #DFF3EF;
  background: rgba(78, 150, 138, 0.16);
  border-color: rgba(107, 179, 167, 0.28);
}

h1 {
  max-width: 720px;
  min-height: 1.96em;
  font-size: clamp(2.25rem, 4.15vw, 4.7rem);
  line-height: 0.98;
}

.hero-type {
  max-width: 100%;
  min-height: 0.98em;
  font-size: 1em;
}

.typed {
  min-width: 0;
  max-width: 100%;
  white-space: normal;
}

.typed-accent {
  color: #8ED0C3;
  text-shadow: 0 0 36px rgba(107, 179, 167, 0.28);
}

.section-tag,
.trust-kicker,
.service-kicker,
.contact-section .section-heading .section-tag {
  color: #34766D;
  background: rgba(78, 150, 138, 0.12);
}

.card-link,
.contact-icon,
.map-location-card span,
.contact-proof-row span,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #4E968A;
}

.services-section,
.contact-section {
  background:
    radial-gradient(circle at 8% 20%, rgba(78, 150, 138, 0.12), transparent 28%),
    linear-gradient(180deg, #FFFFFF 0%, #EEF3EF 100%);
}

.method-section,
.section-dark {
  background:
    radial-gradient(circle at 82% 10%, rgba(107, 179, 167, 0.2), transparent 30%),
    linear-gradient(135deg, #14201B 0%, #20302C 100%);
}

.result-placeholder {
  background:
    radial-gradient(circle at 24% 20%, rgba(107,179,167,0.28), transparent 34%),
    linear-gradient(135deg, #20302C, #34766D);
}

.contact-pitch-card {
  background:
    radial-gradient(circle at 100% 28%, rgba(107, 179, 167, 0.22), transparent 35%),
    radial-gradient(circle at 100% 55%, transparent 0 30%, rgba(107, 179, 167, 0.14) 30.2% 30.6%, transparent 31% 100%),
    linear-gradient(145deg, #14201B 0%, #34766D 100%);
}

.contact-pitch-icon,
.contact-mini-card > span,
.contact-pitch-card h3 em {
  color: #8ED0C3;
}

.contact-icon {
  background: rgba(78, 150, 138, 0.1);
}

.contact-actions .cta-link {
  color: #34766D;
  border-color: rgba(78, 150, 138, 0.26);
  background: rgba(78, 150, 138, 0.08);
}

.site-footer {
  background:
    radial-gradient(circle at 16% 0%, rgba(78,150,138,0.18), transparent 32%),
    linear-gradient(180deg, #14201B 0%, #0C1511 100%);
}

@media (min-width: 1121px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
    gap: clamp(40px, 5vw, 88px);
  }

  .hero-copy,
  .hero-support {
    min-width: 0;
    max-width: 720px;
  }

  h1 > span:first-child {
    max-width: 11.6ch;
  }

  .hero-type {
    max-width: 12.2ch;
  }
}

@media (max-width: 880px) {
  h1 {
    min-height: 1.9em;
    font-size: clamp(2rem, 10vw, 3.6rem);
  }
}

@media (max-width: 560px) {
  h1 {
    min-height: 2.06em;
    font-size: clamp(1.9rem, 10.4vw, 3.05rem);
  }
}

/* Responsive experience lock: final pass for phones, tablets and narrow laptops. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  min-width: 0;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

@media (max-width: 1200px) {
  .shell {
    width: min(100% - 36px, var(--content));
  }

  .nav {
    grid-template-columns: auto auto auto;
  }

  .header-cta {
    min-width: 0;
    padding-inline: 18px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
    gap: 34px;
  }

  .hero-media {
    min-height: 520px;
  }

  .services-grid,
  .faq-grid {
    gap: 16px;
  }

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

  .map-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 920px) {
  .site-header {
    inset: 10px 0 auto;
  }

  .shell {
    width: min(100% - 28px, var(--content));
  }

  .nav {
    grid-template-columns: auto 1fr;
    min-height: 62px;
    padding: 8px 10px;
    border-radius: 24px;
  }

  .brand {
    grid-column: 2;
    grid-row: 1;
    gap: 9px;
    justify-self: start;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-name {
    font-size: 1rem;
    letter-spacing: 0;
  }

  .menu-toggle {
    grid-column: 1;
    grid-row: 1;
    width: 44px;
    height: 44px;
    justify-self: start;
  }

  .header-cta {
    display: none;
  }

  .nav-links {
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    max-height: calc(100dvh - 92px);
    overflow-y: auto;
    padding: 10px;
    border-radius: 22px;
    box-shadow: 0 26px 70px rgba(20, 32, 27, 0.26);
  }

  .nav-links a {
    min-height: 46px;
    justify-content: center;
    border-radius: 16px;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 96px 0 46px;
    text-align: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "media"
      "support";
    gap: 20px;
  }

  .hero-copy,
  .hero-support {
    max-width: 100%;
    margin-inline: auto;
  }

  .hero-badge {
    max-width: 100%;
    margin-inline: auto;
    white-space: normal;
    text-align: center;
  }

  h1 {
    width: 100%;
    max-width: 680px;
    min-height: 2.05em;
    margin-inline: auto;
    font-size: clamp(2.45rem, 9vw, 4.15rem);
    line-height: 0.96;
  }

  h1 > span:first-child {
    max-width: 100%;
  }

  .hero-type {
    min-height: 1.02em;
    max-width: 100%;
  }

  .typed {
    display: inline-flex;
    justify-content: center;
    min-width: 13ch;
    white-space: normal;
  }

  .hero-media {
    width: min(100%, 620px);
    min-height: 340px;
    margin-inline: auto;
    border-radius: 28px;
  }

  .hero-photo-card {
    aspect-ratio: 4 / 3;
  }

  .placeholder-content {
    width: min(100% - 28px, 440px);
    padding: 24px 20px;
    border-radius: 24px;
  }

  .hero-text {
    max-width: 620px;
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-benefits {
    max-width: 620px;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-inline: auto;
  }

  .benefit-item {
    min-height: auto;
    padding: 13px 16px;
    justify-content: flex-start;
    text-align: left;
    border-radius: 18px;
  }

  .trust-bar {
    padding-top: 18px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
    border-radius: 24px;
  }

  .trust-kicker {
    margin-inline: auto;
  }

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

  .section {
    padding: 62px 0;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .section-heading h2,
  .contact-section .section-heading h2 {
    font-size: clamp(2.1rem, 7vw, 3.35rem);
    line-height: 1;
  }

  .split-copy,
  .pillars-grid,
  .services-grid,
  .faq-grid,
  .about-grid,
  .contact-showcase {
    grid-template-columns: 1fr !important;
  }

  .split-copy {
    gap: 14px;
  }

  .feature-card,
  .service-card,
  .faq-card,
  .contact-pitch-card,
  .contact-card,
  .map-card {
    min-height: auto;
    border-radius: 24px;
  }

  .feature-card,
  .service-card {
    padding: 24px;
  }

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

  .method-timeline {
    gap: 14px;
  }

  .method-timeline::before,
  .method-step::before {
    display: none;
  }

  .method-step,
  .method-step:nth-child(even),
  .method-step:nth-child(odd) {
    width: 100%;
    justify-self: stretch;
  }

  .about-grid {
    grid-template-areas:
      "heading"
      "image"
      "body";
    gap: 22px;
  }

  .about-photo-card {
    aspect-ratio: 3 / 4;
    min-height: 0;
    border-radius: 26px;
  }

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

  .result-card {
    flex-basis: min(78vw, 310px);
  }

  .result-placeholder {
    min-height: 250px;
  }

  .cta-ribbon-card {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
    border-radius: 26px;
  }

  .cta-ribbon-card .section-tag {
    margin-inline: auto;
  }

  .cta-ribbon-actions {
    width: 100%;
    min-width: 0;
  }

  .cta-ribbon-actions .button {
    width: 100%;
  }

  .faq-card summary {
    min-height: 64px;
    padding: 0 18px;
  }

  .contact-section {
    padding-block: 66px;
  }

  .contact-pitch-card,
  .contact-card {
    padding: 24px;
  }

  .contact-pitch-card h3 {
    font-size: clamp(2.45rem, 9vw, 3.6rem);
  }

  .contact-mini-card {
    margin-top: 26px;
  }

  .map-card iframe {
    min-height: 320px;
  }

  .map-action {
    top: 16px;
    left: 16px;
  }

  .map-location-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .site-footer {
    padding-bottom: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: 18px;
    text-align: center;
  }

  .footer-bottom nav {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 22px, var(--content));
  }

  .site-header {
    inset: 8px 0 auto;
  }

  .nav {
    grid-template-columns: auto 1fr;
    min-height: 58px;
    border-radius: 20px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .brand-name {
    font-size: 0.92rem;
  }

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

  .hero {
    padding: 86px 0 38px;
  }

  .hero-badge {
    min-height: auto;
    padding: 9px 13px;
    border-radius: 999px;
    font-size: 0.72rem;
    line-height: 1.25;
  }

  h1 {
    min-height: 2.12em;
    font-size: clamp(2.05rem, 11vw, 3rem);
    line-height: 0.98;
  }

  .hero-type {
    min-height: 1.04em;
  }

  .typed {
    min-width: 12.5ch;
  }

  .hero-media {
    min-height: 260px;
    border-radius: 22px;
  }

  .hero-photo-card {
    aspect-ratio: 1 / 1;
  }

  .placeholder-content {
    width: calc(100% - 24px);
    padding: 18px 16px;
    border-radius: 20px;
  }

  .placeholder-content span {
    width: 58px;
    height: 58px;
    font-size: 1.1rem;
  }

  .placeholder-content strong {
    font-size: 1.05rem;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .hero-support {
    padding-bottom: 14px;
  }

  .hero-benefits {
    display: none;
  }

  .button,
  .button-lg {
    width: 100%;
    min-height: 50px;
    padding-inline: 16px;
    text-align: center;
  }

  .trust-grid {
    padding: 18px 14px;
  }

  .trust-stats,
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 50px 0;
  }

  .section-heading h2,
  .contact-section .section-heading h2 {
    font-size: clamp(1.8rem, 9.4vw, 2.45rem);
  }

  .section-heading p {
    font-size: 0.98rem;
  }

  .feature-card,
  .service-card,
  .contact-pitch-card,
  .contact-card,
  .cta-ribbon-card {
    padding: 20px;
    border-radius: 20px;
  }

  .feature-card h3,
  .service-card h3 {
    font-size: 1.22rem;
    line-height: 1.06;
  }

  .method-step {
    padding: 20px;
    border-radius: 20px;
  }

  .about-photo-card {
    aspect-ratio: 3 / 4;
    min-height: 0;
    border-radius: 22px;
  }

  .credential-list span {
    min-height: auto;
    align-items: flex-start;
    border-radius: 16px;
  }

  .marquee-shell {
    margin-inline: -11px;
    padding-left: 11px;
    padding-right: 11px;
  }

  .marquee-track {
    gap: 12px;
  }

  .result-card {
    flex-basis: min(84vw, 286px);
    border-radius: 22px;
  }

  .result-placeholder {
    min-height: 210px;
  }

  .result-meta {
    padding: 16px;
  }

  .faq-card {
    border-radius: 16px;
  }

  .faq-card summary {
    min-height: 58px;
    padding: 0 14px;
    gap: 10px;
    font-size: 0.96rem;
  }

  .faq-card summary::after {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .faq-card p {
    padding: 0 14px 16px;
  }

  .contact-section {
    padding-block: 52px;
  }

  .contact-pitch-card h3 {
    font-size: clamp(2.05rem, 12vw, 2.9rem);
  }

  .contact-pitch-card > p,
  .contact-pitch-card > strong {
    max-width: 100%;
  }

  .contact-mini-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .contact-row {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    padding: 13px 0;
  }

  .contact-icon {
    width: 34px;
    height: 34px;
  }

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

  .map-card {
    border-radius: 20px;
  }

  .map-card iframe {
    min-height: 270px;
  }

  .map-action {
    min-height: 42px;
    padding-inline: 14px;
    font-size: 0.88rem;
  }

  .map-location-card {
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
  }

  .map-location-card span {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .footer-bottom {
    margin-top: 0;
    padding-top: 16px;
  }

  .footer-bottom p,
  .footer-bottom a {
    font-size: 0.86rem;
  }
}

@media (max-width: 380px) {
  .shell {
    width: min(100% - 18px, var(--content));
  }

  .brand-name {
    font-size: 0.84rem;
  }

  h1 {
    font-size: 1.95rem;
  }

  .section-heading h2,
  .contact-section .section-heading h2 {
    font-size: 1.72rem;
  }

  .hero-media {
    min-height: 238px;
  }

  .feature-card,
  .service-card,
  .contact-pitch-card,
  .contact-card,
  .cta-ribbon-card,
  .method-step {
    padding: 18px;
  }
}

/* Real brand photography. */
.hero-photo-card {
  background: #14201B;
}

.hero-photo-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: inherit;
}

.hero-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  image-orientation: from-image;
}

.hero-photo-card picture {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-photo {
  object-position: center;
}

.hero-photo-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(20, 32, 27, 0.06), rgba(20, 32, 27, 0.24)),
    radial-gradient(circle at 20% 10%, rgba(78, 150, 138, 0.16), transparent 34%);
}

@media (min-width: 921px) {
  .hero-photo-card {
    aspect-ratio: auto;
  }
}

@media (max-width: 920px) {
  .hero-photo {
    object-position: center 42%;
  }

}

@media (max-width: 560px) {
  .hero-photo-card::before {
    inset: 10px;
  }

  .hero-photo {
    object-position: center;
  }

}

/* Final image/nav positioning tweaks. */
@media (min-width: 921px) {
  .hero-media {
    min-height: 500px;
    max-height: 540px;
  }

}

@media (min-width: 921px) and (max-width: 1200px) {
  .hero-media {
    min-height: 420px;
    max-height: 460px;
  }

}

@media (max-width: 920px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .brand {
    grid-column: 1;
    justify-self: start;
  }

  .menu-toggle {
    grid-column: 2;
    justify-self: end;
  }
}

@media (max-width: 560px) {
  .hero-photo {
    object-position: center 68%;
  }

}

/* Text-only reviews carousel. */
.reviews-carousel .marquee-track {
  align-items: stretch;
}

.review-card {
  flex-basis: min(78vw, 390px);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 26px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055)),
    radial-gradient(circle at 12% 10%, rgba(107, 179, 167, 0.22), transparent 32%);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.18);
}

.review-card::before {
  content: "“";
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #8ED0C3;
  background: rgba(142, 208, 195, 0.13);
  font-size: 2.3rem;
  font-weight: 950;
  line-height: 1;
}

.review-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.58;
}

.review-card strong {
  display: block;
  padding-top: 16px;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.94rem;
  font-weight: 950;
}

@media (max-width: 560px) {
  .review-card {
    flex-basis: min(84vw, 320px);
    min-height: 330px;
    padding: 22px;
    border-radius: 22px;
  }

  .review-card p {
    font-size: 0.96rem;
    line-height: 1.52;
  }
}
