*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --c-primary: #1f2a2e;
  --c-bg: #f8f7f4;
  --c-accent: #5cb85c;
  --c-muted: #b8b8b2;
  --c-card: #dde8e0;
  --c-white: #ffffff;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 2px 16px rgba(31,42,46,0.07);
  --shadow-md: 0 4px 28px rgba(31,42,46,0.12);
  --max-w: 960px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--c-bg); color: var(--c-primary); font-size: 17px; line-height: 1.65; -webkit-font-smoothing: antialiased; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

h1 { font-size: clamp(30px, 4.6vw, 44px); font-weight: 700; line-height: 1.08; letter-spacing: -0.025em; }
h2 { font-size: clamp(26px, 4.5vw, 40px); font-weight: 700; line-height: 1.18; letter-spacing: -0.015em; }
h3 { font-size: 21px; font-weight: 600; line-height: 1.3; }
h4 { font-size: 17px; font-weight: 600; }
p { color: #3d4f56; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-family: var(--font); font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all 0.18s; text-decoration: none; border: none;
  white-space: nowrap;
}
.btn-primary { background: var(--c-accent); color: var(--c-white); }
.btn-primary:hover { background: #4caa4c; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(92,184,92,0.32); }
.btn-outline { background: transparent; color: var(--c-primary); border: 2px solid rgba(31,42,46,0.25); }
.btn-outline:hover { border-color: var(--c-primary); background: var(--c-primary); color: var(--c-white); }
.btn-ghost { background: transparent; color: var(--c-white); border: 2px solid rgba(255,255,255,0.3); }
.btn-ghost:hover { border-color: var(--c-white); background: rgba(255,255,255,0.1); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn:disabled { opacity: 0.45; cursor: default; pointer-events: none; }

/* ─── NAV ─────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248,247,244,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31,42,46,0.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px; max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 34px; }
.nav-logo-text { font-size: 17px; font-weight: 700; color: var(--c-primary); letter-spacing: -0.01em; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: #5a6b72; text-decoration: none;
  padding: 7px 12px; border-radius: var(--radius-sm); transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--c-primary); background: var(--c-card); }
.nav-cta { margin-left: 12px; }

.nav-toggle {
  display: none; width: 44px; height: 44px; margin-right: -10px;
  background: transparent; border: none; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  border-radius: var(--radius-sm);
}
.nav-toggle:hover { background: var(--c-card); }
.nav-toggle-bar {
  display: block; width: 22px; height: 2px; border-radius: 2px;
  background: var(--c-primary); transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--c-bg); padding: 12px 24px 20px;
    border-bottom: 1px solid rgba(31,42,46,0.08); box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 16px; padding: 12px; }
  .nav-cta { margin-left: 0; margin-top: 10px; }
}

/* ─── HERO ─────────────────────────────────────────────── */
.hero { padding: 72px 0 88px; }
.hero-inner {
  display: grid; grid-template-columns: 1fr minmax(280px, 380px);
  gap: clamp(32px, 5vw, 64px); align-items: center;
}
.hero-label {
  display: inline-block; font-size: 12px; font-weight: 700; color: var(--c-accent);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px;
}
.hero h1 { margin-bottom: 20px; }
.hero-sub { font-size: 18px; color: #5a6b72; margin-bottom: 36px; line-height: 1.6; }
.hero-sub--tight { margin-bottom: 18px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-photo-wrap { position: relative; }
.hero-photo {
  width: 100%; aspect-ratio: 6/7; object-fit: cover;
  object-position: 63% center; border-radius: 16px;
}

@media (max-width: 820px) {
  .hero { padding: 48px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  /* Na úzkých displejích fotka pod textem — na šířku, ať nezabere půl obrazovky */
  .hero-photo-wrap { max-width: 520px; margin-inline: auto; }
  .hero-photo { aspect-ratio: 4/3; object-position: 60% center; }
}

/* ─── WHY ─────────────────────────────────────────────── */
.why { padding: 80px 0; background: var(--c-primary); }
.why-intro-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 56px; }
.why h2 { color: var(--c-white); }
.why-lead { font-size: 17px; color: rgba(255,255,255,0.6); line-height: 1.7; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.why-card { background: rgba(255,255,255,0.04); padding: 32px; border-radius: 4px; }
.why-card:first-child { border-radius: var(--radius) 4px 4px var(--radius); }
.why-card:last-child { border-radius: 4px var(--radius) var(--radius) 4px; }
.why-num { font-size: 11px; font-weight: 700; color: var(--c-accent); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.why-card h3 { color: var(--c-white); font-size: 18px; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,0.58); font-size: 14px; line-height: 1.65; }

@media (max-width: 760px) {
  .why-intro-row { grid-template-columns: 1fr; gap: 16px; }
  .why-grid { grid-template-columns: 1fr; gap: 2px; }
  .why-card { border-radius: 4px; }
  .why-card:first-child { border-radius: var(--radius) var(--radius) 4px 4px; }
  .why-card:last-child { border-radius: 4px 4px var(--radius) var(--radius); }
}

/* ─── FLAGSHIP ─────────────────────────────────────────── */
.flagship { padding: 96px 0; }
.section-label {
  font-size: 12px; font-weight: 700; color: var(--c-accent);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px;
}
.flagship-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.flagship-text h2 { margin-bottom: 18px; }
.flagship-text > p { font-size: 16px; margin-bottom: 12px; }
.flagship-price-box {
  display: flex; align-items: center; gap: 20px;
  background: var(--c-card); border-radius: var(--radius); padding: 18px 24px;
  margin: 28px 0;
}
.flagship-price-main { font-size: 38px; font-weight: 700; color: var(--c-primary); line-height: 1; }
.flagship-price-sub { font-size: 14px; color: #5a6b72; line-height: 1.5; }
.flagship-includes { list-style: none; margin: 0 0 32px; }
.flagship-includes li {
  padding: 10px 0; border-bottom: 1px solid rgba(184,184,178,0.28);
  font-size: 15px; display: flex; align-items: flex-start; gap: 10px;
}
.flagship-includes li:last-child { border-bottom: none; }
.flagship-includes li::before { content: '✓'; color: var(--c-accent); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.flagship-note {
  font-size: 14px; color: #5a6b72; line-height: 1.6;
  margin: -18px 0 30px; padding-left: 18px; border-left: 2px solid var(--c-card);
}

.flagship-panel { background: var(--c-card); border-radius: 16px; padding: 36px; }
.flagship-panel h3 { margin-bottom: 8px; }
.flagship-panel-lead { font-size: 14px; color: #5a6b72; margin-bottom: 24px; }
.diagnoses-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.diagnoses-chips span {
  background: var(--c-white); border-radius: 100px; padding: 8px 16px;
  font-size: 14px; font-weight: 500; color: var(--c-primary);
}
/* ─── CO ADAMIO NEDĚLÁ ─────────────────────────────────── */
.disclaimer {
  margin-top: 20px; padding: 26px 28px;
  background: var(--c-white); border: 1px solid rgba(31,42,46,0.1);
  border-radius: 16px; border-left: 4px solid var(--c-accent);
}
.disclaimer-lead {
  font-size: 17px; font-weight: 300; line-height: 1.55;
  color: var(--c-primary); letter-spacing: -0.01em;
}
.disclaimer-lead strong { font-weight: 700; }
.disclaimer-sub {
  margin-top: 12px; font-size: 14px; font-weight: 300;
  color: #6a7d84; line-height: 1.65;
}
@media (max-width: 620px) {
  .disclaimer { padding: 22px 20px; }
  .disclaimer-lead { font-size: 17px; }
}

@media (max-width: 760px) {
  .flagship-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ─── METHODS ─────────────────────────────────────────── */
.methods { padding: 80px 0; background: var(--c-white); }
.section-header { margin-bottom: 52px; }
.section-header h2 { margin-bottom: 10px; }
.section-header p { font-size: 17px; color: #5a6b72; max-width: 520px; }
.methods-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.method-card {
  background: var(--c-bg); border-radius: var(--radius); padding: 26px;
  display: flex; flex-direction: column; transition: box-shadow 0.2s, transform 0.2s;
  border: 1px solid transparent;
}
.method-card:hover { box-shadow: var(--shadow-md); border-color: var(--c-card); transform: translateY(-2px); }
.method-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.method-card h3 { font-size: 16px; line-height: 1.35; flex: 1; padding-right: 10px; }
.method-badges { display: flex; flex-direction: column; gap: 4px; align-items: flex-end; flex-shrink: 0; }
.badge-price {
  background: var(--c-accent); color: var(--c-white);
  border-radius: 100px; padding: 3px 10px; font-size: 12px; font-weight: 700;
}
.badge-duration {
  background: #e6e6e1; color: #5a6b72;
  border-radius: 100px; padding: 3px 10px; font-size: 12px; font-weight: 500;
}
.method-card p { font-size: 13px; color: #5a6b72; line-height: 1.6; flex: 1; margin-bottom: 18px; }
.method-book-btn {
  font-size: 13px; font-weight: 600; color: var(--c-accent); cursor: pointer;
  background: none; border: none; padding: 0; text-align: left;
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap 0.15s;
}
.method-book-btn:hover { text-decoration: underline; gap: 6px; }

@media (max-width: 920px) { .methods-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .methods-grid { grid-template-columns: 1fr; } }

/* ─── TEAM ─────────────────────────────────────────────── */
.team { padding: 96px 0; }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 52px; }
.team-card { background: var(--c-white); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
.team-photo-wrap { height: 280px; overflow: hidden; }
.team-photo { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.team-info { padding: 28px; }
.team-info h3 { margin-bottom: 4px; }
.team-role { font-size: 13px; font-weight: 700; color: var(--c-accent); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 14px; }
.team-info p { font-size: 15px; line-height: 1.65; }

@media (max-width: 680px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-photo-wrap { height: 240px; }
}

/* ─── BOOKING ─────────────────────────────────────────── */
.booking { padding: 96px 0; background: var(--c-bg); }
.booking-widget {
  max-width: 780px; margin: 48px auto 0;
  background: var(--c-white); border-radius: 16px;
  padding: 40px; box-shadow: var(--shadow-md);
}

.booking-steps { display: flex; align-items: center; margin-bottom: 40px; }
.booking-step { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--c-muted); white-space: nowrap; }
.booking-step.active { color: var(--c-primary); }
.booking-step.done { color: var(--c-accent); }
.step-num {
  width: 28px; height: 28px; border-radius: 50%; border: 2px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0;
}
.booking-step.active .step-num { background: var(--c-primary); color: white; border-color: var(--c-primary); }
.booking-step.done .step-num { background: var(--c-accent); color: white; border-color: var(--c-accent); }
.step-connector { flex: 1; height: 2px; background: #e6e6e0; margin: 0 12px; min-width: 16px; }
.booking-step.done + .step-connector { background: var(--c-accent); }

/* Step 1 */
.services-list { display: flex; flex-direction: column; gap: 8px; max-height: 520px; overflow-y: auto; padding-right: 4px; }
.service-option {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; background: var(--c-bg); border: 2px solid transparent;
  border-radius: var(--radius); cursor: pointer; transition: all 0.15s; gap: 12px;
}
.service-option:hover { border-color: var(--c-card); background: var(--c-white); }
.service-option.selected { border-color: var(--c-accent); background: rgba(92,184,92,0.04); }
.svc-name { font-size: 15px; font-weight: 600; color: var(--c-primary); margin-bottom: 2px; }
.svc-type { font-size: 12px; color: var(--c-muted); font-weight: 500; }
.svc-right { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.svc-price { font-size: 15px; font-weight: 700; }
.svc-dur { font-size: 12px; color: var(--c-muted); background: #e6e6e0; padding: 3px 9px; border-radius: 100px; }

/* Step 2 */
.booking-date-time { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cal-nav-btn {
  background: none; border: none; cursor: pointer; color: var(--c-primary);
  font-size: 22px; line-height: 1; padding: 4px 8px; border-radius: 6px;
  transition: background 0.15s;
}
.cal-nav-btn:hover { background: var(--c-bg); }
.cal-month-label { font-size: 15px; font-weight: 600; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-dn { font-size: 10px; font-weight: 700; color: var(--c-muted); text-align: center; padding: 6px 0; text-transform: uppercase; letter-spacing: 0.05em; }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 8px; font-size: 13px; cursor: pointer; transition: all 0.12s; font-weight: 500;
}
.cal-day:not(.disabled):not(.empty):hover { background: var(--c-card); }
.cal-day.selected { background: var(--c-primary); color: white; font-weight: 700; }
.cal-day.today:not(.selected) { color: var(--c-accent); font-weight: 700; }
.cal-day.disabled { color: var(--c-muted); cursor: default; opacity: 0.4; font-weight: 400; }
.cal-day.empty { cursor: default; }

.time-section h4 { font-size: 14px; font-weight: 600; margin-bottom: 14px; color: #5a6b72; }
.slots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.slot-btn {
  padding: 9px 6px; background: var(--c-bg); border: 2px solid #e6e6e0;
  border-radius: var(--radius-sm); font-size: 14px; font-weight: 500;
  cursor: pointer; transition: all 0.12s; text-align: center; font-family: var(--font);
}
.slot-btn:hover { border-color: var(--c-accent); color: var(--c-accent); }
.slot-btn.selected { border-color: var(--c-accent); background: var(--c-accent); color: white; }
.slots-msg { font-size: 14px; color: var(--c-muted); text-align: center; padding: 32px 0; line-height: 1.6; }

@media (max-width: 580px) {
  .booking-date-time { grid-template-columns: 1fr; }
  .booking-widget { padding: 24px 18px; }
}

/* Step 3 */
.booking-summary {
  background: var(--c-bg); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 28px;
}
.booking-summary h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--c-muted); margin-bottom: 14px; font-weight: 700; }
.sum-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 7px 0; border-bottom: 1px solid rgba(184,184,178,0.2);
  font-size: 14px;
}
.sum-row:last-child { border-bottom: none; }
.sum-label { color: #5a6b72; }
.sum-value { font-weight: 600; }

.booking-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 13px; font-weight: 600; color: #4a5a62; }
.form-group input, .form-group textarea {
  padding: 11px 14px; border: 2px solid #e6e6e0; border-radius: var(--radius-sm);
  font-family: var(--font); font-size: 15px; color: var(--c-primary);
  background: var(--c-bg); outline: none; transition: border-color 0.15s; width: 100%;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--c-accent); background: var(--c-white); }
.form-group textarea { resize: vertical; min-height: 88px; }
.form-gdpr { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: #5a6b72; line-height: 1.55; }
.form-gdpr input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; accent-color: var(--c-accent); width: 15px; height: 15px; }

@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

/* Nápověda nad kalendářem (načítám / žádné volno) */
.cal-hint {
  font-size: 13px; color: #5a6b72; text-align: center;
  margin: -6px 0 12px; min-height: 18px;
}
.cal-nav-btn:disabled { opacity: 0.28; cursor: default; }

/* ─── OKNO S CHYBOU SYSTÉMU ────────────────────────────── */
.sys-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(31,42,46,0.55); backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.sys-box {
  background: var(--c-white); border-radius: 16px; padding: 40px 36px;
  max-width: 460px; width: 100%; text-align: center; box-shadow: var(--shadow-md);
}
.sys-mark {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: #f0e6e6; font-size: 28px; font-weight: 700; color: #8a5a5a;
}
.sys-box h3 { margin-bottom: 12px; }
.sys-box p { font-size: 15px; }
.sys-sub { margin-top: 14px; color: #5a6b72; font-size: 14px; }
.sys-tel { margin-top: 6px; font-size: 18px; font-weight: 700; }
.sys-tel a { color: var(--c-primary); text-decoration: none; }
.sys-note { margin-top: 10px; font-size: 13px; color: #7a8b92; line-height: 1.55; }
.sys-box .btn { margin-top: 24px; }

/* Past na roboty — člověk ji nevidí, ale automat ji vyplní.
   Schválně ne display:none, to část robotů pozná a pole přeskočí. */
.hp-field {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

/* Booking nav + messages */
.booking-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; padding-top: 24px; border-top: 1px solid #e6e6e0; }
.booking-error { background: #fff5f5; border: 1px solid #ffd6d6; border-radius: var(--radius-sm); padding: 12px 16px; font-size: 14px; color: #c0392b; margin-top: 14px; }

/* Success */
.booking-success { text-align: center; padding: 48px 20px; }
.booking-success-icon { color: var(--c-accent); margin-bottom: 20px; }
.booking-success h3 { margin-bottom: 12px; }
.booking-success p { color: #5a6b72; font-size: 15px; line-height: 1.7; }

/* ─── FAQ ─────────────────────────────────────────────── */
.faq { padding: 80px 0; background: var(--c-white); }
.faq-list { margin-top: 48px; max-width: 680px; }
.faq-item { border-bottom: 1px solid rgba(184,184,178,0.35); }
.faq-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; background: none; border: none; cursor: pointer;
  font-family: var(--font); font-size: 16px; font-weight: 600; color: var(--c-primary);
  text-align: left; gap: 16px;
}
.faq-icon { flex-shrink: 0; font-size: 22px; color: var(--c-muted); transition: transform 0.2s, color 0.2s; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--c-accent); }
.faq-answer {
  font-size: 15px; color: #5a6b72; line-height: 1.7;
  max-height: 0; overflow: hidden; transition: max-height 0.32s ease, padding 0.2s;
}
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 20px; }

/* ─── CONTACT ─────────────────────────────────────────── */
.contact { padding: 80px 0; background: var(--c-primary); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact h2 { color: var(--c-white); margin-bottom: 36px; }
.contact-items { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item-icon { color: var(--c-accent); flex-shrink: 0; margin-top: 2px; }
.contact-item-body { font-size: 15px; color: rgba(255,255,255,0.72); line-height: 1.65; }
.contact-item-body strong { color: var(--c-white); display: block; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.contact-map { border-radius: var(--radius); overflow: hidden; height: 340px; }
.contact-map iframe { width: 100%; height: 100%; border: none; filter: grayscale(20%); }

@media (max-width: 720px) {
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-map { height: 260px; }
}

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  background: #141e22; color: rgba(255,255,255,0.35);
  padding: 24px; text-align: center; font-size: 13px; line-height: 1.8;
}
footer a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-hours { color: rgba(255,255,255,0.72); font-size: 15px; }
.footer-hours strong { color: var(--c-white); font-weight: 600; }
.footer-note { margin-top: 4px; color: rgba(255,255,255,0.4); }
.footer-legal { margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); }
footer a:hover { color: rgba(255,255,255,0.8); }
