/* ───────────────────────────────────────────────────────────
   Static-port additions, layered on top of the original design.
   The original visual system lives untouched in styles.css.
   ─────────────────────────────────────────────────────────── */

/* Low-specificity icon default; contextual rules in styles.css still win. */
svg { width: 24px; height: 24px; }

/* Photos: a plain <img> fills the shaped slots exactly like the
   original drag-and-drop Photo component did. */
.hero__photo img,
.about__photo img,
.christie__photo img,
.why__photo img { width: 100%; height: 100%; object-fit: cover; }

/* Skip link (accessibility) */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  background: var(--navy); color: #fff; padding: 10px 18px;
  border-radius: 0 0 10px 0; font-family: var(--head); font-weight: 600; font-size: 14px;
}
.skip-link:focus { left: 0; }

/* Language switch — desktop (in the top bar) */
.topbar__lang a { color: rgba(255,255,255,0.55); transition: color .15s; }
.topbar__lang a.is-on { color: #fff; }
.topbar__lang a:hover { color: var(--teal); }

/* Language switch — compact, shown on mobile where the top bar is hidden */
.lang-mini { display: none; align-items: center; gap: 6px; font-family: var(--head); font-weight: 700; font-size: 14px; }
.lang-mini a { color: var(--muted); padding: 4px 2px; }
.lang-mini a.is-on { color: var(--teal-deep); }
.lang-mini span { color: var(--line); }

/* Contact form: consent row, honeypot, status message */
.appt__form .consent { display: flex; align-items: flex-start; gap: 10px; margin: 2px 0 16px; font-size: 13px; color: var(--muted); line-height: 1.45; }
.appt__form .consent input {
  appearance: auto; -webkit-appearance: auto;
  width: 18px; height: 18px; min-height: 0; padding: 0; margin: 2px 0 0;
  border: 0; background: none; accent-color: var(--teal); flex: 0 0 auto;
}
.appt__form .consent a { color: var(--teal-deep); text-decoration: underline; }
.form-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-top: 14px; font-family: var(--head); font-weight: 600; font-size: 14px; }
.form-status.ok { color: var(--teal-deep); }
.form-status.err { color: #c0392b; }

/* Cookie consent banner */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 600;
  max-width: 760px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow-md); padding: 18px 22px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.cookie p { margin: 0; flex: 1 1 300px; font-size: 13.5px; color: var(--ink); line-height: 1.5; }
.cookie a { color: var(--teal-deep); text-decoration: underline; }
.cookie__btns { display: flex; gap: 10px; }
.cookie .btn { padding: 11px 20px; font-size: 14px; box-shadow: none; }
.cookie[hidden] { display: none; }

/* Legal pages (privacy / cookies) */
.legal__bar { border-bottom: 1px solid var(--line); padding: 18px 0; }
.legal__bar .wrap { display: flex; align-items: center; justify-content: space-between; }
.legal { max-width: 820px; margin: 0 auto; padding: 56px 24px 90px; }
.legal .back { display: inline-flex; align-items: center; gap: 8px; font-family: var(--head); font-weight: 600; color: var(--teal-deep); margin-bottom: 28px; }
.legal h1 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 6px; }
.legal h2 { font-size: 21px; margin: 34px 0 10px; }
.legal p, .legal li { color: var(--muted); margin: 10px 0; }
.legal ul { padding-left: 20px; }
.legal a { color: var(--teal-deep); text-decoration: underline; }
.legal .upd { color: var(--muted-2); font-size: 13.5px; }
.legal .note { background: var(--mint-3); border: 1px solid var(--line-2); border-radius: var(--r-sm); padding: 14px 18px; font-size: 13.5px; }

@media (max-width: 980px) {
  .lang-mini { display: inline-flex; }
}
@media (max-width: 520px) {
  .cookie { flex-direction: column; align-items: stretch; }
  .cookie__btns { justify-content: flex-end; }
}

/* Clickable contact details */
.topbar__left a:hover { color: var(--teal); }
.footer__contact a { transition: color .15s; }
.footer__emer { cursor: pointer; text-decoration: none; transition: background .2s; }
.footer__emer:hover { background: rgba(255,255,255,0.09); }

/* Ripple effect (footer phone box) */
.ripple { position: relative; overflow: hidden; }
.ripple > * { position: relative; z-index: 1; }
.ripple__ink {
  position: absolute; z-index: 0; border-radius: 50%;
  transform: scale(0); background: rgba(255,255,255,0.35);
  pointer-events: none; animation: ripple-anim .6s ease-out;
}
@keyframes ripple-anim { to { transform: scale(2.2); opacity: 0; } }

/* Social icons hidden for now — re-enable by removing these two rules and adding real profile URLs */
.topbar__socials { display: none; }
.topbar__lang { padding-left: 0; border-left: 0; }
