:root {
  --bg: #f6f5f0;
  --bg-soft: #eef6f5;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --line: rgba(31, 52, 66, 0.1);
  --line-strong: rgba(11, 122, 119, 0.18);
  --text: #1f3442;
  --muted: #5d6e79;
  --primary: #0b7a77;
  --primary-dark: #085d5a;
  --primary-soft: rgba(11, 122, 119, 0.1);
  --accent: #84b49b;
  --accent-soft: rgba(132, 180, 155, 0.14);
  --peach: #f0d8c8;
  --shadow: 0 24px 80px rgba(31, 52, 66, 0.08);
  --shadow-soft: 0 16px 44px rgba(31, 52, 66, 0.06);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: min(1180px, calc(100vw - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(132, 180, 155, 0.15), transparent 34%),
    radial-gradient(circle at top right, rgba(11, 122, 119, 0.14), transparent 28%),
    linear-gradient(180deg, #fbfbf7 0%, #f6f5f0 38%, #fbfaf6 100%);
  line-height: 1.7;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p,
a,
li,
strong,
small,
span {
  overflow-wrap: anywhere;
}

.page-shell {
  overflow: clip;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section-pad {
  padding: 6rem 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(238, 246, 245, 0.78), rgba(255, 255, 255, 0.82));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.75rem;
}

.section-heading h2,
.hero h1 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 3.15rem);
  margin-top: 0.5rem;
}

.section-heading p {
  color: var(--muted);
  margin: 1rem 0 0;
  font-size: 1.04rem;
}

.section-heading-left {
  margin-bottom: 2rem;
}

.section-kicker,
.eyebrow,
.service-tag,
.price-label,
.trust-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-kicker,
.eyebrow,
.service-tag,
.price-label {
  background: var(--primary-soft);
  color: var(--primary);
}

.eyebrow-soft {
  background: rgba(132, 180, 155, 0.15);
  color: #4f7f69;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary) 0%, #117f83 100%);
  box-shadow: 0 14px 28px rgba(11, 122, 119, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(11, 122, 119, 0.22);
}

.button-ghost {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(11, 122, 119, 0.14);
  box-shadow: none;
}

.button-sm {
  min-height: 44px;
  padding-inline: 1rem;
}

.button-block {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 1rem 0;
  backdrop-filter: blur(20px);
  background: rgba(251, 251, 247, 0.78);
  border-bottom: 1px solid rgba(31, 52, 66, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand span,
.contact-card > div,
.service-card summary > div,
.hero-floating-card > div,
.footer-certification-card > div,
.map-card-head > div {
  min-width: 0;
}

.brand span {
  display: flex;
  flex-direction: column;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 0.86rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a {
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.24rem;
}

.menu-toggle span {
  display: block;
}

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

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

.hero {
  position: relative;
  padding-top: 4.35rem;
  padding-bottom: 4.2rem;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(20px);
}

.hero::before {
  width: 340px;
  height: 340px;
  top: 5%;
  right: -120px;
  background: rgba(11, 122, 119, 0.12);
}

.hero::after {
  width: 280px;
  height: 280px;
  bottom: 0;
  left: -120px;
  background: rgba(240, 216, 200, 0.28);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 440px);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-copy,
.hero-visual,
.about-grid > *,
.story-grid > *,
.services-grid > *,
.pricing-grid > *,
.contact-layout > *,
.contact-cards > *,
.footer-grid > * {
  min-width: 0;
}

.eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.25rem, 4vw, 4.15rem);
  max-width: 13ch;
}

.hero-lead {
  margin: 1.2rem 0 0.55rem;
  font-size: clamp(1.06rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--primary-dark);
}

.hero-text {
  margin: 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.hero-points {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero-points article,
.content-card,
.issues-card,
.price-card,
.contact-card,
.form-card,
.about-image-card,
.trust-grid > div,
.service-card,
.map-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.hero-points article {
  border-radius: var(--radius-md);
  padding: 1.15rem;
}

.hero-points strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.hero-points span {
  display: block;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.hero-visual {
  position: relative;
  max-width: 430px;
  width: 100%;
  justify-self: end;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) + 4px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(240, 246, 245, 0.72));
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto auto -15% -10%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(11, 122, 119, 0.14);
  filter: blur(2px);
}

.portrait-card {
  aspect-ratio: 4 / 5;
}

.portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-floating-card {
  position: absolute;
  right: -1rem;
  bottom: 1.35rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: min(300px, 84%);
  padding: 1rem 1.1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(11, 122, 119, 0.1);
  box-shadow: 0 18px 42px rgba(31, 52, 66, 0.12);
}

.hero-floating-card img {
  width: 82px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-floating-card strong {
  display: block;
  font-size: 0.98rem;
}

.hero-floating-card p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.trust-strip {
  margin-top: -1.2rem;
  position: relative;
  z-index: 2;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.trust-grid > div {
  padding: 1.35rem 1.25rem;
  border-radius: 26px;
}

.trust-grid strong {
  display: block;
  margin-top: 0.7rem;
  font-size: 1.05rem;
}

.trust-grid p {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.trust-label {
  background: rgba(132, 180, 155, 0.14);
  color: #4f7f69;
}

.about-grid,
.story-grid,
.contact-layout,
.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.about-grid {
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  align-items: start;
  margin-bottom: 1.5rem;
}

.about-visual {
  display: flex;
  justify-content: flex-start;
}

.about-image-card {
  position: sticky;
  top: 7rem;
  overflow: hidden;
  border-radius: 32px;
  width: min(100%, 380px);
  aspect-ratio: 4 / 5;
}

.about-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  display: grid;
  gap: 1.5rem;
}

.content-card,
.issues-card,
.form-card,
.map-card {
  border-radius: 30px;
  padding: 1.7rem;
}

.content-card h3,
.issues-card h3,
.form-card h3,
.price-card h3,
.contact-card h3,
.service-card h3,
.map-card h3,
.footer-column h3 {
  margin: 0 0 0.85rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.content-card p,
.issues-card p,
.service-card p,
.form-card p,
.contact-card p,
.price-card p,
.map-card p,
.footer-column p,
.footer-brand p {
  margin: 0;
  color: var(--muted);
}

.content-card p + p,
.service-body p + p {
  margin-top: 0.9rem;
}

.story-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  margin-bottom: 1.5rem;
}

.issues-card {
  background: linear-gradient(180deg, rgba(132, 180, 155, 0.14), rgba(255, 255, 255, 0.88));
}

.issue-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 0;
  margin: 1.1rem 0 0;
}

.issue-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(11, 122, 119, 0.08);
  color: var(--text);
  line-height: 1.45;
}

.issue-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 0.45rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  flex-shrink: 0;
}

.integrative-card {
  display: grid;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(11, 122, 119, 0.08), rgba(240, 216, 200, 0.16));
}

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

.service-card {
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 248, 0.96));
}

.service-card[open] {
  border-color: var(--line-strong);
}

.service-card summary {
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.55rem 1.6rem;
  cursor: pointer;
}

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

.service-card summary p {
  margin-top: 0.55rem;
}

.summary-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(11, 122, 119, 0.14);
  background: rgba(255, 255, 255, 0.78);
  position: relative;
  flex-shrink: 0;
}

.summary-icon::before,
.summary-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transform: translate(-50%, -50%);
}

.summary-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.service-card[open] .summary-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.3);
}

.service-body {
  padding: 0 1.6rem 1.6rem;
  border-top: 1px solid rgba(31, 52, 66, 0.08);
}

.service-body p:first-child {
  margin-top: 1.15rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.price-card {
  position: relative;
  border-radius: 32px;
  padding: 1.75rem;
  text-align: left;
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(11, 122, 119, 0.1), rgba(255, 255, 255, 0.95));
  border-color: var(--line-strong);
  transform: translateY(-10px);
}

.price-value {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 1.1rem 0 0.2rem;
  font-size: clamp(2.7rem, 5vw, 3.8rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.price-value span {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary);
  margin-top: 0.55rem;
}

.price-card p {
  margin: 0.55rem 0 1.4rem;
}

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

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-card {
  display: flex;
  gap: 1rem;
  padding: 1.3rem;
  border-radius: 26px;
}

.contact-card p,
.contact-card a {
  color: var(--muted);
}

.contact-card a:hover,
.contact-card a:focus-visible,
.social-links a:hover,
.social-links a:focus-visible,
.footer-column a:hover,
.footer-column a:focus-visible,
.trust-grid a:hover,
.trust-grid a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--primary);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(11, 122, 119, 0.12), rgba(132, 180, 155, 0.2));
  color: var(--primary);
  flex-shrink: 0;
}

.contact-icon svg,
.social-pill svg,
.footer-social-link svg {
  width: 22px;
  height: 22px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.social-links,
.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.social-links {
  margin-top: 1.4rem;
}

.social-pill,
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(11, 122, 119, 0.12);
  color: var(--muted);
  font-weight: 600;
}

.social-pill svg,
.footer-social-link svg {
  flex-shrink: 0;
}

.form-card {
  position: sticky;
  top: 7rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form span {
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(31, 52, 66, 0.12);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(11, 122, 119, 0.42);
  box-shadow: 0 0 0 4px rgba(11, 122, 119, 0.08);
}

.map-wrap {
  margin-top: 1.5rem;
}

.map-card {
  padding: 1.4rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 247, 246, 0.94));
}

.map-card-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.map-card-head h3 {
  margin-top: 0.65rem;
}

.map-card-head p {
  max-width: 56ch;
}

.map-frame {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(31, 52, 66, 0.08);
  min-height: 360px;
  background: rgba(255, 255, 255, 0.7);
}

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

.site-footer {
  padding: 1.2rem 0 2.5rem;
}

.footer-grid {
  grid-template-columns: 1.15fr 0.72fr 0.95fr 1.08fr;
  padding: 2rem;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(31, 52, 66, 0.99), rgba(24, 42, 53, 0.98)),
    radial-gradient(circle at top right, rgba(11, 122, 119, 0.24), transparent 30%);
  color: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

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

.footer-brand-link strong,
.footer-column h3,
.footer-certification-card strong,
.footer-bottom a {
  color: #ffffff;
}

.footer-brand-link small,
.footer-certification-card span {
  color: rgba(255, 255, 255, 0.62);
}

.footer-column,
.footer-brand {
  display: grid;
  align-content: start;
  gap: 0.85rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.footer-badges span {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  font-weight: 600;
}

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

.footer-social-link {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
}

.footer-certification-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 1rem;
  border-radius: 24px;
  margin-top: 0.35rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-certification-card img {
  width: 86px;
  height: 66px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-bottom a {
  font-weight: 700;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

@media (min-width: 861px) {
  .service-card {
    display: grid;
    align-content: start;
  }

  .service-card summary {
    cursor: default;
    padding-bottom: 1rem;
  }

  .summary-icon {
    display: none;
  }

  .service-body {
    border-top: 0;
    padding-top: 0;
  }
}

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

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

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

@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .story-grid,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    max-width: 420px;
    justify-self: center;
  }

  .about-image-card,
  .form-card {
    position: static;
  }

  .about-visual {
    justify-content: center;
  }

  .map-card-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 860px) {
  .section-pad {
    padding: 4.5rem 0;
  }

  .site-header {
    padding: 0.8rem 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.65rem);
    display: grid;
    gap: 0.3rem;
    padding: 0.75rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(31, 52, 66, 0.08);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .site-header.menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.8rem 0.9rem;
    border-radius: 16px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a.active {
    background: rgba(11, 122, 119, 0.08);
  }

  .hero {
    padding-top: 2.8rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-points,
  .trust-grid,
  .services-grid,
  .pricing-grid,
  .contact-cards,
  .issue-list,
  .footer-social-links {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .about-image-card {
    max-width: 100%;
  }

  .portrait-card,
  .about-image-card {
    aspect-ratio: 4 / 5;
  }

  .hero-floating-card {
    right: 1rem;
    left: 1rem;
    width: auto;
    bottom: 1rem;
  }

  .content-card,
  .issues-card,
  .form-card,
  .price-card,
  .service-card summary,
  .service-body,
  .map-card {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .price-card.featured {
    transform: none;
  }

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

@media (max-width: 560px) {
  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    font-size: 0.8rem;
  }

  .button,
  .button-sm,
  .map-button {
    width: 100%;
  }

  .hero-actions,
  .contact-links,
  .social-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .hero-card {
    border-radius: 28px;
  }

  .content-card,
  .issues-card,
  .form-card,
  .price-card,
  .contact-card,
  .service-card,
  .trust-grid > div,
  .map-card {
    border-radius: 24px;
  }

  .contact-card {
    padding: 1.15rem;
  }

  .footer-grid {
    padding: 1.5rem;
    border-radius: 28px;
  }

  .footer-bottom p {
    font-size: 0.82rem;
  }
}
