:root {
  --background: #131315;
  --surface-low: #1c1b1d;
  --surface-high: #2a2a2c;
  --surface-bright: #39393b;
  --surface-lowest: #0e0e10;
  --text: #e5e1e4;
  --muted: #b4b4bd;
  --accent: #be0000;
  --accent-strong: #c00301;
  --button-text: #ffffff;
  --outline: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  --radius: 14px;
  --container: 1200px;
  --font-heading: "Manrope", sans-serif;
  --font-body: "Inter", sans-serif;
  --fs-body: 1.125rem;
  --fs-h1: 7rem;
  --fs-h2: 4rem;
  --fs-h3: 2rem;
  --fs-h4: 1.375rem;
  --fs-h1-min: 3.4rem;
  --fs-h2-min: 2.5rem;
  --fs-h3-min: 1.6rem;
  --fs-h4-min: 1.2rem;
  --fs-button: 0.875rem;
  --fs-label: 0.75rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
}

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

p,
li {
  font-size: var(--fs-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-transform: uppercase;
}

h1 {
  font-size: var(--fs-h1);
  letter-spacing: -0.07em;
  line-height: 0.92;
}

h2 {
  font-size: var(--fs-h2);
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h3 {
  font-size: var(--fs-h3);
}

h4,
h5,
h6 {
  font-size: var(--fs-h4);
}

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

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

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

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

.site-header {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(19, 19, 21, 0.82);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 84px;
}

.site-title,
.footer-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.site-logo img {
  max-height: 52px;
  width: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu a {
  color: var(--muted);
  font-family: var(--font-heading);
  font-size: var(--fs-button);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease, transform 0.2s ease;
}

.menu a:hover,
.menu .current-menu-item > a,
.menu .current_page_item > a {
  color: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.5rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-family: var(--font-heading);
  font-size: var(--fs-button);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: var(--button-text);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.2);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--accent-strong), #920000);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button-light {
  background: #fff;
  color: var(--accent);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--outline);
  border-radius: 10px;
  background: transparent;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.site-main {
  overflow: hidden;
}

.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 8rem 0 4rem;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
}

.hero-fallback-image {
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.hero-background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  z-index: 1;
}

.hero-media.video-ready .hero-fallback-image {
  opacity: 0;
  visibility: hidden;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(19, 19, 21, 0.95), rgba(19, 19, 21, 0.55) 45%, rgba(19, 19, 21, 0.15));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin-left: clamp(4rem, 18vw, 22rem);
}

.eyebrow,
.section-kicker,
.service-badge,
.section-label {
  display: inline-block;
  font-size: var(--fs-label);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow,
.service-badge {
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
}

.hero-content h1,
.section-heading h2,
.page-hero h1 {
  margin: 1rem 0;
  font-family: var(--font-heading);
  font-size: clamp(var(--fs-h1-min), 8vw, var(--fs-h1));
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
}

.section-heading h2,
.showcase-copy h2,
.contact-copy h2,
.trust-card h3,
.service-card h3,
.page-hero h1 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
}

.showcase-copy h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(var(--fs-h2-min), 5vw, var(--fs-h2));
  line-height: 0.98;
}

.hero-content h1 span,
.showcase-copy h2 span {
  color: var(--accent);
}

.hero-content p,
.section-copy,
.showcase-copy p,
.contact-block p,
.footer-brand p,
.footer-links p {
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.section {
  padding: 6rem 0;
}

.section-insert {
  padding: 3rem 0;
}

.insert-content > *:last-child {
  margin-bottom: 0;
}

.insert-content iframe,
.insert-content img,
.insert-content video {
  max-width: 100%;
}

.section-surface {
  background: var(--surface-low);
}

.section-contact {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.split-heading,
.showcase-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 2rem;
}

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

.contact-grid {
  align-items: center;
}

.center-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading h2 {
  font-size: clamp(var(--fs-h2-min), 5vw, var(--fs-h2));
}

.heading-accent-line {
  width: 6rem;
  height: 0.25rem;
  margin: 1rem auto 0;
  background: var(--accent);
}

.section-label {
  justify-self: end;
  color: var(--accent);
}

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

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-high);
  min-height: 300px;
  transform: translateZ(0);
}

.service-card-large {
  grid-column: span 3;
  min-height: 420px;
}

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

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  transition: transform 0.7s ease;
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 19, 21, 0.08), rgba(19, 19, 21, 0.9));
}

.service-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.8rem;
  height: 100%;
  padding: 1.75rem;
}

.service-badge {
  position: absolute;
  top: 1.75rem;
  left: 1.75rem;
  display: inline-flex;
  align-items: center;
  width: auto;
  max-width: calc(100% - 3.5rem);
  align-self: flex-start;
  padding: 0.45rem 0.9rem;
  white-space: nowrap;
}

.service-card h3,
.trust-card h3,
.testimonial-card strong,
.post-card h2,
.content-card h2,
.content-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.service-card h3 {
  font-size: clamp(var(--fs-h3-min), 2vw, var(--fs-h3));
  font-style: italic;
  line-height: 1;
}

.trust-card h3 {
  font-size: var(--fs-h4);
}

.service-card p,
.trust-card p,
.testimonial-card p,
.faq-answer p,
.post-card {
  color: var(--muted);
}

.service-card:hover {
  background: var(--surface-bright);
}

.service-card:hover img {
  transform: scale(1.08);
}

.icon-grid,
.testimonial-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.testimonial-card,
.faq-item,
.content-card,
.post-card {
  background: var(--surface-high);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.testimonial-card:hover,
.post-card:hover {
  background: var(--surface-bright);
  transform: translateY(-3px);
}

.trust-card {
  padding: 0;
  background: transparent;
  border-radius: 0;
  transition: none;
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent);
  transition: background 0.2s ease, color 0.2s ease;
}

.trust-card:hover .trust-icon {
  background: var(--accent);
  color: #fff;
}

.trust-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.section-protocol {
  position: relative;
  overflow: hidden;
  background: #1c1b1d;
}

.protocol-texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 0.5px, transparent 0.5px);
  background-size: 4px 4px;
  opacity: 0.08;
  pointer-events: none;
}

.protocol-inner {
  position: relative;
  z-index: 1;
}

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

.protocol-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-50%);
}

.protocol-card {
  position: relative;
  z-index: 1;
  padding: 2rem;
  border-radius: var(--radius);
  background: #201f22;
  transition: background 0.2s ease, transform 0.2s ease;
}

.protocol-card:hover {
  background: var(--surface-bright);
}

.protocol-number {
  margin-bottom: 1rem;
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: clamp(var(--fs-h3-min), 3vw, var(--fs-h3));
  font-style: italic;
  font-weight: 800;
  line-height: 1;
  opacity: 0.5;
}

.protocol-card h3 {
  margin-bottom: 0.75rem;
  font-size: var(--fs-h4);
}

.protocol-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.section-protocol .section-heading {
  margin-bottom: 5rem;
}

.section-protocol .section-heading h2 {
  margin-bottom: 1rem;
}

.section-protocol .section-copy {
  max-width: none;
  text-align: center;
  font-size: 1rem;
}

.showcase-grid {
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
}

.check-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
  color: #fff;
  font-family: var(--font-heading);
  font-size: var(--fs-button);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.check-list .material-symbols-outlined {
  color: var(--accent);
  font-size: 1.2rem;
  flex: 0 0 auto;
}

.before-after-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow);
  min-height: 450px;
  background: #111;
  isolation: isolate;
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
}

.before-after-base,
.before-after-overlay {
  position: absolute;
  inset: 0;
  min-height: 450px;
}

.before-after-base img,
.before-after-overlay img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.before-after-base img {
  filter: none;
  transform: none;
}

.before-image {
  clip-path: inset(0 50% 0 0);
  z-index: 1;
}

.after-image {
  clip-path: inset(0 0 0 50%);
  z-index: 2;
}

.before-label,
.after-label {
  position: absolute;
  top: 1.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: none;
  color: #3a3a3a;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  z-index: 3;
}

.before-label {
  left: 1.5rem;
}

.after-label {
  right: 1.5rem;
}

.before-after-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 4;
  width: 1px;
  background: rgba(255, 255, 255, 0.95);
  transform: translateX(-50%);
  pointer-events: none;
}

.before-after-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.before-after-handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  transform: translate(-50%, -50%);
  animation: before-after-pulse 1.8s infinite;
}

.before-after-handle span {
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%);
}

.before-after-handle span::before,
.before-after-handle span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #111;
  border-right: 2px solid #111;
}

.before-after-handle span::before {
  left: 10px;
  transform: translateY(-50%) rotate(-135deg);
}

.before-after-handle span::after {
  right: 10px;
  transform: translateY(-50%) rotate(45deg);
}

@keyframes before-after-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.55;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.7);
    opacity: 0;
  }
}

.stars {
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
}

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

.faq-item {
  background: var(--surface-low);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-heading);
  font-size: var(--fs-button);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.faq-question {
  flex: 1 1 auto;
}

.faq-toggle {
  flex: 0 0 auto;
  font-size: 1.4rem;
  color: var(--muted);
  transition: transform 0.2s ease, color 0.2s ease;
}

.faq-item[open] .faq-toggle {
  transform: rotate(180deg);
  color: var(--text);
}

.faq-answer {
  padding-top: 1rem;
}

.contact-copy,
.map-card {
  position: relative;
  z-index: 1;
}

.contact-copy h2 {
  color: #fff;
}

.contact-block {
  margin-bottom: 1.5rem;
}

.contact-block strong,
.footer-links h2 {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--font-heading);
  font-size: var(--fs-label);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.map-card {
  display: block;
  min-height: 420px;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.6);
  transition: transform 0.6s ease;
}

.map-embed-card {
  background: #111;
}

.map-embed-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(0.05) contrast(1.05);
}

.map-embed-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
}

.map-embed-placeholder strong {
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.map-embed-placeholder p {
  max-width: 26rem;
  color: rgba(255, 255, 255, 0.8);
}

.map-card:hover img {
  transform: scale(1.04);
}

.map-card span {
  background: rgba(19, 19, 21, 0.78);
}

.site-footer {
  background: var(--background);
}

.footer-grid {
  grid-template-columns: 1.3fr 1fr 1fr;
  padding: 4rem 0;
}

.footer-links .menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  transition: color 0.2s ease, transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-socials a:hover {
  color: #fff;
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.footer-socials .material-symbols-outlined {
  font-size: 1.35rem;
}

.footer-links .menu {
  color: var(--muted);
}

.footer-links .menu a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links .menu a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-bottom {
  background: var(--surface-lowest);
}

.footer-bottom-inner {
  padding: 1.5rem 0;
}

.page-hero {
  padding: 9rem 0 2rem;
}

.inner-page .page-hero h1 {
  font-size: clamp(var(--fs-h1-min), 6vw, var(--fs-h1));
}

.content-card,
.post-list {
  max-width: 900px;
}

.entry-content,
.content-card {
  color: var(--muted);
}

.entry-content > *:last-child,
.content-card > *:last-child {
  margin-bottom: 0;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.content-card h1,
.content-card h2,
.content-card h3,
.content-card h4,
.content-card h5,
.content-card h6 {
  color: var(--text);
}

.entry-content h1,
.content-card h1 {
  font-size: clamp(var(--fs-h1-min), 6vw, var(--fs-h1));
}

.entry-content h2,
.content-card h2 {
  font-size: clamp(var(--fs-h2-min), 5vw, var(--fs-h2));
  margin-top: 2.5rem;
}

.entry-content h3,
.content-card h3 {
  font-size: clamp(var(--fs-h3-min), 4vw, var(--fs-h3));
  margin-top: 2rem;
}

.entry-content h4,
.entry-content h5,
.entry-content h6,
.content-card h4,
.content-card h5,
.content-card h6 {
  font-size: clamp(var(--fs-h4-min), 3vw, var(--fs-h4));
  margin-top: 1.6rem;
}

.entry-content p,
.entry-content li,
.content-card p,
.content-card li,
.post-card p {
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: 1.8;
}

.entry-content ul,
.entry-content ol,
.content-card ul,
.content-card ol {
  padding-left: 1.3rem;
}

.entry-content a,
.content-card a,
.post-card a {
  color: var(--accent);
}

.entry-content blockquote,
.content-card blockquote {
  margin: 2rem 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
}

.entry-content img,
.content-card img {
  border-radius: var(--radius);
}

.post-card h2 a {
  color: var(--text);
}

.content-card > *:first-child {
  margin-top: 0;
}

.content-card > *:last-child {
  margin-bottom: 0;
}

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

@media (max-width: 1024px) {
  .icon-grid,
  .testimonial-grid,
  .footer-grid,
  .protocol-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .section-label {
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-block;
  }

  .header-actions {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 16px;
    background: rgba(28, 27, 29, 0.98);
    box-shadow: var(--shadow);
  }

  .header-actions.is-open {
    display: flex;
  }

  .primary-navigation .menu {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-cta {
    width: 100%;
  }

  .services-grid,
  .icon-grid,
  .testimonial-grid,
  .protocol-grid,
  .before-after-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .protocol-line {
    display: none;
  }

  .service-card-large,
  .service-card-small {
    grid-column: span 1;
    min-height: 320px;
  }

  .hero-content {
    margin-left: clamp(1rem, 6vw, 4rem);
  }

.before-panel,
.after-panel,
.before-after-base,
.before-after-overlay,
.before-after-card {
  min-height: 280px;
}
}

@media (max-width: 640px) {
  .header-bar {
    min-height: 74px;
  }

  .hero-section {
    min-height: auto;
    padding-top: 7rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .container {
    width: min(calc(100% - 1.5rem), var(--container));
  }
}
