@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,700;0,800;1,500&family=Mulish:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* Barcelona — Catalan modernism (Gaudí). Terracotta, Mediterranean green, mustard on cream.
   Playfair Display serif headings + Mulish humanist sans body. Trencadís-mosaic accents. */

:root {
  --ink: #2e2620;            /* warm dark walnut */
  --ink-soft: #6e5f52;       /* soft clay-brown */
  --line: #e4d7c3;           /* sun-bleached sand */
  --bg: #fbf5e9;             /* cream */
  --bg-soft: #f4e9d4;        /* deeper cream */
  --accent: #b04a2f;         /* terracotta */
  --accent-soft: #f3ddce;    /* pale terracotta wash */
  --good: #2f6b4f;           /* deep Mediterranean green */
  --good-bg: #dcecdf;        /* soft green tile */
  --mid: #9a6b12;            /* mustard / ochre */
  --mid-bg: #f6e6c0;         /* mustard tile */
  --bad: #a3312a;            /* deep tile red */
  --bad-bg: #f4dcd4;         /* pale red tile */
  --unknown: #8a7c6d;        /* muted taupe */
  --max-width: 74rem;

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Mulish", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --shadow: 0 2px 10px rgba(46, 38, 32, 0.08);
  /* trencadís mosaic seam used as decorative border */
  --mosaic: repeating-linear-gradient(45deg,
      var(--accent) 0 8px, var(--mid) 8px 16px, var(--good) 16px 24px, var(--bg-soft) 24px 32px);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(176, 74, 47, 0.05) 1px, transparent 0);
  background-size: 22px 22px;
}
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.4rem; }
main.container { padding-top: 1.75rem; padding-bottom: 3.5rem; }

a { color: var(--accent); text-underline-offset: 2px; }
a:hover { text-decoration-thickness: 2px; }

h1, h2, h3 { font-family: var(--serif); font-weight: 700; letter-spacing: 0.005em; color: var(--ink); }
h1 { font-size: 2.15rem; line-height: 1.15; margin: 0.6rem 0 0.85rem; font-weight: 800; }
h2 { font-size: 1.55rem; margin: 2.2rem 0 0.6rem; position: relative; padding-bottom: 0.3rem; }
h2::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 3.5rem; height: 4px;
  background: var(--mosaic); background-size: 32px 100%; border-radius: 2px;
}
h3 { font-size: 1.18rem; margin: 1.4rem 0 0.45rem; }
p { margin: 0.5rem 0 1rem; }
.lead { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 1.2rem; line-height: 1.5; color: var(--ink-soft); max-width: 52rem; }
.muted { color: var(--ink-soft); font-size: 0.9rem; }
.nowrap { white-space: nowrap; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* Header */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  box-shadow: var(--shadow);
  position: relative;
}
.site-header::after {
  content: ""; display: block; height: 6px;
  background: var(--mosaic); background-size: 32px 100%;
}
.site-header .container { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.5rem 2rem; padding-top: 1.15rem; padding-bottom: 1rem; }
.brand { text-decoration: none; color: var(--ink); display: flex; flex-direction: column; }
.brand-name { font-family: var(--serif); font-weight: 800; font-size: 1.4rem; letter-spacing: 0.01em; color: var(--accent); }
.brand-tagline { font-size: 0.8rem; color: var(--ink-soft); font-style: italic; }
.site-nav { display: flex; flex-wrap: wrap; gap: 0.25rem 1.2rem; font-size: 0.94rem; }
.site-nav a { text-decoration: none; color: var(--ink-soft); padding: 0.15rem 0; border-bottom: 2px solid transparent; }
.site-nav a:hover { color: var(--accent); }
.site-nav a[aria-current="page"] { color: var(--accent); border-bottom-color: var(--accent); font-weight: 700; }
.lang-switcher { margin-left: auto; font-size: 0.85rem; white-space: nowrap; }
.lang-switcher a { text-decoration: none; color: var(--ink-soft); }
.lang-switcher a:hover { color: var(--accent); text-decoration: underline; }
.lang-current { font-weight: 700; color: var(--accent); }
.lang-sep { color: var(--line); }

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--accent-soft) 0%, transparent 90%);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.75rem 1.9rem;
  margin-top: 1.5rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 6px;
  background: var(--mosaic); background-size: 32px 100%;
}
.hero h1 { max-width: 46rem; }
.hero-links { font-size: 0.98rem; }

/* Profile controls */
.ranking-controls { margin: 1.75rem 0 1rem; }
.profile-buttons { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.profile-btn {
  font: inherit; font-size: 0.88rem;
  padding: 0.38rem 0.9rem;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--bg); color: var(--ink-soft);
  cursor: pointer; transition: all 0.15s ease;
}
.profile-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }
.profile-btn[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: var(--bg); font-weight: 600; }
.profile-desc { min-height: 1.4em; margin: 0.65rem 0 0; font-size: 0.92rem; color: var(--ink-soft); font-style: italic; }
.table-filter { margin-top: 0.85rem; }
.table-filter input {
  font: inherit; font-size: 0.92rem; width: 100%; max-width: 20rem;
  padding: 0.45rem 0.75rem; border: 1px solid var(--line); border-radius: 8px;
  background: var(--bg); color: var(--ink);
}
.table-filter input:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }

/* Tables */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; background: var(--bg); box-shadow: var(--shadow); }
table { border-collapse: collapse; width: 100%; font-size: 0.92rem; }
th, td { text-align: left; padding: 0.6rem 0.75rem; border-bottom: 1px solid var(--line); vertical-align: top; }
thead th {
  font-family: var(--sans); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--ink-soft); border-bottom: 2px solid var(--accent); background: var(--bg-soft);
}
td.num, th.num { text-align: right; font-variant-numeric: tabular-nums; }

.ranking-table tbody tr { transition: background 0.12s ease; }
.ranking-table tbody tr:hover { background: var(--accent-soft); }
.rank-cell { font-family: var(--serif); font-weight: 700; font-variant-numeric: tabular-nums; color: var(--accent); width: 2.4rem; }
.name-cell a { font-weight: 700; text-decoration: none; color: var(--ink); }
.name-cell a:hover { text-decoration: underline; color: var(--accent); }
.score-cell { white-space: nowrap; }
.th-sub { font-size: 0.7em; color: var(--ink-soft); margin-left: 0.15em; text-transform: none; }
.cat-cell { white-space: nowrap; font-variant-numeric: tabular-nums; }
.cat-max { color: var(--ink-soft); font-size: 0.8em; }
.flags-cell .flag-count { color: var(--bad); font-weight: 700; }
.flags-cell .flag-none { color: var(--ink-soft); }
.table-note { margin-top: 0.85rem; max-width: 52rem; }

.excluded-note { margin-top: 1rem; font-size: 0.92rem; }
.excluded-note summary { cursor: pointer; color: var(--ink-soft); }

/* Score badges — tile-like */
.score-badge {
  display: inline-block; min-width: 2.6em; text-align: center;
  padding: 0.15em 0.5em; border-radius: 5px;
  font-family: var(--serif); font-weight: 700; font-variant-numeric: tabular-nums;
  border: 1px solid transparent;
}
.score-high { background: var(--good-bg); color: var(--good); border-color: rgba(47, 107, 79, 0.25); }
.score-mid { background: var(--mid-bg); color: var(--mid); border-color: rgba(154, 107, 18, 0.25); }
.score-low { background: var(--bad-bg); color: var(--bad); border-color: rgba(163, 49, 42, 0.25); }
.score-na { background: var(--bg-soft); color: var(--unknown); border-color: var(--line); }

/* Bars */
.bar { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px; height: 0.65rem; overflow: hidden; min-width: 6rem; flex: 1; }
.bar-fill { background: linear-gradient(90deg, var(--mid), var(--accent)); height: 100%; }

/* Cards */
.cards-section { margin-top: 2.75rem; }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(19rem, 1fr)); gap: 1.15rem; }
.clinic-card {
  border: 1px solid var(--line); border-radius: 12px; padding: 1.1rem 1.2rem;
  background: var(--bg); box-shadow: var(--shadow); position: relative; overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.clinic-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 6px; height: 100%;
  background: var(--mosaic); background-size: 100% 32px;
}
.clinic-card:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(46, 38, 32, 0.14); }
.card-head { display: flex; align-items: baseline; justify-content: space-between; gap: 0.75rem; }
.card-head h3 { margin: 0; font-size: 1.1rem; }
.card-head a { text-decoration: none; color: var(--ink); }
.card-head a:hover { text-decoration: underline; color: var(--accent); }
.card-summary { font-size: 0.88rem; color: var(--ink-soft); }
.card-bars { display: flex; flex-direction: column; gap: 0.32rem; margin: 0.65rem 0; }
.card-bar-row { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; }
.card-bar-label { flex: 0 0 9.5rem; color: var(--ink-soft); }
.card-bar-pts { flex: 0 0 3.2rem; text-align: right; font-variant-numeric: tabular-nums; color: var(--ink-soft); }
.card-meta { font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 0; }

/* Clinic page */
.breadcrumbs { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 0.5rem; }
.clinic-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1.5rem; flex-wrap: wrap; border-bottom: 2px solid var(--accent); padding-bottom: 1.1rem; }
.clinic-headline { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--ink-soft); max-width: 46rem; }
.clinic-score-big { font-family: var(--serif); font-size: 2.1rem; display: flex; align-items: baseline; gap: 0.25rem; }
.clinic-score-big .score-badge { padding: 0.15em 0.55em; }
.score-of { color: var(--ink-soft); font-size: 1rem; font-family: var(--sans); }

.chip-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.55rem; }
.chip { display: inline-flex; align-items: baseline; gap: 0.5em; border: 1px solid var(--line); border-radius: 8px; padding: 0.32rem 0.75rem; font-size: 0.85rem; background: var(--bg); }
.chip-ranked { background: var(--accent-soft); border-color: rgba(176, 74, 47, 0.3); }
.chip-rank { font-family: var(--serif); font-weight: 700; color: var(--accent); }
.chip-excluded { color: var(--ink-soft); }
.chip-excluded .chip-rank { color: var(--unknown); font-weight: 400; }
.chip-score { color: var(--ink-soft); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2.25rem; }
@media (max-width: 44rem) { .two-col { grid-template-columns: 1fr; } }
.plus-list li::marker { color: var(--good); }
.minus-list li::marker { color: var(--bad); }

.cat-section { margin-top: 1.75rem; }
.cat-section-head { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.cat-section-head h3 { margin: 0; }
.cat-section-score { display: flex; align-items: center; gap: 0.6rem; min-width: 14rem; font-variant-numeric: tabular-nums; font-size: 0.9rem; }
.crit-table { font-size: 0.9rem; }
.crit-table td { padding: 0.38rem 0.55rem; }
.crit-status { width: 1.6rem; }
.crit-pts { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; color: var(--ink-soft); width: 4rem; }
.crit-note { color: var(--ink-soft); font-size: 0.85em; }
.crit-unknown .crit-label { color: var(--unknown); }

.status { font-weight: 700; }
.st-earned { color: var(--good); }
.st-partial { color: var(--mid); }
.st-missed { color: var(--bad); }
.st-unknown { color: var(--unknown); }

.flag-list { list-style: none; padding: 0; }
.flag { padding: 0.55rem 0.85rem; border-left: 4px solid var(--bad); background: var(--bad-bg); border-radius: 0 8px 8px 0; margin-bottom: 0.5rem; font-size: 0.92rem; }
.flag-low { border-left-color: var(--mid); background: var(--mid-bg); }
.flag-sev { text-transform: uppercase; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; margin-right: 0.3rem; }

.unknown-list { columns: 2; column-gap: 2rem; font-size: 0.92rem; color: var(--ink-soft); }
@media (max-width: 44rem) { .unknown-list { columns: 1; } }

.kv-table th { width: 9rem; font-weight: 600; color: var(--ink-soft); }
.src-id { font-variant-numeric: tabular-nums; color: var(--ink-soft); width: 3rem; }
.src-ref { font-size: 0.82em; text-decoration: none; color: var(--accent); }
.src-manual { color: var(--ink-soft); font-style: italic; }
.sources-table td { word-break: break-word; }
:target { background: var(--mid-bg); transition: background 0.6s; }

.report-cta { margin-top: 2.75rem; border: 1px solid var(--line); border-radius: 12px; padding: 1.15rem 1.4rem; background: var(--bg-soft); box-shadow: var(--shadow); position: relative; overflow: hidden; }
.report-cta::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: var(--mosaic); background-size: 32px 100%; }

/* Buttons & forms */
.btn {
  display: inline-block; background: var(--accent); color: var(--bg);
  border: none; border-radius: 8px; padding: 0.55rem 1.25rem;
  font: inherit; font-size: 0.95rem; font-weight: 600; text-decoration: none; cursor: pointer;
  box-shadow: var(--shadow); transition: filter 0.15s ease;
}
.btn:hover { filter: brightness(1.08); }
.btn-secondary { background: var(--bg); color: var(--accent); border: 1px solid var(--accent); box-shadow: none; }
.report-form { max-width: 36rem; }
.form-row { margin-bottom: 1.1rem; }
.form-row label { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 0.3rem; }
.form-row .check-label { font-weight: 400; }
.form-row input[type="url"], .form-row input[type="email"], .form-row select, .form-row textarea {
  width: 100%; font: inherit; font-size: 0.95rem;
  padding: 0.5rem 0.7rem; border: 1px solid var(--line); border-radius: 8px; background: var(--bg); color: var(--ink);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }

/* Methodology */
.formula {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px;
  padding: 0.85rem 1.1rem; font-size: 0.9rem; overflow-x: auto;
  border-left: 4px solid var(--mid);
}
.method-table td, .method-table th { font-size: 0.9rem; }
.profile-matrix td, .profile-matrix th { white-space: nowrap; }
.profile-matrix td:last-child, .profile-matrix th:last-child { white-space: normal; min-width: 14rem; }

/* Home audit block */
.home-audit { margin-top: 2.75rem; border-top: 2px solid var(--accent); padding-top: 1.1rem; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line); background: var(--bg-soft); margin-top: 2.5rem;
  font-size: 0.85rem; color: var(--ink-soft); position: relative;
}
.site-footer::before { content: ""; display: block; height: 6px; background: var(--mosaic); background-size: 32px 100%; }
.site-footer .container { padding-top: 1.4rem; padding-bottom: 1.75rem; }
.site-footer p { max-width: 60rem; }

/* Licensing & Credentials */
#licensing .lic-missing { color: var(--bad); }
.doctors-table { margin-top: 0.5rem; font-size: 0.92rem; }
.doctors-table th { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-soft); }
.doctors-table td .lic-missing { color: var(--bad); font-size: 0.9em; }

/* Feedback form (unified) */
.req { color: var(--bad); }
.contact-fieldset { border: 1px solid var(--line); border-radius: 10px; padding: 0.6rem 1.1rem 1.1rem; margin: 1.35rem 0; background: var(--bg); }
.contact-fieldset legend { font-family: var(--serif); font-weight: 700; padding: 0 0.5rem; color: var(--accent); }
.contacts-hint { margin: 0.3rem 0 0.75rem; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-error { color: var(--bad); font-size: 0.9rem; margin-top: 0.4rem; }
.form-status { min-height: 1.2em; font-size: 0.95rem; margin-top: 0.5rem; }
.form-ok { color: var(--good); font-weight: 700; }
.form-err { color: var(--bad); }
.cf-turnstile { margin: 1rem 0; }

/* Print */
@media print {
  body { background: #fff; color: #000; }
  .site-header::after, .site-footer::before, .hero::before, .clinic-card::before, .report-cta::before, .h2::after { display: none; }
  .table-wrap, .clinic-card, .hero, .report-cta { box-shadow: none; }
  a { color: #000; }
}
