/* == Dr. Leyla Bağırova — design system ==
   Palette preserved from the original design; small-text tones deepened
   to meet WCAG 2.2 AA contrast on light backgrounds. */

:root {
  --ink: #0C3C44;          /* brand dark teal — headings, body on light */
  --ink-deep: #062028;     /* footer / menu gradient end */
  --teal: #14B8B0;         /* brand accent — decor, borders, dark-bg accents */
  --teal-btn: #0B7A74;     /* primary buttons (white text >= 4.5:1) */
  --teal-btn-h: #0A6B66;
  --teal-text: #0B6E69;    /* small teal text on light bg (>= 4.5:1) */
  --aqua: #5ECFC9;         /* accents on dark bg */
  --muted: #3F5B5F;        /* body text */
  --faint: #5E7377;        /* secondary text on light (AA) */
  --mist: #F6FAFA;
  --mint: #E8F8F7;
  --mint-strong: #C8EFEC;
  --line: #DCE7E7;
  --line-soft: #ECF4F4;
  --btn-line: #9DB4B6;
  --ok: #1E7A4E;
  --sans: 'IBM Plex Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'Cascadia Mono', monospace;
  --shadow-lg: 0 24px 60px -20px rgba(12,60,68,.25);
  --shadow-card: 0 12px 32px -16px rgba(12,60,68,.2);
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  background: #fff;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  overflow-wrap: break-word;
}
img { max-width: 100%; height: auto; }
h1, h2, h3 { font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; color: var(--ink); margin: 0 0 16px; text-wrap: pretty; }
h1 { font-size: clamp(32px, 3.6vw, 48px); }
h2 { font-size: clamp(24px, 2.6vw, 34px); }
h3 { font-size: 19px; letter-spacing: -0.01em; }
p { margin: 0 0 16px; color: var(--muted); text-wrap: pretty; }
a { color: var(--teal-text); text-decoration: none; }
a:hover { color: var(--ink); }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; border-radius: 4px; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  padding: 12px 20px; background: var(--ink); color: #fff; border-radius: 0 0 12px 0; font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

.wrap { max-width: 1200px; margin: 0 auto; padding-left: clamp(20px, 4vw, 48px); padding-right: clamp(20px, 4vw, 48px); }
.narrow { max-width: 840px; }
.reading { max-width: 760px; }
.section { padding-top: clamp(48px, 7vw, 88px); padding-bottom: clamp(48px, 7vw, 88px); }

.kicker {
  font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal-text); margin-bottom: 14px;
}
.mono { font-family: var(--mono); }

/* == Buttons == */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 26px; border-radius: 999px; font-family: var(--sans);
  font-size: 15px; font-weight: 600; cursor: pointer; border: 0;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
  text-align: center;
}
.btn-primary { background: var(--teal-btn); color: #fff; box-shadow: 0 8px 32px -8px rgba(20,184,176,.4); }
.btn-primary:hover { background: var(--teal-btn-h); color: #fff; }
.btn-ghost { background: #fff; color: var(--ink); border: 1px solid var(--btn-line); }
.btn-ghost:hover { border-color: var(--teal); color: var(--ink); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--teal-btn); color: #fff; }
.btn svg { flex: none; }

/* == Header / nav == */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(220,231,231,.7);
}
.site-header .bar {
  display: flex; align-items: center; gap: clamp(14px, 2vw, 26px);
  padding: 14px clamp(20px, 4vw, 48px);
  max-width: 1400px; margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; margin-right: auto; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand svg { flex: none; }
.brand-name { font-weight: 700; font-size: 15px; letter-spacing: -0.01em; white-space: nowrap; }
.brand-sub { font-size: 9px; font-weight: 600; letter-spacing: .13em; color: var(--faint); white-space: nowrap; }
.main-nav { display: flex; gap: clamp(10px, 1.6vw, 22px); }
.main-nav a { font-size: 14px; font-weight: 500; color: var(--muted); white-space: nowrap; padding: 6px 2px; }
.main-nav a:hover { color: var(--ink); }
.main-nav a[aria-current="page"] { color: var(--ink); font-weight: 700; }
.header-cta { display: flex; align-items: center; gap: 12px; }
.icon-btn {
  width: 42px; height: 42px; border-radius: 999px; border: 1px solid var(--line);
  background: #fff; display: inline-flex; align-items: center; justify-content: center; flex: none;
  cursor: pointer; transition: border-color .2s var(--ease);
}
.icon-btn:hover { border-color: var(--teal); }
.menu-btn { display: none; }

/* == Mobile menu (drawer: closed = display:none, toggled via html.menu-open) == */
.mobile-menu { display: none; }
html.menu-open { overflow: hidden; }
html.menu-open .mobile-menu {
  display: flex; flex-direction: column;
  position: fixed; inset: 0; z-index: 100;
  background: linear-gradient(165deg, #0C3C44 0%, #062028 100%);
  padding: 16px 18px; animation: fadeUp .25s ease both;
}
.mobile-menu .menu-head { display: flex; align-items: center; justify-content: space-between; flex: none; }
.mobile-menu .menu-brand { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 14px; color: #fff; }
.menu-close {
  width: 44px; height: 44px; border-radius: 999px; border: 1px solid rgba(246,250,250,.25);
  background: transparent; display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
}
.mobile-menu nav { display: flex; flex-direction: column; margin-top: 24px; overflow-y: auto; flex: 1; min-height: 0; }
.mobile-menu nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 6px; border-bottom: 1px solid rgba(246,250,250,.1);
  font-size: 20px; font-weight: 700; color: #fff;
}
.mobile-menu nav a[aria-current="page"] { color: var(--aqua); }
.mobile-menu nav a:hover { color: var(--aqua); }
.mobile-menu .menu-ctas { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; flex: none; }
.mobile-menu .menu-ctas .btn-primary { background: var(--teal-btn); }
.mobile-menu .menu-ctas .btn-ghost { background: transparent; border-color: rgba(246,250,250,.3); color: #F6FAFA; }
.mobile-menu .menu-ctas .btn-ghost:hover { color: #fff; border-color: var(--aqua); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.page-anim { animation: fadeUp .4s var(--ease) both; }

/* == Hero (desktop: light, centered; mobile: dark full-bleed) == */
.hero { background: linear-gradient(180deg, var(--mist) 0%, #fff 70%); }
.hero-inner { display: flex; flex-direction: column; align-items: center; text-align: center; padding-top: 64px; }
.hero h1 { font-size: clamp(34px, 3.8vw, 46px); max-width: 840px; margin-bottom: 18px; }
.hero h1 .hl { color: var(--teal); }
.hero-sub { font-size: 17px; line-height: 1.6; max-width: 620px; margin: 0 auto 30px; }
.hero-ctas { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stage { position: relative; padding-bottom: 64px; }
.hero-photo-box { position: relative; }
.hero-photo {
  display: block; width: min(620px, 100%); margin: 0 auto;
  aspect-ratio: 620 / 400; object-fit: cover; object-position: 50% 12%;
  border-radius: 28px; box-shadow: var(--shadow-lg);
}
.chip {
  position: absolute; padding: 8px 16px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); color: var(--ink);
  font-size: 13px; font-weight: 600; box-shadow: 0 1px 2px rgba(12,60,68,.08);
  white-space: nowrap; transition: border-color .2s var(--ease);
}
.chip:hover { border-color: var(--teal); color: var(--ink); }
.chip:nth-of-type(1) { top: 14%;  left: 6%; }
.chip:nth-of-type(2) { top: 40%;  left: 3%; }
.chip:nth-of-type(3) { top: 65%;  left: 7%; }
.chip:nth-of-type(4) { top: 14%;  right: 6%; }
.chip:nth-of-type(5) { top: 40%;  right: 3%; }
.chip:nth-of-type(6) { top: 65%;  right: 5%; }
.hero-strip-row { display: flex; justify-content: center; margin-top: -33px; position: relative; }
.hero-strip {
  display: flex; align-items: center; flex-wrap: wrap; justify-content: center;
  width: max-content; max-width: 100%;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  box-shadow: var(--shadow-lg); padding: 10px 10px 10px 28px; gap: 0;
}
.hero-strip .cell { display: flex; flex-direction: column; gap: 2px; padding: 0 28px; border-right: 1px solid var(--line); }
.hero-strip .cell:first-child { padding-left: 0; }
.hero-strip .cell:nth-last-child(2) { border-right: 0; }
.hero-strip .cell .lbl { font-size: 10.5px; font-weight: 600; letter-spacing: .08em; color: var(--faint); }
.hero-strip .cell .val { font-size: 14px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.hero-strip .btn { margin-left: 8px; padding: 13px 26px; font-size: 14px; }
.hero-mobile-facts { display: none; }

/* == Section: services editorial list == */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: clamp(28px, 4vw, 64px); }
.svc-list { display: flex; flex-direction: column; }
.svc-row {
  display: flex; align-items: center; gap: 18px; padding: 16px 6px;
  border-bottom: 1px solid var(--line-soft); color: var(--ink);
  transition: background .2s var(--ease);
}
.svc-row:hover { background: var(--mist); color: var(--ink); }
.svc-row .num { font-family: var(--mono); font-size: 13px; color: var(--teal-text); width: 26px; flex: none; }
.svc-row .t { font-size: 17px; font-weight: 700; }
.svc-row .s { font-size: 13px; color: var(--faint); margin-top: 2px; }
.svc-row .body { flex: 1; min-width: 0; }
.svc-row svg { flex: none; }

/* == About preview / portrait arch == */
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: clamp(28px, 4vw, 64px); align-items: center; }
.arch { position: relative; max-width: 440px; justify-self: center; width: 100%; }
.arch::before {
  content: ''; position: absolute; top: 24px; left: -18px; width: 100%; height: 100%;
  border-radius: 200px 200px 24px 24px; background: var(--mint-strong);
}
.arch img {
  position: relative; display: block; width: 100%;
  aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 8%;
  border-radius: 200px 200px 24px 24px; box-shadow: var(--shadow-lg);
}
.def-list { display: flex; flex-direction: column; margin-bottom: 26px; }
.def-row { display: flex; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
.def-row .y { font-family: var(--mono); font-size: 12.5px; color: var(--teal-text); width: 92px; flex: none; padding-top: 2px; }
.def-row .v { font-size: 14px; font-weight: 600; color: var(--ink); }
.def-row .d { font-size: 14px; line-height: 1.55; color: var(--muted); margin-top: 4px; font-weight: 400; }

/* == Cards == */
.card { border: 1px solid var(--line); border-radius: 20px; padding: 24px; background: #fff; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 14px; }
.card-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); gap: 14px; }
a.card { display: flex; flex-direction: column; gap: 10px; color: var(--ink); transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease); }
a.card:hover { border-color: var(--teal); box-shadow: var(--shadow-card); transform: translateY(-2px); color: var(--ink); }
.card .card-top { display: flex; align-items: center; justify-content: space-between; }
.card .num { font-family: var(--mono); font-size: 12.5px; color: var(--teal-text); }
.card h3 { margin: 0; line-height: 1.25; }
.card .sub { font-size: 13.5px; line-height: 1.5; color: var(--muted); }
.card.tint { background: var(--mint); }

/* == FAQ (native details/summary) == */
.faq-item { border: 1px solid var(--line); border-radius: 18px; background: #fff; transition: border-color .2s var(--ease); }
.faq-item:hover { border-color: var(--teal); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; cursor: pointer; list-style: none;
  font-size: 15.5px; font-weight: 700; color: var(--ink); text-wrap: pretty;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: var(--mono); font-size: 18px; color: var(--teal-text); flex: none; }
.faq-item[open] summary::after { content: '−'; }
.faq-item .a { padding: 0 22px 18px; font-size: 14.5px; line-height: 1.6; color: var(--muted); text-wrap: pretty; }
.faq-group { display: flex; flex-direction: column; gap: 10px; }
.faq-static { border: 1px solid var(--line); border-radius: 18px; padding: 20px 24px; background: #fff; }
.faq-static .q { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.faq-static .a { font-size: 14px; line-height: 1.6; color: var(--muted); }

/* == Page hero band (subpages) == */
.page-hero { background: linear-gradient(180deg, var(--mist) 0%, #fff 100%); border-bottom: 1px solid var(--line-soft); }
.page-hero .lede { font-size: 16px; line-height: 1.65; margin: 0; }
.back-link { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--teal-text); margin-bottom: 18px; }

/* == AEO quick answers == */
.aeo-box { border: 1px solid var(--line); border-radius: 20px; background: var(--mist); padding: clamp(20px, 3vw, 26px); margin-bottom: clamp(32px, 4vw, 44px); }
.aeo-box .lbl { font-size: 11px; font-weight: 600; letter-spacing: .1em; color: var(--faint); margin-bottom: 14px; text-transform: uppercase; }
.aeo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); gap: clamp(14px, 2vw, 22px); }
.aeo-grid h3 { font-size: 14.5px; margin-bottom: 5px; }
.aeo-grid p { font-size: 13.5px; line-height: 1.5; margin: 0; }

/* == Check list == */
.check-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); gap: 10px; margin-bottom: 38px; }
.check-item { display: flex; align-items: flex-start; gap: 10px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 14px; background: #fff; font-size: 14px; line-height: 1.5; color: var(--muted); }
.check-item svg { flex: none; margin-top: 2px; }
.check-list { display: flex; flex-direction: column; gap: 9px; margin-top: 14px; }
.check-list .check-item { border: 0; padding: 0; background: none; }

/* == Notice / disclaimer == */
.notice { border: 1px solid var(--line); border-radius: 16px; padding: 18px 22px; background: var(--mist); font-size: 13.5px; line-height: 1.55; color: var(--muted); }

/* == Pills row == */
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line); background: #fff; color: var(--ink); font-size: 13px; font-weight: 600; transition: border-color .2s var(--ease); }
.pill:hover { border-color: var(--teal); color: var(--teal-text); }
.tag { display: inline-block; padding: 5px 13px; border-radius: 999px; background: var(--mint); color: var(--teal-text); font-size: 11.5px; font-weight: 600; }

/* == Blog == */
.featured {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 0;
  border: 1px solid var(--line); border-radius: 24px; overflow: hidden; background: #fff;
  color: var(--ink); margin-bottom: 14px;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease);
}
.featured:hover { box-shadow: 0 24px 60px -24px rgba(12,60,68,.25); transform: translateY(-2px); color: var(--ink); }
.featured .visual {
  position: relative; min-height: 260px;
  background: linear-gradient(150deg, #0C3C44 0%, #0E5560 60%, #14B8B0 100%);
  display: flex; align-items: center; justify-content: center;
}
.featured .visual .lbl { position: absolute; left: 24px; bottom: 20px; font-size: 11px; font-weight: 600; letter-spacing: .12em; color: rgba(255,255,255,.75); }
.featured .body { padding: clamp(24px, 3vw, 36px); display: flex; flex-direction: column; gap: 12px; justify-content: center; }
.meta-row { display: flex; align-items: center; gap: 10px; }
.meta-row .mins { font-size: 12.5px; color: var(--faint); }
.read-more { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--teal-text); }

.byline { display: flex; align-items: center; gap: 12px; }
.byline img { width: 40px; height: 40px; border-radius: 999px; object-fit: cover; object-position: 50% 20%; }
.byline .n { font-size: 13px; font-weight: 600; color: var(--ink); }
.byline .r { font-size: 11.5px; color: var(--faint); }

.article-body h2 { font-size: 21px; letter-spacing: -0.01em; margin: 0 0 10px; }
.article-body > div + div { margin-top: clamp(24px, 3vw, 32px); }
.article-body p { font-size: 15px; line-height: 1.65; margin: 0; }
.related-list { display: flex; flex-direction: column; gap: 8px; }
.related-item {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px;
  border: 1px solid var(--line); border-radius: 14px; background: #fff; color: var(--ink);
  transition: border-color .2s var(--ease);
}
.related-item:hover { border-color: var(--teal); color: var(--ink); }
.related-item .t { flex: 1; font-size: 14px; font-weight: 600; text-wrap: pretty; }
.related-item .tag { flex: none; font-size: 10.5px; padding: 4px 11px; }
.related-item svg { flex: none; }

/* == Contact == */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: clamp(24px, 4vw, 48px); align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 12px; }
.contact-card {
  display: flex; align-items: center; gap: 16px; border: 1px solid var(--line);
  border-radius: 18px; padding: 18px 22px; background: #fff; color: var(--ink);
  transition: border-color .2s var(--ease);
}
.contact-card:hover { border-color: var(--teal); color: var(--ink); }
.contact-card .ico { width: 44px; height: 44px; border-radius: 999px; background: var(--mint); display: flex; align-items: center; justify-content: center; flex: none; }
.contact-card .lbl { font-size: 11.5px; font-weight: 600; letter-spacing: .08em; color: var(--faint); margin-bottom: 2px; text-transform: uppercase; }
.contact-card .val { font-size: 15px; font-weight: 600; color: var(--ink); }
.contact-card .val.mono { font-family: var(--mono); font-size: 16px; font-weight: 400; }
.contact-card .sub { font-size: 13px; line-height: 1.45; color: var(--muted); margin-top: 3px; font-weight: 400; }
.map-box { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: var(--line-soft); }
.map-box iframe { border: 0; display: block; width: 100%; height: 230px; }

.form-card { border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 24px 60px -20px rgba(12,60,68,.12); padding: clamp(22px, 3vw, 30px); background: #fff; }
.form-card .fields { display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 12.5px; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  padding: 12px 14px; border-radius: 12px; border: 1px solid var(--btn-line);
  background: #fff; font-size: 14px; color: var(--ink); font-family: var(--sans); width: 100%;
}
.field input[type="tel"] { font-family: var(--mono); }
.field textarea { resize: vertical; min-height: 76px; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: 3px solid var(--teal); outline-offset: 0; border-color: var(--teal); }
.form-note { font-size: 11.5px; line-height: 1.5; color: var(--faint); text-align: center; }
.form-hint { font-size: 13px; color: var(--faint); margin-bottom: 20px; }
.form-error { display: none; font-size: 13px; color: #A63434; font-weight: 600; }
.form-error.show { display: block; }

/* == Vizit kart == */
.vcard-stage { background: linear-gradient(165deg, #0C3C44 0%, #062028 100%); min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: clamp(36px, 6vw, 72px) 20px; }
.vcard { width: min(400px, 100%); background: #fff; border-radius: 28px; box-shadow: 0 40px 100px -30px rgba(0,0,0,.5); overflow: hidden; }
.vcard-head { background: linear-gradient(150deg, #0C3C44 0%, #0E5560 100%); padding: 32px 28px 56px; text-align: center; }
.vcard-head .tagline { display: flex; align-items: center; justify-content: center; gap: 7px; margin-bottom: 22px; font-size: 10px; font-weight: 600; letter-spacing: .14em; color: rgba(255,255,255,.7); }
.vcard-head img { width: 112px; height: 112px; border-radius: 999px; object-fit: cover; object-position: 50% 20%; border: 3px solid rgba(255,255,255,.9); box-shadow: 0 12px 32px -8px rgba(0,0,0,.4); }
.vcard-head .n { font-size: 21px; font-weight: 700; color: #fff; margin: 14px 0 0; letter-spacing: -0.01em; }
.vcard-head .r { font-size: 13px; color: var(--aqua); font-weight: 600; margin: 4px 0 0; }
.vcard-head .loc { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 10px; font-size: 12px; color: rgba(255,255,255,.8); }
.vcard-head .dot { width: 7px; height: 7px; border-radius: 99px; background: #2BB673; }
.vcard-body { padding: 0 24px 26px; margin-top: -28px; position: relative; }
.vcard-actions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.vcard-actions > * {
  display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 14px 6px;
  border-radius: 16px; background: #fff; border: 1px solid var(--line);
  box-shadow: 0 8px 24px -12px rgba(12,60,68,.25); color: var(--ink); font-size: 11px; font-weight: 600;
  cursor: pointer; font-family: var(--sans); transition: border-color .2s var(--ease);
}
.vcard-actions > *:hover { border-color: var(--teal); color: var(--ink); }
.vcard-rows { display: flex; flex-direction: column; margin-top: 16px; }
.vcard-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 4px; border-bottom: 1px solid var(--line-soft); }
.vcard-row:last-child { border-bottom: 0; }
.vcard-row .k { font-size: 12px; color: var(--faint); flex: none; }
.vcard-row .v { font-size: 13px; font-weight: 600; color: var(--ink); text-align: right; }
.vcard-row .v.mono { font-family: var(--mono); font-weight: 400; }

/* == Sticky mobile CTA == */
.sticky-cta { display: none; }

/* == Footer == */
.site-footer { background: var(--ink-deep); color: rgba(246,250,250,.75); margin-top: clamp(48px, 7vw, 88px); }
.site-footer .cols {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
  gap: clamp(24px, 4vw, 48px); padding: clamp(40px, 6vw, 64px) 0 36px;
  border-bottom: 1px solid rgba(246,250,250,.1);
}
.site-footer .f-brand { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; font-weight: 700; font-size: 15px; color: #fff; }
.site-footer p { font-size: 13px; line-height: 1.55; color: rgba(246,250,250,.55); max-width: 280px; margin: 0; }
.site-footer .col-title { font-size: 11px; font-weight: 600; letter-spacing: .1em; color: rgba(246,250,250,.45); margin-bottom: 14px; text-transform: uppercase; }
.site-footer .links { display: flex; flex-direction: column; gap: 9px; }
.site-footer .links a { font-size: 13.5px; color: rgba(246,250,250,.75); }
.site-footer .links a:hover { color: var(--aqua); }
.site-footer .links .mono { color: var(--aqua); }
.site-footer .links span { font-size: 13.5px; color: rgba(246,250,250,.75); }
.site-footer .addr { font-size: 12.5px; line-height: 1.5; color: rgba(246,250,250,.55); }
.site-footer .base { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; padding: 22px 0 26px; }
.site-footer .base .c { font-size: 12px; color: rgba(246,250,250,.4); margin-right: auto; }
.site-footer .base a { font-size: 11.5px; font-weight: 600; color: rgba(255,255,255,.55); }
.site-footer .base a:hover { color: var(--aqua); }

/* == Breadcrumbs == */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 12.5px; color: var(--faint); padding: 14px 0 0; }
.crumbs a { color: var(--faint); }
.crumbs a:hover { color: var(--ink); }
.crumbs .sep { color: var(--line); }
.crumbs [aria-current] { color: var(--ink); font-weight: 600; }

/* == Utilities == */
.only-m { display: none !important; }
.center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }

/* ======== Mobile <= 1080px ======== */
@media (max-width: 1080px) {
  .main-nav { display: none; }
  .menu-btn { display: inline-flex; }
  .brand-sub { display: none; }
  .only-m { display: revert !important; }
  .only-d { display: none !important; }

  /* Dark mobile hero */
  .hero { position: relative; background: var(--ink); overflow: hidden; }
  .hero-inner { position: relative; z-index: 2; align-items: flex-start; text-align: left; padding-top: 420px; padding-bottom: 0; }
  .hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 62%;
    object-fit: cover; object-position: top; z-index: 0;
  }
  .hero-scrim {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(12,60,68,.4) 0%, rgba(12,60,68,.05) 22%, rgba(12,60,68,.78) 44%, #0C3C44 60%);
  }
  .hero .kicker { color: var(--aqua); }
  .hero h1 { font-size: 31px; line-height: 1.2; color: #fff; }
  .hero-sub { font-size: 14.5px; color: rgba(246,250,250,.82); margin: 0 0 18px; }
  .hero-ctas { flex-direction: column; align-items: stretch; align-self: stretch; margin-bottom: 18px; }
  .hero-ctas .btn { width: 100%; }
  .hero-ctas .btn-ghost { background: transparent; border-color: rgba(246,250,250,.35); color: #F6FAFA; }
  .hero-stage { position: relative; z-index: 2; padding-bottom: 26px; }
  .hero-photo-box, .hero-strip-row { display: none; }
  .hero-mobile-facts {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    padding: 14px 16px; border-radius: 18px;
    background: rgba(246,250,250,.08); border: 1px solid rgba(246,250,250,.15);
    -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  }
  .hero-mobile-facts .lbl { font-size: 9.5px; font-weight: 600; letter-spacing: .1em; color: rgba(246,250,250,.6); margin-bottom: 3px; }
  .hero-mobile-facts .val { font-size: 12px; font-weight: 600; color: #fff; line-height: 1.35; }
  .hero-mobile-facts .val.mono { font-family: var(--mono); color: var(--aqua); font-weight: 400; }

  /* Sticky CTA bar */
  .sticky-cta {
    display: flex; position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 80;
    gap: 8px; padding: 8px; border-radius: 999px;
    background: rgba(12,60,68,.92); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
    box-shadow: 0 16px 48px -12px rgba(0,0,0,.45);
  }
  .sticky-cta .rnd {
    width: 46px; height: 46px; border-radius: 999px; border: 1px solid rgba(246,250,250,.25);
    display: flex; align-items: center; justify-content: center; flex: none;
  }
  .sticky-cta .go { flex: 1; display: flex; align-items: center; justify-content: center; border-radius: 999px; background: var(--teal-btn); color: #fff; font-size: 14.5px; font-weight: 600; }
  body.has-sticky { padding-bottom: 92px; }

  .hero-strip .cell { padding: 0 16px; }
}

@media (max-width: 480px) {
  h1 { font-size: 30px; }
  .vcard-actions { gap: 6px; }
  .card { padding: 20px; }
}

/* Very narrow devices (320-380px): compact header so nothing overflows */
@media (max-width: 380px) {
  .site-header .bar { padding: 12px 14px; gap: 8px; }
  .brand { gap: 8px; }
  .brand svg { width: 30px; height: 30px; }
  .brand-name { font-size: 13px; }
  .icon-btn { width: 38px; height: 38px; }
  .wrap { padding-left: 16px; padding-right: 16px; }
  .hero-strip .cell { padding: 0 12px; }
}
