/* ============================================================
   advancedsurgery.gr — shared stylesheet
   Navy · cream · gold · Fraunces + Inter
   ============================================================ */

:root {
  --ink:   #1B2A60;
  --ink-2: #2E3E78;
  --ink-3: #44486B;
  --bg:    #FFFEF5;
  --paper: #F7F2E5;
  --sand:  #F0E8D8;
  --gold:  #B8954A;
  --gold-2:#9A7A35;
  --muted: #6B6F84;
  --line:  rgba(27,42,96,0.12);
  --line-strong: rgba(27,42,96,0.22);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--gold); color: white; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ------------ Concept dev bar (kept for nav clarity) ------------ */
.concept-bar {
  background: #1A1A1A; color: #E8E8E8;
  padding: 10px 24px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.concept-bar .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); display: inline-block; margin-right: 8px; }
.concept-bar nav a { margin-left: 18px; color: #aaa; font-size: 10.5px; }
.concept-bar nav a:hover { color: var(--gold); }
.concept-bar nav a.active { color: var(--gold); }

/* ------------ Layout helpers ------------ */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 980px; margin: 0 auto; padding: 0 32px; }
.wrap-tight { max-width: 820px; margin: 0 auto; padding: 0 32px; }
section { padding: 96px 0; }
section.tight { padding: 64px 0; }

.eyebrow {
  font-size: 11px; letter-spacing: 3.5px; text-transform: uppercase;
  font-weight: 600; color: var(--gold);
}
h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; color: var(--ink); letter-spacing: -0.5px; line-height: 1.1; font-weight: 500; }
h1 { font-size: clamp(36px, 5.4vw, 64px); line-height: 1.05; }
h2 { font-size: clamp(28px, 3.4vw, 44px); margin-bottom: 18px; }
h3 { font-size: 22px; line-height: 1.2; margin-bottom: 6px; font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; margin-bottom: 6px; }
h1 em, h2 em, h3 em { font-style: italic; color: var(--gold); font-weight: 400; }
p { font-size: 16.5px; color: #2A335B; }
p.lead { font-size: 19px; color: var(--ink-3); max-width: 60ch; }

/* ------------ Header ------------ */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,254,245,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 0.5px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  max-width: 1320px; margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark { font-family: 'Noto Sans Symbols 2', sans-serif; font-size: 26px; color: var(--gold); line-height: 1; }
.brand .name { font-family: 'Fraunces', serif; font-weight: 500; font-size: 18px; letter-spacing: -0.3px; line-height: 1.1; }
.brand .name small { display: block; font-size: 10.5px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); font-family: 'Inter', sans-serif; font-weight: 600; margin-top: 2px; }
.menu { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 500; }
.menu a { color: var(--ink); padding: 6px 0; transition: color .15s ease; }
.menu a:hover, .menu a.active { color: var(--gold); }
.menu a.has-sub::after { content: " ▾"; opacity: 0.4; font-size: 10px; }
.lang {
  font-size: 12px;
  letter-spacing: 1px;
  padding: 6px 10px;
  border: 0.5px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.lang:hover { border-color: var(--ink); color: var(--ink); }
.lang b { color: var(--ink); font-weight: 600; }
.lang .sep { opacity: 0.4; }
.lang.on-dark { color: rgba(255,254,245,0.65); border-color: rgba(255,254,245,0.18); }
.lang.on-dark b { color: var(--gold); }
.lang.on-dark:hover { color: var(--bg); border-color: var(--gold); }

/* Dropdown menu (Παθήσεις) */
.menu .dropdown { position: relative; }
.menu .dropdown > a { cursor: pointer; user-select: none; }
.menu .dropdown > a.has-sub::after {
  content: " ▾";
  opacity: 0.4;
  font-size: 10px;
  display: inline-block;
  transition: transform .2s ease, opacity .15s;
  margin-left: 2px;
}
.menu .dropdown.open > a.has-sub { color: var(--gold); }
.menu .dropdown.open > a.has-sub::after { transform: rotate(180deg); opacity: 1; }
.menu .dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--bg);
  border: 0.5px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 18px 48px rgba(27,42,96,0.16), 0 4px 12px rgba(27,42,96,0.06);
  padding: 18px;
  min-width: 560px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 60;
}
.menu .dropdown-panel::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: var(--bg);
  border-left: 0.5px solid var(--line);
  border-top: 0.5px solid var(--line);
}
.menu .dropdown:focus-within .dropdown-panel,
.menu .dropdown.open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.menu .dropdown-panel a {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0;
  transition: background .15s, color .15s;
}
.menu .dropdown-panel a:hover { background: var(--paper); color: var(--ink); }
.menu .dropdown-panel a .num {
  font-family: 'Fraunces', serif;
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  text-align: center;
}
.menu .dropdown-panel a .arr { color: var(--gold); opacity: 0; transition: opacity .15s, transform .15s; font-size: 14px; }
.menu .dropdown-panel a:hover .arr { opacity: 1; transform: translateX(2px); }
.menu .dropdown-panel .panel-footer {
  grid-column: 1 / -1;
  margin-top: 6px;
  padding: 12px 14px 4px;
  border-top: 0.5px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.menu .dropdown-panel .panel-footer span {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); font-weight: 600;
}
.menu .dropdown-panel .panel-footer a {
  padding: 0; display: inline-flex; gap: 6px;
  font-size: 12.5px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.menu .dropdown-panel .panel-footer a:hover { background: transparent; color: var(--ink); }

@media (max-width: 980px) {
  .menu .dropdown-panel { display: none; }
}

.cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px;
  background: var(--ink); color: var(--bg);
  border-radius: 999px;
  font-weight: 600; font-size: 14px; letter-spacing: 0.2px;
  border: none; cursor: pointer;
  white-space: nowrap;
  transition: background .15s ease, transform .15s ease;
}
.menu a.cta { padding: 13px 26px; }
.cta:hover { background: var(--gold); transform: translateY(-1px); }
.cta.gold { background: var(--gold); }
.cta.gold:hover { background: var(--ink); }
.cta.ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.cta.ghost:hover { background: var(--ink); color: var(--bg); }
.cta.on-dark { background: var(--bg); color: var(--ink); }
.cta.on-dark:hover { background: var(--gold); color: var(--bg); }
.cta .arrow { font-size: 16px; line-height: 1; }

/* ------------ Page hero ------------ */
.page-hero { padding: 70px 0 60px; background: var(--bg); border-bottom: 0.5px solid var(--line); }
.page-hero .breadcrumb { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; font-weight: 600; }
.page-hero .breadcrumb a { color: var(--gold); }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p.lead { font-size: 20px; max-width: 64ch; }

/* ------------ Footer ------------ */
footer.site { background: var(--ink); color: rgba(255,254,245,0.85); padding: 70px 0 36px; }
.foot-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 48px; }
.foot-brand .mark { font-family: 'Noto Sans Symbols 2'; font-size: 32px; color: var(--gold); margin-bottom: 16px; display: block; line-height: 1; }
.foot-brand h4 { font-family: 'Fraunces', serif; font-size: 22px; color: var(--bg); margin-bottom: 8px; font-weight: 500; }
.foot-brand p { font-size: 13px; opacity: 0.6; max-width: 28ch; color: rgba(255,254,245,0.7); }
.foot-col h5 { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 600; }
.foot-col a, .foot-col span { display: block; font-size: 14px; line-height: 1.8; color: rgba(255,254,245,0.7); }
.foot-col a:hover { color: var(--gold); }
.foot-bottom { margin-top: 56px; padding-top: 24px; border-top: 0.5px solid rgba(255,254,245,0.15); display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,254,245,0.5); letter-spacing: 0.5px; flex-wrap: wrap; gap: 12px; }

/* ============================================================
   CONDITION PAGE (template)
   ============================================================ */
.cond-page .page-hero { padding-bottom: 100px; }
.cond-hero-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 64px; align-items: end; }
.cond-hero-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 0.5px solid var(--line); border-radius: 4px; background: var(--paper); overflow: hidden; }
.cond-hero-meta .cell { padding: 22px 24px; border-right: 0.5px solid var(--line); }
.cond-hero-meta .cell:last-child { border-right: none; }
.cond-hero-meta .k { font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 8px; }
.cond-hero-meta .v { font-family: 'Fraunces', serif; font-size: 18px; color: var(--ink); line-height: 1.2; font-weight: 500; }
.cond-hero-meta .v .gold { color: var(--gold); }

.cond-toc {
  position: sticky; top: 86px;
  background: var(--bg);
  border: 0.5px solid var(--line);
  padding: 24px 24px;
  border-radius: 4px;
  font-size: 13.5px;
}
.cond-toc h5 { font-size: 10.5px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 14px; font-family: 'Inter', sans-serif; }
.cond-toc ol { list-style: none; counter-reset: toc; display: grid; gap: 10px; }
.cond-toc ol li { counter-increment: toc; }
.cond-toc ol li a { color: var(--ink-3); display: flex; align-items: baseline; gap: 12px; padding: 4px 0; transition: color .15s ease; border-bottom: 0.5px solid transparent; }
.cond-toc ol li a::before { content: counter(toc, decimal-leading-zero); font-family: 'Fraunces', serif; color: var(--gold); font-size: 12px; min-width: 22px; }
.cond-toc ol li a:hover { color: var(--ink); }

.cond-body { padding: 100px 0; }
.cond-body-grid { display: grid; grid-template-columns: 240px 1fr; gap: 80px; align-items: start; }
.cond-section { padding: 0 0 64px; border-bottom: 0.5px solid var(--line); margin-bottom: 64px; }
.cond-section:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.cond-section .eyebrow { display: inline-block; margin-bottom: 12px; }
.cond-section h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 22px; }
.cond-section p { font-size: 17px; color: var(--ink-3); margin-bottom: 16px; line-height: 1.65; max-width: 68ch; }
.cond-section ul, .cond-section ol { padding-left: 0; list-style: none; margin: 12px 0 18px; max-width: 68ch; }
.cond-section ul li, .cond-section ol li { font-size: 16.5px; color: var(--ink-3); padding: 10px 0 10px 26px; border-bottom: 0.5px solid var(--line); position: relative; line-height: 1.55; }
.cond-section ul li::before { content: '⚕'; position: absolute; left: 0; top: 10px; color: var(--gold); font-family: 'Noto Sans Symbols 2'; font-size: 13px; }
.cond-section ol { counter-reset: lst; }
.cond-section ol li { counter-increment: lst; }
.cond-section ol li::before { content: counter(lst, decimal-leading-zero); position: absolute; left: 0; top: 12px; color: var(--gold); font-family: 'Fraunces', serif; font-size: 13px; font-weight: 600; }
.cond-section strong { color: var(--ink); font-weight: 600; }

.fact-callout {
  background: var(--paper);
  border-left: 3px solid var(--gold);
  padding: 22px 26px;
  margin: 24px 0;
  border-radius: 0 4px 4px 0;
  max-width: 68ch;
}
.fact-callout .k { font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 6px; }
.fact-callout .v { font-family: 'Fraunces', serif; font-size: 18px; color: var(--ink); line-height: 1.35; }

/* Treatment cards (open / laparoscopic / robotic) */
.tx-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.tx-card {
  background: var(--bg);
  border: 0.5px solid var(--line);
  border-radius: 4px;
  padding: 28px 26px;
  position: relative;
  display: flex; flex-direction: column;
  transition: border-color .2s, transform .2s;
}
.tx-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.tx-card.featured { background: var(--paper); border-color: var(--gold); }
.tx-card .badge { position: absolute; top: 14px; right: 14px; font-size: 9.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.tx-card .ico { font-family: 'Noto Sans Symbols 2'; font-size: 24px; color: var(--gold); display: block; margin-bottom: 18px; line-height: 1; }
.tx-card h3 { font-family: 'Fraunces', serif; font-size: 20px; margin-bottom: 8px; font-weight: 500; }
.tx-card p { font-size: 14.5px; color: var(--muted); line-height: 1.55; margin: 0 0 16px; }
.tx-card .specs { margin-top: auto; padding-top: 14px; border-top: 0.5px solid var(--line); display: grid; gap: 8px; }
.tx-card .specs div { font-size: 12.5px; color: var(--ink-3); display: flex; justify-content: space-between; }
.tx-card .specs div b { font-family: 'Fraunces', serif; font-weight: 500; color: var(--ink); }

/* FAQ accordion */
.faq { display: grid; gap: 0; margin-top: 8px; }
.faq details { border-bottom: 0.5px solid var(--line); padding: 18px 0; }
.faq details:first-child { border-top: 0.5px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; font-family: 'Fraunces', serif; font-size: 19px; color: var(--ink); font-weight: 500; display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '＋'; color: var(--gold); font-weight: 400; font-size: 22px; transition: transform .2s; line-height: 1; }
.faq details[open] summary::after { content: '－'; }
.faq details p { font-size: 16px; color: var(--ink-3); margin-top: 14px; line-height: 1.6; max-width: 68ch; }

/* Related conditions */
.cond-related { background: var(--paper); padding: 80px 0; }
.rel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 38px; }
.rel-card { background: var(--bg); border: 0.5px solid var(--line); padding: 26px 26px; border-radius: 4px; display: flex; flex-direction: column; gap: 8px; transition: border-color .2s, transform .2s; }
.rel-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.rel-card .ico { font-family: 'Noto Sans Symbols 2'; color: var(--gold); font-size: 18px; }
.rel-card .name { font-family: 'Fraunces', serif; font-size: 19px; color: var(--ink); font-weight: 500; margin-top: 8px; }
.rel-card .arr { color: var(--gold); margin-top: auto; font-size: 16px; }

/* Final dark CTA */
.dark-cta { background: var(--ink); color: var(--bg); padding: 90px 0; text-align: center; }
.dark-cta .eyebrow { color: var(--gold); }
.dark-cta h2 { color: var(--bg); }
.dark-cta p { color: rgba(255,254,245,0.7); max-width: 56ch; margin: 16px auto 30px; }

/* ============================================================
   CONDITIONS LISTING PAGE
   ============================================================ */
.cond-listing { padding: 80px 0 110px; }
.cond-listing .filter-row { display: flex; gap: 8px; margin-bottom: 48px; flex-wrap: wrap; }
.cond-listing .filter-row button { background: transparent; border: 0.5px solid var(--line); padding: 8px 18px; border-radius: 999px; font-size: 13px; font-family: inherit; color: var(--ink); cursor: pointer; transition: all .15s; font-weight: 500; }
.cond-listing .filter-row button:hover { border-color: var(--ink); }
.cond-listing .filter-row button.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.cond-listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border-top: 0.5px solid var(--line); border-bottom: 0.5px solid var(--line); }
.cond-listing-card {
  background: var(--bg);
  padding: 32px 30px;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 220px;
  transition: background .2s ease;
  cursor: pointer;
}
.cond-listing-card:hover { background: var(--paper); }
.cond-listing-card .num { font-family: 'Fraunces', serif; font-size: 13px; color: var(--gold); font-weight: 500; letter-spacing: 1px; }
.cond-listing-card .name { font-family: 'Fraunces', serif; font-size: 22px; color: var(--ink); line-height: 1.18; font-weight: 500; }
.cond-listing-card .blurb { font-size: 14px; color: var(--muted); line-height: 1.5; margin-top: 4px; }
.cond-listing-card .tag { font-size: 10.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-top: auto; }
.cond-listing-card .arrow { color: var(--gold); font-size: 18px; margin-top: 6px; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.svc-intro { padding: 80px 0 60px; }
.svc-intro-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: end; }

.svc-list { padding: 40px 0 110px; }
.svc-row {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  padding: 64px 0;
  border-top: 0.5px solid var(--line);
  align-items: start;
}
.svc-row:last-child { border-bottom: 0.5px solid var(--line); }
.svc-row .label { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 14px; }
.svc-row h2 { margin-bottom: 14px; }
.svc-row .ico { font-family: 'Noto Sans Symbols 2'; color: var(--gold); font-size: 38px; line-height: 1; margin-bottom: 18px; }
.svc-row p { font-size: 17px; color: var(--ink-3); line-height: 1.65; max-width: 60ch; }
.svc-row ul { list-style: none; display: grid; gap: 10px; margin-top: 22px; }
.svc-row ul li { font-size: 15px; color: var(--ink-3); padding-left: 22px; position: relative; line-height: 1.5; }
.svc-row ul li::before { content: '⚕'; position: absolute; left: 0; top: 1px; color: var(--gold); font-family: 'Noto Sans Symbols 2'; font-size: 14px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero { padding: 70px 0 60px; }
.contact-grid-main {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 0.5px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg);
}
.clinic-card {
  padding: 38px 36px;
  border-right: 0.5px solid var(--line);
  border-bottom: 0.5px solid var(--line);
  background: var(--bg);
  display: flex; flex-direction: column;
  gap: 14px;
  position: relative;
}
.clinic-card:nth-child(2n) { border-right: none; }
.clinic-card:nth-last-child(-n+2) { border-bottom: none; }
.clinic-card .city { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.clinic-card h3 { font-family: 'Fraunces', serif; font-size: 26px; font-weight: 500; }
.clinic-card .lines { display: grid; gap: 6px; font-size: 15px; color: var(--ink-3); }
.clinic-card .lines b { font-weight: 500; color: var(--ink); }
.clinic-card .meta-row { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 10px; font-size: 13px; color: var(--muted); }
.clinic-card .meta-row span { display: inline-flex; gap: 6px; align-items: center; }
.clinic-card .meta-row .k { color: var(--gold); font-family: 'Noto Sans Symbols 2'; font-size: 13px; }
.clinic-card .actions { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.clinic-card .actions a { font-size: 13px; padding: 8px 16px; }

.contact-form-section { padding: 100px 0; background: var(--paper); }
.cform-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: start; }
.cform { background: var(--bg); padding: 40px 38px; border: 0.5px solid var(--line); border-radius: 4px; display: grid; gap: 16px; }
.cform label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.cform input, .cform select, .cform textarea { width: 100%; font: inherit; font-size: 15px; padding: 12px 14px; border: 0.5px solid var(--line); border-radius: 3px; background: var(--bg); color: var(--ink); margin-top: 6px; font-family: inherit; }
.cform input:focus, .cform select:focus, .cform textarea:focus { outline: none; border-color: var(--gold); }
.cform input:invalid:not(:placeholder-shown), .cform select:invalid:not(:placeholder-shown) { border-color: #C84A2C; }
.cform .req { color: var(--gold); font-weight: 700; margin-left: 2px; }
.cform .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cform textarea { min-height: 110px; resize: vertical; }
.cform .submit-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 10px; flex-wrap: wrap; }
.cform .submit-row small { font-size: 12px; color: var(--muted); max-width: 32ch; line-height: 1.4; }

.contact-direct { padding: 80px 0; }
.direct-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.direct-card { padding: 30px 28px; border: 0.5px solid var(--line); border-radius: 4px; background: var(--bg); }
.direct-card .ico { font-family: 'Noto Sans Symbols 2'; color: var(--gold); font-size: 22px; line-height: 1; margin-bottom: 14px; }
.direct-card h4 { font-size: 18px; font-family: 'Fraunces', serif; font-weight: 500; margin-bottom: 6px; }
.direct-card p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.5; }
.direct-card a.big { display: block; margin-top: 14px; font-family: 'Fraunces', serif; font-size: 22px; color: var(--ink); font-weight: 500; }
.direct-card a.big:hover { color: var(--gold); }

/* Map placeholder */
.map-block { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--paper), var(--sand)); border-radius: 4px; position: relative; overflow: hidden; border: 0.5px solid var(--line); }
.map-block::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(27,42,96,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,42,96,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-block .pin {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  font-family: 'Noto Sans Symbols 2'; color: var(--gold); font-size: 38px; line-height: 1;
  text-shadow: 0 2px 6px rgba(27,42,96,0.2);
}
.map-block .label { position: absolute; left: 16px; top: 16px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); font-weight: 600; background: var(--bg); padding: 6px 10px; border-radius: 3px; border: 0.5px solid var(--line); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .cond-body-grid { grid-template-columns: 200px 1fr; gap: 56px; }
}
@media (max-width: 980px) {
  .menu { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 64px 0; }
  .cond-hero-grid, .svc-intro-grid, .cform-grid { grid-template-columns: 1fr !important; gap: 48px; }
  .cond-body-grid { grid-template-columns: 1fr; gap: 32px; }
  .cond-toc { position: static; }
  .cond-listing-grid, .tx-grid, .rel-grid, .direct-grid { grid-template-columns: 1fr 1fr; }
  .svc-row { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid-main { grid-template-columns: 1fr; }
  .clinic-card { border-right: none !important; border-bottom: 0.5px solid var(--line) !important; }
  .clinic-card:last-child { border-bottom: none !important; }
  .cond-hero-meta { grid-template-columns: 1fr; }
  .cond-hero-meta .cell { border-right: none; border-bottom: 0.5px solid var(--line); }
  .cond-hero-meta .cell:last-child { border-bottom: none; }
}
@media (max-width: 640px) {
  .cond-listing-grid, .tx-grid, .rel-grid, .direct-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .cform .row2 { grid-template-columns: 1fr; }
}
