/* ===========================================
   Psí salon Elegant Style — design system
   Mobile-first, no framework
   =========================================== */

:root {
  --ink: #36232c;
  --ink-soft: #75606a;
  --rose: #d94f76;
  --rose-dark: #bd3a60;
  --rose-deep: #8e2a47;
  --blush: #fbe7ed;
  --blush-soft: #fdf1f4;
  --cream: #fffaf7;
  --white: #ffffff;
  --gold: #e8a33d;
  --line: #f3d9e1;
  --shadow-sm: 0 2px 8px rgba(142, 42, 71, 0.07);
  --shadow-md: 0 10px 30px rgba(142, 42, 71, 0.12);
  --shadow-lg: 0 24px 60px rgba(142, 42, 71, 0.16);
  --radius: 20px;
  --radius-sm: 12px;
  --font: "Nunito", "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--rose-dark); }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

/* ---------- typography ---------- */
h1, h2, h3 { line-height: 1.15; font-weight: 900; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.1rem, 6.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 4.5vw, 2.4rem); }
h3 { font-size: 1.2rem; }

.section { padding: clamp(3.5rem, 8vw, 5.5rem) 0; }
.section-alt { background: var(--white); }

.kicker {
  display: inline-block;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--rose-dark);
  background: var(--blush);
  padding: 0.35rem 0.9rem;
  border-radius: 99px;
  margin-bottom: 0.9rem;
}

.section-head { max-width: 640px; margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }
.section-head p { color: var(--ink-soft); margin-top: 0.7rem; font-size: 1.05rem; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 900;
  font-size: 1.12rem;
  line-height: 1.1;
  margin-right: auto;
}
.brand svg { flex: none; }
.brand small {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--rose-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav { display: none; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  font-weight: 800;
  font-size: 0.88rem;
  background: var(--blush);
  border-radius: 99px;
  padding: 0.25rem;
}
.lang-switch a, .lang-switch span {
  padding: 0.25rem 0.7rem;
  border-radius: 99px;
  text-decoration: none;
}
.lang-switch span[aria-current] { background: var(--rose); color: #fff; }
.lang-switch a { color: var(--rose-deep); }
.lang-switch a:hover { background: rgba(255,255,255,0.7); }

.nav-toggle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: none;
  background: var(--blush);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--rose-deep);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--cream);
  padding: 0.8rem 0 1.2rem;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.7rem 0;
  font-weight: 800;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:last-child { border-bottom: none; }

@media (min-width: 900px) {
  .nav-toggle, .mobile-nav { display: none !important; }
  .main-nav { display: flex; gap: 1.4rem; }
  .main-nav a {
    text-decoration: none;
    color: var(--ink);
    font-weight: 800;
    font-size: 0.95rem;
    padding: 0.3rem 0;
    border-bottom: 2px solid transparent;
  }
  .main-nav a:hover { color: var(--rose-dark); border-bottom-color: var(--rose); }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font);
  font-weight: 900;
  font-size: 1.02rem;
  text-decoration: none;
  border-radius: 99px;
  padding: 0.85rem 1.7rem;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  cursor: pointer;
  border: none;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 8px 22px rgba(217, 79, 118, 0.38);
}
.btn-primary:hover { background: var(--rose-dark); box-shadow: 0 10px 26px rgba(217, 79, 118, 0.46); }
.btn-ghost {
  background: var(--white);
  color: var(--rose-deep);
  border: 2px solid var(--line);
}
.btn-ghost:hover { border-color: var(--rose); }

/* ---------- hero ---------- */
.hero {
  background:
    radial-gradient(60rem 30rem at 110% -10%, var(--blush) 0%, transparent 60%),
    radial-gradient(40rem 24rem at -20% 110%, var(--blush-soft) 0%, transparent 55%),
    var(--cream);
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 5.5rem);
}
.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  border-radius: 99px;
  padding: 0.4rem 1rem;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--rose-deep);
  margin-bottom: 1.2rem;
}
.hero h1 { margin-bottom: 1rem; }
.hero h1 em { font-style: normal; color: var(--rose); }
.hero-lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 34rem;
  margin-bottom: 1.7rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 2rem; }
.hero-points { display: flex; flex-wrap: wrap; gap: 0.55rem; list-style: none; }
.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 0.42rem 0.95rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
}
.hero-points svg { color: var(--rose); flex: none; }

.hero-media { position: relative; max-width: 560px; margin-inline: auto; width: 100%; }
.hero-media::before {
  content: "";
  position: absolute;
  inset: -7% -5% auto auto;
  width: 62%;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
  z-index: 0;
}
.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: 50% 72%;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}
.hero-card {
  position: absolute;
  z-index: 2;
  left: -0.4rem;
  bottom: -1.1rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 0.8rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.hero-card strong { display: block; font-size: 1.05rem; line-height: 1.2; }
.hero-card span { font-size: 0.82rem; color: var(--ink-soft); font-weight: 700; }
.hero-card .ic {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--blush);
  display: grid;
  place-items: center;
  color: var(--rose-dark);
  flex: none;
}

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem; }
}

/* ---------- marquee strip ---------- */
.strip {
  background: var(--rose);
  color: #fff;
  font-weight: 800;
  padding: 0.85rem 0;
  text-align: center;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.strip span { margin: 0 0.9rem; white-space: nowrap; display: inline-block; }

/* ---------- services ---------- */
.cards-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .ic {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--blush);
  color: var(--rose-dark);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: 0.45rem; }
.card p { color: var(--ink-soft); font-size: 0.97rem; }

.note-pill {
  margin-top: 1.6rem;
  background: var(--blush-soft);
  border: 1px dashed var(--rose);
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  font-weight: 700;
  color: var(--rose-deep);
  font-size: 0.97rem;
}

/* ---------- pricing ---------- */
.price-grid {
  display: grid;
  gap: 1.3rem;
}
@media (min-width: 820px) {
  .price-grid { grid-template-columns: 1fr 1fr; }
}
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.price-card.featured { border: 2px solid var(--rose); position: relative; }
.price-head {
  padding: 1.4rem 1.5rem 1.1rem;
  border-bottom: 1px solid var(--line);
  background: var(--blush-soft);
}
.price-head h3 { font-size: 1.3rem; }
.price-head p { color: var(--ink-soft); font-weight: 700; font-size: 0.9rem; }
.price-card table { width: 100%; border-collapse: collapse; }
.price-card td {
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid var(--blush-soft);
  font-size: 0.99rem;
}
.price-card tr:last-child td { border-bottom: none; }
.price-card td:last-child {
  text-align: right;
  font-weight: 900;
  white-space: nowrap;
  color: var(--rose-deep);
}
.price-extras { margin-top: 1.3rem; }
.price-notes {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.6rem;
}
.price-notes li {
  list-style: none;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.price-notes svg { flex: none; color: var(--rose); margin-top: 0.22rem; }

/* ---------- checklist / before visit ---------- */
.split {
  display: grid;
  gap: 2.2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .split.rev > .split-media { order: 2; }
}
.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}
.checklist { list-style: none; display: grid; gap: 0.85rem; margin-top: 1.4rem; }
.checklist li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.05rem;
  font-size: 0.99rem;
}
.checklist .ck {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--rose-dark);
  display: grid;
  place-items: center;
  margin-top: 0.1rem;
}
.checklist strong { display: block; }
.checklist span { color: var(--ink-soft); font-size: 0.93rem; }

/* ---------- courses ---------- */
.course-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.course-photos img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}
/* ---------- about ---------- */
.about-photos { position: relative; max-width: 480px; margin-inline: auto; }
.about-photos img:first-child {
  width: 82%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}
.about-photos img:last-child {
  position: absolute;
  right: 0;
  bottom: -2rem;
  width: 46%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 18px;
  border: 5px solid var(--cream);
  box-shadow: var(--shadow-md);
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; display: grid; gap: 0.8rem; }
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-weight: 800;
  padding: 1.05rem 3rem 1.05rem 1.3rem;
  position: relative;
  font-size: 1.02rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rose);
  transition: transform 0.2s;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details > div {
  padding: 0 1.3rem 1.2rem;
  color: var(--ink-soft);
  font-size: 0.99rem;
}

/* ---------- contact ---------- */
.contact-grid {
  display: grid;
  gap: 1.3rem;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1.1fr 0.9fr; }
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.8rem 1.6rem;
}
.contact-rows { display: grid; gap: 1.25rem; margin-top: 1.4rem; }
.contact-row { display: flex; gap: 0.95rem; align-items: flex-start; }
.contact-row .ic {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--blush);
  color: var(--rose-dark);
  display: grid;
  place-items: center;
}
.contact-row strong { display: block; font-size: 1.02rem; }
.contact-row span, .contact-row a { color: var(--ink-soft); font-size: 0.95rem; }
.contact-row a.phone-big {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--rose-dark);
  text-decoration: none;
}
.map-links { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.5rem; }
.entrance-fig figcaption {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-top: 0.6rem;
  font-weight: 700;
}
.entrance-fig img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink);
  color: #e9dde2;
  padding: 2.6rem 0 6.5rem;
  font-size: 0.93rem;
}
.footer-grid { display: grid; gap: 1.6rem; }
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: auto 1fr auto; align-items: center; }
  .site-footer { padding-bottom: 2.6rem; }
}
.site-footer a { color: #fff; }
.site-footer .brand { color: #fff; }
.site-footer .brand small { color: #f1a8be; }
.footer-meta { color: #b89aa6; }

/* ---------- floating call button (mobile) ---------- */
.call-fab {
  position: fixed;
  z-index: 90;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--rose);
  color: #fff;
  font-weight: 900;
  font-size: 1.02rem;
  text-decoration: none;
  border-radius: 99px;
  padding: 0.9rem 1.5rem;
  box-shadow: 0 12px 30px rgba(189, 58, 96, 0.5);
}
.call-fab:active { transform: scale(0.96); }
@media (min-width: 900px) { .call-fab { display: none; } }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- subpages ---------- */
.breadcrumbs {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-soft);
  padding: 1.1rem 0 0;
}
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.breadcrumbs li + li::before { content: "›"; margin-right: 0.4rem; color: var(--rose); }
.breadcrumbs a { color: var(--rose-dark); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs [aria-current] { color: var(--ink-soft); }

.page-hero { padding: clamp(1.5rem, 4vw, 3rem) 0 clamp(2.2rem, 5vw, 3.5rem); }
.page-hero h1 { font-size: clamp(1.9rem, 5.5vw, 2.9rem); margin: 0.7rem 0 0.9rem; }
.page-hero .hero-lead { margin-bottom: 1.4rem; }

.prose { max-width: 720px; }
.prose h2 { margin: 2.4rem 0 0.8rem; font-size: clamp(1.4rem, 3.5vw, 1.75rem); }
.prose h3 { margin: 1.8rem 0 0.6rem; }
.prose p { margin-bottom: 1rem; }
.prose ul, .prose ol { margin: 0 0 1.1rem 1.3rem; }
.prose li { margin-bottom: 0.45rem; }
.prose img { border-radius: var(--radius); box-shadow: var(--shadow-md); margin: 1.6rem 0; }
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}

.tip-box {
  background: var(--blush-soft);
  border-left: 4px solid var(--rose);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  margin: 1.4rem 0;
}
.tip-box strong:first-child { color: var(--rose-deep); }
.warn-box {
  background: #fdf3e3;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  margin: 1.4rem 0;
}

.article-grid {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.article-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.article-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.article-card .body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: 0.5rem; }
.article-card h2, .article-card h3 { font-size: 1.18rem; }
.article-card a { text-decoration: none; color: var(--ink); }
.article-card a:hover h2, .article-card a:hover h3 { color: var(--rose-dark); }
.article-card p { color: var(--ink-soft); font-size: 0.95rem; }
.article-card .more { font-weight: 800; color: var(--rose-dark); font-size: 0.92rem; margin-top: auto; }

/* ---------- gallery ---------- */
.gallery-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 1.6rem;
}
@media (min-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.cta-band {
  background: linear-gradient(120deg, var(--rose) 0%, var(--rose-dark) 100%);
  border-radius: var(--radius);
  color: #fff;
  padding: clamp(1.8rem, 5vw, 2.8rem);
  display: grid;
  gap: 1.2rem;
  align-items: center;
  margin-top: clamp(2.5rem, 6vw, 4rem);
}
.cta-band h2 { color: #fff; font-size: clamp(1.4rem, 3.5vw, 1.9rem); }
.cta-band p { color: #ffe3eb; margin-top: 0.4rem; }
.cta-band .btn-primary { background: #fff; color: var(--rose-deep); box-shadow: none; }
.cta-band .btn-primary:hover { background: var(--blush); }

/* SMS/e-mail nudge + service link hub (added in SEO/CRO pass) */
.hero-note { margin-top: 0.9rem; font-size: 0.98rem; color: var(--ink-soft); }
.hero-note a { font-weight: 800; }
.service-links { text-align: center; color: var(--ink-soft); margin-top: 1.6rem; }
.service-links a { font-weight: 700; white-space: nowrap; }
.contact-alt { display: block; margin-top: 0.4rem; font-size: 0.92rem; color: var(--ink-soft); }
.contact-alt a { font-weight: 800; }

/* Contact form (Web3Forms) */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem, 4vw, 2.2rem); margin-top: 1.5rem; box-shadow: var(--shadow-sm); }
.form-card h3 { font-size: 1.35rem; }
.form-intro { color: var(--ink-soft); margin: 0.35rem 0 1.3rem; font-size: 0.98rem; }
.form-row { margin-bottom: 1rem; }
.form-row label { display: block; font-weight: 700; margin-bottom: 0.35rem; font-size: 0.95rem; }
.form-row label span { color: var(--rose-dark); }
.form-card input, .form-card textarea { width: 100%; font: inherit; color: var(--ink); background: var(--cream); border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 0.7rem 0.9rem; }
.form-card input:focus, .form-card textarea:focus { outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px rgba(217, 79, 118, 0.18); }
.form-card textarea { resize: vertical; min-height: 110px; }
.form-card .btn-primary { margin-top: 0.3rem; }
.form-status { margin-top: 0.9rem; font-weight: 700; min-height: 1.2em; }
.form-status.is-sending { color: var(--ink-soft); }
.form-status.is-ok { color: #1f7a4d; }
.form-status.is-err { color: var(--rose-deep); }
@media (min-width: 620px) { .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; } }

/* Service-page highlights (icon strip) */
.svc-highlights { display: grid; gap: 1rem; }
@media (min-width: 700px) { .svc-highlights { grid-template-columns: repeat(3, 1fr); } }
.svc-highlights .hl { display: flex; gap: 0.8rem; align-items: flex-start; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1rem 1.1rem; box-shadow: var(--shadow-sm); }
.svc-highlights .hl svg { flex: none; color: var(--rose); margin-top: 3px; }
.svc-highlights .hl strong { display: block; margin-bottom: 0.15rem; }
.svc-highlights .hl span { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.5; }
@media (min-width: 760px) {
  .cta-band { grid-template-columns: 1fr auto; }
}

/* ---------- skip link ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--rose);
  color: #fff;
  font-weight: 800;
  padding: 0.7rem 1.2rem;
  z-index: 200;
  border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }
