/*
Theme Name: SERVO
Theme URI: https://servo.fr
Author: SERVO
Author URI: https://servo.fr
Description: Thème officiel SERVO — habille les blocs SERVO et se connecte à SERVO via le plugin SERVO Connector (embarqué). Conçu pour remplacer le thème du site d'un client géré depuis SERVO.
Version: 0.3.0
Requires at least: 6.5
Tested up to: 6.6
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: servo
*/

/* ==========================================================================
   Système de design SERVO. Les couleurs, polices et rayon proviennent des
   variables --site-* (posées par inc/theme-tokens.php, synchronisables depuis
   SERVO). Ce fichier ajoute l'échelle typographique, le rythme d'espacement et
   l'habillage des blocs (classes servo-*).
   ========================================================================== */

:root {
  --servo-container: 1140px;
  --servo-prose: 68ch;
  --servo-radius: var(--site-border-radius, 0.75rem);
  --servo-radius-lg: calc(var(--servo-radius) * 1.6);

  /* Encre secondaire dérivée du texte, pour les passages atténués. */
  --servo-ink: var(--site-foreground, #16181d);
  --servo-bg: var(--site-background, #ffffff);
  --servo-primary: var(--site-primary, #2f5bd6);
  --servo-muted: var(--site-muted, #eef1f6);
  --servo-muted-fg: var(--site-muted-foreground, #626a7a);
  --servo-border: var(--site-muted, #e6e9f0);
  --servo-primary-ink: #ffffff;

  --servo-shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.04), 0 1px 3px rgba(16, 24, 40, 0.06);
  --servo-shadow-md: 0 6px 16px rgba(16, 24, 40, 0.08), 0 2px 6px rgba(16, 24, 40, 0.05);
  --servo-shadow-lg: 0 20px 48px rgba(16, 24, 40, 0.12);
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  color: var(--servo-ink);
  background: var(--servo-bg);
  font-family: var(--site-font-body, system-ui, sans-serif);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: color-mix(in srgb, var(--servo-primary) 22%, transparent); }

/* ── Typographie ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--site-font-heading, var(--site-font-body, system-ui, sans-serif));
  color: var(--servo-ink);
  line-height: 1.14;
  letter-spacing: -0.018em;
  text-wrap: balance;
  margin: 0 0 0.6em;
  font-weight: 750;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }

p { margin: 0 0 1.1rem; }
a { color: var(--servo-primary); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
strong, b { font-weight: 680; }
img { max-width: 100%; height: auto; display: block; }

:where(a, button, input, textarea, summary):focus-visible {
  outline: 2px solid var(--servo-primary);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ── Layout ──────────────────────────────────────────────────── */
.servo-container {
  width: 100%;
  max-width: var(--servo-container);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2rem);
}
.servo-main { display: block; }
.servo-block { position: relative; }
.servo-align-left { text-align: left; }
.servo-align-center { text-align: center; }
.servo-align-right { text-align: right; }

/* ── En-tête / pied de page ──────────────────────────────────── */
.servo-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--servo-bg) 86%, transparent);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--servo-border);
}
.servo-site-header .servo-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 68px;
}
.servo-brand {
  font-family: var(--site-font-heading, inherit);
  font-weight: 780;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--servo-ink);
}
.servo-brand:hover { text-decoration: none; }
.custom-logo { height: 40px; width: auto; }

.servo-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
}
.servo-nav a {
  display: inline-block;
  color: var(--servo-ink);
  font-weight: 550;
  font-size: 0.96rem;
  padding: 0.5rem 0.8rem;
  border-radius: 0.5rem;
  transition: background 0.15s, color 0.15s;
}
.servo-nav a:hover { text-decoration: none; background: var(--servo-muted); }
.servo-nav .current-menu-item > a { color: var(--servo-primary); }

.servo-site-footer {
  margin-top: 5rem;
  padding-block: 2.5rem;
  border-top: 1px solid var(--servo-border);
  background: color-mix(in srgb, var(--servo-muted) 40%, var(--servo-bg));
}
.servo-site-footer .servo-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.servo-site-footer ul { list-style: none; display: flex; flex-wrap: wrap; gap: 1.25rem; margin: 0; padding: 0; }
.servo-site-footer a { color: var(--servo-muted-fg); font-size: 0.92rem; }
.servo-copyright { margin: 0; color: var(--servo-muted-fg); font-size: 0.88rem; }

.servo-404 { text-align: center; padding-block: 6rem; }

/* ── Boutons ─────────────────────────────────────────────────── */
.servo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: var(--servo-radius);
  font-family: inherit;
  font-weight: 620;
  font-size: 0.98rem;
  line-height: 1.1;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.servo-btn:hover { text-decoration: none; transform: translateY(-1px); }
.servo-btn:active { transform: translateY(0); }
.servo-btn--primary {
  background: var(--servo-primary);
  color: var(--servo-primary-ink);
  box-shadow: var(--servo-shadow-sm);
}
.servo-btn--primary:hover { box-shadow: var(--servo-shadow-md); filter: brightness(1.05); }
.servo-btn--ghost {
  background: transparent;
  color: inherit;
  border-color: color-mix(in srgb, currentColor 28%, transparent);
}
.servo-btn--ghost:hover { background: color-mix(in srgb, currentColor 8%, transparent); }
.servo-btn--outline {
  background: transparent;
  color: var(--servo-primary);
  border-color: color-mix(in srgb, var(--servo-primary) 45%, transparent);
}
.servo-btn--outline:hover { background: color-mix(in srgb, var(--servo-primary) 8%, transparent); }

/* ── Hero ────────────────────────────────────────────────────── */
.servo-hero {
  display: flex;
  align-items: center;
  background-color: color-mix(in srgb, var(--servo-primary) 6%, var(--servo-bg));
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
.servo-hero[style*="background-image"] { color: #fff; }
.servo-hero[style*="background-image"] .servo-hero__title { color: #fff; }
.servo-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.55)); }
.servo-hero__inner { position: relative; z-index: 1; max-width: 52rem; }
.servo-hero.servo-align-center .servo-hero__inner { margin-inline: auto; }
.servo-hero.servo-align-right .servo-hero__inner { margin-left: auto; }
.servo-hero__title { margin: 0 0 1rem; font-weight: 800; }
.servo-hero__subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  color: color-mix(in srgb, currentColor 72%, transparent);
  margin: 0 0 2rem;
}
.servo-hero[style*="background-image"] .servo-hero__subtitle { color: rgba(255,255,255,0.9); }
.servo-hero__actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.servo-hero.servo-align-center .servo-hero__actions { justify-content: center; }
.servo-hero.servo-align-right .servo-hero__actions { justify-content: flex-end; }

/* ── Texte ───────────────────────────────────────────────────── */
.servo-text__title { margin: 0 0 1rem; }
.servo-text__body { font-size: 1.075rem; line-height: 1.75; }
.servo-text__body { max-width: var(--servo-prose); }
.servo-align-center .servo-text__body { margin-inline: auto; }
.servo-text__body > :first-child { margin-top: 0; }
.servo-text__body :where(h2, h3) { margin-top: 2rem; }
.servo-text__body :where(ul, ol) { padding-left: 1.3rem; margin: 0 0 1.1rem; }
.servo-text__body li { margin-bottom: 0.4rem; }

/* ── CTA ─────────────────────────────────────────────────────── */
.servo-cta .servo-container {
  text-align: center;
  background: color-mix(in srgb, var(--servo-primary) 8%, var(--servo-bg));
  border: 1px solid color-mix(in srgb, var(--servo-primary) 16%, transparent);
  border-radius: var(--servo-radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
}
.servo-cta__title { margin: 0 0 0.6rem; }
.servo-cta__desc { font-size: 1.1rem; color: var(--servo-muted-fg); margin: 0 auto 1.6rem; max-width: 42rem; }
.servo-cta__actions { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }

/* ── Image ───────────────────────────────────────────────────── */
.servo-image__figure { margin: 0 auto; }
.servo-image__img { width: 100%; border-radius: 0; }
.servo-image__img.is-rounded { border-radius: var(--servo-radius-lg); }
.servo-image__img.is-shadow { box-shadow: var(--servo-shadow-lg); }
.servo-image__figure figcaption { font-size: 0.88rem; color: var(--servo-muted-fg); margin-top: 0.6rem; text-align: center; }

/* ── Galerie ─────────────────────────────────────────────────── */
.servo-gallery__title { text-align: center; margin: 0 0 2rem; }
.servo-gallery__grid { display: grid; }
.servo-gallery__grid figure { margin: 0; }
.servo-gallery__grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--servo-radius); }
.servo-gallery__grid figcaption { font-size: 0.82rem; color: var(--servo-muted-fg); margin-top: 0.4rem; }

/* ── Vidéo ───────────────────────────────────────────────────── */
.servo-video__title { text-align: center; margin: 0 0 1.5rem; }
.servo-video__frame { position: relative; padding-top: 56.25%; border-radius: var(--servo-radius-lg); overflow: hidden; box-shadow: var(--servo-shadow-md); }
.servo-video__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.servo-video__caption { text-align: center; font-size: 0.88rem; color: var(--servo-muted-fg); margin-top: 0.8rem; }

/* ── Séparateur ──────────────────────────────────────────────── */
.servo-divider__line { border: 0; border-top: 1px solid var(--servo-border); margin: 0; }
.servo-divider__dots { text-align: center; letter-spacing: 0.6rem; color: var(--servo-muted-fg); }

/* ── Points forts ────────────────────────────────────────────── */
.servo-features__title { text-align: center; margin: 0 0 0.6rem; }
.servo-features__subtitle { text-align: center; color: var(--servo-muted-fg); font-size: 1.1rem; margin: 0 auto 2.75rem; max-width: 42rem; }
.servo-features__grid { display: grid; gap: 1.25rem; }
.servo-features__item {
  padding: 1.6rem;
  border: 1px solid var(--servo-border);
  border-radius: var(--servo-radius-lg);
  background: var(--servo-bg);
  box-shadow: var(--servo-shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.servo-features__item:hover { transform: translateY(-3px); box-shadow: var(--servo-shadow-md); }
.servo-features--list .servo-features__item { display: flex; gap: 1.1rem; align-items: flex-start; text-align: left; }
.servo-features__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; margin-bottom: 1rem;
  font-size: 1.5rem; line-height: 1;
  border-radius: 0.85rem;
  background: color-mix(in srgb, var(--servo-primary) 12%, transparent);
}
.servo-features--list .servo-features__icon { margin-bottom: 0; flex: none; }
.servo-features__item-title { font-size: 1.15rem; margin: 0 0 0.4rem; }
.servo-features__item-desc { color: var(--servo-muted-fg); margin: 0; }

/* ── Témoignages ─────────────────────────────────────────────── */
.servo-testimonials__title { text-align: center; margin: 0 0 0.6rem; }
.servo-testimonials__subtitle { text-align: center; color: var(--servo-muted-fg); margin: 0 auto 2.75rem; max-width: 42rem; }
.servo-testimonials__grid { display: grid; gap: 1.25rem; }
.servo-testimonials__item {
  margin: 0; padding: 1.75rem;
  border: 1px solid var(--servo-border); border-radius: var(--servo-radius-lg);
  background: var(--servo-bg); box-shadow: var(--servo-shadow-sm);
}
.servo-testimonials__rating { color: #f5b301; letter-spacing: 0.12em; margin-bottom: 0.75rem; }
.servo-testimonials__quote { margin: 0 0 1.25rem; font-size: 1.075rem; line-height: 1.6; }
.servo-testimonials__author { display: flex; align-items: center; gap: 0.85rem; }
.servo-testimonials__avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.servo-testimonials__name { display: block; font-weight: 650; }
.servo-testimonials__meta { font-size: 0.86rem; color: var(--servo-muted-fg); }

/* ── Tarifs ──────────────────────────────────────────────────── */
.servo-pricing__title { text-align: center; margin: 0 0 0.6rem; }
.servo-pricing__subtitle { text-align: center; color: var(--servo-muted-fg); margin: 0 auto 2.75rem; max-width: 42rem; }
.servo-pricing__grid { display: grid; gap: 1.25rem; align-items: start; }
.servo-pricing__plan {
  padding: 2rem 1.75rem; text-align: center;
  border: 1px solid var(--servo-border); border-radius: var(--servo-radius-lg);
  background: var(--servo-bg); box-shadow: var(--servo-shadow-sm);
}
.servo-pricing__plan.is-highlighted {
  border-color: var(--servo-primary);
  box-shadow: var(--servo-shadow-lg);
  transform: scale(1.03);
}
.servo-pricing__plan-name { margin: 0 0 0.85rem; font-size: 1.2rem; }
.servo-pricing__amount { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.02em; }
.servo-pricing__period { color: var(--servo-muted-fg); }
.servo-pricing__desc { color: var(--servo-muted-fg); }
.servo-pricing__features { list-style: none; padding: 0; margin: 1.5rem 0; text-align: left; }
.servo-pricing__features li { padding: 0.4rem 0 0.4rem 1.75rem; position: relative; }
.servo-pricing__features li::before {
  content: "✓"; position: absolute; left: 0; font-weight: 700;
  color: var(--servo-primary);
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.servo-faq { max-width: 52rem; margin-inline: auto; }
.servo-faq__title { text-align: center; margin: 0 0 0.6rem; }
.servo-faq__subtitle { text-align: center; color: var(--servo-muted-fg); margin: 0 auto 2.5rem; max-width: 42rem; }
.servo-faq__item { border-bottom: 1px solid var(--servo-border); }
.servo-faq__question {
  cursor: pointer; font-weight: 640; font-size: 1.075rem;
  list-style: none; padding: 1.15rem 2rem 1.15rem 0; position: relative;
}
.servo-faq__question::-webkit-details-marker { display: none; }
.servo-faq__question::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; color: var(--servo-muted-fg); transition: transform 0.2s;
}
details[open] > .servo-faq__question::after { content: "\2212"; }
.servo-faq__answer { padding: 0 0 1.25rem; color: var(--servo-muted-fg); }

/* ── Carte ───────────────────────────────────────────────────── */
.servo-map__title { text-align: center; margin: 0 0 0.6rem; }
.servo-map__address { text-align: center; color: var(--servo-muted-fg); margin: 0 0 1.5rem; }
.servo-map__frame { border-radius: var(--servo-radius-lg); overflow: hidden; box-shadow: var(--servo-shadow-md); }

/* ── Formulaire de contact ───────────────────────────────────── */
.servo-contact { max-width: 40rem; margin-inline: auto; }
.servo-contact__title { text-align: center; margin: 0 0 0.6rem; }
.servo-contact__subtitle { text-align: center; color: var(--servo-muted-fg); margin: 0 auto 2rem; }
.servo-contact__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.servo-contact__field { margin-bottom: 1.1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.servo-contact__field label { font-weight: 600; font-size: 0.92rem; }
.servo-contact__field input,
.servo-contact__field textarea {
  width: 100%; padding: 0.8rem 0.95rem;
  border: 1.5px solid var(--servo-border); border-radius: var(--servo-radius);
  font: inherit; background: var(--servo-bg); color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.servo-contact__field textarea { min-height: 140px; resize: vertical; }
.servo-contact__field input:focus,
.servo-contact__field textarea:focus {
  outline: none;
  border-color: var(--servo-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--servo-primary) 18%, transparent);
}
.servo-contact button[type="submit"] { width: 100%; margin-top: 0.4rem; }
.servo-contact__status { margin-top: 1rem; font-size: 0.92rem; text-align: center; }
.servo-contact__status.is-success { color: #16a34a; }
.servo-contact__status.is-error { color: #dc2626; }

/* ── Grilles responsives ─────────────────────────────────────── */
@media (min-width: 720px) {
  .servo-features__grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
  .servo-testimonials__grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
  .servo-pricing__grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
  .servo-gallery__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 719px) {
  /* Les blocs posent grid-template-columns en inline (choix de colonnes de
     l'auteur) : on force le réempilement mobile avec !important. */
  .servo-features__grid,
  .servo-testimonials__grid,
  .servo-pricing__grid { grid-template-columns: 1fr !important; }
  .servo-gallery__grid { grid-template-columns: repeat(2, 1fr) !important; }
  .servo-pricing__plan.is-highlighted { transform: none; }
  .servo-site-header .servo-container { min-height: 60px; }
  .servo-nav a { padding: 0.4rem 0.55rem; font-size: 0.9rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}

/* ==========================================================================
   PRESETS DE STYLE — chaque preset recompose l'identité (rayon, ombres,
   boutons, titres, hero, cartes). « modern » = styles de base ci-dessus.
   Piloté par SERVO (theme mod servo_style_preset → classe body).
   ========================================================================== */

/* ── Éditorial : titres serif, filets fins, sobre, peu d'ombres ── */
.servo-preset-editorial {
  --servo-radius: 0.25rem;
  --site-font-heading: "Iowan Old Style", Georgia, "Times New Roman", serif;
}
.servo-preset-editorial h1,
.servo-preset-editorial h2,
.servo-preset-editorial h3 { font-weight: 600; letter-spacing: -0.01em; }
.servo-preset-editorial .servo-hero { background-color: var(--servo-bg); border-bottom: 1px solid var(--servo-border); }
.servo-preset-editorial .servo-features__item,
.servo-preset-editorial .servo-testimonials__item,
.servo-preset-editorial .servo-pricing__plan { box-shadow: none; }
.servo-preset-editorial .servo-features__item:hover { transform: none; box-shadow: none; border-color: var(--servo-ink); }
.servo-preset-editorial .servo-btn { box-shadow: none; font-weight: 560; }
.servo-preset-editorial .servo-features__icon { background: transparent; border: 1px solid var(--servo-border); }
.servo-preset-editorial .servo-brand { font-weight: 600; }

/* ── Bold : titres très gras/serrés, gros contraste, boutons carrés maj. ── */
.servo-preset-bold {
  --servo-radius: 0.15rem;
}
.servo-preset-bold h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); font-weight: 850; letter-spacing: -0.035em; }
.servo-preset-bold h2 { font-weight: 820; letter-spacing: -0.03em; }
.servo-preset-bold .servo-hero { background-color: color-mix(in srgb, var(--servo-primary) 12%, var(--servo-bg)); }
.servo-preset-bold .servo-btn { text-transform: uppercase; letter-spacing: 0.04em; font-weight: 720; font-size: 0.9rem; padding: 0.95rem 1.7rem; }
.servo-preset-bold .servo-nav a { text-transform: uppercase; letter-spacing: 0.03em; font-size: 0.82rem; font-weight: 650; }
.servo-preset-bold .servo-features__item { border-width: 2px; box-shadow: none; }
.servo-preset-bold .servo-features__item:hover { transform: translateY(-2px); box-shadow: none; }
.servo-preset-bold .servo-features__icon { border-radius: 0.2rem; }

/* ── Minimal : angles nets, aucune ombre, filets, beaucoup de blanc ── */
.servo-preset-minimal {
  --servo-radius: 0;
}
.servo-preset-minimal h1,
.servo-preset-minimal h2,
.servo-preset-minimal h3 { font-weight: 600; }
.servo-preset-minimal .servo-hero { background-color: var(--servo-bg); }
.servo-preset-minimal .servo-btn { box-shadow: none; font-weight: 560; }
.servo-preset-minimal .servo-btn--primary { background: var(--servo-ink); }
.servo-preset-minimal .servo-features__item,
.servo-preset-minimal .servo-testimonials__item,
.servo-preset-minimal .servo-pricing__plan { box-shadow: none; }
.servo-preset-minimal .servo-features__item:hover { transform: none; box-shadow: none; }
.servo-preset-minimal .servo-features__icon { background: transparent; border: 1px solid var(--servo-border); border-radius: 0; }
.servo-preset-minimal .servo-cta .servo-container { background: transparent; border: 1px solid var(--servo-border); }
.servo-preset-minimal .servo-video__frame,
.servo-preset-minimal .servo-map__frame { box-shadow: none; border: 1px solid var(--servo-border); }

/* ── Soft : angles très arrondis, boutons pilule, grandes ombres douces ── */
.servo-preset-soft {
  --servo-radius: 1.25rem;
  --servo-shadow-sm: 0 4px 12px rgba(16, 24, 40, 0.06);
  --servo-shadow-md: 0 12px 30px rgba(16, 24, 40, 0.10);
  --servo-shadow-lg: 0 28px 60px rgba(16, 24, 40, 0.14);
}
.servo-preset-soft .servo-btn { border-radius: 999px; padding: 0.85rem 1.7rem; }
.servo-preset-soft .servo-features__item,
.servo-preset-soft .servo-testimonials__item,
.servo-preset-soft .servo-pricing__plan { border-color: transparent; box-shadow: var(--servo-shadow-md); }
.servo-preset-soft .servo-features__icon { border-radius: 999px; }
.servo-preset-soft .servo-hero { background-color: color-mix(in srgb, var(--servo-primary) 8%, var(--servo-bg)); }
.servo-preset-soft .servo-contact__field input,
.servo-preset-soft .servo-contact__field textarea { border-radius: 0.85rem; }
