/* ============================================================
   vovancatalan.com — landing (uk/en/es) — shared styles
   ============================================================ */

:root {
  --accent: #e8542a;
  --accent-dark: #c8431f;
  --accent-soft: #fff0ea;
  --ink: #101828;
  --muted: #5c6675;
  --line: #e8ebf0;
  --surface: #f6f7f9;
  --dark: #0e1726;
  --dark-2: #16233a;
  --white: #ffffff;
  --radius: 18px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.05), 0 1px 3px rgba(16, 24, 40, 0.08);
  --shadow-md: 0 8px 24px rgba(16, 24, 40, 0.08);
  --container: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

section[id] { scroll-margin-top: 84px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: #fff; padding: 8px 16px; border-radius: 0 0 8px 0;
  z-index: 100;
}
.skip-link:focus { left: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 68px; flex-wrap: wrap;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 19px; letter-spacing: -0.01em; text-decoration: none;
}
.brand-photo {
  width: 34px; height: 34px; border-radius: 50%;
  object-fit: cover; flex: 0 0 auto;
}
.site-nav { display: flex; gap: 6px; order: 3; width: 100%; overflow-x: auto; }
.site-nav a {
  padding: 6px 12px; border-radius: 999px; font-size: 15px; font-weight: 600;
  color: var(--muted); text-decoration: none; white-space: nowrap;
}
.site-nav a:hover { color: var(--ink); background: var(--surface); }

.lang-switch {
  display: inline-flex; border: 1px solid var(--line); border-radius: 999px;
  background: var(--surface); padding: 3px; gap: 2px; margin-left: auto;
}
.lang-switch a {
  padding: 4px 12px; border-radius: 999px; font-size: 13px; font-weight: 800;
  letter-spacing: 0.04em; text-decoration: none; color: var(--muted);
}
.lang-switch a:hover { color: var(--ink); }
.lang-switch a.active { background: var(--ink); color: #fff; }

@media (min-width: 760px) {
  .site-nav { order: 0; width: auto; overflow: visible; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; cursor: pointer; text-decoration: none;
  font: inherit; font-weight: 700; font-size: 16px;
  padding: 14px 26px; border-radius: 999px;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 420px at 85% -10%, var(--accent-soft), transparent 65%),
    radial-gradient(700px 380px at -10% 110%, #eef3fb, transparent 60%),
    var(--white);
  padding: 96px 0 64px;
  border-bottom: 1px solid var(--line);
}
.hero-inner { display: grid; gap: 28px; }
.eyebrow, .kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
}
.hero h1 {
  font-size: clamp(2.1rem, 5.2vw, 3.5rem);
  line-height: 1.12; letter-spacing: -0.025em; font-weight: 800;
  max-width: 900px;
}
.hero h1 .text-accent { color: var(--accent); }
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--muted); max-width: 720px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }

.hero-facts {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px 28px;
  margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line);
}
.hero-facts li { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 15px; color: #3c4453; }
.hero-facts .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: 0 0 auto;
}

/* ---------- Sections ---------- */
.section { padding: 92px 0; }
.section-alt { background: var(--surface); }
.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .kicker { justify-content: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); letter-spacing: -0.02em; font-weight: 800; margin: 10px 0 14px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* ---------- Service cards ---------- */
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d9dde4; }
.card-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.card h3 { font-size: 1.18rem; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.98rem; }

.price-note {
  margin-top: 26px; display: flex; align-items: flex-start; gap: 14px;
  background: #fff8f3; border: 1px solid #ffdcc9; border-radius: var(--radius);
  padding: 18px 22px; font-size: 0.99rem;
}
.price-note strong { display: block; color: var(--accent-dark); font-weight: 800; }
.price-note p { color: #6b4a3a; margin-top: 2px; }

/* ---------- Steps ---------- */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px; counter-reset: step;
}
.step {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; position: relative; box-shadow: var(--shadow-sm);
}
.step-num {
  font-size: 13px; font-weight: 800; color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent-soft); margin-bottom: 14px;
}
.step h3 { font-size: 1.06rem; font-weight: 800; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ---------- About ---------- */
.about-photo {
  width: auto; max-width: min(280px, 100%);
  height: auto; border-radius: var(--radius);
  box-shadow: var(--shadow-md); margin-bottom: 14px;
}
.about-grid { display: grid; gap: 32px; align-items: start; }
.about-text p { color: #3c4453; margin-bottom: 16px; max-width: 680px; }
.about-text .note { color: var(--muted); font-style: italic; font-size: 0.95rem; }
.about-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.chip {
  background: var(--white); border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 16px; font-size: 14px; font-weight: 700; color: #3c4453;
}
@media (min-width: 860px) {
  .about-grid { grid-template-columns: 340px 1fr; }
}

/* ---------- Contacts (dark) ---------- */
.contacts {
  background: var(--dark); color: #f4f6fa;
  border-radius: 34px 34px 0 0;
  padding: 96px 0 72px;
}
.contacts .kicker { color: #ffb59b; }
.contacts h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.6rem); letter-spacing: -0.02em; margin: 10px 0 14px; }
.contacts .lead { color: #b7c0cf; max-width: 640px; font-size: 1.08rem; }
.contacts-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 44px; }
.contacts .btn-primary { background: var(--accent); }
.contacts .btn-primary:hover { background: var(--accent-dark); }
.contacts .btn-on-dark {
  background: rgba(255, 255, 255, 0.07); color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.contacts .btn-on-dark:hover { background: rgba(255, 255, 255, 0.14); }

.contact-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px; list-style: none; max-width: 900px;
}
.contact-list li {
  display: flex; align-items: center; gap: 14px;
  background: var(--dark-2); border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px; padding: 16px 18px;
}
.contact-list .c-label {
  display: block; font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: #8fa0b8;
}
.contact-list .c-value { display: block; font-weight: 700; color: #fff; font-size: 1.02rem; margin-top: 2px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark); color: #93a2b8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 26px 0 40px; font-size: 0.92rem;
}
.footer-inner {
  display: flex; flex-wrap: wrap; gap: 10px 24px;
  align-items: center; justify-content: space-between;
}
.footer-inner .lang-switch { border-color: rgba(255, 255, 255, 0.16); background: transparent; }
.footer-inner .lang-switch a { color: #8fa0b8; }
.footer-inner .lang-switch a:hover { color: #fff; }
.footer-inner .lang-switch a.active { background: #fff; color: var(--dark); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card { transition: none; }
  .btn { transition: none; }
}
