@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  /* Premium Palette - Modern Clinical Trust */
  --ink: #0a1f1e;
  --muted: #4e615f;
  --paper: #f8faf9;
  --surface: #ffffff;
  --line: rgba(15, 79, 74, 0.08);
  
  /* Brand Colors */
  --teal: #0f4f4a;
  --teal-light: #176b65;
  --teal-glance: rgba(15, 79, 74, 0.03);
  --accent: #d27c5c; /* Warm Terracotta for Trust */
  --urgent: #cf2e2e;
  
  /* Elevation & Shadows */
  --shadow-sm: 0 2px 4px rgba(10, 31, 30, 0.02);
  --shadow-md: 0 12px 34px -10px rgba(10, 31, 30, 0.08);
  --shadow-lg: 0 32px 64px -16px rgba(10, 31, 30, 0.12);
  --glass: blur(16px) saturate(180%);
  
  /* Sizing */
  --container: 1240px;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  
  /* Transitions */
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Missing Tokens Reported */
  --bg: var(--paper);
  --blue: #2563eb;
  --mint: #e6fdfa;
  --shadow: var(--shadow-md);
  --teal-2: rgba(15, 79, 74, 0.02);
  --teal-20: rgba(15, 79, 74, 0.2);

  /* Spacing Scale */
  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 24px;
  --spacing-lg: 40px;
  --spacing-xl: 64px;

  /* Semantic Color Aliases */
  --ink-light: #4e615f;
  --terracotta: #d27c5c;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .brand strong {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

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

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

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

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-160%);
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 250, 249, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: var(--glass);
  transition: var(--transition);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: var(--teal);
  flex-shrink: 0;
}

.brand > span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  white-space: nowrap;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(15, 79, 74, 0.1));
  flex-shrink: 0;
}

.brand strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--teal);
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 3px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-mobile-footer {
  display: none;
}

.main-nav a {
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--paper);
  color: var(--teal);
}

/* Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
  margin-top: 8px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  width: 100%;
  padding: 10px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: var(--teal-glance);
  color: var(--teal);
  padding-left: 18px;
}

.dropdown-divider {
  height: 1px;
  background: var(--line);
  margin: 8px 0;
}

.dropdown-menu .all-link {
  font-weight: 800;
  color: var(--teal);
}

.chevron {
  font-size: 10px;
  opacity: 0.6;
  transition: transform 0.3s ease;
}

.dropdown:hover .chevron {
  transform: rotate(180deg);
}

.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.status-indicator {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-right: 2px;
}

.header-call {
  background: var(--urgent);
  color: white;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(207, 46, 46, 0.2);
  text-decoration: none;
}

.header-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(207, 46, 46, 0.3);
}

@media (max-width: 980px) {
  .status-indicator {
    display: none;
  }
}

.lang-selector {
  display: flex;
  gap: 4px;
  background: var(--teal-glance);
  padding: 4px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.lang-btn {
  padding: 4px 8px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn.active, .lang-btn:hover {
  background: white;
  color: var(--teal);
  box-shadow: var(--shadow-sm);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

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

.hero {
  position: relative;
  min-height: 320px;
  max-height: 380px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-image,
.hero-picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: 
    linear-gradient(90deg, 
      rgba(251, 252, 250, 1) 0%, 
      rgba(251, 252, 250, 0.98) 25%, 
      rgba(251, 252, 250, 0.8) 50%, 
      rgba(251, 252, 250, 0) 80%
    );
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-block: 32px 24px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: #557572; /* Darkened for better contrast */
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 45%;
  min-width: 450px;
  margin: 0;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.hero-copy {
  max-width: 45%;
  min-width: 420px;
  margin: 22px 0 0;
  color: #375250;
  font-size: 20px;
}

@media (max-width: 680px) {
  .hero h1, .hero-copy {
    max-width: 100%;
    min-width: 0;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 32px;
  border: 0;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  transition: var(--transition);
}

.btn-primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 4px 14px rgba(15, 79, 74, 0.25);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  background: var(--teal-light);
  box-shadow: 0 8px 24px rgba(15, 79, 74, 0.35);
}

.btn-emergency {
  background: var(--urgent);
  color: white;
  box-shadow: 0 4px 14px rgba(207, 46, 46, 0.25);
}

.btn-emergency:hover,
.btn-emergency:focus-visible {
  transform: translateY(-2px);
  background: #e03535;
  box-shadow: 0 8px 24px rgba(207, 46, 46, 0.35);
}

.btn-ghost {
  background: white;
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--teal-glance);
  border-color: var(--teal);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
  margin: 44px 0 0;
  border: 1px solid rgba(220, 231, 226, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.trust-strip div {
  padding: 18px;
}

.trust-strip div + div {
  border-left: 1px solid var(--line);
}

.trust-strip dt {
  margin: 0;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.trust-strip dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.alert-band {
  background: var(--urgent);
  color: white;
}

.alert-inner {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr auto;
  align-items: center;
  gap: 28px;
  padding-block: 24px;
}

.alert-band .section-kicker {
  color: #ffd6dc;
}

.alert-band h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.15;
}

.emergency-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.emergency-list li::before {
  content: "+";
  margin-right: 8px;
  font-weight: 900;
}

.section {
  padding-block: 92px;
}

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

.section-heading.compact {
  max-width: 620px;
}

.section h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p:not(.section-kicker),
.copy-block > p,
.booking-inner > div > p {
  color: var(--muted);
  font-size: 18px;
}

.service-grid,
.team-grid,
.path-grid,
.detail-grid,
.process-grid,
.article-grid,
.check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.path-card,
.detail-card,
.process-card,
.article-card,
.check-card,
.team-grid article,
.hours-panel,
.booking-form,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: var(--transition);
}

.service-card:hover,
.path-card:hover,
.detail-card:hover,
.team-grid article:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}

.service-card {
  padding: 24px;
}

.section-map {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.path-card {
  min-height: 168px;
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.path-card:hover,
.path-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(15, 79, 74, 0.42);
  box-shadow: var(--shadow);
}

.path-card span,
.detail-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--teal-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.path-card strong {
  display: block;
  font-size: 20px;
  line-height: 1.2;
}

.path-card.urgent {
  border-color: rgba(184, 31, 50, 0.34);
}

.path-card.urgent span {
  color: var(--urgent);
}

.service-card span {
  color: var(--teal-2);
  font-size: 13px;
  font-weight: 900;
}

.service-card h3,
.team-grid h3,
.hours-panel h3,
.feature-list h3 {
  margin: 14px 0 8px;
  font-size: 21px;
}

.service-card p,
.team-grid p,
.feature-list p,
.faq-list p {
  color: var(--muted);
}

.service-card a {
  display: inline-block;
  margin-top: 12px;
  color: var(--teal);
  font-weight: 850;
}

.service-card.featured {
  background: var(--bg);
  border: 1px solid var(--teal-20);
  box-shadow: 0 4px 20px rgba(15, 79, 74, 0.05);
}

.service-card.featured h3 {
  color: var(--teal);
}

.services-footer {
  margin-top: 48px;
  text-align: center;
  padding: 24px;
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}

.services-footer p {
  margin: 0;
  font-weight: 600;
  color: var(--muted);
}

.services-footer a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section-cta {
  margin-top: 24px;
}

.page-hero {
  padding-block: 82px 58px;
  background:
    linear-gradient(90deg, rgba(251, 252, 250, 0.98), rgba(251, 252, 250, 0.78)),
    url("assets/images/hero-v3.png") center / cover;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}

.page-hero p:not(.section-kicker) {
  max-width: 720px;
  color: #375250;
  font-size: 20px;
}

.breadcrumb {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.breadcrumb a {
  color: var(--teal);
}

.toc {
  padding-block: 18px;
  background: var(--teal);
  color: white;
}

.toc-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.toc a {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 850;
}

.toc a:hover,
.toc a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.content-section {
  padding-block: 72px;
  border-bottom: 1px solid var(--line);
}

.content-section.alt {
  background: var(--mint);
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 42px;
  align-items: start;
}

.content-layout h2 {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
}

.lead-text {
  color: var(--muted);
  font-size: 18px;
}

.detail-card,
.process-card,
.article-card,
.check-card {
  padding: 22px;
}

.detail-card h3,
.process-card h3,
.article-card h3,
.check-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.detail-card p,
.process-card p,
.article-card p,
.check-card p,
.detail-card li,
.process-card li {
  color: var(--muted);
}

.plain-list {
  margin: 16px 0 0;
  padding-left: 20px;
}

.plain-list li + li {
  margin-top: 8px;
}

.wide-card {
  grid-column: span 2;
}

.cta-band {
  background: var(--blue);
  color: white;
  padding-block: 42px;
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.cta-band p {
  color: #d5f0eb;
}

.split {
  background: var(--mint);
  border-block: 1px solid var(--line);
}

.split-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.75fr);
  gap: 42px;
  align-items: start;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.feature-list > div {
  border-top: 3px solid var(--teal);
  padding-top: 14px;
}

.hours-panel {
  padding: 28px;
  box-shadow: var(--shadow);
}

.hours-panel dl {
  margin: 18px 0 24px;
}

.hours-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-block: 12px;
  border-bottom: 1px solid var(--line);
}

.hours-panel dt {
  font-weight: 900;
}

.hours-panel dd {
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.team {
  background: var(--surface);
}

.team-grid article {
  padding: 24px;
  min-height: 178px;
}

.booking {
  background: #f5faf7;
  border-block: 1px solid var(--line);
}

.booking-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 42px;
  align-items: start;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 40px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: #2f4b49;
  font-size: 14px;
  font-weight: 800;
}

.booking-form .wide,
.booking-form .consent,
.booking-form button,
.form-status {
  grid-column: 1 / -1;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid #cbdad4;
  border-radius: 6px;
  background: white;
  color: var(--ink);
  padding: 12px;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 3px solid rgba(23, 107, 101, 0.22);
  border-color: var(--teal-2);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  grid-column: 1 / -1;
}

@media (max-width: 680px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.consent {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-weight: 650 !important;
}

.consent input {
  width: auto;
  margin-top: 4px;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--teal);
  font-weight: 800;
}

.faq-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0 18px;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 900;
}

.faq-list p {
  margin-top: 0;
}

.contact {
  background: var(--blue);
  color: white;
}

.contact .section-kicker,
.contact a {
  color: #bce8dc;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: stretch;
}

address {
  margin: 24px 0 18px;
  font-style: normal;
}

.map-block {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}
.map-block iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

.site-footer {
  padding-block: 82px 42px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 42px;
}

.site-footer strong {
  display: block;
  margin-bottom: 12px;
  color: var(--teal);
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.site-footer nav {
  display: flex;
  gap: 24px;
}

.site-footer nav a {
  font-weight: 700;
  transition: var(--transition);
}

.site-footer nav a:hover {
  color: var(--teal);
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 68px;
  }

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

  .main-nav {
    position: absolute;
    inset: 68px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    backdrop-filter: none;
    padding: 0 0 0 24px;
    margin: 0;
    display: none;
    width: 100%;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-divider {
    display: none;
  }

  .lang-selector {
    display: none;
  }

  .nav-mobile-footer {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: center;
  }

  .lang-selector-mobile {
    display: flex;
    gap: 12px;
  }

  .lang-selector-mobile .lang-btn {
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--teal);
    background: var(--bg);
    border: none;
  }

  .lang-selector-mobile .lang-btn.active {
    background: var(--teal);
    color: white;
  }

  .header-call {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-block: 96px 40px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(251, 252, 250, 0.98) 0%, rgba(251, 252, 250, 0.88) 62%, rgba(251, 252, 250, 0.62) 100%);
  }

  .alert-inner,
  .split-inner,
  .booking-inner,
  .faq-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .team-grid,
  .feature-list,
  .path-grid,
  .detail-grid,
  .process-grid,
  .article-grid,
  .check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-layout {
    grid-template-columns: 1fr;
  }

  .cta-band .container {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand strong {
    font-size: 17px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    max-width: 176px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions,
  .footer-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .trust-strip,
  .service-grid,
  .team-grid,
  .feature-list,
  .path-grid,
  .detail-grid,
  .process-grid,
  .article-grid,
  .check-grid,
  .booking-form,
  .emergency-list {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-block: 54px 42px;
  }

  .wide-card {
    grid-column: auto;
  }

  .trust-strip div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section {
    padding-block: 64px;
  }

  .alert-inner {
    gap: 18px;
  }

  .booking-inner,
  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .map-block {
    min-height: 240px;
  }
}

/* Premium Animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  font-size: 20px;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  bottom: 24px;
}

.back-to-top:hover {
  background: var(--ink);
  transform: translateY(-4px);
}
/* Layout Utilities */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.info-card {
  background: var(--surface);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.info-blocks {
  padding: var(--spacing-xl) 0;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: var(--spacing-md) 0;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: var(--spacing-sm);
  color: var(--ink-light);
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: bold;
}

/* Legal Content Styling */
.legal-content {
  max-width: 800px;
  margin: var(--spacing-lg) 0;
  line-height: 1.8;
  color: var(--ink-light);
}

.legal-content h3 {
  margin-top: var(--spacing-xl);
  color: var(--ink);
}

.legal-content p, .legal-content ul {
  margin-bottom: var(--spacing-md);
}

/* Component Styles */
.booking-form, .compact-form {
  max-width: 800px;
  display: grid;
  gap: var(--spacing-md);
}

.faq-inner {
  display: grid;
  gap: var(--spacing-xl);
}

@media (min-width: 768px) {
  .faq-inner {
    grid-template-columns: 1fr 2fr;
  }
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px; /* "Cuadrado" style */
  padding: var(--spacing-sm) var(--spacing-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.faq-list details p {
  padding: 16px 4px 8px;
  line-height: 1.65;
  color: var(--muted);
}

.faq-list summary {
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-list summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--terracotta);
  transition: transform 0.3s ease;
}

.faq-list details[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-list p {
  color: var(--ink-light);
  font-size: 0.95rem;
  line-height: 1.6;
  padding: var(--spacing-sm) 0 var(--spacing-md);
}

/* Service Grids & Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--terracotta);
}

/* Accessibility & Focus */
:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 4px;
}

.btn:focus {
  box-shadow: 0 0 0 4px rgba(220, 107, 85, 0.3);
}

/* Spacing Scale Refinement */
.section {
  padding: var(--spacing-xl) 0;
}

@media (min-width: 768px) {
  .section {
    padding: 100px 0;
  }
}

/* Servizi Page Expansions */
.split-image-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}
@media (min-width: 768px) {
  .split-image-section { grid-template-columns: 1fr 1fr; }
}

.timeline {
  border-left: 3px solid var(--terracotta);
  margin-left: 20px;
  padding-left: 30px;
  position: relative;
}
.timeline-item {
  position: relative;
  margin-bottom: var(--spacing-lg);
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -40.5px;
  top: 0;
  width: 18px;
  height: 18px;
  background: white;
  border: 4px solid var(--terracotta);
  border-radius: 50%;
}
.timeline-item h3 { margin-top: 0; color: var(--teal); }
.timeline-item p { margin-bottom: 0; }

.pricing-transparency {
  background: var(--teal-light);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  color: var(--surface);
  margin-top: var(--spacing-xl);
}
.pricing-transparency h3 { color: var(--terracotta); }

.service-tech {
  background: var(--mint);
  padding: var(--spacing-xl) 0;
}
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}
.tech-card {
  background: white;
  padding: var(--spacing-md);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--teal);
}
.tech-card h4 { color: var(--teal); margin-top: 0; margin-bottom: 8px;}

/* =========================================
   AESTHETIC & CONVERSION UPGRADES
   ========================================= */

/* Emergency Bar Mobile */
.emergency-bar-mobile {
  display: none;
  background: var(--urgent);
  color: white;
  text-align: center;
  padding: 12px;
  position: sticky;
  top: 0;
  z-index: 101;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.emergency-bar-mobile a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media (max-width: 680px) {
  .emergency-bar-mobile {
    display: block;
  }
  .site-header {
    top: 45px; /* Offset header to prevent overlap with sticky bar */
  }
}

/* Floating WhatsApp Button */
.fab-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}
@media (max-width: 680px) {
  .fab-whatsapp {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
}
.fab-whatsapp:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
  color: white;
}
.fab-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}
.fab-pulse {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse 2s infinite;
  z-index: -1;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Partner Marquee */
.marquee-section {
  padding: 40px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.marquee-title {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 24px;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
  gap: 80px;
  padding: 0 40px;
}
.marquee-track img, .marquee-track span {
  height: 40px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  font-size: 24px;
  color: var(--ink);
  white-space: nowrap;
}
.marquee-track img:hover, .marquee-track span:hover {
  opacity: 1;
  filter: grayscale(0%);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Testimonials */
.testimonials-section {
  background: var(--mint);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.testimonial-quote {
  font-size: 16px;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.testimonial-quote::before {
  content: '"';
  font-size: 60px;
  color: rgba(23, 107, 101, 0.1);
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: serif;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--teal-light);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}
.testimonial-name {
  font-weight: 700;
  color: var(--ink);
  display: block;
}
.testimonial-pet {
  font-size: 13px;
  color: var(--terracotta);
  font-weight: 600;
}

/* Premium Enhancements */
.service-card:hover::before, .path-card:hover::before, .detail-card:hover::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--terracotta);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.service-card, .path-card, .detail-card {
  position: relative;
  overflow: hidden;
}

/* Floating Labels for Forms */
.form-floating {
  position: relative;
  display: flex;
  align-items: center;
}
.form-floating svg {
  position: absolute;
  left: 16px;
  width: 18px;
  height: 18px;
  fill: #7a8c8a;
  transition: fill 0.2s;
  pointer-events: none;
  z-index: 2;
}
.form-floating input, .form-floating textarea {
  width: 100%;
  padding: 28px 16px 10px 44px; /* Space for icon */
  border: 1px solid #d1d9d6;
  border-radius: 12px;
  background: #fdfdfd;
  font-size: 15px;
  transition: all 0.2s ease;
  font-family: inherit;
}
.form-floating input:focus, .form-floating textarea:focus {
  border-color: var(--teal);
  background: white;
  outline: none;
  box-shadow: 0 0 0 4px rgba(23, 107, 101, 0.08);
}
.form-floating input:focus ~ svg {
  fill: var(--teal);
}
.form-floating label {
  position: absolute;
  top: 20px;
  left: 44px; /* Align with icon */
  color: #7a8c8a;
  font-size: 14px;
  font-weight: 600;
  transition: 0.2s ease all;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 60px);
}
.form-floating input:focus ~ label,
.form-floating input:not(:placeholder-shown) ~ label,
.form-floating textarea:focus ~ label,
.form-floating textarea:not(:placeholder-shown) ~ label {
  top: 8px;
  left: 16px; /* Move label to the left when floating */
  font-size: 10px;
  font-weight: 800;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-floating textarea {
  padding-left: 16px; /* No icon for textarea usually, or different placement */
}
.form-floating textarea ~ label {
  left: 16px;
}

/* Scroll Animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal] .reveal-delay-1, [data-reveal] .reveal-delay-2, [data-reveal] .reveal-delay-3, [data-reveal] .reveal-delay-4 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].revealed .reveal-delay-1 { opacity: 1; transform: translateY(0); transition-delay: 100ms; }
[data-reveal].revealed .reveal-delay-2 { opacity: 1; transform: translateY(0); transition-delay: 200ms; }
[data-reveal].revealed .reveal-delay-3 { opacity: 1; transform: translateY(0); transition-delay: 300ms; }
[data-reveal].revealed .reveal-delay-4 { opacity: 1; transform: translateY(0); transition-delay: 400ms; }

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 112px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--teal);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-md);
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 680px) {
  .back-to-top {
    width: 38px;
    height: 38px;
    bottom: 100px;
    right: 20px;
  }
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--teal-light);
  transform: translateY(-4px);
}

