/* ==========================================================================
   Go Smile Dental — Base Stylesheet
   RTL-friendly clinic design system
   ========================================================================== */

/* --------------------------------------------------------------------------
   Design tokens
   -------------------------------------------------------------------------- */
:root {
  --forest: #1f5d4e;
  --deep: #12302b;
  --mint: #e8f4ee;
  --mist: #f7fbf8;
  --gold: #b9782d;
  --ink: #18211f;
  --muted: #60706a;
  --line: rgba(31, 93, 78, 0.16);
  --white: #ffffff;
  --shadow: 0 12px 40px rgba(18, 33, 31, 0.1), 0 2px 8px rgba(18, 33, 31, 0.06);
  --shadow-sm: 0 4px 16px rgba(18, 33, 31, 0.08);
  --shadow-lg: 0 20px 60px rgba(18, 33, 31, 0.14);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-pill: 999px;
  --container: 1180px;
  --header-h: 72px;
  --strip-h: 38px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.22s var(--ease);
  --font-sans: "Segoe UI", Tahoma, "Noto Sans Arabic", "IBM Plex Sans Arabic", Arial, sans-serif;
  --font-display: "Segoe UI", Tahoma, "Noto Sans Arabic", Arial, sans-serif;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4.5rem;
  --cover-img: none;
  --logo-img: none;
}

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 16px;
  hanging-punctuation: first last;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--mist);
  overflow-x: clip;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

img,
picture,
video,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 var(--space-md);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.25;
  color: var(--deep);
  text-wrap: balance;
}

h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

p {
  margin: 0 0 var(--space-md);
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--forest);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color var(--transition), opacity var(--transition);
}

a:hover {
  color: var(--gold);
}

ul,
ol {
  margin: 0;
  padding: 0;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

::selection {
  background: var(--mint);
  color: var(--deep);
}

main {
  display: block;
}

/* --------------------------------------------------------------------------
   Skip link
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  inset-inline-start: var(--space-md);
  top: var(--space-md);
  z-index: 10000;
  padding: 0.65rem 1.1rem;
  background: var(--deep);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius);
  text-decoration: none;
  transform: translateY(-200%);
  transition: transform var(--transition);
  box-shadow: var(--shadow);
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  color: var(--white);
}

/* --------------------------------------------------------------------------
   Layout — container
   -------------------------------------------------------------------------- */
.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   Top strip
   -------------------------------------------------------------------------- */
.top-strip {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 600;
  border-block-end: 1px solid rgba(255, 255, 255, 0.08);
}

.top-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  min-height: var(--strip-h);
  padding-block: 0.35rem;
}

.top-strip span {
  opacity: 0.9;
}

.top-strip a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}

.top-strip a:hover,
.top-strip a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

/* --------------------------------------------------------------------------
   Site header (sticky)
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-block-end: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.is-scrolled,
body:not(.menu-open) .site-header {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  min-height: var(--header-h);
  padding-block: 0.65rem;
}

/* --------------------------------------------------------------------------
   Brand
   -------------------------------------------------------------------------- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
  min-width: 0;
}

.brand:hover {
  color: var(--ink);
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  object-fit: cover;
  border: 2px solid var(--mint);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.brand span {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.brand strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--deep);
  line-height: 1.2;
}

.brand small {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.3;
}

/* --------------------------------------------------------------------------
   Primary navigation
   -------------------------------------------------------------------------- */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  justify-content: center;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  background: var(--mint);
  color: var(--forest);
}

.primary-nav a[aria-current="page"] {
  background: var(--mint);
  color: var(--forest);
}

/* --------------------------------------------------------------------------
   Header actions
   -------------------------------------------------------------------------- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Nav toggle (hamburger)
   -------------------------------------------------------------------------- */
.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}

.nav-toggle:hover {
  background: var(--mint);
  border-color: var(--forest);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--deep);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), top var(--transition);
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-toggle.is-open span {
  background: transparent;
}

.nav-toggle.is-open span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.is-open span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 1.35rem;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(31, 93, 78, 0.28);
}

.btn:hover,
.btn:focus-visible {
  background: var(--deep);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(18, 48, 43, 0.32);
}

.btn.secondary {
  background: var(--white);
  color: var(--forest);
  border-color: var(--forest);
  box-shadow: none;
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  background: var(--mint);
  color: var(--deep);
  border-color: var(--deep);
}

.btn.ghost {
  background: transparent;
  color: var(--forest);
  border-color: var(--line);
  box-shadow: none;
  padding-inline: 1rem;
}

.btn.ghost:hover,
.btn.ghost:focus-visible {
  background: var(--mint);
  border-color: var(--forest);
  color: var(--deep);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(620px, 78svh);
  padding-block: var(--space-3xl);
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(18, 48, 43, 0.92) 0%,
      rgba(18, 48, 43, 0.68) 38%,
      rgba(18, 48, 43, 0.28) 72%,
      rgba(18, 48, 43, 0.14) 100%
    ),
    var(--cover-img) center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 85% 50%, rgba(185, 120, 45, 0.12), transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 80px;
  background: linear-gradient(to top, var(--mist), transparent);
  pointer-events: none;
}

.page-hero {
  min-height: min(520px, 60svh);
  padding-block: var(--space-2xl);
}

.page-hero h1 {
  font-size: clamp(1.6rem, 4vw, 3rem);
  color: var(--white);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.hero-content p {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 58ch;
  margin-bottom: var(--space-xl);
}

.eyebrow {
  display: inline-block;
  margin-bottom: var(--space-md);
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: var(--space-xl);
}

.hero .hero-actions .btn.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
}

.hero .hero-actions .btn.secondary:hover,
.hero .hero-actions .btn.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
  padding-block-start: var(--space-lg);
  border-block-start: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.proof-item strong {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
}

.proof-item span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.35;
}

/* --------------------------------------------------------------------------
   Intro band
   -------------------------------------------------------------------------- */
.intro-band {
  background: var(--white);
  border-block-end: 1px solid var(--line);
  padding-block: var(--space-xl);
  margin-block-start: -1px;
  position: relative;
  z-index: 3;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-md);
}

.intro-item {
  padding: var(--space-lg);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.intro-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(31, 93, 78, 0.28);
}

.intro-item b {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--forest);
  margin-bottom: 0.45rem;
}

.intro-item p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section {
  padding-block: var(--space-3xl);
  background: var(--mist);
}

.section.alt {
  background: var(--white);
}

.section.deep {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.9);
}

.section.deep h2,
.section.deep h3 {
  color: var(--white);
}

.section.deep .section-kicker {
  color: var(--gold);
}

.section.deep .lead,
.section.deep p {
  color: rgba(255, 255, 255, 0.82);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.section-heading > div {
  flex: 1 1 280px;
  min-width: 0;
}

.section-heading .lead {
  flex: 1 1 320px;
  max-width: 42ch;
  margin: 0;
  align-self: flex-end;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   Split layout
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-2xl);
  align-items: start;
}

.split.reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.split.reverse .media-frame {
  order: -1;
}

.split-copy {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.split-copy h2 {
  margin-bottom: var(--space-md);
}

.split-copy p {
  color: var(--muted);
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   Article grid & blocks
   -------------------------------------------------------------------------- */
.article-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.article-block {
  padding: var(--space-xl);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.section.alt .article-block {
  background: var(--mist);
}

.article-block:hover {
  box-shadow: var(--shadow);
  border-color: rgba(31, 93, 78, 0.24);
}

.article-block h2 {
  font-size: 1.15rem;
  color: var(--forest);
  margin-bottom: 0.65rem;
  padding-inline-start: 0.85rem;
  border-inline-start: 3px solid var(--gold);
}

.article-block p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.72;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Feature list
   -------------------------------------------------------------------------- */
.feature-list {
  list-style: none;
  margin-block-start: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.feature-list li {
  position: relative;
  padding-inline-start: 1.65rem;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.55;
}

.feature-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--forest);
  box-shadow: 0 0 0 3px var(--mint);
}

/* --------------------------------------------------------------------------
   Media frame
   -------------------------------------------------------------------------- */
.media-frame {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--white);
}

.media-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.media-frame:hover img {
  transform: scale(1.02);
}

.media-frame.wide img {
  aspect-ratio: 21 / 9;
}

.media-caption {
  padding: 0.85rem 1.1rem;
  font-size: 0.82rem;
  color: var(--muted);
  background: var(--white);
  border-block-start: 1px solid var(--line);
  text-align: center;
}

.sticky-side {
  position: sticky;
  top: calc(var(--header-h) + var(--strip-h) + 1rem);
  align-self: start;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
}

.faq-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.section.alt .faq-card {
  background: var(--mist);
}

.faq-card:hover {
  border-color: rgba(31, 93, 78, 0.28);
}

.faq-card[open] {
  box-shadow: var(--shadow);
  border-color: var(--forest);
}

.faq-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 1.1rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--deep);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background var(--transition), color var(--transition);
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--forest);
  background: var(--mint);
  border-radius: 50%;
  transition: transform var(--transition), background var(--transition);
}

.faq-card[open] summary {
  background: var(--mint);
  color: var(--forest);
}

.faq-card[open] summary::after {
  transform: rotate(45deg);
  background: var(--forest);
  color: var(--white);
}

.faq-card p {
  padding: 0 1.25rem 1.15rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  border-block-start: 1px solid var(--line);
  padding-block-start: 1rem;
}

/* --------------------------------------------------------------------------
   Hub section (layout only — hub-links styled in site.extra.css)
   -------------------------------------------------------------------------- */
.hub-section {
  scroll-margin-top: calc(var(--header-h) + var(--strip-h) + 1rem);
}

.hub-section.alt {
  background: var(--white);
}

.hub-section:nth-child(even) {
  background: var(--mist);
}

.internal-links-section {
  scroll-margin-top: calc(var(--header-h) + var(--strip-h));
}

/* --------------------------------------------------------------------------
   Contact section
   -------------------------------------------------------------------------- */
.contact-section {
  background:
    linear-gradient(180deg, rgba(232, 244, 238, 0.82), rgba(255, 255, 255, 0.92)),
    var(--logo-img) center / 440px auto no-repeat;
  border-block-start: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-h) + var(--strip-h));
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: stretch;
}

.contact-panel {
  padding: var(--space-2xl);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  margin-bottom: var(--space-md);
}

.contact-panel p {
  color: var(--muted);
  margin-bottom: var(--space-xl);
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.1rem;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.contact-list a:hover,
.contact-list a:focus-visible {
  background: var(--mint);
  border-color: var(--forest);
  color: var(--deep);
  transform: translateX(-3px);
}

.contact-list b {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-list a:last-child b {
  background: #25d366;
}

.map-like {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--space-md);
  padding: var(--space-2xl);
  min-height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(18, 48, 43, 0.2), rgba(18, 48, 43, 0.96)),
    var(--cover-img) center / cover no-repeat;
  box-shadow: var(--shadow-lg);
}

.map-like strong {
  font-size: 1.25rem;
  font-weight: 800;
}

.map-like p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  margin: 0;
  max-width: 36ch;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.78);
  padding-block: var(--space-2xl);
  border-block-start: 3px solid var(--forest);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.footer-brand span {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.35rem 0;
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   Floating actions
   -------------------------------------------------------------------------- */
.floating-actions {
  position: fixed;
  inset-inline-end: 1.25rem;
  bottom: 1.25rem;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.float-btn {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.float-btn:hover,
.float-btn:focus-visible {
  transform: scale(1.08);
  color: var(--white);
  background: var(--deep);
}

.float-btn.whatsapp {
  background: #25d366;
  animation: float-pulse 2.4s ease-in-out infinite;
}

.float-btn.whatsapp:hover,
.float-btn.whatsapp:focus-visible {
  background: #1da851;
}

@keyframes float-pulse {
  0%,
  100% {
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  }

  50% {
    box-shadow: 0 8px 36px rgba(37, 211, 102, 0.7);
  }
}

/* --------------------------------------------------------------------------
   Utility helpers
   -------------------------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center {
  text-align: center;
}

.visually-hidden {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   Responsive — max-width 1060px
   -------------------------------------------------------------------------- */
@media (max-width: 1060px) {
  :root {
    --header-h: 68px;
    --strip-h: 38px;
    --nav-offset: calc(var(--header-h) + var(--strip-h));
  }

  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 880;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.35rem;
    margin: 0;
    padding:
      calc(var(--nav-offset) + 0.75rem)
      var(--space-lg)
      calc(var(--space-2xl) + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.98);
    border-block-start: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateY(-105%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.32s var(--ease), opacity 0.32s var(--ease), visibility 0.32s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.menu-open .top-strip,
  body.menu-open .site-header {
    z-index: 900;
  }

  .primary-nav a {
    display: flex;
    align-items: center;
    padding: 0.95rem 1rem;
    font-size: 1rem;
    line-height: 1.4;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--white);
    white-space: normal;
  }

  .primary-nav a:hover,
  .primary-nav a:focus-visible {
    border-color: var(--forest);
    background: var(--mint);
  }

  .nav-toggle {
    display: inline-flex;
    z-index: 910;
  }

  .header-actions .btn.ghost {
    display: none;
  }

  .header-inner {
    position: relative;
    z-index: 910;
  }

  .intro-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .split.reverse {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .split.reverse .media-frame {
    order: 0;
  }

  .sticky-side {
    position: static;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-heading .lead {
    align-self: flex-start;
    max-width: none;
  }
}

/* --------------------------------------------------------------------------
   Responsive — max-width 720px
   -------------------------------------------------------------------------- */
@media (max-width: 720px) {
  :root {
    --header-h: 64px;
    --strip-h: 52px;
    --nav-offset: calc(var(--header-h) + var(--strip-h));
  }

  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .top-strip .container {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 0.55rem;
    gap: 0.25rem;
  }

  .top-strip {
    font-size: 0.76rem;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .hero {
    min-height: min(520px, 70svh);
    padding-block: var(--space-2xl);
  }

  .page-hero {
    min-height: min(440px, 55svh);
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .proof-item {
    flex-direction: row;
    align-items: center;
    gap: var(--space-md);
    padding: 0.75rem var(--space-md);
  }

  .proof-item strong {
    font-size: 1.15rem;
    min-width: 3.5rem;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .intro-item {
    padding: var(--space-md);
  }

  .section {
    padding-block: var(--space-2xl);
  }

  .article-block {
    padding: var(--space-lg);
  }

  .article-block h2 {
    font-size: 1.05rem;
  }

  .contact-panel,
  .map-like {
    padding: var(--space-xl);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-lg);
  }

  .floating-actions {
    inset-inline-end: 0.85rem;
    bottom: 0.85rem;
  }

  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  .btn {
    padding: 0.65rem 1.1rem;
    font-size: 0.88rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .media-frame.wide img {
    aspect-ratio: 16 / 9;
  }
}

/* --------------------------------------------------------------------------
   Responsive — max-width 460px
   -------------------------------------------------------------------------- */
@media (max-width: 460px) {
  html {
    font-size: 15px;
  }

  .header-inner {
    gap: 0.65rem;
    padding-block: 0.5rem;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .eyebrow {
    font-size: 0.7rem;
    padding: 0.3rem 0.7rem;
  }

  .section-heading {
    margin-bottom: var(--space-xl);
  }

  .faq-card summary {
    padding: 0.95rem 1rem;
    font-size: 0.88rem;
  }

  .faq-card p {
    padding: 0 1rem 1rem;
    font-size: 0.86rem;
  }

  .contact-list a {
    padding: 0.75rem 0.9rem;
    font-size: 0.88rem;
  }

  .contact-list b {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .map-like {
    min-height: 220px;
    padding: var(--space-lg);
  }

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .float-btn.whatsapp {
    animation: none;
  }

  .media-frame:hover img {
    transform: none;
  }

  .intro-item:hover,
  .btn:hover,
  .float-btn:hover {
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   Print
   -------------------------------------------------------------------------- */
@media print {
  .top-strip,
  .site-header,
  .floating-actions,
  .nav-toggle,
  .hero-actions,
  .skip-link {
    display: none !important;
  }

  body {
    background: white;
    color: black;
    font-size: 11pt;
  }

  .hero {
    min-height: auto;
    padding: 1rem 0;
    background: var(--deep) !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .section,
  .section.alt {
    padding-block: 1rem;
    background: white;
  }

  a {
    color: black;
    text-decoration: underline;
  }

  .article-block,
  .faq-card,
  .contact-panel {
    box-shadow: none;
    border: 1px solid #ccc;
    break-inside: avoid;
  }

  .faq-card[open] summary::after {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   High contrast mode support
   -------------------------------------------------------------------------- */
@media (prefers-contrast: more) {
  :root {
    --line: rgba(31, 93, 78, 0.35);
  }

  .btn,
  .faq-card,
  .article-block,
  .intro-item {
    border-width: 2px;
  }

  .primary-nav a:focus-visible,
  .btn:focus-visible {
    outline-width: 3px;
  }
}

/* --------------------------------------------------------------------------
   Dark color scheme preference (subtle header only)
   -------------------------------------------------------------------------- */
@media (prefers-color-scheme: dark) {
  .site-header {
    background: rgba(24, 33, 31, 0.96);
    border-block-end-color: rgba(255, 255, 255, 0.08);
  }

  .site-header .brand strong {
    color: var(--white);
  }

  .site-header .brand small,
  .site-header .primary-nav a {
    color: rgba(255, 255, 255, 0.85);
  }

  .site-header .primary-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
  }

  .nav-toggle {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
  }

  .nav-toggle span,
  .nav-toggle span::before,
  .nav-toggle span::after {
    background: var(--white);
  }
}

/* --------------------------------------------------------------------------
   Component polish — link cards in article context
   -------------------------------------------------------------------------- */
.article-block a,
.split-copy a:not(.btn),
.contact-panel a:not(.btn) {
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(31, 93, 78, 0.35);
}

.article-block a:hover,
.split-copy a:not(.btn):hover {
  text-decoration-color: var(--gold);
}

/* --------------------------------------------------------------------------
   Scroll margin for anchor targets
   -------------------------------------------------------------------------- */
[id] {
  scroll-margin-top: calc(var(--header-h) + var(--strip-h) + 0.75rem);
}

/* --------------------------------------------------------------------------
   Form elements (contact extensions)
   -------------------------------------------------------------------------- */
input,
textarea,
select {
  font: inherit;
  color: var(--ink);
}

input::placeholder,
textarea::placeholder {
  color: var(--muted);
  opacity: 0.8;
}

/* --------------------------------------------------------------------------
   Table support within article content
   -------------------------------------------------------------------------- */
.article-block table {
  width: 100%;
  border-collapse: collapse;
  margin-block: var(--space-md);
  font-size: 0.9rem;
}

.article-block th,
.article-block td {
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  text-align: start;
}

.article-block th {
  background: var(--mint);
  color: var(--deep);
  font-weight: 700;
}

.article-block tr:nth-child(even) td {
  background: rgba(247, 251, 248, 0.6);
}

/* --------------------------------------------------------------------------
   Blockquote within content
   -------------------------------------------------------------------------- */
.article-block blockquote,
.split-copy blockquote {
  margin: var(--space-md) 0;
  padding: var(--space-md) var(--space-lg);
  border-inline-start: 4px solid var(--gold);
  background: var(--mint);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--deep);
  font-style: italic;
}

/* --------------------------------------------------------------------------
   Code snippets in medical guides
   -------------------------------------------------------------------------- */
.article-block code,
.split-copy code {
  font-size: 0.88em;
  padding: 0.15em 0.4em;
  background: var(--mint);
  border-radius: 4px;
  color: var(--forest);
}

/* --------------------------------------------------------------------------
   Horizontal rule separator
   -------------------------------------------------------------------------- */
.section hr {
  border: none;
  height: 1px;
  background: var(--line);
  margin-block: var(--space-xl);
}

/* --------------------------------------------------------------------------
   Loading state for images
   -------------------------------------------------------------------------- */
.media-frame img[loading="lazy"] {
  background: linear-gradient(110deg, var(--mist) 30%, var(--mint) 50%, var(--mist) 70%);
  background-size: 200% 100%;
}

/* --------------------------------------------------------------------------
   End of base stylesheet
   -------------------------------------------------------------------------- */


/* Hub + inner page extras */
.page-hero { min-height: min(520px, 60svh); }
.page-hero h1 { font-size: clamp(1.6rem, 4vw, 3rem); }
.hub-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.hub-links.cols ul {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.hub-links a {
  display: block;
  padding: 12px 16px;
  color: var(--deep);
  font-weight: 700;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.hub-links a:hover,
.hub-links a:focus-visible {
  background: var(--mint);
  border-color: var(--forest);
  transform: translateX(-4px);
  outline: none;
}
.hub-section:nth-child(even) { background: var(--mist); }
.internal-links-section .hub-links a { font-size: 0.95rem; }
.sticky-side { position: sticky; top: 100px; align-self: start; }
.media-frame.wide img { aspect-ratio: 21 / 9; }
.article-block a,
.split-copy a {
  color: var(--forest);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-block a:hover,
.split-copy a:hover {
  color: var(--gold);
}
@media (max-width: 720px) {
  .sticky-side { position: static; }
}

/* Icons + header actions */
.icon { display: block; flex-shrink: 0; }
.icon-lg { width: 26px; height: 26px; }
.top-strip-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.icon-btn {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}
.icon-btn.phone {
  background: var(--forest);
  color: var(--white);
}
.icon-btn.phone:hover,
.icon-btn.phone:focus-visible {
  background: var(--deep);
  transform: scale(1.06);
}
.icon-btn.whatsapp {
  background: #25d366;
  color: var(--white);
}
.icon-btn.whatsapp:hover,
.icon-btn.whatsapp:focus-visible {
  background: #1da851;
  transform: scale(1.06);
}
.btn-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-with-icon .icon { width: 18px; height: 18px; }
.float-btn .icon { width: 26px; height: 26px; }
.float-btn.phone { background: var(--forest); }
.float-btn.phone:hover,
.float-btn.phone:focus-visible { background: var(--deep); }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.cta-actions .btn {
  background: var(--forest);
  color: var(--white);
}
.cta-actions .btn:hover,
.cta-actions .btn:focus-visible {
  background: var(--deep);
  color: var(--white);
}
.btn.btn-whatsapp,
.cta-actions .btn.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}
.btn.btn-whatsapp:hover,
.btn.btn-whatsapp:focus-visible,
.cta-actions .btn.btn-whatsapp:hover,
.cta-actions .btn.btn-whatsapp:focus-visible {
  background: #1da851;
  color: var(--white);
  border-color: #1da851;
}
.split-copy a.btn,
.cta-actions a.btn {
  text-decoration: none;
}
.contact-list b {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--forest);
  font-weight: normal;
}
.contact-list li:first-child b { background: var(--forest); color: var(--white); }
.contact-list li:last-child b { background: #25d366; color: var(--white); }

/* Homepage sections */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.service-card h3 { margin: 0 0 0.75rem; color: var(--deep); }
.service-card p { margin: 0 0 1rem; color: var(--muted); line-height: 1.7; }
.service-card a {
  color: var(--forest);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  counter-reset: step;
}
.process-steps li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  position: relative;
}
.process-steps li strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--forest);
}
.process-steps li p { margin: 0; color: var(--muted); font-size: 0.95rem; line-height: 1.6; }
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.featured-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: border-color 0.2s, transform 0.2s;
}
.featured-card:hover { border-color: var(--forest); transform: translateY(-2px); }
.featured-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--forest);
  background: var(--mint);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}
.featured-card h3 { margin: 0; font-size: 1rem; line-height: 1.5; }
.featured-card a { color: var(--deep); text-decoration: none; }
.featured-card a:hover { color: var(--forest); }

/* Footer layout */
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2rem;
}
.footer-about p {
  margin: 0.75rem 0 1.25rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  max-width: 32ch;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white);
}
.footer-brand strong {
  font-size: 1.05rem;
  font-weight: 800;
}
.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.15);
}
.footer-heading {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
}
.footer-nav,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.footer-nav a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--gold);
}
.footer-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}
.footer-btn.phone {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-btn.phone:hover,
.footer-btn.phone:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}
.footer-btn.whatsapp {
  background: #25d366;
  color: var(--white);
}
.footer-btn.whatsapp:hover,
.footer-btn.whatsapp:focus-visible {
  background: #1da851;
  transform: translateY(-1px);
}
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.5rem 0;
  transition: color 0.2s;
}
.footer-contact a:hover,
.footer-contact a:focus-visible { color: var(--gold); }
.footer-contact-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}
.footer-contact-icon.phone { background: rgba(255, 255, 255, 0.12); color: var(--white); }
.footer-contact-icon.whatsapp { background: #25d366; color: var(--white); }
.footer-contact b {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}
.footer-contact small {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 960px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
