/* ===== VARIABLES ===== */
:root {
  --primary: #1a2744;
  --primary-dark: #111b2e;
  --secondary: #2c3e50;
  --accent: #c9a84c;
  --accent-hover: #b8963d;
  --text: #333333;
  --text-light: #666666;
  --text-white: #ffffff;
  --bg: #ffffff;
  --bg-alt: #f4f6f8;
  --bg-dark: #1a2744;
  --border: #e0e0e0;
  --shadow: 0 2px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 8px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Open Sans', -apple-system, sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1rem; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201,168,76,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--text-white);
  border-color: var(--text-white);
}
.btn-outline:hover {
  background: var(--text-white);
  color: var(--primary);
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 39, 68, 0.95);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo img { height: 46px; width: 46px; border-radius: 50%; }
.main-nav { display: flex; align-items: center; gap: 0.5rem; }
.main-nav > ul { display: flex; align-items: center; gap: 0.25rem; }
.main-nav > ul > li > a {
  color: var(--text-white);
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
  background: rgba(255,255,255,0.1);
  color: var(--accent);
}
/* Dropdown */
.nav-item { position: relative; }
.nav-item .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--primary-dark);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: var(--transition);
  padding: 0.5rem 0;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 0.6rem 1.25rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  transition: var(--transition);
}
.dropdown li a:hover {
  background: rgba(255,255,255,0.08);
  color: var(--accent);
  padding-left: 1.5rem;
}
.dropdown-arrow {
  display: inline-block;
  margin-left: 0.3rem;
  font-size: 0.65rem;
  transition: var(--transition);
}
.nav-item:hover .dropdown-arrow { transform: rotate(180deg); }

/* GTranslate */
.gtranslate_wrapper { display: flex; align-items: center; gap: 0.25rem; margin-top: 0.2em; flex-wrap: wrap; }
.gtranslate_wrapper a.glink {
  display: inline-block;
  padding: 0.3rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  color: var(--primary-dark);
  background: var(--accent);
  border-radius: var(--radius);
}
.gtranslate_wrapper a.glink:hover { background: var(--accent-hover); }
.gtranslate_wrapper img { cursor: pointer; height: 20px; border-radius: 3px; transition: var(--transition); }
.gtranslate_wrapper img:hover { transform: scale(1.15); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  margin-top: 80px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-white);
  opacity: 0;
  transition: opacity 1s ease;
  padding: 2rem;
}
.hero-slide.active { opacity: 1; }
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(26,39,68,0.85), rgba(44,62,80,0.75));
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero h2 {
  color: var(--text-white);
  font-size: 2.6rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.7;
}
.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0.6rem;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.hero-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

/* Hero page header (service pages) */
.hero-page {
  position: relative;
  margin-top: 80px;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  color: var(--text-white);
}
.hero-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,39,68,0.85), rgba(44,62,80,0.75));
}
.hero-page .container {
  position: relative;
  z-index: 1;
}
.hero-page h1 {
  color: var(--text-white);
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}
.hero-page p {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); color: var(--text-white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--text-white); }
.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-title h2 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}
.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}
.section-title p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== SECTION WITH BACKGROUND IMAGE ===== */
.section-bg {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.section-bg > .container { width: 100%; }
.section-bg-fixed { background-attachment: fixed; }

/* ===== ABOUT PREVIEW (HOME) ===== */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-preview-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-preview-img img { width: 100%; height: auto; }
.about-preview-text h2 { margin-bottom: 1rem; }
.about-preview-text p { color: var(--text-light); margin-bottom: 1.5rem; }

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--border);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
}
.service-icon svg { display: block; }
.service-card h3 { margin-bottom: 0.75rem; font-size: 1.3rem; }
.service-card p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 1.25rem; }
.service-card .btn { font-size: 0.85rem; padding: 10px 24px; }

/* ===== OFFICES ===== */
.offices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.office-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.office-card:hover { border-color: var(--accent); }
.office-card h3 { margin-bottom: 1rem; color: var(--primary); }
.office-card p { color: var(--text-light); margin-bottom: 0.3rem; }
.office-card p a:hover { color: var(--accent); }
.office-card .btn { margin-top: 1.5rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-size: 4rem;
  font-family: var(--font-heading);
  color: var(--accent);
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  line-height: 1;
  opacity: 0.3;
}
.testimonial-card p {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
}
.testimonial-author {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
}
.testimonial-role {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  padding: 4rem 0;
  background-image: url('../img/appointment-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  color: var(--text-white);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,39,68,0.85), rgba(44,62,80,0.75));
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--text-white); margin-bottom: 0.75rem; }
.cta-section p { opacity: 0.85; margin-bottom: 2rem; }
.cta-section .btn { margin: 0.5rem; }

/* ===== ABOUT PAGE ===== */
.about-content { max-width: 800px; margin: 0 auto; }
.about-content h3 { margin: 2rem 0 1rem; }
.about-content p { color: var(--text-light); line-height: 1.8; }
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-layout img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* ===== SERVICE PAGE ===== */
.service-content { max-width: 900px; margin: 0 auto; }
.service-content h3 { margin: 2rem 0 1rem; color: var(--primary); }
.service-content h4 { margin: 1.5rem 0 0.75rem; color: var(--secondary); }
.service-content p { color: var(--text-light); line-height: 1.8; }
.service-content ul { margin: 1rem 0; padding-left: 1.5rem; }
.service-content ul li {
  color: var(--text-light);
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}
.service-content ul li::before {
  content: '\2022';
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: bold;
}
/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--primary);
  font-size: 0.9rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
  background: var(--bg);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--accent);
}
.form-checkbox label {
  font-size: 0.85rem;
  color: var(--text-light);
  cursor: pointer;
}
.form-checkbox a { color: var(--primary); }
.contact-info h3 { margin-bottom: 1rem; }
.contact-info p { color: var(--text-light); margin-bottom: 1.5rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}
.contact-detail a:hover { color: var(--accent); }
.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.map-placeholder {
  margin-top: 2rem;
  height: 250px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  border: 1px solid var(--border);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding-top: 4rem;
}
.footer-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {
  grid-column: 1 / -1;
  text-align: center;
}
.footer-brand a {
  display: inline-block;
  margin-bottom: 1.5rem;
}
.footer-brand img { width: 90px; height: 90px; border-radius: 50%; margin: 0 auto; display: block; margin-top: -109px;}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-brand .quote {
  margin-top: 1.25rem;
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}
.footer-brand .quote strong { color: var(--accent); }
.site-footer h4 {
  color: var(--text-white);
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
  font-family: var(--font-body);
  font-weight: 700;
}
.footer-links li { margin-bottom: 0.1rem; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--accent); padding-left: 5px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.1rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item span { color: var(--accent); }
.footer-contact-item a { color: inherit; }
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom {
  padding: 1.5rem 0 2.5rem;
  text-align: center;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.footer-bottom > p { order: 5; }
.footer-legal { margin-top: 0.75rem; }
.footer-legal a {
  color: rgba(255,255,255,0.5);
  margin: 0 0.5rem;
  font-size: 0.8rem;
}
.footer-legal a:hover { color: var(--accent); }
.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  order: -1;
  width: 100%;
  background: #fff;
  padding: 1.5rem 1rem;
}
.footer-logo {
  width: 210px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo:first-child { margin-top: 0.7rem; }
.footer-logos img {
  max-width: 100%;
  max-height: 100%;
  opacity: 0.9;
  transition: var(--transition);
  display: block;
}
.footer-logos img:hover { opacity: 1; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-dark);
  color: var(--text-white);
  padding: 1.25rem;
  z-index: 2000;
  box-shadow: 0 -2px 20px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  transition: transform 0.5s ease;
}
.cookie-banner.hidden { transform: translateY(100%); }
.cookie-banner p { margin: 0; font-size: 0.9rem; flex: 1; min-width: 300px; max-width: 800px; }
.cookie-banner .btn { padding: 10px 28px; font-size: 0.85rem; }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  width: 45px;
  height: 45px;
  background: var(--accent);
  color: var(--primary-dark);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px); background: var(--accent-hover); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .footer-main > div { text-align: center; }
  .footer-contact-item { justify-content: center; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .hero h2 { font-size: 2.2rem; }
}

@media (max-width: 800px) {
  .hamburger { display: flex; }
  .main-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    box-shadow: var(--shadow-lg);
  }
  .main-nav.open { max-height: 600px; padding: 1rem 0; }
  .main-nav > ul { flex-direction: column; width: 100%; }
  .main-nav > ul > li > a {
    display: block;
    padding: 0.8rem 1.5rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-item .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(0,0,0,0.15);
    border-radius: 0;
    box-shadow: none;
    display: none;
    padding-left: 1.5rem;
  }
  .nav-item.dropdown-open .dropdown { display: block; }
  .dropdown li a { padding: 0.6rem 1.5rem; }
}

@media (max-width: 768px) {
  .hero { height: 500px; }
  .hero h2 { font-size: 1.8rem; }
  .hero p { font-size: 1rem; }
  .hero-page { height: 500px; }
  .hero-page h1 { font-size: 2rem; }

  .about-preview,
  .offices-grid,
  .about-layout,
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .footer-logos { flex-wrap: wrap; gap: 1rem; }

  .section { padding: 3.5rem 0; }
  .section-title { margin-bottom: 2.5rem; }

  .cookie-banner { flex-direction: column; text-align: center; padding: 1.5rem; }
}

@media (max-width: 480px) {
  .main-nav { top: 65px; }
  .header-inner { height: 65px; }
  .site-header .logo img { height: 35px; width: 35px; }
  .hero { height: 420px; margin-top: 65px; }
  .hero-page { margin-top: 65px; height: 420px; }
  .hero h2 { font-size: 1.5rem; }
  h1 { font-size: 1.8rem; }
  .btn { padding: 12px 24px; font-size: 0.85rem; }
}

/* ===== ACCESIBILIDAD ===== */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 6px 0;
  font-weight: 600;
}
.skip-link:focus-visible { left: 0; }
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
.form-status {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 600;
}
.form-status[data-error="true"] { color: #b00020; }
.form-status[data-error="false"] { color: var(--primary); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
