/* ==========================================================================
   Dr. İkram Sadıqov — sayt üslubları
   ========================================================================== */

:root {
  --c-ink: #0c2a31;
  --c-text: #2e434a;
  --c-muted: #566970;
  --c-line: #dde6e7;
  --c-line-strong: #c5d3d5;
  --c-bg: #ffffff;
  --c-mist: #f2f7f7;
  --c-mist-2: #e8f1f1;

  --c-brand: #0e6a72;
  --c-brand-600: #0b5a61;
  --c-brand-700: #094b51;
  --c-brand-800: #073b40;
  --c-brand-50: #eaf4f4;
  --c-brand-100: #d4e9e9;
  --c-brand-200: #afd6d6;
  --c-brand-300: #7fbcbc;

  --c-sand: #f6f1e9;
  --c-gold: #a8793c;
  --c-warn-bg: #fff6e6;
  --c-warn-line: #f1d39c;
  --c-warn-ink: #7a4d00;
  --c-danger: #b42318;
  --c-success: #17714b;

  --ff-head: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --fs-body: clamp(1.0625rem, 1.02rem + 0.2vw, 1.125rem);

  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --shadow-xs: 0 1px 2px rgba(12, 42, 49, 0.06);
  --shadow-sm: 0 2px 8px -2px rgba(12, 42, 49, 0.08), 0 1px 2px rgba(12, 42, 49, 0.05);
  --shadow: 0 16px 40px -20px rgba(12, 42, 49, 0.25), 0 3px 10px -4px rgba(12, 42, 49, 0.06);
  --shadow-lg: 0 40px 80px -36px rgba(12, 42, 49, 0.35), 0 12px 28px -12px rgba(12, 42, 49, 0.12);

  --container: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
  --header-h: 72px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);

  color-scheme: light;
}

@media (min-width: 1200px) {
  :root { --header-h: 80px; }
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}
html.has-dialog { overflow: hidden; }

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--ff-head);
  color: var(--c-ink);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.012em;
  margin: 0 0 0.55em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.125rem, 1.6rem + 2.3vw, 3.4rem); line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 1.42rem + 1.35vw, 2.5rem); line-height: 1.16; }
h3 { font-size: clamp(1.2rem, 1.13rem + 0.3vw, 1.375rem); font-weight: 600; line-height: 1.3; letter-spacing: -0.006em; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
strong, b { font-weight: 600; color: var(--c-ink); }
small { font-size: 0.875em; }

a { color: var(--c-brand-600); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--c-brand-800); }

img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
figure { margin: 0; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
li + li { margin-top: 0.35em; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
hr { border: 0; border-top: 1px solid var(--c-line); margin: 2rem 0; }
kbd { font-family: inherit; }

:focus-visible { outline: 3px solid var(--c-brand); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--c-brand-100); color: var(--c-ink); }

mark { background: #fde8bf; color: inherit; border-radius: 3px; padding: 0 1px; }

.icon {
  width: 24px;
  height: 24px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -120px;
  z-index: 300;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  background: var(--c-ink);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { top: 12px; color: #fff; }

main:focus { outline: none; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-narrow { max-width: calc(800px + var(--gutter) * 2); }

.section { padding-block: clamp(64px, 8vw, 112px); }
.section-sm { padding-block: clamp(44px, 5.5vw, 72px); }
.section-mist { background: var(--c-mist); }
.section-sand { background: var(--c-sand); }
.section + .section-flush { padding-top: 0; }

.section-head { max-width: 760px; margin-bottom: clamp(32px, 4vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head p { color: var(--c-muted); font-size: 1.0625em; }
.section-head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 32px;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.section-head-row .section-head { margin-bottom: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-family: var(--ff-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--c-brand-600);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  flex: none;
}

.lead { font-size: clamp(1.125rem, 1.06rem + 0.3vw, 1.3rem); line-height: 1.6; color: var(--c-text); }
.muted { color: var(--c-muted); }

.card-grid { display: grid; gap: clamp(16px, 2vw, 24px); list-style: none; margin: 0; padding: 0; }
.card-grid > li { margin: 0; }
@media (min-width: 640px) { .card-grid-2, .card-grid-3, .card-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) {
  .card-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .card-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ---------- Buttons & links ---------- */
.btn {
  --btn-h: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: var(--btn-h);
  padding: 8px 24px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s var(--ease);
}
.btn .icon { width: 20px; height: 20px; }
.btn-primary {
  background: var(--c-brand);
  color: #fff;
  box-shadow: 0 12px 26px -12px rgba(14, 106, 114, 0.7);
}
.btn-primary:hover { background: var(--c-brand-700); color: #fff; transform: translateY(-1px); }
.btn-primary:active { transform: none; }
.btn-primary .icon { transition: transform 0.2s var(--ease); }
.btn-primary:hover .icon { transform: translateX(3px); }
.btn-outline { background: #fff; color: var(--c-ink); border-color: var(--c-line-strong); }
.btn-outline:hover { border-color: var(--c-brand); color: var(--c-brand-700); }
.btn-soft { background: var(--c-brand-50); color: var(--c-brand-700); }
.btn-soft:hover { background: var(--c-brand-100); color: var(--c-brand-800); }
.btn-lg { --btn-h: 58px; padding-inline: 30px; font-size: 1.0625rem; }
.btn-sm { --btn-h: 44px; padding: 6px 16px; font-size: 0.9375rem; }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--c-brand-600);
  text-decoration: none;
  min-height: 44px;
}
.link-arrow .icon { width: 18px; height: 18px; transition: transform 0.2s var(--ease); }
.link-arrow:hover { color: var(--c-brand-800); }
.link-arrow:hover .icon { transform: translateX(4px); }

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 44px;
  height: 44px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--c-ink);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}
.icon-btn:hover { background: var(--c-mist); color: var(--c-brand-700); }
.icon-btn .icon { width: 22px; height: 22px; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 6px 16px;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  background: #fff;
  color: var(--c-ink);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}
.chip:hover { border-color: var(--c-brand-200); background: var(--c-brand-50); color: var(--c-brand-700); }
.chip[aria-pressed="true"] { background: var(--c-brand); border-color: var(--c-brand); color: #fff; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--c-brand-50);
  color: var(--c-brand-700);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
}
.tag .icon { width: 16px; height: 16px; }
.tag-neutral { background: var(--c-mist); color: var(--c-muted); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--c-line);
  box-shadow: 0 10px 30px -24px rgba(12, 42, 49, 0.45);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: var(--header-h);
  max-width: calc(1280px + var(--gutter) * 2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  color: var(--c-ink);
  text-decoration: none;
  min-width: 0;
}
.brand:hover { color: var(--c-ink); }
.brand-mark {
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 8px 18px -10px rgba(14, 106, 114, 0.85);
}
.brand-mark svg { width: 100%; height: 100%; }
.brand-text { display: flex; flex-direction: column; min-width: 0; line-height: 1.2; }
.brand-name {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand-role {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--c-muted);
  white-space: nowrap;
}
@media (min-width: 400px) {
  .brand { gap: 12px; }
  .brand-mark { width: 42px; height: 42px; border-radius: 12px; }
  .brand-name { font-size: 1.0625rem; }
  .brand-role { font-size: 0.8125rem; }
}
@media (max-width: 359px) { .brand-role { display: none; } }

.main-nav { display: none; }

.header-actions { display: flex; align-items: center; gap: 2px; flex: none; }
.header-phone {
  display: none;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--c-ink);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  white-space: nowrap;
}
.header-phone .icon { width: 20px; height: 20px; color: var(--c-brand); }
.header-phone:hover { color: var(--c-brand-700); background: var(--c-mist); }

.search-trigger .btn-label { display: none; }
.vcard-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  min-width: 44px;
  padding: 0 10px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--c-ink);
  font-weight: 600;
  font-size: 0.9375rem;
  white-space: nowrap;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}
.vcard-trigger .icon { width: 22px; height: 22px; color: var(--c-brand); }
.vcard-trigger:hover { background: var(--c-mist); color: var(--c-brand-700); }
.vcard-trigger .btn-label { display: none; }

@media (min-width: 440px) {
  .vcard-trigger { padding: 0 14px; border-color: var(--c-line-strong); margin-left: 4px; }
  .vcard-trigger .btn-label { display: inline; }
  .vcard-trigger:hover { border-color: var(--c-brand); background: #fff; }
  .header-actions { gap: 4px; }
}

@media (min-width: 1200px) {
  .main-nav { display: flex; flex: 1; justify-content: center; }
  .brand { margin-right: 0; }
  .menu-trigger { display: none; }
  .header-inner { gap: 16px; }
}
@media (min-width: 1320px) {
  .search-trigger .btn-label { display: inline; }
  .search-trigger { padding: 0 14px 0 12px; }
}
@media (min-width: 1480px) {
  .header-phone { display: inline-flex; }
}

/* Desktop navigation */
.nav-list { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-list > li { margin: 0; }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--c-ink);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.has-sub > .nav-link { padding-right: 2px; }
.nav-link:hover, .nav-item.is-open > .nav-link { color: var(--c-brand-700); }
.nav-link.is-current { color: var(--c-brand-700); font-weight: 600; }
.nav-link.is-current::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--c-brand);
}
.has-sub > .nav-link.is-current::after { right: 2px; }
.nav-caret {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--c-muted);
}
.nav-caret:hover { color: var(--c-brand-700); }
.nav-caret .icon { width: 16px; height: 16px; stroke-width: 2; transition: transform 0.2s var(--ease); }
.nav-item.is-open .nav-caret .icon { transform: rotate(180deg); }

.nav-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 70;
  width: max-content;
  min-width: 300px;
  max-width: 600px;
  padding: 10px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s, transform 0.18s var(--ease), visibility 0s linear 0.18s;
}
.nav-panel::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
.nav-item.is-open > .nav-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition: opacity 0.18s, transform 0.18s var(--ease), visibility 0s;
}
html:not(.js) .has-sub:hover > .nav-panel,
html:not(.js) .has-sub:focus-within > .nav-panel { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

.nav-sub { display: grid; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-sub > li { margin: 0; }
.nav-panel-wide { width: 580px; }
.nav-panel-wide .nav-sub { grid-template-columns: 1fr 1fr; }
.nav-sub-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  color: var(--c-ink);
  text-decoration: none;
  transition: background-color 0.15s;
}
.nav-sub-link:hover { background: var(--c-mist); color: var(--c-ink); }
.nav-sub-link[aria-current="page"] { background: var(--c-brand-50); }
.nav-sub-ico {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 11px;
  background: var(--c-brand-50);
  color: var(--c-brand-600);
}
.nav-sub-ico .icon { width: 22px; height: 22px; }
.nav-sub-text { display: block; min-width: 0; }
.nav-sub-text strong { display: block; font-size: 0.975rem; font-weight: 600; line-height: 1.35; }
.nav-sub-text small { display: block; margin-top: 2px; font-size: 0.85rem; line-height: 1.4; color: var(--c-muted); white-space: normal; }
.nav-panel-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--c-mist);
  color: var(--c-brand-700);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}
.nav-panel-foot .icon { width: 18px; height: 18px; transition: transform 0.2s var(--ease); }
.nav-panel-foot:hover { background: var(--c-brand-50); color: var(--c-brand-800); }
.nav-panel-foot:hover .icon { transform: translateX(4px); }

/* ---------- Dialogs (shared) ---------- */
.modal {
  inset: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--c-text);
  overflow: hidden;
}
.modal::backdrop { background: rgba(6, 29, 34, 0.55); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.modal[open] { display: flex; justify-content: center; }
.modal-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(100% - 32px, 720px);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: modal-in 0.26s var(--ease);
}
@keyframes modal-in { from { opacity: 0; transform: translateY(12px) scale(0.985); } to { opacity: 1; transform: none; } }

.modal-close { position: absolute; top: 12px; right: 12px; z-index: 2; }

/* Search dialog */
.modal-search[open] { align-items: flex-start; }
.modal-search .modal-panel { margin-top: max(16px, 8vh); max-height: calc(100% - max(16px, 8vh) - 16px); }
.search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px 10px 20px;
  border-bottom: 1px solid var(--c-line);
  flex: none;
}
.search-form > .icon { color: var(--c-brand); }
.search-input {
  flex: 1;
  min-width: 0;
  height: 54px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--c-ink);
  font-size: 1.125rem;
}
.search-input::placeholder { color: #7d8e93; }
.search-body { padding: 18px 20px 22px; overflow-y: auto; overscroll-behavior: contain; }
.search-label { margin: 0 0 10px; font-size: 0.875rem; font-weight: 600; color: var(--c-muted); }
.search-suggest .chip-row { margin-bottom: 22px; }
.quick-links { display: grid; gap: 6px; list-style: none; margin: 0; padding: 0; }
@media (min-width: 560px) { .quick-links { grid-template-columns: 1fr 1fr; } }
.quick-links li { margin: 0; }
.quick-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--c-ink);
  font-weight: 500;
  text-decoration: none;
}
.quick-links a .icon { width: 20px; height: 20px; color: var(--c-brand); }
.quick-links a:hover { background: var(--c-mist); }
.search-status { margin: 0 0 10px; font-size: 0.9375rem; color: var(--c-muted); }
.search-status:empty { margin: 0; }
.search-results { display: grid; gap: 4px; list-style: none; margin: 0; padding: 0; }
.search-results li { margin: 0; }
.search-result {
  display: block;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--c-text);
  text-decoration: none;
}
.search-result:hover { background: var(--c-mist); border-color: var(--c-line); color: var(--c-text); }
.search-result:focus-visible { outline: none; background: var(--c-mist); border-color: var(--c-brand-200); box-shadow: 0 0 0 3px var(--c-brand-100); }
.sr-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 8px; margin-bottom: 2px; font-size: 0.8125rem; font-weight: 600; color: var(--c-brand-600); }
.sr-meta span + span::before { content: "·"; margin-right: 8px; color: var(--c-line-strong); }
.sr-title { display: block; font-family: var(--ff-head); font-size: 1.0625rem; font-weight: 600; line-height: 1.35; color: var(--c-ink); }
.sr-text {
  display: -webkit-box;
  margin-top: 4px;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--c-muted);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.search-empty { padding: 8px 2px; }
.search-empty p { color: var(--c-muted); }

/* Business card dialog */
.modal-vcard[open] { align-items: center; }
.modal-vcard .modal-panel { width: min(100% - 32px, 480px); max-height: calc(100% - 32px); overflow-y: auto; }
.vcard-top {
  position: relative;
  padding: 28px 24px 22px;
  background:
    radial-gradient(420px 200px at 100% 0%, rgba(127, 188, 188, 0.35), transparent 70%),
    linear-gradient(135deg, var(--c-brand-800), var(--c-brand-600));
  color: #fff;
}
.vcard-top .modal-close { color: #fff; }
.vcard-top .modal-close:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
.vcard-kicker { margin: 0 0 14px; font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.02em; color: var(--c-brand-200); }
.vcard-person { display: flex; align-items: center; gap: 16px; }
.vcard-avatar {
  width: 84px;
  height: 84px;
  flex: none;
  border-radius: 22px;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.45);
}
.vcard-name { margin: 0 0 2px; font-size: 1.45rem; color: #fff; }
.vcard-role { margin: 0; color: #d7ecec; font-size: 0.975rem; line-height: 1.4; }
.vcard-list { list-style: none; margin: 0; padding: 6px 12px 10px; }
.vcard-list li { margin: 0; }
.vcard-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--c-line);
}
.vcard-list li:last-child .vcard-row { border-bottom: 0; }
.vcard-ico {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 12px;
  background: var(--c-brand-50);
  color: var(--c-brand-600);
}
.vcard-ico .icon { width: 20px; height: 20px; }
.vcard-info { flex: 1; min-width: 0; line-height: 1.45; }
.vcard-label { display: block; font-size: 0.8125rem; color: var(--c-muted); font-weight: 500; }
.vcard-value { display: block; color: var(--c-ink); font-weight: 600; font-size: 1rem; overflow-wrap: anywhere; }
a.vcard-value { text-decoration: none; }
a.vcard-value:hover { color: var(--c-brand-700); text-decoration: underline; }
.vcard-value-sm { font-weight: 500; font-size: 0.9375rem; }
.vcard-copy { flex: none; color: var(--c-muted); }
.vcard-actions { display: grid; gap: 8px; margin-top: 18px; }
.vcard-actions .btn { width: 100%; background: #fff; color: var(--c-brand-800); }
.vcard-actions .btn:hover { background: var(--c-brand-50); color: var(--c-brand-800); }
.vcard-note { margin: 0; text-align: center; font-size: 0.8125rem; line-height: 1.45; color: #cfe6e6; }

/* Mobile menu drawer */
.modal-drawer[open] { justify-content: flex-end; }
.drawer-panel {
  display: flex;
  flex-direction: column;
  width: min(100%, 420px);
  height: 100%;
  background: #fff;
  box-shadow: var(--shadow-lg);
  animation: drawer-in 0.3s var(--ease);
}
@keyframes drawer-in { from { transform: translateX(40px); opacity: 0; } to { transform: none; opacity: 1; } }
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: var(--header-h);
  padding: 0 12px 0 20px;
  border-bottom: 1px solid var(--c-line);
  flex: none;
}
.drawer-title { margin: 0; font-family: var(--ff-head); font-weight: 700; font-size: 1.125rem; color: var(--c-ink); }
.drawer-body { flex: 1; overflow-y: auto; overscroll-behavior: contain; padding: 10px 12px 20px; }
.m-nav { list-style: none; margin: 0; padding: 0; }
.m-nav > li { margin: 0; border-bottom: 1px solid var(--c-line); }
.m-row { display: flex; align-items: center; }
.m-link {
  display: flex;
  align-items: center;
  flex: 1;
  min-height: 56px;
  padding: 8px 10px;
  color: var(--c-ink);
  font-size: 1.0625rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
}
.m-link:hover { color: var(--c-brand-700); }
.m-link.is-current { color: var(--c-brand-700); }
.m-toggle {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: none;
  border: 0;
  border-radius: 12px;
  background: var(--c-mist);
  color: var(--c-ink);
}
.m-toggle .icon { width: 20px; height: 20px; stroke-width: 2; transition: transform 0.2s var(--ease); }
.m-toggle[aria-expanded="true"] { background: var(--c-brand-50); color: var(--c-brand-700); }
.m-toggle[aria-expanded="true"] .icon { transform: rotate(180deg); }
.m-sub { list-style: none; margin: 0 0 12px; padding: 4px 0 4px 10px; }
.m-sub li { margin: 0; }
.m-sub a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 6px 12px;
  border-left: 2px solid var(--c-line);
  color: var(--c-text);
  font-size: 1rem;
  text-decoration: none;
}
.m-sub a:hover, .m-sub a[aria-current="page"] { color: var(--c-brand-700); border-left-color: var(--c-brand); }
.drawer-foot { flex: none; display: grid; gap: 10px; padding: 16px 20px calc(16px + env(safe-area-inset-bottom)); border-top: 1px solid var(--c-line); background: var(--c-mist); }
.drawer-contact { display: flex; align-items: center; gap: 12px; color: var(--c-ink); font-weight: 600; text-decoration: none; min-height: 44px; }
.drawer-contact .icon { color: var(--c-brand); }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  overflow: clip;
  padding-block: clamp(36px, 6vw, 88px) clamp(64px, 8vw, 112px);
  background:
    radial-gradient(900px 520px at 88% 8%, rgba(14, 106, 114, 0.12), transparent 62%),
    radial-gradient(700px 420px at -5% 105%, rgba(168, 121, 60, 0.08), transparent 60%),
    linear-gradient(180deg, #f3f8f8 0%, #fbfcfc 70%, #fff 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(14, 106, 114, 0.12) 1px, transparent 1.2px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse 60% 55% at 80% 30%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 60% 55% at 80% 30%, #000 20%, transparent 75%);
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; gap: clamp(40px, 6vw, 72px); align-items: center; }
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); }
}
.hero-title { margin-bottom: 20px; }
.hero-title span {
  display: block;
  margin-top: 10px;
  font-size: 0.5em;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--c-brand-600);
}
.hero-lead { max-width: 580px; color: var(--c-text); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 24px; margin-top: 30px; }
.hero-facts {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 36px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--c-line);
  max-width: 600px;
}
.hero-facts li { display: flex; align-items: center; gap: 12px; margin: 0; font-size: 0.975rem; font-weight: 500; color: var(--c-ink); line-height: 1.4; }
.hero-facts .icon {
  width: 36px;
  height: 36px;
  padding: 8px;
  border-radius: 10px;
  background: #fff;
  color: var(--c-brand);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 640px) and (max-width: 959px), (min-width: 1200px) {
  .hero-facts { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
  .hero-facts li { align-items: flex-start; flex-direction: column; gap: 10px; font-size: 0.9375rem; }
}

.hero-media { position: relative; width: 100%; max-width: 520px; margin-inline: auto; padding: 0 10px 26px; }
@media (min-width: 960px) { .hero-media { margin-right: 0; padding: 0 0 26px 26px; } }
.hero-media::before {
  content: "";
  position: absolute;
  inset: 26px -10px 0 16px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, var(--c-brand-100), rgba(212, 233, 233, 0.2));
  transform: rotate(3deg);
}
@media (min-width: 960px) { .hero-media::before { inset: 34px -18px -6px 44px; } }
.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--c-mist-2);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  pointer-events: none;
}
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  line-height: 1.3;
}
.float-card strong { display: block; font-family: var(--ff-head); font-size: 1rem; color: var(--c-ink); }
.float-card small { display: block; font-size: 0.8125rem; color: var(--c-muted); }
.float-ico {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 12px;
  background: var(--c-brand);
  color: #fff;
}
.float-ico .icon { width: 22px; height: 22px; }
.hero-badge { top: 18px; left: 0; }
.hero-note { right: 0; bottom: 0; }
@media (min-width: 960px) {
  .hero-badge { top: 28px; left: 0; }
  .hero-note { right: -12px; bottom: 6px; }
}
@media (max-width: 380px) {
  .float-card { padding: 10px 12px 10px 10px; gap: 10px; }
  .float-ico { width: 34px; height: 34px; }
}

/* ---------- Credentials strip ---------- */
.creds { position: relative; margin-top: clamp(-56px, -5vw, -32px); padding-bottom: clamp(24px, 4vw, 48px); }
.creds-grid {
  display: grid;
  gap: 1px;
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  background: var(--c-line);
  overflow: hidden;
  box-shadow: var(--shadow);
}
@media (min-width: 640px) { .creds-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .creds-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.cred { margin: 0; padding: 24px; background: #fff; }
.cred-year { display: inline-block; margin-bottom: 8px; font-family: var(--ff-head); font-weight: 700; font-size: 1.05rem; color: var(--c-brand-600); }
.cred p { margin: 0; font-size: 0.975rem; line-height: 1.5; color: var(--c-muted); }
.cred strong { display: block; margin-bottom: 2px; font-size: 1.02rem; color: var(--c-ink); }

/* ---------- Cards ---------- */
.stretched::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
.stretched { text-decoration: none; color: inherit; }
.stretched:hover { color: inherit; }
.stretched:focus-visible { outline: none; }
.stretched:focus-visible::after { outline: 3px solid var(--c-brand); outline-offset: 3px; }

.service-card, .article-card, .mini-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(22px, 2.4vw, 30px);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}
.service-card:hover, .article-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-brand-200);
  box-shadow: var(--shadow);
}
.service-card h3, .article-card h3 { margin: 18px 0 10px; }
.service-card p, .article-card p { color: var(--c-muted); margin-bottom: 18px; }
.card-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-weight: 600;
  color: var(--c-brand-600);
}
.card-more .icon { width: 18px; height: 18px; transition: transform 0.2s var(--ease); }
.service-card:hover .card-more .icon, .article-card:hover .card-more .icon { transform: translateX(4px); }

.icon-badge {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--c-brand-50);
  color: var(--c-brand-600);
  flex: none;
}
.icon-badge .icon { width: 28px; height: 28px; stroke-width: 1.6; }

.service-card-accent {
  background: linear-gradient(160deg, var(--c-brand-700), var(--c-brand-800));
  border-color: transparent;
  color: #d9ecec;
}
.service-card-accent h3 { color: #fff; }
.service-card-accent p { color: #cfe3e3; }
.service-card-accent .icon-badge { background: rgba(255, 255, 255, 0.1); color: #fff; }
.service-card-accent .card-more { color: #fff; }
.service-card-accent:hover { border-color: transparent; }

.article-card { padding-top: 24px; }
.article-cat { display: flex; align-items: center; gap: 10px; margin: 0; font-size: 0.875rem; font-weight: 600; color: var(--c-brand-600); }
.article-cat .icon-badge { width: 44px; height: 44px; border-radius: 13px; }
.article-cat .icon-badge .icon { width: 22px; height: 22px; }
.article-card h3 { margin-top: 16px; }

.mini-card { padding: 22px; }
.mini-card h3 { font-size: 1.125rem; margin: 14px 0 8px; }
.mini-card p { margin: 0; color: var(--c-muted); font-size: 0.975rem; }
.mini-card .icon-badge { width: 48px; height: 48px; border-radius: 14px; }
.mini-card .icon-badge .icon { width: 24px; height: 24px; }

/* ---------- Split sections ---------- */
.split { display: grid; gap: clamp(36px, 6vw, 80px); align-items: center; }
@media (min-width: 960px) {
  .split { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); }
  .split-reverse { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); }
  .split-reverse .split-media { order: 2; }
}
.split-media { position: relative; max-width: 480px; width: 100%; margin-inline: auto; }
.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--c-mist-2);
  box-shadow: var(--shadow);
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; }
.photo-portrait { aspect-ratio: 4 / 5; }
.photo-square { aspect-ratio: 1 / 1; }
.split-media .float-card { left: -10px; bottom: 24px; }
@media (min-width: 1100px) { .split-media .float-card { left: -32px; } }
.split-content > .eyebrow { margin-bottom: 12px; }

.check-list { list-style: none; margin: 0 0 1.25em; padding: 0; display: grid; gap: 12px; }
.check-list li { position: relative; margin: 0; padding-left: 36px; line-height: 1.55; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--c-brand-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e6a72' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6.5 12.5 3.6 3.6 7.4-8'/%3E%3C/svg%3E") center / 16px no-repeat;
}

.quote {
  position: relative;
  margin: 28px 0 0;
  padding: 24px 24px 22px 24px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-sm);
}
.quote .icon { width: 30px; height: 30px; color: var(--c-brand-300); fill: currentColor; stroke: none; margin-bottom: 8px; }
.quote p { font-family: var(--ff-head); font-size: clamp(1.1rem, 1.04rem + 0.3vw, 1.25rem); font-weight: 600; line-height: 1.5; color: var(--c-ink); }
.quote footer { margin-top: 12px; font-size: 0.9375rem; color: var(--c-muted); font-weight: 500; }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 16px; list-style: none; margin: 0; padding: 0; counter-reset: step; }
@media (min-width: 640px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; } }
.step {
  position: relative;
  margin: 0;
  padding: 26px 24px 24px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--c-line);
}
.step-num {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: var(--c-brand);
  color: #fff;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.05rem;
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { margin: 0; color: var(--c-muted); font-size: 0.975rem; }
@media (min-width: 1100px) {
  .step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 48px;
    right: -21px;
    width: 22px;
    height: 2px;
    background: var(--c-brand-200);
  }
}

/* ---------- Page head (inner pages) ---------- */
.page-head {
  position: relative;
  overflow: clip;
  padding-block: clamp(28px, 4vw, 48px) clamp(48px, 6vw, 80px);
  background:
    radial-gradient(760px 420px at 92% 0%, rgba(14, 106, 114, 0.11), transparent 62%),
    linear-gradient(180deg, #f2f7f7 0%, #f8fbfb 100%);
  border-bottom: 1px solid var(--c-line);
}
.page-head-grid { position: relative; display: grid; gap: clamp(32px, 5vw, 64px); align-items: center; }
@media (min-width: 960px) {
  .page-head-grid.has-media { grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr); }
}
.page-head h1 { margin: 18px 0 16px; }
.page-head .lead { max-width: 680px; margin-bottom: 0; }
.page-head-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.page-head-media { width: 100%; max-width: 380px; margin-inline: auto; }
@media (min-width: 960px) { .page-head-media { margin-right: 0; } }
.page-head-media .photo-card { box-shadow: var(--shadow-lg); }

.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; font-size: 0.9375rem; }
.breadcrumb li { display: inline-flex; align-items: center; gap: 4px; margin: 0; color: var(--c-muted); }
.breadcrumb li + li::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237d8e93' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 6 6 6-6 6'/%3E%3C/svg%3E") center / 16px no-repeat;
}
.breadcrumb a { display: inline-flex; align-items: center; min-height: 32px; color: var(--c-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--c-brand-700); text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--c-ink); font-weight: 500; }

/* ---------- Content layout & prose ---------- */
.content-layout { display: grid; gap: clamp(28px, 4vw, 64px); align-items: start; }
@media (min-width: 1024px) {
  .content-layout { grid-template-columns: 280px minmax(0, 1fr); }
  .content-aside { position: sticky; top: calc(var(--header-h) + 24px); }
}
.content-aside { display: grid; gap: 16px; }

.toc { border: 1px solid var(--c-line); border-radius: var(--radius); background: #fff; }
.toc > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
  padding: 12px 18px;
  font-family: var(--ff-head);
  font-weight: 600;
  color: var(--c-ink);
  cursor: pointer;
  list-style: none;
}
.toc > summary::-webkit-details-marker { display: none; }
.toc > summary .icon { width: 18px; height: 18px; transition: transform 0.2s; }
.toc[open] > summary .icon { transform: rotate(180deg); }
.toc-list { list-style: none; margin: 0; padding: 0 10px 12px; }
.toc-list li { margin: 0; }
.toc-list a {
  display: block;
  padding: 8px 10px 8px 14px;
  border-left: 2px solid var(--c-line);
  color: var(--c-muted);
  font-size: 0.9375rem;
  line-height: 1.4;
  text-decoration: none;
}
.toc-list a:hover { color: var(--c-brand-700); }
.toc-list a[aria-current="location"] { color: var(--c-brand-700); border-left-color: var(--c-brand); font-weight: 600; }
@media (min-width: 1024px) {
  .toc > summary { cursor: default; pointer-events: none; }
  .toc > summary .icon { display: none; }
}

.aside-card {
  display: none;
  padding: 22px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--c-brand-50), #fff);
  border: 1px solid var(--c-brand-100);
}
@media (min-width: 1024px) { .aside-card { display: block; } }
.aside-card-title { margin: 0 0 6px; font-family: var(--ff-head); font-weight: 700; color: var(--c-ink); font-size: 1.05rem; }
.aside-card p { font-size: 0.9375rem; color: var(--c-muted); margin-bottom: 12px; }
.aside-link { display: flex; align-items: center; gap: 10px; min-height: 40px; font-weight: 600; color: var(--c-ink); text-decoration: none; font-size: 0.975rem; }
.aside-link .icon { width: 20px; height: 20px; color: var(--c-brand); }
.aside-link:hover { color: var(--c-brand-700); text-decoration: underline; }

.prose { max-width: 760px; min-width: 0; }
.prose > * + h2 { margin-top: clamp(40px, 5vw, 56px); }
.prose h2 { font-size: clamp(1.5rem, 1.3rem + 0.9vw, 2rem); scroll-margin-top: calc(var(--header-h) + 24px); }
.prose h3 { margin-top: 28px; }
.prose p, .prose li { color: var(--c-text); }
.prose ul:not([class]) li::marker, .prose ol:not([class]) li::marker { color: var(--c-brand); font-weight: 600; }
.prose ul:not([class]), .prose ol:not([class]) { padding-left: 1.3em; }
.prose ul:not([class]) li, .prose ol:not([class]) li { padding-left: 4px; }
.prose .card-grid { margin-block: 20px 8px; }
.prose-intro { font-size: 1.125em; color: var(--c-ink); }

.callout {
  display: flex;
  gap: 14px;
  margin: 24px 0;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--c-brand-50);
  border: 1px solid var(--c-brand-100);
}
.callout > .icon { width: 24px; height: 24px; margin-top: 2px; color: var(--c-brand-600); }
.callout-title { margin: 0 0 4px; font-weight: 600; color: var(--c-ink); }
.callout p { font-size: 0.99rem; }
.callout-warn { background: var(--c-warn-bg); border-color: var(--c-warn-line); }
.callout-warn > .icon { color: var(--c-warn-ink); }

.pros-cons { display: grid; gap: 16px; margin: 20px 0; }
@media (min-width: 640px) { .pros-cons { grid-template-columns: 1fr 1fr; } }
.pc-card { padding: 22px; border-radius: var(--radius); border: 1px solid var(--c-line); background: #fff; }
.pc-card h3, .pc-card h4 { margin: 0 0 14px; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }
.pc-card h3 .icon, .pc-card h4 .icon { width: 22px; height: 22px; color: var(--c-brand); }
.pc-card p { font-size: 0.975rem; color: var(--c-muted); }
.pc-card .check-list { margin: 0; gap: 10px; }
.pc-card .check-list li { font-size: 0.975rem; }
.pc-card-warn h3 .icon { color: var(--c-warn-ink); }
.dash-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.dash-list li { position: relative; margin: 0; padding-left: 28px; font-size: 0.975rem; line-height: 1.55; }
.dash-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.72em;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--c-warn-ink);
}

.num-list { list-style: none; margin: 20px 0; padding: 0; display: grid; gap: 14px; counter-reset: n; }
.num-list > li {
  position: relative;
  margin: 0;
  padding: 18px 20px 18px 72px;
  border-radius: var(--radius);
  border: 1px solid var(--c-line);
  background: #fff;
  counter-increment: n;
}
.num-list > li::before {
  content: counter(n);
  position: absolute;
  left: 18px;
  top: 16px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--c-brand-50);
  color: var(--c-brand-700);
  font-family: var(--ff-head);
  font-weight: 700;
}
.num-list h3 { margin: 0 0 4px; font-size: 1.075rem; }
.num-list p { margin: 0; color: var(--c-muted); font-size: 0.975rem; }

.table-wrap { margin: 20px 0; overflow-x: auto; border: 1px solid var(--c-line); border-radius: var(--radius); -webkit-overflow-scrolling: touch; }
.compare-table { width: 100%; min-width: 520px; border-collapse: collapse; font-size: 0.975rem; line-height: 1.45; }
.compare-table caption { text-align: left; padding: 14px 18px 0; font-weight: 600; color: var(--c-ink); }
.compare-table th, .compare-table td { padding: 14px 18px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--c-line); }
.compare-table thead th { background: var(--c-mist); font-family: var(--ff-head); color: var(--c-ink); font-weight: 600; }
.compare-table tbody th { font-weight: 600; color: var(--c-ink); width: 30%; }
.compare-table tbody tr:last-child th, .compare-table tbody tr:last-child td { border-bottom: 0; }

.disclaimer {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--c-mist);
  color: var(--c-muted);
  font-size: 0.9375rem;
}
.disclaimer .icon { width: 20px; height: 20px; margin-top: 3px; color: var(--c-muted); }

.related { margin-top: clamp(40px, 5vw, 64px); }
.related h2 { font-size: clamp(1.4rem, 1.25rem + 0.6vw, 1.75rem); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open] { border-color: var(--c-brand-200); box-shadow: var(--shadow-sm); }
.faq-item > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 60px;
  padding: 16px 20px;
  font-family: var(--ff-head);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--c-ink);
  cursor: pointer;
  list-style: none;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary:hover { color: var(--c-brand-700); }
.faq-item > summary:focus-visible { outline-offset: -3px; border-radius: var(--radius); }
.faq-toggle {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: none;
  border-radius: 50%;
  background: var(--c-mist);
  color: var(--c-brand-600);
  transition: transform 0.25s var(--ease), background-color 0.2s;
}
.faq-toggle .icon { width: 18px; height: 18px; stroke-width: 2; }
.faq-item[open] .faq-toggle { transform: rotate(180deg); background: var(--c-brand-50); }
.faq-answer { padding: 0 20px 20px; color: var(--c-text); }
.faq-answer p { margin-bottom: 0.75em; }

.faq-layout { display: grid; gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (min-width: 1024px) {
  .faq-layout { grid-template-columns: 260px minmax(0, 1fr); }
  .faq-nav { position: sticky; top: calc(var(--header-h) + 24px); }
}
.faq-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
@media (min-width: 1024px) { .faq-nav ul { display: grid; gap: 4px; } }
.faq-nav li { margin: 0; }
@media (min-width: 1024px) {
  .faq-nav .chip { width: 100%; justify-content: flex-start; border-color: transparent; background: transparent; border-radius: 12px; min-height: 44px; }
  .faq-nav .chip:hover { background: var(--c-mist); }
}
.faq-group + .faq-group { margin-top: clamp(40px, 5vw, 56px); }
.faq-group h2 { display: flex; align-items: center; gap: 12px; font-size: clamp(1.35rem, 1.2rem + 0.6vw, 1.7rem); }
.faq-group h2 .icon-badge { width: 44px; height: 44px; border-radius: 13px; }
.faq-group h2 .icon-badge .icon { width: 22px; height: 22px; }

/* ---------- Timeline (about) ---------- */
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 11px; top: 8px; bottom: 8px; width: 2px; background: var(--c-brand-100); }
.tl-item { position: relative; margin: 0; padding: 0 0 28px 48px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--c-brand);
}
.tl-year { display: inline-block; margin-bottom: 6px; padding: 2px 12px; border-radius: 999px; background: var(--c-brand-50); color: var(--c-brand-700); font-weight: 700; font-size: 0.9375rem; }
.tl-item h3 { margin: 4px 0 4px; font-size: 1.15rem; }
.tl-item p { margin: 0; color: var(--c-muted); }

.tag-list { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 0; padding: 0; }
.tag-list li { margin: 0; }
.tag-list .tag { padding: 8px 14px; font-size: 0.95rem; font-weight: 500; background: #fff; border: 1px solid var(--c-line); color: var(--c-ink); }
.tag-list .tag .icon { color: var(--c-brand); width: 18px; height: 18px; }

.congress-card { position: relative; height: 100%; padding: 24px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--c-line); }
.congress-card h3 { margin: 14px 0 6px; font-size: 1.125rem; }
.congress-meta { display: flex; align-items: center; gap: 8px; margin: 0 0 10px; font-size: 0.9375rem; font-weight: 500; color: var(--c-brand-700); }
.congress-meta .icon { width: 18px; height: 18px; }
.congress-card p { color: var(--c-muted); font-size: 0.975rem; margin: 0; }

.gallery { display: grid; gap: 16px; }
@media (min-width: 640px) { .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.gallery figure { margin: 0; }
.gallery .photo-card { aspect-ratio: 4 / 5; box-shadow: var(--shadow-sm); }
.gallery figcaption { margin-top: 10px; font-size: 0.9375rem; color: var(--c-muted); }

.principles { display: grid; gap: 16px; margin-top: 28px; }
@media (min-width: 640px) { .principles { grid-template-columns: 1fr 1fr; } }

.clinic-card {
  display: grid;
  gap: 24px;
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 900px) { .clinic-card { grid-template-columns: 1.2fr 1fr; align-items: center; } }
.clinic-card h2 { font-size: clamp(1.4rem, 1.25rem + 0.7vw, 1.9rem); }

/* ---------- Media / videos ---------- */
.video-grid { display: grid; gap: clamp(20px, 2.5vw, 28px); list-style: none; margin: 0; padding: 0; }
.video-grid > li { margin: 0; }
@media (min-width: 720px) { .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .video-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.video-card { display: flex; flex-direction: column; height: 100%; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--c-line); overflow: hidden; }
@media (min-width: 720px) {
  .video-grid > .video-featured { grid-column: 1 / -1; }
}
@media (min-width: 960px) {
  .video-featured .video-card { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); }
  .video-featured .video-frame { align-self: stretch; aspect-ratio: auto; min-height: 340px; }
  .video-featured .video-body { padding: clamp(24px, 3vw, 40px); justify-content: center; }
  .video-featured .video-body h3 { font-size: clamp(1.35rem, 1.2rem + 0.6vw, 1.75rem); }
  .video-featured .video-body p { font-size: 1.02rem; }
  .video-featured .video-body .link-arrow { margin-top: 8px; }
}
.video-frame { position: relative; aspect-ratio: 16 / 9; background: #0a2126; overflow: hidden; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-play {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #0a2126;
  cursor: pointer;
}
.video-play img { width: 100%; height: 100%; object-fit: cover; opacity: 0.92; transition: opacity 0.3s, transform 0.5s var(--ease); }
.video-play::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6, 29, 34, 0) 45%, rgba(6, 29, 34, 0.55)); }
.video-play-ico {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--c-brand-700);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.5);
  transform: translate(-50%, -50%);
  transition: transform 0.25s var(--ease), background-color 0.2s;
}
.video-play-ico .icon { width: 28px; height: 28px; margin-left: 4px; fill: currentColor; stroke: none; }
.video-play:hover img { opacity: 1; transform: scale(1.03); }
.video-play:hover .video-play-ico { transform: translate(-50%, -50%) scale(1.06); background: #fff; }
.video-play:focus-visible { outline: 3px solid #fff; outline-offset: -6px; }
.video-duration {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(6, 29, 34, 0.8);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
}
.video-body { display: flex; flex-direction: column; flex: 1; padding: 20px 22px 22px; }
.video-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 10px; margin: 0 0 10px; font-size: 0.875rem; color: var(--c-muted); }
.video-body h3 { font-size: 1.15rem; margin: 0 0 8px; }
.video-body p { color: var(--c-muted); font-size: 0.975rem; margin-bottom: 14px; }
.video-body .link-arrow { margin-top: auto; font-size: 0.975rem; min-height: 40px; }

.tv-list { display: grid; gap: 12px; list-style: none; margin: 0; padding: 0; }
@media (min-width: 720px) { .tv-list { grid-template-columns: 1fr 1fr; } }
.tv-list li { display: flex; align-items: flex-start; gap: 14px; margin: 0; padding: 18px; border-radius: var(--radius); background: #fff; border: 1px solid var(--c-line); }
.tv-list strong { display: block; color: var(--c-ink); font-family: var(--ff-head); }
.tv-list span { display: block; color: var(--c-muted); font-size: 0.9375rem; line-height: 1.5; }

.social-cards { display: grid; gap: 16px; }
@media (min-width: 640px) { .social-cards { grid-template-columns: 1fr 1fr; } }
.social-card { position: relative; display: flex; align-items: center; gap: 16px; padding: 22px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--c-line); transition: border-color 0.2s, box-shadow 0.2s; }
.social-card:hover { border-color: var(--c-brand-200); box-shadow: var(--shadow-sm); }
.social-card h3 { margin: 0 0 2px; font-size: 1.1rem; }
.social-card p { margin: 0; color: var(--c-muted); font-size: 0.9375rem; }

/* ---------- Contact ---------- */
.contact-layout { display: grid; gap: clamp(28px, 4vw, 48px); align-items: start; }
@media (min-width: 1024px) { .contact-layout { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); } }
.contact-cards { display: grid; gap: 14px; list-style: none; margin: 0; padding: 0; }
.contact-cards > li { margin: 0; }
.contact-card { display: flex; gap: 16px; padding: 20px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--c-line); }
.contact-card .icon-badge { width: 48px; height: 48px; border-radius: 14px; }
.contact-card .icon-badge .icon { width: 24px; height: 24px; }
.contact-card h2, .contact-card h3 { margin: 0 0 4px; font-size: 1.05rem; }
.contact-card p { margin: 0 0 6px; color: var(--c-muted); font-size: 0.975rem; }
.contact-big { display: inline-block; font-family: var(--ff-head); font-weight: 700; font-size: clamp(1.2rem, 1.1rem + 0.5vw, 1.4rem); color: var(--c-ink); text-decoration: none; }
a.contact-big:hover { color: var(--c-brand-700); text-decoration: underline; }
.contact-links { display: flex; flex-wrap: wrap; gap: 4px 18px; margin-top: 6px; }
.contact-links a { display: inline-flex; align-items: center; gap: 6px; min-height: 40px; font-weight: 600; font-size: 0.9375rem; text-decoration: none; }
.contact-links a:hover { text-decoration: underline; }
.contact-links .icon { width: 18px; height: 18px; }

.form-card { padding: clamp(24px, 3vw, 36px); border-radius: var(--radius-xl); background: #fff; border: 1px solid var(--c-line); box-shadow: var(--shadow); }
.form-card h2 { font-size: clamp(1.5rem, 1.3rem + 0.8vw, 2rem); margin-bottom: 8px; }
.form-card > p { color: var(--c-muted); }
.form-grid { display: grid; gap: 18px; margin-top: 24px; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } .field-full { grid-column: 1 / -1; } }
.field { display: grid; gap: 8px; min-width: 0; }
.field label { font-weight: 600; font-size: 0.975rem; color: var(--c-ink); }
.field .req { color: var(--c-danger); }
.input, .select, .textarea {
  width: 100%;
  min-height: 54px;
  padding: 12px 16px;
  border: 1.5px solid var(--c-line-strong);
  border-radius: 14px;
  background: #fff;
  color: var(--c-ink);
  font-size: 1.0625rem;
  line-height: 1.4;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.textarea { min-height: 120px; resize: vertical; }
.select {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 44px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23566970' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") right 14px center / 20px no-repeat;
}
.input::placeholder, .textarea::placeholder { color: #86969b; }
.input:hover, .select:hover, .textarea:hover { border-color: #a9bcbf; }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--c-brand); box-shadow: 0 0 0 4px var(--c-brand-100); }
.input[aria-invalid="true"], .textarea[aria-invalid="true"] { border-color: var(--c-danger); }
.input[aria-invalid="true"]:focus { box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.14); }
.field-hint { font-size: 0.875rem; color: var(--c-muted); }
.field-error { display: flex; align-items: center; gap: 6px; font-size: 0.9rem; font-weight: 500; color: var(--c-danger); }
.field-error[hidden] { display: none; }
.field-error .icon { width: 16px; height: 16px; }
.form-note { display: flex; gap: 10px; margin: 20px 0 0; font-size: 0.9375rem; color: var(--c-muted); }
.form-note .icon { width: 20px; height: 20px; margin-top: 2px; color: var(--c-brand); }
.form-actions { margin-top: 22px; }
.form-actions .btn { width: 100%; }
@media (min-width: 640px) { .form-actions .btn { width: auto; } }
.form-status { margin-top: 16px; padding: 14px 16px; border-radius: 14px; background: #eaf6f0; color: var(--c-success); font-weight: 500; }
.form-status:empty { margin: 0; padding: 0; background: transparent; }

.map-card { overflow: hidden; border-radius: var(--radius-xl); border: 1px solid var(--c-line); background: var(--c-mist); box-shadow: var(--shadow-sm); }
.map-frame { position: relative; aspect-ratio: 4 / 3; }
@media (min-width: 768px) { .map-frame { aspect-ratio: 21 / 9; } }
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 24px; padding: 18px 22px; background: #fff; }
.map-foot p { margin: 0; color: var(--c-ink); font-weight: 500; }
.map-foot .contact-links { margin: 0; }

.info-strip { display: grid; gap: 16px; list-style: none; margin: 0; padding: 0; }
@media (min-width: 768px) { .info-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.info-strip > li { margin: 0; }

/* ---------- Articles filter ---------- */
.filter-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 28px; }
.filter-status { margin: -12px 0 24px; font-size: 0.9375rem; color: var(--c-muted); }
.article-card[hidden] { display: none; }

/* ---------- CTA band ---------- */
.cta-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 64px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(520px 300px at 100% 0%, rgba(127, 188, 188, 0.32), transparent 70%),
    radial-gradient(420px 260px at 0% 100%, rgba(168, 121, 60, 0.18), transparent 70%),
    linear-gradient(135deg, var(--c-brand-800), var(--c-brand-600));
  color: #d8ebeb;
}
@media (min-width: 960px) { .cta-card { grid-template-columns: minmax(0, 1.4fr) auto; gap: 48px; } }
.cta-card h2 { color: #fff; margin-bottom: 12px; }
.cta-card p { color: #d2e8e8; max-width: 620px; }
.cta-card .eyebrow { color: var(--c-brand-200); }
.cta-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
@media (min-width: 960px) { .cta-actions { align-items: stretch; } }
.cta-card .btn-primary { background: #fff; color: var(--c-brand-800); box-shadow: 0 16px 30px -16px rgba(0, 0, 0, 0.6); }
.cta-card .btn-primary:hover { background: var(--c-brand-50); color: var(--c-brand-800); }
.cta-phone { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 44px; color: #fff; font-weight: 600; text-decoration: none; }
.cta-phone .icon { width: 20px; height: 20px; }
.cta-phone:hover { color: #fff; text-decoration: underline; }

/* ---------- Home: contact strip ---------- */
.visit-card {
  display: grid;
  gap: 28px;
  padding: clamp(24px, 4vw, 48px);
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 960px) { .visit-card { grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); align-items: center; } }
.visit-list { display: grid; gap: 12px; list-style: none; margin: 0; padding: 0; }
@media (min-width: 640px) { .visit-list { grid-template-columns: 1fr 1fr; } }
.visit-list > li { margin: 0; display: flex; gap: 14px; padding: 18px; border-radius: var(--radius); background: var(--c-mist); }
.visit-list .icon-badge { width: 44px; height: 44px; border-radius: 13px; background: #fff; }
.visit-list .icon-badge .icon { width: 22px; height: 22px; }
.visit-list h3 { margin: 0 0 2px; font-size: 1rem; }
.visit-list p, .visit-list a { margin: 0; font-size: 0.975rem; }
.visit-list a { font-weight: 600; text-decoration: none; }
.visit-list a:hover { text-decoration: underline; }

/* ---------- Services hub ---------- */
.service-rows { display: grid; gap: 20px; list-style: none; margin: 0; padding: 0; }
.service-rows > li { margin: 0; }
.service-row {
  position: relative;
  display: grid;
  gap: 20px;
  padding: clamp(22px, 3vw, 36px);
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid var(--c-line);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.service-row:hover { border-color: var(--c-brand-200); box-shadow: var(--shadow); }
@media (min-width: 900px) { .service-row { grid-template-columns: 64px minmax(0, 1fr) minmax(0, 1fr); gap: 32px; align-items: start; } }
.service-row .icon-badge { width: 64px; height: 64px; border-radius: 18px; }
.service-row .icon-badge .icon { width: 32px; height: 32px; }
.service-row h2 { font-size: clamp(1.35rem, 1.22rem + 0.55vw, 1.7rem); margin-bottom: 10px; }
.service-row p { color: var(--c-muted); }
.service-row .check-list { margin: 0; gap: 10px; }
.service-row .check-list li { font-size: 0.99rem; }
.service-row .link-arrow { margin-top: 8px; }

/* ---------- 404 ---------- */
.error-page { text-align: center; padding-block: clamp(64px, 10vw, 140px); }
.error-code { font-family: var(--ff-head); font-weight: 700; font-size: clamp(4rem, 3rem + 6vw, 7rem); line-height: 1; color: var(--c-brand-100); margin: 0 0 12px; }
.error-page .lead { max-width: 560px; margin: 0 auto 28px; color: var(--c-muted); }
.error-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 20px; }
.error-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 36px; }

/* ---------- Footer ---------- */
.site-footer { background: #0a242a; color: #bfd0d3; padding-top: clamp(56px, 7vw, 88px); }
.site-footer a { color: #e3eeef; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid { display: grid; gap: 40px 32px; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .footer-grid { grid-template-columns: 1.45fr 1fr 1fr 1.25fr; } }
.footer-brand .brand { color: #fff; margin-bottom: 18px; }
.footer-brand .brand:hover { text-decoration: none; }
.footer-brand .brand-role { color: #a9bdc0; }
.footer-brand p { max-width: 360px; font-size: 0.975rem; color: #b7c9cc; }
.footer-title { margin: 0 0 16px; font-family: var(--ff-head); font-size: 1.05rem; font-weight: 700; color: #fff; }
.footer-links { display: grid; gap: 4px; list-style: none; margin: 0; padding: 0; }
.footer-links li { margin: 0; }
.footer-links a { display: inline-flex; align-items: center; min-height: 36px; font-size: 0.975rem; color: #c6d6d8; }
.footer-contact { display: grid; gap: 14px; list-style: none; margin: 0; padding: 0; }
.footer-contact li { display: flex; gap: 12px; margin: 0; font-size: 0.975rem; line-height: 1.5; }
.footer-contact .icon { width: 20px; height: 20px; margin-top: 2px; color: var(--c-brand-300); }
.footer-contact small { display: block; color: #93aaae; font-size: 0.85rem; }
.social { display: flex; gap: 10px; margin-top: 22px; }
.social a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  transition: background-color 0.2s;
}
.social a:hover { background: rgba(255, 255, 255, 0.16); text-decoration: none; }
.social .icon { width: 22px; height: 22px; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 32px;
  margin-top: clamp(40px, 5vw, 64px);
  padding-block: 24px calc(24px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #9fb4b7;
}
.footer-bottom p { margin: 0; }
.site-by a { font-weight: 700; color: #fff; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: calc(24px + env(safe-area-inset-bottom));
  z-index: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--c-ink);
  color: #fff;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s var(--ease);
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.toast .icon { width: 20px; height: 20px; color: var(--c-brand-300); }

/* ---------- Motion ---------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; transition-delay: 0s !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- Small screens ---------- */
@media (max-width: 380px) {
  .btn { padding-inline: 18px; }
  .btn-lg { padding-inline: 22px; }
}

@media print {
  .site-header, .site-footer, .cta-card, .content-aside, .modal { display: none !important; }
  body { font-size: 12pt; }
  .js [data-reveal] { opacity: 1; transform: none; }
}
