:root {
  --bg: #faf8f4;
  --surface: #ffffff;
  --surface-soft: #f2f8f6;
  --text: #102f3b;
  --text-muted: #587078;
  --primary: #1d7284;
  --primary-deep: #15596a;
  --teal: #4b9f96;
  --mint: #e3f0eb;
  --accent: #c7602d;
  --accent-deep: #9f471f;
  --border: #dde8e5;
  --shadow-soft: 0 1px 2px rgba(17, 61, 76, 0.035), 0 10px 24px rgba(17, 61, 76, 0.055);
  --shadow: 0 2px 6px rgba(17, 61, 76, 0.045), 0 18px 42px rgba(17, 61, 76, 0.075);
  --shadow-lift: 0 4px 12px rgba(17, 61, 76, 0.06), 0 24px 56px rgba(17, 61, 76, 0.11);
  --shadow-dark: 0 8px 20px rgba(5, 24, 31, 0.08), 0 26px 64px rgba(17, 61, 76, 0.16);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 28px;
  --container: 1180px;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --font-body: 1rem;
  --font-small: 0.9rem;
  --font-eyebrow: 0.78rem;
  --font-h1: 2.65rem;
  --font-h2: 2rem;
  --font-h3: 1.15rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: linear-gradient(180deg, #fffdfa 0%, #faf8f4 44%, #f4f8f7 100%);
  color: var(--text);
  font-size: var(--font-body);
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

img {
  width: 100%;
  height: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  padding: var(--space-1) var(--space-2);
  border-radius: 8px;
  border: 2px solid var(--primary);
}

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

.section {
  position: relative;
  padding: var(--space-6) 0;
}

.section + .section {
  border-top: 1px solid rgba(221, 232, 229, 0.42);
}

.section-heading {
  max-width: 720px;
  margin-bottom: var(--space-5);
}

.section-heading h2 {
  margin-top: var(--space-1);
}

.section-heading p:last-child {
  margin-top: var(--space-2);
  max-width: 58ch;
}

.services .section-heading,
.testimonials .section-heading,
.gallery .section-heading {
  margin-inline: auto;
  text-align: center;
}

.services .section-heading p,
.testimonials .section-heading p,
.gallery .section-heading p {
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 var(--space-1);
  color: var(--primary-deep);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: var(--font-eyebrow);
  line-height: 1.25;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: var(--font-h1);
  line-height: 1.06;
  letter-spacing: 0;
}

h2 {
  font-size: var(--font-h2);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  font-size: var(--font-h3);
  line-height: 1.22;
  letter-spacing: 0;
}

p {
  color: var(--text-muted);
  line-height: 1.74;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.94rem;
  line-height: 1;
  padding: var(--space-2) var(--space-3);
  min-height: 48px;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 2px 6px rgba(21, 89, 106, 0.08), 0 12px 26px rgba(21, 89, 106, 0.16);
}

.btn:hover,
.btn:focus-visible {
  background: var(--primary-deep);
  box-shadow: 0 4px 10px rgba(21, 89, 106, 0.1), 0 18px 34px rgba(21, 89, 106, 0.2);
}

.btn:focus-visible,
input:focus-visible,
textarea:focus-visible,
.menu-toggle:focus-visible,
.nav-links a:focus-visible {
  outline: 3px solid #9ed8d3;
  outline-offset: 2px;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary-deep);
  border: 1.5px solid var(--border);
  box-shadow: none;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.btn-accent {
  background: var(--accent);
  box-shadow: 0 2px 6px rgba(159, 71, 31, 0.1), 0 14px 30px rgba(159, 71, 31, 0.22);
}

.btn-accent:hover,
.btn-accent:focus-visible {
  background: var(--accent-deep);
  box-shadow: 0 4px 10px rgba(159, 71, 31, 0.12), 0 18px 36px rgba(159, 71, 31, 0.26);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 253, 250, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(17, 61, 76, 0.035), 0 8px 24px rgba(17, 61, 76, 0.04);
}

.navbar {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

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

.brand-logo {
  display: block;
  width: auto;
  height: 44px;
  object-fit: contain;
}

.menu-toggle {
  width: 2.9rem;
  height: 2.6rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  cursor: pointer;
}

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

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 88px;
  left: 0;
  right: 0;
  background: rgba(255, 253, 250, 0.98);
  border-bottom: 1px solid var(--border);
  display: none;
  flex-direction: column;
  padding: var(--space-2);
  gap: var(--space-2);
}

.nav-links.open {
  display: flex;
}

.nav-links a {
  font-weight: 600;
  color: var(--text);
  opacity: 0.9;
  transition: color 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--primary-deep);
  opacity: 1;
}

.btn-nav {
  width: fit-content;
  margin-top: var(--space-1);
  box-shadow: 0 2px 6px rgba(21, 89, 106, 0.08), 0 10px 22px rgba(21, 89, 106, 0.14);
}

.hero {
  position: relative;
  min-height: min(820px, calc(100vh - 88px));
  padding: calc(var(--space-6) + var(--space-2)) 0 var(--space-6);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #123946;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 78% 42%, rgba(75, 159, 150, 0.08), transparent 34%),
    linear-gradient(90deg, rgba(10, 36, 46, 0.96) 0%, rgba(10, 36, 46, 0.88) 38%, rgba(10, 36, 46, 0.42) 70%, rgba(10, 36, 46, 0.14) 100%),
    linear-gradient(180deg, rgba(10, 36, 46, 0.08), rgba(10, 36, 46, 0.38));
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  animation: heroImageIn 0.9s ease both;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
}

.about-grid,
.contact-grid {
  display: grid;
  gap: var(--space-5);
}

.hero-content {
  max-width: 760px;
  display: grid;
  gap: var(--space-3);
}

.hero-content > * {
  animation: heroContentIn 0.62s ease both;
}

.hero-content > *:nth-child(1) {
  animation-delay: 0.08s;
}

.hero-content > *:nth-child(2) {
  animation-delay: 0.16s;
}

.hero-content > *:nth-child(3) {
  animation-delay: 0.24s;
}

.hero-content > *:nth-child(4) {
  animation-delay: 0.32s;
}

.hero-content > *:nth-child(5) {
  animation-delay: 0.4s;
}

.hero .eyebrow,
.hero-content h1,
.hero .lead,
.hero-note {
  color: #ffffff;
}

.hero-content h1 {
  max-width: 12.5ch;
  font-size: clamp(3rem, 11vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.lead {
  max-width: 58ch;
  font-size: 1.12rem;
  line-height: 1.72;
}

.hero .lead {
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.hero-actions .btn {
  min-height: 56px;
  padding-inline: var(--space-4);
}

.hero .btn {
  background: #ffffff;
  color: var(--primary-deep);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12), 0 22px 50px rgba(0, 0, 0, 0.18);
}

.hero .btn:hover,
.hero .btn:focus-visible {
  background: #f6fbfa;
}

.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.hero .btn-secondary:hover,
.hero .btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.hero-cta-row {
  display: grid;
  gap: var(--space-2);
}

.hero-note {
  max-width: 28rem;
  font-size: var(--font-small);
  line-height: 1.55;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.76);
}

.hero-trust {
  margin-top: var(--space-1);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.hero-trust p {
  margin: 0;
  width: fit-content;
  padding: var(--space-1) var(--space-2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0;
  backdrop-filter: blur(10px);
}

.image-frame {
  display: block;
  margin: 0;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(221, 232, 229, 0.82);
  background: #eef6f5;
  box-shadow: var(--shadow);
  line-height: 0;
  transition: box-shadow 0.28s ease, transform 0.28s ease;
}

.image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.34s ease;
}

.ratio-wide {
  aspect-ratio: 16 / 9;
}

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

.ratio-square {
  aspect-ratio: 1 / 1;
}

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

.card-grid {
  display: grid;
  gap: var(--space-3);
}

.card {
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid rgba(220, 233, 232, 0.84);
  box-shadow: var(--shadow-soft);
  padding: var(--space-3);
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.card p {
  margin-top: var(--space-1);
}

.services {
  background: #ffffff;
}

.about,
.process,
.contact {
  background: linear-gradient(180deg, rgba(242, 248, 246, 0.62), rgba(255, 253, 250, 0.94));
}

.why-us,
.appointment {
  background: #fffdfa;
}

.service-card {
  min-height: 210px;
  display: grid;
  gap: var(--space-2);
  align-content: start;
  position: relative;
}

.service-card::before {
  content: "";
  width: 2.5rem;
  height: 3px;
  border-radius: 999px;
  background: var(--teal);
  opacity: 0.78;
}

.service-card .image-frame {
  border-radius: 14px;
}

.about-copy {
  display: grid;
  align-content: start;
  gap: var(--space-3);
}

.stats-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(220, 233, 232, 0.84);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.stats-card h3 {
  color: var(--primary-deep);
  font-size: 1.45rem;
  line-height: 1.1;
}

.stats-card > div {
  padding: var(--space-3);
  border-bottom: 1px solid rgba(220, 233, 232, 0.84);
}

.stats-card > div:last-child {
  border-bottom: 0;
}

.about-figure {
  min-height: 260px;
  align-self: stretch;
}

.process-layout {
  display: grid;
  gap: var(--space-5);
  align-items: stretch;
}

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-3);
}

.process-step {
  position: relative;
  padding-top: var(--space-2);
}

.step-number {
  display: inline-flex;
  width: 2.1rem;
  height: 2.1rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-weight: 700;
  font-size: 0.82rem;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.process-figure {
  max-width: none;
  width: 100%;
  justify-self: center;
}

.gallery {
  background: #ffffff;
}

.gallery-grid {
  grid-template-columns: 1fr;
  gap: var(--space-3);
  max-width: 900px;
  margin-inline: auto;
}

.gallery-grid .image-frame {
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.process-figure img {
  object-position: center 42%;
}

.gallery-grid .image-frame:nth-child(2) img,
.about-figure img {
  object-position: center 38%;
}

.testimonial-card {
  min-height: 220px;
}

.testimonial-card h3 {
  color: var(--primary-deep);
}

.testimonial-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.appointment-grid {
  display: grid;
  gap: var(--space-4);
}

.appointment-copy,
.appointment-form-card {
  border-radius: 28px;
  border: 1px solid rgba(220, 233, 232, 0.84);
  box-shadow: var(--shadow-soft);
}

.appointment-copy {
  padding: var(--space-5);
  background: linear-gradient(180deg, rgba(242, 248, 246, 0.72), rgba(255, 253, 250, 0.98));
  display: grid;
  align-content: start;
  gap: var(--space-3);
}

.appointment-copy h2 {
  max-width: 14ch;
  color: var(--text);
}

.appointment-lead {
  margin-top: var(--space-2);
  max-width: 44ch;
  color: var(--text-muted);
}

.appointment-benefits {
  margin-top: var(--space-4);
  display: grid;
  gap: var(--space-2);
}

.appointment-benefit {
  padding: var(--space-2);
  border-radius: 16px;
  border: 1px solid rgba(221, 232, 229, 0.84);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  box-shadow: 0 1px 2px rgba(17, 61, 76, 0.025);
}

.appointment-contact {
  margin-top: var(--space-4);
  display: grid;
  gap: var(--space-2);
}

.appointment-contact > div {
  display: grid;
  gap: var(--space-1);
  padding: var(--space-2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(221, 232, 229, 0.84);
}

.appointment-contact span {
  color: var(--primary-deep);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.appointment-contact a {
  color: var(--text);
  font-weight: 700;
}

.appointment-note {
  color: var(--text-muted);
}

.appointment-form-card {
  padding: var(--space-4);
  background: linear-gradient(180deg, #ffffff 0%, #fcfefe 100%);
  display: grid;
  align-items: start;
}

.appointment-form {
  display: grid;
  gap: var(--space-3);
}

.form-row {
  display: grid;
  gap: var(--space-3);
}

.field {
  display: grid;
  gap: var(--space-1);
}

.field label {
  color: var(--text);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d3e1de;
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  padding: var(--space-2);
  font: inherit;
  line-height: 1.45;
  box-shadow: 0 1px 2px rgba(17, 61, 76, 0.02);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #7a8d93;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(75, 159, 150, 0.5);
  box-shadow: 0 0 0 4px rgba(75, 159, 150, 0.12);
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--text-muted) 50%),
    linear-gradient(135deg, var(--text-muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.5rem;
}

.appointment-submit {
  width: 100%;
}

.whatsapp-btn {
  width: 100%;
  background: #25d366;
  color: #fff;
  border-color: transparent;
}

.whatsapp-btn:hover,
.whatsapp-btn:focus-visible {
  background: #1fb85a;
  color: #fff;
}

.appointment-actions {
  display: grid;
  gap: var(--space-2);
}

.appointment-submit:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-1);
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.45;
}

.consent-row input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.2rem;
  flex: 0 0 auto;
}

.form-status {
  min-height: 1.2rem;
  color: var(--primary-deep);
  font-size: 0.92rem;
  font-weight: 600;
}

.form-status[data-state="success"] {
  color: #16805e;
}

.form-status[data-state="error"] {
  color: #b14528;
}

.contact-details {
  margin: var(--space-3) 0 0;
  display: grid;
  gap: var(--space-2);
}

.contact-info {
  min-width: 0;
}

.contact-info > p {
  max-width: 58ch;
}

.contact-detail {
  padding: var(--space-3);
  border: 1px solid rgba(221, 232, 229, 0.86);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 1px 2px rgba(17, 61, 76, 0.025);
}

.contact-detail span {
  display: block;
  margin-bottom: var(--space-1);
  color: var(--primary-deep);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.contact-detail strong {
  display: block;
  color: var(--text);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-detail a {
  display: inline-block;
  color: var(--primary-deep);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.contact-detail p {
  margin-top: var(--space-1);
  font-size: 0.92rem;
  line-height: 1.55;
}

.hours-card {
  margin-top: var(--space-3);
  padding: var(--space-3);
  border: 1px solid rgba(221, 232, 229, 0.86);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.hours-card h3 {
  margin-bottom: var(--space-2);
  color: var(--primary-deep);
}

.hours-list {
  margin: 0;
  display: grid;
  gap: var(--space-1);
}

.hours-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: var(--space-2);
  padding-bottom: var(--space-1);
  border-bottom: 1px solid rgba(221, 232, 229, 0.72);
}

.hours-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hours-list dt {
  color: var(--text);
  font-weight: 700;
}

.hours-list dd {
  margin: 0;
  color: var(--text-muted);
  text-align: right;
  white-space: nowrap;
}

.contact-map-btn {
  margin-top: var(--space-3);
}

.map-card {
  min-height: clamp(300px, 76vw, 420px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(221, 232, 229, 0.86);
  border-radius: 22px;
  background: #eef6f5;
  box-shadow: var(--shadow);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(300px, 76vw, 420px);
  border: 0;
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageIn {
  from {
    opacity: 0;
    transform: scale(1.035);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

label {
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.35;
  color: var(--text);
}

input,
textarea {
  font: inherit;
  width: 100%;
  border: 1px solid #d3e1de;
  border-radius: 12px;
  padding: var(--space-2);
  color: var(--text);
  background: #fff;
  line-height: 1.45;
}

textarea {
  resize: vertical;
}

@media (max-width: 560px) {
  .container {
    width: min(100% - var(--space-3), var(--container));
  }

  .section {
    padding: var(--space-6) 0;
  }

  .hero {
    min-height: 760px;
    padding: var(--space-6) 0 var(--space-5);
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(10, 36, 46, 0.91) 0%, rgba(10, 36, 46, 0.82) 58%, rgba(10, 36, 46, 0.56) 100%);
  }

  .hero-media img {
    object-position: 56% center;
  }

  .hero-content h1 {
    max-width: 10.5ch;
  }

  .hero .lead {
    font-size: 1rem;
    line-height: 1.68;
  }

  .hero-actions,
  .hero-actions .btn,
  .contact-map-btn {
    width: 100%;
  }

  .hero-trust p {
    width: 100%;
  }

  .appointment-wrap {
    border-radius: 22px;
  }

  .brand-logo {
    height: 40px;
  }

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

@media (max-width: 380px) {
  .hours-list div {
    grid-template-columns: 1fr;
    gap: var(--space-1);
  }

  .hours-list dd {
    text-align: left;
  }
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #fffdfa;
}

.footer-content {
  min-height: 84px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-1);
  font-size: 0.92rem;
  line-height: 1.45;
}

.footer-content a {
  color: var(--primary-deep);
  font-weight: 700;
}

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

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

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

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

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

@media (hover: hover) and (pointer: fine) {
  .card:hover {
    border-color: rgba(75, 159, 150, 0.38);
    box-shadow: var(--shadow-lift);
    transform: translateY(-3px);
  }

  .image-frame:hover {
    box-shadow: var(--shadow-lift);
    transform: translateY(-2px);
  }

  .image-frame:hover img {
    transform: scale(1.03);
  }

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

@media (min-width: 680px) {
  :root {
    --font-h1: 3.2rem;
    --font-h2: 2.25rem;
    --font-h3: 1.18rem;
  }

  .section {
    padding: var(--space-6) 0;
  }

  .hero-content h1 {
    font-size: 3.45rem;
  }

  .hero-trust {
    max-width: 34rem;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }

  .appointment-grid {
    grid-template-columns: 1fr 1.05fr;
    align-items: stretch;
    gap: var(--space-5);
  }

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

  .appointment-copy {
    min-height: 100%;
  }

  .appointment-form-card {
    min-height: 100%;
  }

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

  .about-grid {
    align-items: stretch;
  }

  .about-copy {
    align-self: center;
  }

  .about-figure {
    align-self: stretch;
    height: 100%;
    min-height: 320px;
    aspect-ratio: auto;
  }

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

  .contact-info {
    align-self: center;
  }

  .map-card {
    height: 100%;
    min-height: 520px;
    aspect-ratio: auto;
  }

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

  .services-grid,
  .testimonial-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-3);
  }

  .process-layout {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
    gap: var(--space-5);
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: var(--space-3);
  }

  .process-step {
    min-height: 100%;
  }

  .process-figure {
    align-self: stretch;
    height: 100%;
    aspect-ratio: auto;
  }

  .appointment-wrap {
    grid-template-columns: 1fr auto;
    gap: var(--space-4);
  }

  .appointment-wrap .btn {
    justify-self: start;
  }

  .footer-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 980px) {
  :root {
    --font-h1: 3.55rem;
    --font-h2: 2.45rem;
    --font-h3: 1.22rem;
  }

  .menu-toggle {
    display: none;
  }

  .navbar {
    min-height: 92px;
  }

  .brand-logo {
    height: 56px;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: transparent;
    border: 0;
    padding: 0;
    gap: var(--space-2);
    margin-left: var(--space-4);
  }

  .nav-links li:last-child {
    margin-left: var(--space-1);
  }

  .btn-nav {
    margin: 0;
  }

  .hero {
    min-height: min(880px, calc(100vh - 92px));
  }

  .hero-media img {
    object-position: 74% center;
  }

  .hero-content h1 {
    font-size: 5rem;
  }

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

  .stats-card > div {
    border-right: 1px solid rgba(220, 233, 232, 0.92);
    border-bottom: 0;
  }

  .stats-card > div:last-child {
    border-right: 0;
  }

  .hero-cta-row {
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: var(--space-2);
  }

  .hero-note {
    text-align: left;
  }

  .hero-trust {
    max-width: none;
    gap: var(--space-1);
  }

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

  .appointment-grid {
    grid-template-columns: 0.98fr 1.02fr;
    gap: var(--space-6);
  }

  .appointment-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

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

  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }

  .appointment-wrap {
    grid-template-columns: 1fr auto;
  }

  .appointment-wrap .btn {
    grid-column: auto;
  }
}

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

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

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