/* ===========================================================
   Centru Medical Veritas — Design System
   Concept: "Grijă în care poți avea încredere"
   Warm cream + brand red (#DE2A26) + amber accent. Sora + Inter.
   Hand-coded, no framework.
   =========================================================== */

:root {
  /* Palette */
  --primary: #DE2A26;
  --primary-deep: #C21F1B;   /* CTA bg — AA contrast with white */
  --primary-darker: #9E1815;
  --primary-light: #FCE9E8;
  --accent: #E8A06A;
  --accent-dark: #CC7A40;
  --bg: #FBF8F3;
  --surface: #FFFFFF;
  --surface-alt: #F4EFE6;
  --text: #261C1B;
  --muted: #6E5F5C;
  --border: #E7E2D8;
  --shadow-sm: 0 2px 8px rgba(45,22,20, .06);
  --shadow: 0 10px 30px rgba(45,22,20, .08);
  --shadow-lg: 0 24px 60px rgba(45,22,20, .14);
  --ring: 0 0 0 3px rgba(222,42,38, .35);

  /* Type */
  --serif: "Sora", "Inter", -apple-system, sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-sm: 12px;
  --gutter: clamp(20px, 5vw, 48px);
  --header-h: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.14; color: var(--text); letter-spacing: -0.02em; }
h1 { font-size: clamp(2.3rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p { color: var(--muted); }
strong { color: var(--text); font-weight: 600; }

.eyebrow {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary-deep);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, 100px); }
.section-head { max-width: 640px; margin: 0 auto clamp(32px, 5vw, 56px); text-align: center; }
.section-head p { margin-top: .9rem; font-size: 1.075rem; }
.center { text-align: center; }
.tac-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 15px 24px; border-radius: 999px;
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease, color .14s ease;
  white-space: nowrap; min-height: 52px;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn-primary { background: var(--primary-deep); color: #fff; box-shadow: 0 8px 20px rgba(194,31,27,.28); }
.btn-primary:hover { background: var(--primary-darker); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(194,31,27,.34); }
.btn-outline { background: var(--surface); color: var(--primary-deep); box-shadow: inset 0 0 0 1.5px var(--primary); }
.btn-outline:hover { background: var(--primary-light); transform: translateY(-2px); }
.btn-ghost { color: var(--primary-deep); padding-inline: 8px; min-height: 0; }
.btn-ghost:hover { color: var(--primary-darker); }
.btn-white { background: #fff; color: var(--primary-deep); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-on-dark-outline { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.55); }
.btn-on-dark-outline:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-lg { padding: 17px 30px; font-size: 1.06rem; min-height: 58px; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--primary-darker); color: #FBE9E8;
  font-size: .85rem; letter-spacing: .01em;
}
.announce .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; padding-block: 8px; }
.announce a { color: #fff; font-weight: 600; }
.announce .ann-left { display: inline-flex; align-items: center; gap: 10px; }
.status-pill { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #7ee0b5; box-shadow: 0 0 0 0 rgba(126,224,181,.7); }
.status-dot.open { animation: pulse 2.2s infinite; }
.status-dot.closed { background: var(--accent); box-shadow: none; animation: none; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(126,224,181,.55);} 70% { box-shadow: 0 0 0 8px rgba(126,224,181,0);} 100% { box-shadow: 0 0 0 0 rgba(126,224,181,0);} }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 60; background: rgba(251,248,243,.86); backdrop-filter: saturate(140%) blur(10px); border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s, background .2s; }
.header.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); background: rgba(251,248,243,.95); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand .mark { width: 38px; height: 38px; flex: none; }
.brand .name { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--text); line-height: 1; letter-spacing: -0.01em; }
.brand .name small { display: block; font-family: var(--sans); font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--primary-deep); font-weight: 600; margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: .95rem; font-weight: 500; color: var(--text); position: relative; padding: 6px 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--primary); border-radius: 2px; transition: width .2s ease; }
.nav-links a:hover::after, .nav-links a:focus-visible::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--text); font-variant-numeric: tabular-nums; }
.nav-phone svg { width: 17px; height: 17px; color: var(--primary-deep); }

.burger { display: none; width: 46px; height: 46px; border-radius: 12px; align-items: center; justify-content: center; background: var(--surface); box-shadow: var(--shadow-sm); }
.burger span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; position: relative; transition: .2s; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: .2s; }
.burger span::before { top: -6px; } .burger span::after { top: 6px; }
body.menu-open .burger span { background: transparent; }
body.menu-open .burger span::before { top: 0; transform: rotate(45deg); }
body.menu-open .burger span::after { top: 0; transform: rotate(-45deg); }

/* Mobile drawer */
.mobile-menu { position: fixed; inset: 0; z-index: 55; background: rgba(45,22,20,.45); opacity: 0; pointer-events: none; transition: opacity .25s; }
.mobile-menu .panel { position: absolute; top: 0; right: 0; height: 100%; width: min(82vw, 340px); background: var(--bg); box-shadow: var(--shadow-lg); padding: calc(var(--header-h) + 16px) 26px 26px; transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; gap: 6px; }
body.menu-open .mobile-menu { opacity: 1; pointer-events: auto; }
body.menu-open .mobile-menu .panel { transform: translateX(0); }
.mobile-menu a.m-link { font-family: var(--serif); font-size: 1.35rem; padding: 12px 0; border-bottom: 1px solid var(--border); }
.mobile-menu .m-actions { margin-top: 18px; display: grid; gap: 12px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; top: -180px; right: -160px; width: 560px; height: 560px; background: radial-gradient(circle at center, rgba(222,42,38,.16), transparent 62%); z-index: 0; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: center; padding-block: clamp(44px, 6vw, 84px); position: relative; z-index: 1; }
.hero h1 { margin-top: 18px; }
.hero h1 .hl { color: var(--primary-deep); }
.hero .lede { margin-top: 18px; font-size: 1.15rem; max-width: 33ch; }
.hero .hero-actions { margin-top: 30px; }
.hero .reassure { margin-top: 22px; display: flex; align-items: center; gap: 8px; font-size: .92rem; color: var(--muted); font-weight: 500; }
.hero .reassure .status-dot { width: 10px; height: 10px; }

/* Hero visual card */
.hero-visual { position: relative; }

.chip-float { position: absolute; background: var(--surface); border-radius: 14px; box-shadow: var(--shadow); padding: 11px 15px; display: flex; align-items: center; gap: 10px; font-size: .82rem; font-weight: 600; z-index: 3; border: 1px solid var(--border); }
.chip-float.tl { top: -30px; left: -14px; }
.chip-float.br { bottom: -24px; right: -6px; }
.chip-float .ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: var(--primary-light); color: var(--primary-deep); }
.chip-float .ic svg { width: 17px; height: 17px; }
.chip-float .ic.amber { background: #fbeadd; color: var(--accent-dark); }
.chip-float small { display: block; font-weight: 500; color: var(--muted); font-size: .72rem; }

/* ---------- Photos ---------- */
.hero-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 1 / 1; border: 6px solid #fff; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo .photo-badge { position: absolute; left: 14px; bottom: 14px; background: rgba(255,255,255,.93); backdrop-filter: blur(6px); border-radius: 999px; padding: 9px 14px; display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600; color: var(--text); box-shadow: var(--shadow); }
.hero-photo .photo-badge .status-dot { width: 10px; height: 10px; }
.why-split { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(30px, 4vw, 60px); align-items: center; }
.why-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 5; }
.why-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.why-split .section-head { text-align: left; margin: 0 0 24px; max-width: none; }
.why-content .why-grid { grid-template-columns: 1fr 1fr; }

/* ---------- Trust bar ---------- */
.trust { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust .wrap { padding-block: 30px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { text-align: center; padding: 8px; }
.stat .num { font-family: var(--serif); font-size: clamp(1.9rem, 3.4vw, 2.5rem); font-weight: 600; color: var(--primary-deep); line-height: 1; font-variant-numeric: tabular-nums; }
.stat .lab { margin-top: 8px; font-size: .9rem; color: var(--muted); font-weight: 500; }
.trust-note { text-align: center; margin-top: 22px; font-size: .85rem; color: var(--muted); display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.trust-note svg { width: 16px; height: 16px; color: var(--primary); }

/* ---------- Specialties ---------- */
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.spec-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  display: flex; flex-direction: column; gap: 12px; position: relative; overflow: hidden;
}
.spec-card::after { content: ""; position: absolute; left: 26px; right: 26px; bottom: 22px; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; border-radius: 2px; }
.spec-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #F6D7D5; }
.spec-card:hover::after { transform: scaleX(1); }
.spec-ic { width: 50px; height: 50px; border-radius: 14px; background: var(--primary-light); color: var(--primary-deep); display: grid; place-items: center; }
.spec-ic svg { width: 26px; height: 26px; }
.spec-card h3 { font-family: var(--sans); font-weight: 600; font-size: 1.18rem; }
.spec-card p { font-size: .95rem; flex: 1; }
.spec-card .docs { font-size: .82rem; color: var(--muted); border-top: 1px dashed var(--border); padding-top: 12px; }
.spec-card .docs b { color: var(--text); font-weight: 600; }
.spec-card .card-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: .92rem; color: var(--primary-deep); }
.spec-card .card-link svg { width: 16px; height: 16px; transition: transform .18s; }
.spec-card:hover .card-link svg { transform: translateX(3px); }

/* ---------- Why Veritas ---------- */
.why { background: var(--surface-alt); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card { background: var(--surface); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.why-card .ic { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; background: var(--primary-light); color: var(--primary-deep); margin-bottom: 14px; }
.why-card .ic svg { width: 24px; height: 24px; }
.why-card h3 { font-family: var(--sans); font-weight: 600; font-size: 1.1rem; margin-bottom: 8px; }
.why-card p { font-size: .93rem; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; }
.step { text-align: center; padding: 12px; }
.step .n { width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 50%; background: var(--primary-deep); color: #fff; font-family: var(--serif); font-size: 1.5rem; font-weight: 600; display: grid; place-items: center; box-shadow: 0 8px 18px rgba(194,31,27,.25); }
.step h3 { font-family: var(--sans); font-weight: 600; font-size: 1.12rem; margin-bottom: 8px; }
.step p { font-size: .95rem; }

/* ---------- Doctors ---------- */
.doc-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 34px; }
.doc-filter button { padding: 9px 17px; border-radius: 999px; font-size: .9rem; font-weight: 500; background: var(--surface); border: 1px solid var(--border); color: var(--text); transition: .15s; }
.doc-filter button:hover { border-color: var(--primary); }
.doc-filter button.active { background: var(--primary-deep); color: #fff; border-color: var(--primary-deep); }
.doc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.doc-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; transition: transform .18s, box-shadow .18s; }
.doc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.doc-av { width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 16px; display: grid; place-items: center; font-family: var(--serif); font-weight: 600; font-size: 1.5rem; color: #fff; background: linear-gradient(135deg, var(--primary), var(--primary-deep)); }
.doc-card.psy .doc-av { background: linear-gradient(135deg, #B0682E, #8A5018); }
.doc-card h3 { font-family: var(--sans); font-weight: 600; font-size: 1.05rem; }
.doc-card .spec { margin-top: 5px; font-size: .9rem; color: var(--primary-deep); font-weight: 600; }
.doc-card .cred { margin-top: 4px; font-size: .82rem; color: var(--muted); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.g-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1 / 1; box-shadow: var(--shadow-sm); }
.g-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.g-item:hover img { transform: scale(1.05); }
.g-item figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 16px 13px; color: #fff; font-weight: 600; font-size: .92rem; background: linear-gradient(to top, rgba(38,28,27,.8), rgba(38,28,27,0)); display: flex; align-items: center; gap: 8px; }
.g-item figcaption::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--primary); flex: none; }

/* ---------- Locations ---------- */
.loc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.loc-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.loc-map { position: relative; height: 200px; background: linear-gradient(135deg, #F4E7E6, #EFE0DE); display: grid; place-items: center; overflow: hidden; }
.loc-map img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.loc-body { padding: 24px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.loc-body h3 { font-family: var(--sans); font-weight: 600; font-size: 1.18rem; }
.loc-meta { display: grid; gap: 9px; }
.loc-meta li { display: flex; align-items: flex-start; gap: 10px; font-size: .94rem; color: var(--text); }
.loc-meta li svg { width: 18px; height: 18px; color: var(--primary-deep); flex: none; margin-top: 3px; }
.loc-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.loc-tags span { font-size: .78rem; font-weight: 500; padding: 5px 11px; border-radius: 999px; background: var(--primary-light); color: var(--primary-deep); }
.loc-actions { margin-top: auto; display: flex; gap: 10px; flex-wrap: wrap; }
.loc-actions .btn { flex: 1; padding: 12px 16px; min-height: 48px; font-size: .94rem; }

/* ---------- Booking band ---------- */
.booking { background: linear-gradient(160deg, #B01C18, #7E120F); color: #FBE9E8; }
.booking h2, .booking h3 { color: #fff; }
.booking .eyebrow { color: #FBD3D1; }
.booking p { color: #FBE9E8; }
.book-call { display: grid; gap: 14px; margin-top: 26px; }
.call-tile { display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); padding: 16px 18px; transition: .15s; }
.call-tile:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.call-tile .ic { width: 46px; height: 46px; border-radius: 12px; background: #fff; color: var(--primary-deep); display: grid; place-items: center; flex: none; }
.call-tile .ic svg { width: 22px; height: 22px; }
.call-tile .num { font-size: 1.3rem; font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; line-height: 1.1; }
.call-tile small { color: #FBE9E8; font-size: .82rem; }

.book-call-row { grid-template-columns: repeat(3, 1fr); max-width: 1000px; margin-inline: auto; }
.loc-hours { display: block; line-height: 1.65; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: left; padding: 18px 22px; font-weight: 600; font-size: 1.02rem; color: var(--text); }
.faq-q .chev { width: 22px; height: 22px; flex: none; color: var(--primary-deep); transition: transform .22s; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .26s ease; }
.faq-a .inner { padding: 0 22px 20px; color: var(--muted); font-size: .96rem; }

/* ---------- Final CTA ---------- */
.final-cta { text-align: center; }
.final-cta .panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(36px, 6vw, 64px); box-shadow: var(--shadow); position: relative; overflow: hidden; }
.final-cta .panel::before { content: ""; position: absolute; top: -120px; left: 50%; transform: translateX(-50%); width: 460px; height: 300px; background: radial-gradient(circle, rgba(222,42,38,.12), transparent 65%); }
.final-cta h2 { position: relative; }
.final-cta p { position: relative; margin: 14px auto 28px; max-width: 52ch; font-size: 1.08rem; }
.final-cta .tac-row { position: relative; justify-content: center; }

/* ---------- News teaser ---------- */
.news-card { display: grid; grid-template-columns: 150px 1fr; gap: 26px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; align-items: center; max-width: 880px; margin: 0 auto; box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .18s; }
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.news-date { background: var(--surface-alt); border-radius: var(--radius); padding: 18px; text-align: center; }
.news-date .d { font-family: var(--serif); font-size: 2.4rem; font-weight: 600; color: var(--primary-deep); line-height: 1; }
.news-date .m { font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }
.news-tag { font-size: .76rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--primary-deep); }
.news-card h3 { margin: 8px 0 8px; font-family: var(--serif); }
.news-card p { font-size: .94rem; }
.news-card .card-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: .92rem; color: var(--primary-deep); margin-top: 12px; }
.news-card .card-link svg { width: 16px; height: 16px; }

/* ---------- Footer ---------- */
.footer { background: var(--text); color: #D8C9C7; padding-block: clamp(44px, 6vw, 70px) 28px; }
.footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
.footer .brand .name { color: #fff; }
.footer h4 { font-family: var(--sans); font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: #9E8C89; margin-bottom: 16px; font-weight: 600; }
.footer ul { display: grid; gap: 10px; }
.footer ul a, .footer .fcontact li { font-size: .93rem; }
.footer .fcontact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer .fcontact svg { width: 17px; height: 17px; color: var(--primary); flex: none; margin-top: 3px; }
.footer .ftag { margin-top: 14px; font-size: .9rem; max-width: 30ch; color: #B3A29F; }
.footer-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: .84rem; color: #9E8C89; }
.footer-bottom a { color: #C9B7B4; }
.pnrr { font-size: .78rem; color: #97857F; margin-top: 6px; max-width: 60ch; }

/* ---------- Mobile sticky dock ---------- */
.dock { position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(251,248,243,.96); backdrop-filter: blur(8px); border-top: 1px solid var(--border); box-shadow: 0 -6px 20px rgba(45,22,20,.08); }
.dock .btn { flex: 1; min-height: 52px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Page hero (subpages) ---------- */
.page-hero { background: var(--surface-alt); border-bottom: 1px solid var(--border); padding-block: clamp(40px, 6vw, 70px); }
.page-hero .crumb { font-size: .85rem; color: var(--muted); margin-bottom: 10px; }
.page-hero .crumb a { color: var(--primary-deep); font-weight: 500; }
.article { max-width: 760px; margin: 0 auto; }
.article h2 { font-size: clamp(1.4rem,3vw,1.9rem); margin: 36px 0 14px; }
.article h3 { font-family: var(--sans); font-weight: 600; font-size: 1.15rem; margin: 26px 0 10px; }
.article p { margin-bottom: 14px; font-size: 1.02rem; }
.article ul.bul { display: grid; gap: 10px; margin: 8px 0 18px; }
.article ul.bul li { position: relative; padding-left: 28px; color: var(--text); font-size: 1rem; }
.article ul.bul li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--primary); }
.info-box { background: var(--surface); border: 1px solid var(--border); border-left: 4px solid var(--primary); border-radius: var(--radius-sm); padding: 20px 22px; margin: 20px 0; }
.info-box dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 18px; margin: 0; }
.info-box dt { font-weight: 600; color: var(--text); font-size: .92rem; }
.info-box dd { margin: 0; color: var(--muted); font-size: .92rem; }
.disclaimer { font-size: .82rem; color: var(--muted); border-top: 1px solid var(--border); padding-top: 18px; margin-top: 28px; font-style: italic; }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 440px; margin: 8px auto 0; }
  .hero .lede { max-width: none; }
  .hero::before { right: -60px; top: -120px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-split { grid-template-columns: 1fr; }
  .why-media { aspect-ratio: 16 / 10; max-height: 360px; }
  .doc-grid { grid-template-columns: repeat(3, 1fr); }
  .book-call-row { grid-template-columns: 1fr; max-width: 560px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 860px) {
  .nav-links, .nav-phone { display: none; }
  .burger { display: flex; }
  .nav-cta .btn:not(.burger) { display: none; }
  .doc-grid, .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  body { font-size: 16px; padding-bottom: 78px; }
  .announce .ann-left span.hide-sm { display: none; }
  .announce a { display: none; }
  .announce .wrap { justify-content: center; }
  .spec-grid, .why-grid, .steps, .loc-grid { grid-template-columns: 1fr; }
  .news-card { grid-template-columns: 1fr; text-align: left; }
  .news-date { display: inline-flex; gap: 10px; align-items: baseline; width: auto; padding: 10px 16px; }
  .news-date .d { font-size: 1.6rem; } .news-date .m { margin-top: 0; }
  .hero .tac-row .btn { width: 100%; }
  .dock { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .chip-float.tl { left: 0; } .chip-float.br { right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
