/* ═══════════════════════════════════════════════════════════
   Dr. Mohamad Reza Eskandari — eskandari.info
   Sophisticated clinical brand system
   ═══════════════════════════════════════════════════════════ */
:root {
  --ink: #0a1628;
  --ink-soft: #1a2b42;
  --navy: #0c2340;
  --navy-mid: #153556;
  --teal: #0d7377;
  --teal-light: #14919b;
  --gold: #c4a35a;
  --gold-light: #e0c77a;
  --cream: #f7f4ef;
  --cream-dark: #ebe6dc;
  --paper: #fffcf7;
  --muted: #5c6b7a;
  --line: rgba(12, 35, 64, 0.1);
  --line-strong: rgba(12, 35, 64, 0.16);
  --white: #ffffff;
  --success: #0d6b4c;
  --error: #b42318;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --shadow: 0 8px 30px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 24px 60px rgba(10, 22, 40, 0.14);
  --shadow-glow: 0 0 0 1px rgba(196, 163, 90, 0.25), 0 20px 50px rgba(13, 115, 119, 0.12);
  --font: "DM Sans", "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-fa: "Vazirmatn", "Tahoma", sans-serif;
  --header-h: 76px;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.lang-fa { font-family: var(--font-fa), var(--font); }
body.lang-fa .font-display,
body.lang-fa h1, body.lang-fa h2, body.lang-fa h3 { font-family: var(--font-fa), var(--font-display); }
body.lang-fa, html[dir="rtl"] { direction: rtl; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--navy); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}
p { margin: 0 0 1rem; color: var(--muted); }
.container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* ── Staging banner ── */
.staging-banner {
  background: linear-gradient(90deg, var(--navy), var(--teal));
  color: rgba(255,255,255,0.88);
  text-align: center;
  font-size: 0.78rem;
  padding: 0.45rem 1rem;
  letter-spacing: 0.02em;
  z-index: 120;
  position: relative;
}
.staging-banner strong { color: var(--gold-light); }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(247, 244, 239, 0.88);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease), background 0.3s;
}
.site-header.scrolled {
  background: rgba(255, 252, 247, 0.95);
  box-shadow: 0 8px 30px rgba(10, 22, 40, 0.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 1rem;
}
.brand {
  display: flex; align-items: center; gap: 0.75rem;
  color: var(--navy); font-weight: 700; text-decoration: none;
}
.brand:hover { color: var(--teal); }
.brand-mark {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(145deg, var(--navy) 0%, var(--teal) 100%);
  color: #fff; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  box-shadow: 0 4px 14px rgba(12, 35, 64, 0.25);
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text span { font-size: 1.02rem; }
.brand-text small {
  font-weight: 500; color: var(--muted); font-size: 0.7rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  font-family: var(--font);
}

.nav-desktop { display: none; align-items: center; gap: 0.15rem; }
.nav-desktop a {
  color: var(--muted); font-weight: 500; font-size: 0.9rem;
  padding: 0.5rem 0.8rem; border-radius: 999px; text-decoration: none;
  transition: all 0.2s var(--ease);
}
.nav-desktop a:hover, .nav-desktop a.active {
  color: var(--navy); background: rgba(13, 115, 119, 0.08);
}

.header-actions { display: flex; align-items: center; gap: 0.55rem; }
.lang-switch {
  display: flex; background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 999px; padding: 3px; gap: 2px;
}
.lang-switch button {
  border: 0; background: transparent; cursor: pointer;
  font-size: 0.72rem; font-weight: 700; color: var(--muted);
  padding: 0.4rem 0.6rem; border-radius: 999px;
  font-family: inherit; transition: all 0.2s var(--ease);
}
.lang-switch button.active {
  background: var(--navy); color: #fff;
  box-shadow: 0 2px 8px rgba(12, 35, 64, 0.25);
}
.lang-switch button:hover:not(.active) { color: var(--navy); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  font-weight: 600; font-size: 0.9rem; border-radius: 999px;
  padding: 0.72rem 1.35rem; border: 0; cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s;
  text-decoration: none; font-family: inherit; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff; box-shadow: 0 8px 20px rgba(12, 35, 64, 0.22);
}
.btn-primary:hover { color: #fff; box-shadow: 0 12px 28px rgba(12, 35, 64, 0.3); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #d4b56a 100%);
  color: var(--navy); box-shadow: 0 8px 20px rgba(196, 163, 90, 0.3);
}
.btn-gold:hover { color: var(--navy); }
.btn-outline {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--line-strong);
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); background: rgba(13,115,119,0.04); }
.btn-ghost { background: rgba(255,255,255,0.12); color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-ghost:hover { background: rgba(255,255,255,0.2); color: #fff; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.82rem; }
.btn-book-desktop { display: none; }

.menu-toggle {
  width: 42px; height: 42px; border: 1px solid var(--line-strong);
  border-radius: 10px; background: var(--paper); cursor: pointer;
  display: grid; place-items: center; gap: 5px; padding: 0;
}
.menu-toggle span {
  display: block; width: 18px; height: 2px; background: var(--navy);
  border-radius: 2px; transition: 0.25s var(--ease);
}
.nav-mobile {
  display: none; flex-direction: column; gap: 0.25rem;
  padding: 1rem 1.25rem 1.5rem;
  background: var(--paper); border-bottom: 1px solid var(--line);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 0.85rem 1rem; border-radius: 12px; color: var(--ink);
  font-weight: 500; text-decoration: none;
}
.nav-mobile a:hover { background: var(--cream-dark); }
.nav-mobile .btn { margin-top: 0.5rem; }

/* ── Hero ── */
.hero {
  position: relative;
  padding: 3.5rem 0 4.5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(13, 115, 119, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(196, 163, 90, 0.1), transparent 50%),
    linear-gradient(165deg, #0a1628 0%, #0c2340 45%, #0d3a4a 100%);
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, #000 20%, transparent 75%);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; gap: 2.5rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold-light);
  background: rgba(196, 163, 90, 0.12);
  border: 1px solid rgba(196, 163, 90, 0.35);
  padding: 0.4rem 0.9rem; border-radius: 999px; margin-bottom: 1.25rem;
}
.hero-badge::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 8px var(--gold);
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: #fff; margin-bottom: 1rem; font-weight: 600;
}
.hero h1 em {
  font-style: italic; color: var(--gold-light);
  font-weight: 500;
}
.hero-lead {
  font-size: 1.08rem; color: rgba(255,255,255,0.78);
  max-width: 36rem; margin-bottom: 1.75rem; line-height: 1.7;
}
.hero-pills {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.75rem;
}
.hero-pills span {
  font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  padding: 0.4rem 0.75rem; border-radius: 999px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.1);
  aspect-ratio: 4/5; max-height: 520px;
  background: var(--navy-mid);
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
}
.hero-visual-frame {
  position: absolute; inset: 0;
  border: 1px solid rgba(196, 163, 90, 0.35);
  border-radius: var(--radius-xl);
  pointer-events: none;
  margin: 10px;
}
.hero-stats {
  position: absolute; bottom: 1.25rem; left: 1.25rem; right: 1.25rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem;
  background: rgba(10, 22, 40, 0.75); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 0.9rem 0.6rem;
}
.hero-stats div { text-align: center; }
.hero-stats strong {
  display: block; font-family: var(--font-display);
  font-size: 1.45rem; color: var(--gold-light); font-weight: 600;
}
.hero-stats span { font-size: 0.68rem; color: rgba(255,255,255,0.65); letter-spacing: 0.02em; }

/* ── Sections ── */
.section { padding: 4.5rem 0; }
.section-alt {
  background: var(--paper);
  border-block: 1px solid var(--line);
}
.section-dark {
  background: linear-gradient(160deg, var(--navy) 0%, #0a2a3d 100%);
  color: #fff;
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.72); }
.section-head {
  max-width: 40rem; margin-bottom: 2.5rem;
}
.section-head.center { text-align: center; margin-inline: auto; }
.section-eyebrow {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 0.65rem;
}
.section-dark .section-eyebrow { color: var(--gold-light); }
.section-head h2 { font-size: clamp(1.85rem, 3.5vw, 2.5rem); margin-bottom: 0.65rem; }
.section-head p { font-size: 1.05rem; margin: 0; }

/* Reveal animation */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── About ── */
.about-grid {
  display: grid; gap: 2.5rem; align-items: start;
}
.about-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.about-card h3 {
  font-size: 1.15rem; margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.about-card h3::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 1rem; }
.chip {
  font-size: 0.78rem; font-weight: 600; color: var(--navy);
  background: rgba(13, 115, 119, 0.08);
  border: 1px solid rgba(13, 115, 119, 0.15);
  padding: 0.35rem 0.75rem; border-radius: 999px;
}
.stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin-top: 1.5rem;
}
.stat-box {
  text-align: center; padding: 1.1rem 0.5rem;
  background: linear-gradient(160deg, var(--cream) 0%, var(--paper) 100%);
  border: 1px solid var(--line); border-radius: var(--radius);
}
.stat-box strong {
  display: block; font-family: var(--font-display);
  font-size: 1.85rem; color: var(--navy); font-weight: 600;
}
.stat-box span { font-size: 0.78rem; color: var(--muted); }

/* ── Services ── */
.services-grid {
  display: grid; gap: 1.15rem;
  grid-template-columns: 1fr;
}
.service-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem 1.5rem 1.6rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
  overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--teal), var(--gold));
  opacity: 0.7;
}
html[dir="rtl"] .service-card::before { left: auto; right: 0; }
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(13, 115, 119, 0.25);
}
.service-card .icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(13,115,119,0.12), rgba(196,163,90,0.15));
  display: grid; place-items: center; margin-bottom: 0.9rem;
  font-size: 1.15rem;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.45rem; }
.service-card p { font-size: 0.95rem; margin: 0; }

/* ── Credentials ── */
.cred-grid {
  display: grid; gap: 0.85rem;
  grid-template-columns: 1fr;
}
.cred-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  transition: background 0.25s;
}
.cred-item:hover { background: rgba(255,255,255,0.07); }
.cred-item .mark {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), #a8863a);
  color: var(--navy); display: grid; place-items: center;
  font-weight: 800; font-size: 0.75rem;
}
.cred-item h3 { font-size: 1.05rem; margin: 0 0 0.2rem; color: #fff; font-family: var(--font); font-weight: 600; }
.cred-item p { margin: 0; font-size: 0.88rem; color: rgba(255,255,255,0.6); }

/* ── Blog ── */
.blog-grid {
  display: grid; gap: 1.35rem;
  grid-template-columns: 1fr;
}
.blog-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  display: flex; flex-direction: column;
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.blog-card > a:first-child {
  display: block; overflow: hidden; aspect-ratio: 16/10;
  background: var(--cream-dark);
}
.blog-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.blog-card:hover img { transform: scale(1.05); }
.blog-card-body { padding: 1.25rem 1.35rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta {
  display: flex; flex-wrap: wrap; gap: 0.5rem 0.85rem;
  font-size: 0.78rem; color: var(--muted); margin-bottom: 0.65rem;
  align-items: center;
}
.blog-meta .cat {
  font-weight: 700; color: var(--teal);
  background: rgba(13, 115, 119, 0.08);
  padding: 0.2rem 0.55rem; border-radius: 999px;
}
.blog-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.blog-card h3 a { color: var(--navy); text-decoration: none; }
.blog-card h3 a:hover { color: var(--teal); }
.blog-card-body > p { font-size: 0.92rem; flex: 1; margin-bottom: 0.85rem; }
.read-more {
  font-weight: 700; font-size: 0.88rem; color: var(--teal);
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.read-more::after { content: "→"; transition: transform 0.2s; }
html[dir="rtl"] .read-more::after { content: "←"; }
.blog-card:hover .read-more::after { transform: translateX(4px); }
html[dir="rtl"] .blog-card:hover .read-more::after { transform: translateX(-4px); }

.blog-toolbar {
  display: flex; flex-wrap: wrap; gap: 0.65rem; align-items: center;
  justify-content: space-between; margin-bottom: 1.75rem;
}
.blog-filters { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.blog-filters button {
  border: 1px solid var(--line-strong); background: var(--paper);
  border-radius: 999px; padding: 0.4rem 0.85rem; font-size: 0.8rem;
  font-weight: 600; color: var(--muted); cursor: pointer; font-family: inherit;
  transition: all 0.2s;
}
.blog-filters button.active, .blog-filters button:hover {
  background: var(--navy); color: #fff; border-color: var(--navy);
}
.blog-search {
  flex: 1; min-width: 180px; max-width: 280px;
  padding: 0.55rem 1rem; border-radius: 999px;
  border: 1px solid var(--line-strong); background: var(--paper);
  font: inherit; color: var(--ink);
}
.blog-search:focus { outline: 2px solid rgba(13,115,119,0.35); border-color: var(--teal); }

.page-header {
  background: linear-gradient(160deg, var(--navy) 0%, #0d3a4a 100%);
  color: #fff; padding: 3.5rem 0 3rem;
}
.page-header h1 { color: #fff; font-size: clamp(2rem, 4vw, 2.75rem); }
.page-header p { color: rgba(255,255,255,0.75); margin: 0; max-width: 36rem; }
.blog-count { color: rgba(255,255,255,0.55) !important; font-size: 0.9rem; margin-top: 0.5rem !important; }

/* Article */
.blog-hero {
  background: linear-gradient(160deg, var(--navy) 0%, #0d3a4a 100%);
  color: #fff; padding: 2.5rem 0 2.75rem;
}
.blog-hero h1 { color: #fff; font-size: clamp(1.75rem, 3.5vw, 2.5rem); max-width: 48rem; }
.blog-hero p { color: rgba(255,255,255,0.75); max-width: 42rem; margin: 0; }
.blog-hero .blog-meta { color: rgba(255,255,255,0.6); }
.blog-hero .cat {
  color: var(--navy); background: var(--gold-light);
}
.back-link {
  display: inline-flex; color: rgba(255,255,255,0.7); font-size: 0.88rem;
  font-weight: 600; margin-bottom: 1.25rem; text-decoration: none;
}
.back-link:hover { color: var(--gold-light); }
.article-wrap { max-width: 760px; margin: -2rem auto 0; padding: 0 1.25rem 4rem; position: relative; z-index: 2; }
.article-featured {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); margin-bottom: 2rem;
  border: 1px solid var(--line);
}
.article-featured img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.article-body {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
}
.article-body h1, .article-body h2, .article-body h3 {
  margin-top: 1.75rem; color: var(--navy);
}
.article-body h1:first-child, .article-body h2:first-child { margin-top: 0; }
.article-body p, .article-body li { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.75; }
.article-body ul, .article-body ol { padding-inline-start: 1.35rem; margin: 0 0 1.25rem; }
.article-body li { margin-bottom: 0.4rem; }
.article-body a { color: var(--teal); font-weight: 600; }
.article-body hr { border: 0; border-top: 1px solid var(--line); margin: 1.75rem 0; }
.article-cta {
  margin-top: 1.5rem; padding: 1.75rem;
  background: linear-gradient(135deg, rgba(13,115,119,0.08), rgba(196,163,90,0.1));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  text-align: center;
}
.article-cta p { color: var(--navy); font-size: 1.05rem; margin-bottom: 1rem; }

/* ── Contact ── */
.contact-grid {
  display: grid; gap: 2rem;
}
.contact-form {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.75rem;
  box-shadow: var(--shadow);
}
.form-row { display: grid; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block; font-weight: 600; font-size: 0.88rem;
  color: var(--navy); margin-bottom: 0.35rem;
}
.form-group input, .form-group textarea {
  width: 100%; padding: 0.7rem 0.9rem;
  border: 1px solid var(--line-strong); border-radius: 10px;
  font: inherit; background: var(--cream); color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 115, 119, 0.15);
  background: #fff;
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-check {
  display: flex; gap: 0.55rem; align-items: flex-start;
  font-size: 0.88rem; color: var(--muted); margin-bottom: 1.15rem;
}
.form-check input { margin-top: 0.25rem; }
.form-status {
  display: none; padding: 0.75rem 1rem; border-radius: 10px;
  font-size: 0.9rem; margin-bottom: 1rem;
}
.form-status.ok { display: block; background: #e8f6ef; color: var(--success); border: 1px solid #b8e0cb; }
.form-status.err { display: block; background: #fdecea; color: var(--error); border: 1px solid #f0c4bf; }

.contact-aside {
  display: flex; flex-direction: column; gap: 1rem;
}
.info-card {
  background: var(--navy); color: #fff;
  border-radius: var(--radius-lg); padding: 1.5rem;
}
.info-card h3 { color: var(--gold-light); font-size: 1.1rem; margin-bottom: 1rem; }
.info-card a { color: #fff; }
.info-card a:hover { color: var(--gold-light); }
.info-line {
  display: flex; gap: 0.75rem; margin-bottom: 0.85rem;
  font-size: 0.95rem; color: rgba(255,255,255,0.85);
}
.info-line strong { display: block; font-size: 0.72rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.15rem; font-weight: 700; }
.social-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.social-row a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  display: grid; place-items: center; color: #fff; font-size: 0.85rem; font-weight: 700;
}
.social-row a:hover { background: var(--gold); color: var(--navy); }

/* ── Footer ── */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,0.7);
  padding: 3.5rem 0 1.75rem; margin-top: 0;
}
.footer-grid {
  display: grid; gap: 2rem; margin-bottom: 2.5rem;
}
.footer-brand .brand { color: #fff; margin-bottom: 0.85rem; }
.footer-brand p { font-size: 0.92rem; color: rgba(255,255,255,0.55); max-width: 22rem; }
.footer-col h4 {
  font-family: var(--font); font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.85rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.45rem; }
.footer-col a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.92rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: space-between;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem; color: rgba(255,255,255,0.45);
}

/* ── Responsive ── */
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .cred-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
  .btn-book-desktop { display: inline-flex; }
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 3rem; }
  .about-grid { grid-template-columns: 1.2fr 0.8fr; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1.2fr 0.8fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .article-body { padding: 2.5rem 2.75rem; }
  .service-card.wide { grid-column: 1 / -1; max-width: 36rem; margin-inline: auto; width: 100%; }
}
@media (min-width: 1100px) {
  .cred-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Loading shimmer for dynamic blog */
.blog-loading {
  text-align: center; padding: 3rem; color: var(--muted);
}
.empty-state {
  text-align: center; padding: 3rem 1rem; color: var(--muted);
  grid-column: 1 / -1;
}
