/* =====================================================
   NADIA KARABATSOU LEGAL — karabatsoulegal.com
   Stylesheet v1.0 · May 2026 · Grow Agency
   ===================================================== */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;1,400&family=Inter:wght@400;500;600;700&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --gold:       #B6924E;
  --gold-dark:  #9A7B3F;
  --dark:       #2D2A26;
  --parchment:  #F4EFE6;
  --linen:      #F8F6F2;
  --stone:      #8B8580;
  --white:      #FFFFFF;
  --aegean:     #1F4E79;
  --border:     #E8E3DC;
  --border-mid: #CCC5BC;

  --font-serif: 'EB Garamond', Georgia, serif;
  --font-sans:  'Inter', 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-w: 1200px;
  --max-body: 720px;
  --radius: 8px;
  --radius-sm: 4px;
  --section-pad: 80px;
  --section-pad-mob: 48px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--linen);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* ── Container ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: var(--max-body); margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

h1.display {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.15;
}

h1 { font-size: clamp(28px, 4vw, 44px); }
h2 { font-size: clamp(22px, 3vw, 32px); }
h3 { font-size: clamp(18px, 2.5vw, 24px); }
h4 { font-size: 18px; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
}

.btn--primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  text-decoration: none;
}
.btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--dark);
  text-decoration: none;
}
.btn--ghost {
  background: transparent;
  color: var(--gold);
  border: none;
  padding: 0;
  font-size: 15px;
}
.btn--ghost:hover { text-decoration: underline; }
.btn--dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn--dark:hover { background: #1a1815; text-decoration: none; }

.btn-group {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.text-link {
  color: var(--gold);
  font-weight: 500;
  font-size: 15px;
}
.text-link::after { content: ' →'; }
.text-link:hover { text-decoration: underline; }

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 184px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
}
.nav__logo-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.nav__logo-sub {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 500;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}
.nav__link:hover { color: var(--gold); }
.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}

/* Services dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-toggle {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  padding-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  font-family: var(--font-sans);
}
.nav__dropdown-toggle:hover { color: var(--gold); }
.nav__dropdown-toggle::after { content: '▾'; font-size: 10px; }

.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  min-width: 240px;
  padding: 8px 0;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown-menu:hover { display: block; }

.nav__dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--dark);
  font-weight: 400;
}
.nav__dropdown-menu a:hover { background: var(--linen); color: var(--gold); text-decoration: none; }

.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__lang {
  font-size: 12px;
  font-weight: 500;
  color: var(--stone);
  display: flex;
  gap: 6px;
}
.nav__lang a { color: var(--stone); }
.nav__lang a:hover { color: var(--gold); text-decoration: none; }
.nav__lang a.active { color: var(--gold); font-weight: 600; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: 0.3s;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: 12px 0;
  font-size: 16px;
  color: var(--dark);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.nav__mobile a:last-child { border-bottom: none; }

/* ── Hero ── */
.hero {
  background: var(--linen);
  padding: 80px 0;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 64px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.hero__content { }

.hero__h1 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5.5vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 24px;
}

.hero__sub {
  font-size: 18px;
  line-height: 1.7;
  color: #4A4540;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__image-wrap {
  position: relative;
}

.hero__image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 16px 64px rgba(45,42,38,0.15);
}

.hero__image-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.hero__image-badge strong {
  display: block;
  font-size: 22px;
  color: var(--gold);
  font-weight: 700;
}
.hero__image-badge span { font-size: 12px; color: var(--stone); }

/* ── Trust Strip ── */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.trust-badge__icon {
  width: 36px;
  height: 36px;
  background: var(--parchment);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
}

.trust-badge__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone);
  line-height: 1.3;
  max-width: 100px;
  text-align: center;
}

/* ── Section Base ── */
.section {
  padding: var(--section-pad) 0;
}

.section--parchment { background: var(--parchment); }
.section--white { background: var(--white); }
.section--dark {
  background: var(--dark);
  color: var(--white);
}
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.85); }

.section__header {
  text-align: center;
  margin-bottom: 56px;
}
.section__header h2 { margin-bottom: 12px; }
.section__header p {
  color: var(--stone);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
}

/* ── Track Selector (3-card) ── */
.track-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.track-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: box-shadow 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.track-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.2s;
}
.track-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  border-color: var(--gold);
}
.track-card:hover::before { opacity: 1; }

.track-card__eyebrow { margin-bottom: 8px; }
.track-card h3 { margin-bottom: 12px; font-size: 20px; }
.track-card p { color: var(--stone); font-size: 15px; margin-bottom: 20px; }

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border-top: 3px solid var(--gold);
  margin-top: -2px;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--parchment);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.service-card h3 { font-size: 18px; margin-bottom: 10px; }
.service-card p { color: var(--stone); font-size: 14px; flex: 1; margin-bottom: 16px; }

.service-card__q {
  font-size: 13px;
  font-style: italic;
  color: var(--stone);
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: auto;
}

/* ── Process Strip ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--gold);
  opacity: 0.3;
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.process-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.process-step h4 { font-size: 16px; margin-bottom: 10px; color: var(--dark); }
.process-step p { font-size: 14px; color: var(--stone); }

/* ── Guides Preview ── */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.guide-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.guide-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  text-decoration: none;
}

.guide-card__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.guide-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--dark);
}

.guide-card p {
  font-size: 14px;
  color: var(--stone);
  flex: 1;
  margin-bottom: 20px;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.testimonial-card__quote {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  line-height: 1.6;
  color: var(--dark);
  flex: 1;
  margin-bottom: 20px;
}

.testimonial-card__quote::before {
  content: '\201C';
  font-size: 48px;
  color: var(--gold);
  opacity: 0.4;
  display: block;
  height: 32px;
  line-height: 1;
  margin-bottom: 8px;
}

.testimonial-card__meta {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  font-size: 13px;
  color: var(--stone);
}
.testimonial-card__meta strong { display: block; color: var(--dark); font-size: 14px; }

/* ── CTA Band ── */
.cta-band {
  background: var(--dark);
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(24px, 4vw, 40px);
  margin-bottom: 16px;
}
.cta-band p {
  color: rgba(255,255,255,0.75);
  font-size: 18px;
  margin-bottom: 36px;
}

/* ── Offices Block ── */
.offices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.office-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.office-card h3 { margin-bottom: 20px; font-size: 20px; }

.office-detail {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.office-detail__icon { font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.office-detail p { font-size: 15px; color: var(--stone); margin: 0; }
.office-detail a { color: var(--stone); }
.office-detail a:hover { color: var(--gold); text-decoration: none; }

/* ── Footer ── */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand {}
.footer__logo-name {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}
.footer__tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  font-style: italic;
}

.footer__col h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
}
.footer__col ul li a:hover { color: var(--white); }

.footer__contact-item {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.footer__contact-item a { color: rgba(255,255,255,0.65); }
.footer__contact-item a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__bottom p { font-size: 13px; color: rgba(255,255,255,0.4); margin: 0; }
.footer__bottom a { color: rgba(255,255,255,0.4); }
.footer__bottom a:hover { color: rgba(255,255,255,0.7); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--linen);
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}

.page-hero .eyebrow { margin-bottom: 12px; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero .sub { font-size: 18px; color: var(--stone); max-width: 640px; margin-bottom: 32px; }

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--stone);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--stone); }
.breadcrumb a:hover { color: var(--gold); text-decoration: none; }
.breadcrumb span { color: var(--border-mid); }

/* ── Two-column content ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.two-col--reversed .two-col__image { order: -1; }

.two-col__image img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

/* ── Callout Box ── */
.callout {
  background: var(--parchment);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
}
.callout p { font-size: 15px; color: var(--dark); margin: 0; }
.callout p strong { color: var(--gold); }

/* ── FAQ Accordion ── */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question:hover { color: var(--gold); }

.faq-question__icon {
  width: 24px;
  height: 24px;
  border: 2px solid var(--border-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  transition: transform 0.2s, border-color 0.2s;
}
.faq-item.open .faq-question__icon {
  transform: rotate(45deg);
  border-color: var(--gold);
  color: var(--gold);
}

.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--stone);
  line-height: 1.7;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  margin-left: 0;
}
.faq-item.open .faq-answer { display: block; }

/* ── Credential Cards ── */
.credential-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.credential-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.credential-card__icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.credential-card h4 { margin-bottom: 8px; font-size: 16px; }
.credential-card p { font-size: 14px; color: var(--stone); margin: 0; }

/* ── Table ── */
.table-wrap { overflow-x: auto; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.comparison-table th {
  background: var(--dark);
  color: var(--white);
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
}
.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: var(--dark);
}
.comparison-table tr:nth-child(even) td { background: var(--parchment); }
.comparison-table td:first-child { font-weight: 600; color: var(--stone); font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; }

/* ── Timeline ── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-item h4 { font-size: 15px; margin-bottom: 6px; color: var(--dark); }
.timeline-item p { font-size: 14px; color: var(--stone); margin: 0; }

/* ── Contact Form ── */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-grid .form-group--full { grid-column: 1 / -1; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--dark);
  background: var(--linen);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(182,146,78,0.15);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--stone);
}
.form-consent input { width: auto; flex-shrink: 0; margin-top: 3px; }

/* ── Utility ── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-stone { color: var(--stone); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.divider {
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

/* Threshold boxes */
.threshold-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.threshold-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--white);
  text-align: center;
}
.threshold-card__price {
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  font-family: var(--font-serif);
}
.threshold-card h4 { margin-bottom: 12px; font-size: 16px; }
.threshold-card p { font-size: 14px; color: var(--stone); }

/* Scenarios block */
.scenario-list { display: flex; flex-direction: column; gap: 24px; }
.scenario {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.scenario h4 {
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.scenario h4::before {
  content: '';
  width: 4px;
  height: 20px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.scenario p { font-size: 15px; color: var(--stone); margin: 0; }

/* ── Responsive: Tablet ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .track-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
  .threshold-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Responsive: Mobile ── */
@media (max-width: 768px) {
  :root {
    --section-pad: var(--section-pad-mob);
  }

  .nav__links,
  .nav__right .btn { display: none; }
  .nav__hamburger { display: flex; }
  .nav__lang { display: none; }

  .hero { padding: 48px 0 64px; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__image-wrap { order: -1; }
  .hero__image { aspect-ratio: 4/3; }
  .hero__image-badge { display: none; }

  .trust-strip__inner { gap: 20px; }
  .trust-badge__label { max-width: 80px; }

  .track-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .guides-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col__image { display: none; }
  .credential-grid { grid-template-columns: 1fr; }
  .threshold-grid { grid-template-columns: 1fr; }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .process-steps::before { display: none; }

  .form-grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ── Print ── */
@media print {
  .nav, .cta-band, .footer { display: none; }
  body { font-size: 12px; }
}


/* ─── DESIGN REFINEMENT (May 2026) ──────────────────────────────────────── */

/* Elegant icon containers — replace emoji icons site-wide */
.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--parchment);
  color: var(--gold);
  flex-shrink: 0;
  position: relative;
  transition: all 0.25s ease;
}
.brand-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--border-mid);
  opacity: 0.4;
}
.brand-icon svg { display: block; width: 24px; height: 24px; }

.brand-icon--sm { width: 36px; height: 36px; }
.brand-icon--sm svg { width: 18px; height: 18px; }
.brand-icon--lg { width: 72px; height: 72px; }
.brand-icon--lg svg { width: 32px; height: 32px; }
.brand-icon--xl { width: 96px; height: 96px; }
.brand-icon--xl svg { width: 42px; height: 42px; }

.brand-icon--dark { background: var(--dark); color: var(--gold); }
.brand-icon--dark::before { border-color: rgba(182, 146, 78, 0.3); }
.brand-icon--gold { background: var(--gold); color: var(--white); }
.brand-icon--gold::before { border-color: transparent; }
.brand-icon--outline { background: var(--white); color: var(--gold); border: 1.5px solid var(--gold); }
.brand-icon--outline::before { display: none; }

/* Service card icon refinement */
.service-card__icon {
  margin-bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--parchment);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  position: relative;
}
.service-card__icon svg { width: 26px; height: 26px; }
.service-card__icon::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: 1px solid var(--gold);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.service-card:hover .service-card__icon::after { opacity: 0.4; transform: translate(2px, 2px); }
.service-card { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(45, 42, 38, 0.08); }

/* Credential card icon refinement */
.credential-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--parchment);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid var(--border-mid);
  position: relative;
}
.credential-card__icon svg { width: 26px; height: 26px; }
.credential-card__icon::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0.25;
}

/* Trust strip refinement */
.trust-badge__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--parchment);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border: 1px solid var(--border-mid);
}
.trust-badge__icon svg { width: 22px; height: 22px; }

/* Office card refinement */
.office-card h3 {
  display: flex;
  align-items: center;
  gap: 14px;
}
.office-card h3 .brand-icon { width: 40px; height: 40px; }
.office-card h3 .brand-icon svg { width: 20px; height: 20px; }
.office-detail__icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.office-detail__icon svg { width: 18px; height: 18px; }

/* Footer contact icons refinement */
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  color: rgba(244, 239, 230, 0.85);
}
.footer__contact-icon {
  flex-shrink: 0;
  color: var(--gold);
  width: 18px;
  height: 18px;
  margin-top: 2px;
}
.footer__contact-icon svg { width: 18px; height: 18px; }
.footer__contact-item a { color: rgba(244, 239, 230, 0.85); text-decoration: none; }
.footer__contact-item a:hover { color: var(--gold); }

/* ─── REDESIGNED PROCESS SECTION ─────────────────────────────────────── */

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  margin-top: 56px;
  margin-bottom: 24px;
}
.process-steps--three { grid-template-columns: repeat(3, 1fr); }

/* The connecting line behind the circles */
.process-steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: calc(50% / 4);
  right: calc(50% / 4);
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold) 10%, var(--gold) 90%, transparent);
  z-index: 0;
  opacity: 0.4;
}
.process-steps--three::before {
  left: calc(50% / 3);
  right: calc(50% / 3);
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 12px;
}

.process-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--white);
  color: var(--dark);
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  margin: 0 auto 24px;
  position: relative;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 16px rgba(182, 146, 78, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-step__num::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0.3;
}
.process-step__num::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  top: -4px;
  right: 6px;
  box-shadow: 0 0 0 4px var(--linen);
}
.process-step:hover .process-step__num {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(182, 146, 78, 0.25);
}

.process-step h4 {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}

.process-step p {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.65;
  max-width: 240px;
  margin: 0 auto;
}

.process-step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--parchment);
  color: var(--gold);
  margin: 0 auto 14px;
}
.process-step__icon svg { width: 20px; height: 20px; }

@media (max-width: 900px) {
  .process-steps,
  .process-steps--three { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
}
@media (max-width: 540px) {
  .process-steps,
  .process-steps--three { grid-template-columns: 1fr; }
}

/* ─── DECORATIVE PAGE ELEMENTS ────────────────────────────────────────── */

/* Gold accent rule — small divider for use under headings */
.gold-rule {
  display: block;
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 16px 0 0;
  border: none;
}
.gold-rule--center { margin-left: auto; margin-right: auto; }

/* Section header refinement */
.section__header .eyebrow + h2 { margin-top: 8px; }
.section__header h2 + p { margin-top: 14px; }

/* Quote / pull-quote refinement */
.pull-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--dark);
  border-left: 3px solid var(--gold);
  padding: 8px 0 8px 24px;
  margin: 32px 0;
  max-width: 720px;
}

/* Square brand-frame device — subtle echo of the logo */
.brand-frame {
  position: relative;
  display: inline-block;
}
.brand-frame::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid var(--gold);
  opacity: 0.25;
  pointer-events: none;
}

/* Refined card hover for guide / blog cards */
.guide-card { transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.guide-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(45, 42, 38, 0.07); border-color: var(--gold); }

/* Testimonial card refinement */
.testimonial-card { position: relative; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.testimonial-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45, 42, 38, 0.06); }
.testimonial-card__quote::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 64px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 0;
  left: 16px;
}

/* Track card refinement */
.track-card { transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.track-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(45, 42, 38, 0.07); border-color: var(--gold); }

/* CTA Band — subtle background decoration */
.cta-band { position: relative; overflow: hidden; }
.cta-band::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(182, 146, 78, 0.15);
  border-radius: 50%;
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(182, 146, 78, 0.15);
  border-radius: 50%;
  pointer-events: none;
}


/* Service-page process step variant — span-based markup, different layout */
.process-step > span.process-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--white);
  color: var(--dark);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  margin: 0 auto 18px;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 16px rgba(182, 146, 78, 0.15);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-step > span.process-step__num::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0.3;
}
.process-step > span.process-step__num::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  top: -4px;
  right: 6px;
}
.process-step:hover > span.process-step__num {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(182, 146, 78, 0.25);
}


/* ─── MICRO-INTERACTIONS (May 2026) ─────────────────────────────── */

/* Reveal animations — sections fade up as they enter viewport */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reveal variants */
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.is-visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.is-visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-scale.is-visible { opacity: 1; transform: scale(1); }
.reveal-fade {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-fade.is-visible { opacity: 1; }

/* Sticky-nav shadow on scroll */
.nav {
  transition: box-shadow 0.3s ease, background-color 0.3s ease, padding 0.25s ease;
}
.nav.scrolled {
  box-shadow: 0 4px 20px rgba(45, 42, 38, 0.06);
  background-color: rgba(250, 248, 244, 0.96);
  backdrop-filter: saturate(160%) blur(8px);
  -webkit-backdrop-filter: saturate(160%) blur(8px);
}
.nav.scrolled .nav__inner {
  height: 140px;
  transition: height 0.25s ease;
}

/* Button shine effect on hover */
.btn { position: relative; overflow: hidden; transition: transform 0.2s ease, background 0.2s ease; }
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}
.btn:hover::after { left: 100%; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* Service icon micro-rotation on hover */
.service-card__icon svg { transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1); }
.service-card:hover .service-card__icon svg { transform: rotate(-6deg) scale(1.05); }

/* Trust badge icon scale on hover */
.trust-badge { transition: transform 0.25s ease; }
.trust-badge:hover { transform: translateY(-2px); }
.trust-badge__icon { transition: transform 0.25s ease, background 0.25s ease; }
.trust-badge:hover .trust-badge__icon {
  transform: scale(1.08);
  background: var(--gold);
  color: var(--white);
}

/* Credential card hover */
.credential-card { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.credential-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(45, 42, 38, 0.06);
}
.credential-card__icon { transition: transform 0.3s ease; }
.credential-card:hover .credential-card__icon { transform: scale(1.05); }

/* Image-on-load fade */
img { opacity: 0; transition: opacity 0.5s ease; }
img.img-loaded { opacity: 1; }
img[src=""], img:not([src]) { opacity: 1; }

/* Image hover zoom (inside .img-zoom container) */
.img-zoom { overflow: hidden; border-radius: var(--radius); }
.img-zoom img { transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease; }
.img-zoom:hover img { transform: scale(1.05); }

/* Back-to-top button */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(45, 42, 38, 0.18);
  opacity: 0;
  transform: translateY(20px) scale(0.85);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), background 0.2s ease;
  z-index: 100;
}
.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--gold-dark);
  transform: translateY(-2px) scale(1.05);
}
.back-to-top svg { width: 22px; height: 22px; display: block; }

/* WhatsApp floating button (if/when used) */
.float-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 84px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: pulse-whatsapp 2.4s ease-in-out infinite;
}
.float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
  text-decoration: none;
}
@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 6px 22px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 6px 22px rgba(37, 211, 102, 0.4), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* Hamburger menu animation */
.nav__hamburger span {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.2s ease;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu slide-down animation */
.nav__mobile {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav__mobile.open {
  max-height: 760px;
}

/* Link underline animation */
.text-link {
  position: relative;
  transition: color 0.2s ease;
}
.text-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.text-link:hover::before { width: 100%; }
.text-link:hover { text-decoration: none; }

/* Form input focus animation */
input[type="text"], input[type="email"], input[type="tel"],
input[type="search"], textarea, select {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus,
input[type="search"]:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(182, 146, 78, 0.15);
}

/* Hero image-frame subtle parallax-like float */
.hero__image-wrap, .two-col__image, .page-hero__image-wrap {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Hero image-wrap on homepage gets a subtle hover lift */
.hero__image-wrap:hover { transform: translateY(-4px); }

/* Stat badge counter (the 30+ Client nationalities badge) */
.hero__image-badge {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero__image-badge:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 28px rgba(45, 42, 38, 0.12);
}

/* Section-image with brand-frame device for service pages */
.service-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.service-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-image-wrap::after {
  content: '';
  position: absolute;
  inset: -10px;
  border: 2px solid var(--gold);
  opacity: 0.2;
  pointer-events: none;
  border-radius: var(--radius);
  transition: inset 0.4s ease, opacity 0.4s ease;
}
.service-image-wrap:hover::after {
  inset: -6px;
  opacity: 0.4;
}

/* Reduce-motion override */
.reduce-motion *,
.reduce-motion *::before,
.reduce-motion *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}
.reduce-motion .reveal { opacity: 1; transform: none; }
.reduce-motion .float-whatsapp { animation: none; }
