:root {
  --navy-950: #061c2d;
  --navy-900: #0c2b3d;
  --navy-800: #12324b;
  --teal-700: #0d8f8b;
  --teal-600: #1ea7a1;
  --green-500: #1b9d7a;
  --green-100: #e6f7f2;
  --accent-500: #f7b267;
  --warm-100: #fff5ec;
  --slate-100: #f3f7fb;
  --slate-200: #e8edf4;
  --slate-300: #ccd8e4;
  --slate-500: #64748b;
  --slate-700: #33506c;
  --white: #ffffff;
  --shadow-soft: 0 22px 54px rgba(9, 26, 40, 0.09);
  --shadow-card: 0 14px 36px rgba(25, 49, 68, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: linear-gradient(180deg, #f8fbfd 0%, #f3f8fb 100%);
  color: var(--navy-900);
  line-height: 1.6;
}

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

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

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

p {
  margin: 0 0 1rem;
  color: var(--slate-700);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.section {
  padding: 88px 0;
}

.section-sm {
  padding: 64px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal-700);
  background: rgba(21, 167, 161, 0.1);
  border: 1px solid rgba(21, 167, 161, 0.18);
  padding: 0.7rem 1rem;
  border-radius: 999px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 36px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  color: var(--navy-950);
}

.section-head p {
  max-width: 620px;
  margin: 0;
  color: var(--slate-500);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 24px;
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  font-weight: 700;
  font-size: 0.96rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--teal-600), var(--navy-800));
  color: var(--white);
  box-shadow: 0 16px 30px rgba(13, 143, 139, 0.22);
}

.btn-secondary {
  background: rgba(255,255,255, 0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--navy-900);
  box-shadow: var(--shadow-card);
}

.btn-ghost {
  background: #edf9f7;
  color: var(--teal-700);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(17, 35, 52, 0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--navy-950);
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, var(--navy-900), var(--teal-600));
  box-shadow: 0 12px 28px rgba(13, 143, 139, 0.18);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text small {
  font-size: 0.63rem;
  font-weight: 700;
  color: var(--slate-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-link {
  position: relative;
  padding: 0.8rem 0.8rem;
  font-size: 0.96rem;
  color: var(--slate-700);
  font-weight: 600;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.25rem;
  height: 2px;
  background: var(--teal-600);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--slate-200);
  background: var(--white);
  color: var(--navy-900);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 58px;
  background:
    radial-gradient(circle at top right, rgba(30, 167, 161, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(7, 28, 45, 0.98), rgba(13, 84, 92, 0.96));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?...') center/cover no-repeat;
  opacity: 0.14;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.hero-copy h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.hero-copy p {
  max-width: 640px;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
}

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

.hero-badges {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 520px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

.check-item::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.hero-card {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 18px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
}

.doctor-visual {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.08));
}

.doctor-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.glass-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: rgba(9, 27, 36, 0.7);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 14px;
  backdrop-filter: blur(8px);
}

.glass-badge strong {
  display: block;
  font-size: 1.2rem;
}

.feature-strip {
  background: var(--navy-900);
  color: var(--white);
  padding: 18px 0;
}

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

.feature-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 8px;
  color: rgba(255,255,255,0.8);
}

.feature-box .icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(21,167,161,0.16);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--white);
}

.card {
  background: var(--white);
  border: 1px solid rgba(17, 35, 52, 0.06);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(11, 34, 49, 0.12);
}

.icon-box {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(13, 143, 139, 0.12), rgba(12, 43, 61, 0.08));
  color: var(--teal-700);
  margin-bottom: 18px;
}

.card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  color: var(--navy-950);
}

.card p {
  margin-bottom: 16px;
}

.meta-list {
  display: grid;
  gap: 10px;
  color: var(--slate-700);
  margin: 18px 0 18px;
}

.meta-list li {
  position: relative;
  padding-left: 18px;
}

.meta-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--teal-700);
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-700);
  font-weight: 700;
}

.doctor-brief {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: center;
}

.doctor-photo {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.doctor-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.doctor-copy {
  padding: 8px 0;
}

.doctor-copy h3 {
  margin: 10px 0 8px;
  font-size: clamp(1.8rem, 2.2vw, 2.5rem);
  color: var(--navy-950);
}

.cred-pill {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(30, 167, 161, 0.08);
  color: var(--teal-700);
  font-weight: 700;
  margin-bottom: 12px;
}

.condition-grid,
.service-grid,
.treatment-grid,
.pediatric-grid {
  display: grid;
  gap: 24px;
}

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

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

.condition-card {
  background: var(--white);
  border: 1px solid rgba(17, 35, 52, 0.06);
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease;
}

.condition-card:hover {
  transform: translateY(-4px);
}

.condition-card h3 {
  margin: 0 0 8px;
  font-size: 1.22rem;
}

.condition-card .tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(13, 143, 139, 0.08);
  color: var(--teal-700);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ribbons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.ribbon {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy-800);
  background: #f4f7fa;
}

.site-banner {
  padding: 18px 0 0;
}

.banner-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, var(--navy-900), #0e456a);
  color: var(--white);
  border-radius: 24px;
  padding: 24px 28px;
  box-shadow: var(--shadow-soft);
}

.banner-box h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
}

.banner-box p {
  margin: 8px 0 0;
  color: rgba(255,255,255,0.76);
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.stat-box {
  background: var(--white);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: var(--shadow-card);
}

.stat-box strong {
  display: block;
  font-size: 2rem;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.stat-box span {
  color: var(--slate-500);
}

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

.step {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  padding: 30px 24px;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal-600), var(--navy-800));
  color: var(--white);
  font-weight: 800;
  margin-bottom: 18px;
}

.step h3 {
  margin: 0 0 10px;
}

.info-box {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.info-panel,
.contact-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(17,35,52,0.06);
  box-shadow: var(--shadow-card);
}

.info-list {
  display: grid;
  gap: 18px;
}

.info-row {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
}

.info-row .icon-box {
  width: 38px;
  height: 38px;
  margin: 0;
  font-size: 1.1rem;
}

.info-row h4 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.map-frame {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
}

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

.faq-item {
  background: var(--white);
  border: 1px solid rgba(17,35,52,0.06);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 24px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--navy-900);
  font-size: 1.03rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  padding: 0 22px 22px;
  color: var(--slate-700);
}

.faq-item.active .faq-answer {
  max-height: 240px;
}

.faq-question .icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(13,143,139,0.12);
  color: var(--teal-700);
  font-size: 1.2rem;
}

.cta-panel {
  background: linear-gradient(135deg, var(--navy-900), rgba(15, 92, 100, 0.95));
  border-radius: 28px;
  padding: clamp(24px, 4vw, 50px);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-soft);
}

.cta-panel h3 {
  margin: 0 0 6px;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.cta-panel p {
  margin: 0;
  color: rgba(255,255,255,0.75);
}

.cta-panel .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  background: #061d2d;
  color: rgba(255,255,255,0.82);
  padding: 72px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 28px;
}

.footer-brand p,
.footer-links a,
.footer-contact a,
.footer-contact p {
  color: rgba(255,255,255,0.8);
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
}

.footer-title {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
}

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

.floating-whatsapp,
.back-to-top {
  position: fixed;
  right: 22px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  z-index: 999;
  box-shadow: 0 18px 38px rgba(29, 135, 101, 0.2);
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(135deg, #25d366, #1ab866);
}

.floating-whatsapp { bottom: 110px; }

.back-to-top {
  bottom: 30px;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(135deg, var(--navy-900), var(--teal-600));
  transition: opacity 0.2s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.mobile-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(6, 28, 45, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.82rem;
}

.mobile-cta.call { background: rgba(14, 104, 110, 0.26); }
.mobile-cta.whatsapp { background: rgba(37,211,102,0.12); }
.mobile-cta.book { background: rgba(255,255,255,0.08); }

.breadcrumbs {
  margin: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.96rem;
  color: var(--slate-500);
}

.breadcrumbs a {
  color: var(--teal-700);
  font-weight: 600;
}

.page-hero {
  padding: 58px 0 32px;
}

.page-hero-inner {
  padding: 28px 0;
}

.page-hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--navy-950);
}

.page-hero p {
  max-width: 700px;
  font-size: 1.08rem;
  color: var(--slate-500);
}

.form-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.form-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(17,35,52,0.05);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy-900);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--slate-200);
  background: #fbfdff;
  color: var(--navy-900);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(13,143,139,0.6);
  box-shadow: 0 0 0 3px rgba(13,143,139,0.12);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-status {
  margin-top: 18px;
  display: none;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  font-weight: 600;
}

.form-status.success {
  display: block;
  background: rgba(26, 170, 106, 0.1);
  border: 1px solid rgba(26,170,106,0.2);
  color: #145a3a;
}

.form-status.error {
  display: block;
  background: rgba(214, 59, 59, 0.08);
  border: 1px solid rgba(214,59,59,0.18);
  color: #b22727;
}

.contact-card {
  background: linear-gradient(180deg, #f7fafb, #eef7f6);
  border: 1px solid rgba(17,35,52,0.04);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.contact-card h3 {
  margin: 0 0 18px;
}

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

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-item .icon-box {
  width: 42px;
  height: 42px;
  margin: 0;
}

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

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

@media (max-width: 980px) {
  .hero-inner,
  .doctor-brief,
  .form-shell,
  .info-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-strip-inner,
  .service-grid,
  .treatment-grid,
  .pediatric-grid,
  .condition-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(17,35,52,0.08);
    box-shadow: var(--shadow-card);
    border-radius: 18px;
    padding: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

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

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero-copy h1 {
    max-width: 560px;
  }
}

@media (max-width: 700px) {
  .section,
  .section-sm {
    padding: 68px 0;
  }

  .section-head {
    display: block;
    margin-bottom: 26px;
  }

  .feature-strip-inner,
  .grid-2,
  .grid-3,
  .grid-4,
  .condition-grid,
  .service-grid,
  .treatment-grid,
  .pediatric-grid,
  .steps,
  .mini-stats,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-actions,
  .cta-panel .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-badges {
    grid-template-columns: 1fr;
  }

  .banner-box,
  .cta-panel {
    display: block;
  }

  .mobile-cta-bar {
    display: grid;
  }

  body {
    padding-bottom: 84px;
  }

  .floating-whatsapp {
    bottom: 96px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

:focus-visible {
  outline: 3px solid rgba(13,143,139,0.28);
  outline-offset: 2px;
}
