/* ============================================================
   Via Syndic — Design System & Styles
   Archivo font / Orange #EE7011 / Brown #261B12
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Archivo', sans-serif;
  background: #FFFFFF;
  color: #261B12;
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}
button { cursor: pointer; }

/* ---------- Design Tokens ---------- */
:root {
  --c-orange: #EE7011;
  --c-orange-hover: #D5620B;
  --c-orange-light: #FDEBDD;
  --c-brown: #261B12;
  --c-brown-logo: #4A2418;
  --c-body: #5B5044;
  --c-muted: #8A7E72;
  --c-bg-warm: #FAF7F2;
  --c-border: #EFE9E1;
  --c-border-card: #EFE7DC;
  --c-border-btn: #E0D7CB;
  --c-border-input: #E5DDD2;
  --c-placeholder: #A39580;
  --c-footer-bg: #261B12;
  --c-footer-text: #C9BCAD;
  --c-footer-muted: #8F8273;
  --c-white: #FFFFFF;

  --max-w: 1320px;
  --nav-h: 76px;
  --radius-card: 14px;
  --radius-btn: 10px;
  --radius-img: 18px;
  --radius-pill: 999px;

  --section-px: 48px;
  --section-py: 72px;

  --shadow-sm: 0 1px 2px rgba(38, 27, 18, 0.06);
  --shadow-md: 0 6px 16px -4px rgba(38, 27, 18, 0.12);
  --shadow-lg: 0 18px 36px -12px rgba(38, 27, 18, 0.18);
  --shadow-orange: 0 8px 20px -6px rgba(238, 112, 17, 0.45);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Motion & polish base ---------- */
html { scroll-padding-top: calc(var(--nav-h) + 16px); }
::selection { background: var(--c-orange-light); color: var(--c-brown); }
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--c-orange);
  outline-offset: 2px;
  border-radius: 4px;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pop-in {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: none; }
}
@keyframes drift {
  from { transform: translate(0, 0); }
  to   { transform: translate(-40px, 24px); }
}

/* Scroll reveal — .reveal is added by JS only, so no-JS visitors see everything.
   The effect is a one-shot animation (not a transition) so it never fights
   hover transforms defined on the same element. */
.reveal { opacity: 0; }
.reveal.is-visible {
  opacity: 1;
  animation: fade-up 0.7s var(--ease-out) backwards;
  animation-delay: var(--reveal-delay, 0ms);
}

/* ---------- Typography ---------- */
.label-sm {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2.2px;
  color: var(--c-orange);
  text-transform: uppercase;
}
.heading-xl {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -1.2px;
  color: var(--c-brown);
}
.heading-lg {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--c-brown);
}
.heading-md {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--c-brown);
}
.heading-sm {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--c-brown);
}
.heading-card {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--c-brown);
}
.heading-service {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--c-brown);
}
.body-lg {
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-body);
}
.body-md {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--c-body);
}
.body-sm {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--c-body);
}

/* ---------- Container ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--section-px);
  padding-right: var(--section-px);
}

/* Grid blowout guard — lets images and long content shrink below their
   intrinsic width inside 1fr tracks (prevents horizontal overflow on mobile) */
.hero > *,
.why-us > *,
.service-detail > *,
.about-mission > *,
.about-locations__grid > *,
.contact-grid > *,
.services-grid > *,
.faq > *,
.footer__grid > * { min-width: 0; }

/* ---------- Icon base ---------- */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon svg {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--section-px);
  height: var(--nav-h);
  border-bottom: 1px solid var(--c-border);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: box-shadow 0.3s ease;
}
.nav--scrolled { box-shadow: 0 6px 24px -10px rgba(38, 27, 18, 0.14); }
.nav__logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.5px;
}
.nav__logo-via { color: var(--c-brown-logo); }
.nav__logo-syndic { color: var(--c-orange); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14.5px;
}
.nav__link {
  position: relative;
  padding: 4px 0;
  font-weight: 600;
  color: var(--c-body);
  transition: color 0.2s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--c-orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out);
}
.nav__link:hover,
.nav__link--active {
  color: var(--c-orange);
}
.nav__link:hover::after,
.nav__link--active::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.nav__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--c-orange);
  color: var(--c-white);
  font-weight: 700;
  font-size: 14.5px;
  border-radius: var(--radius-btn);
  padding: 11px 20px;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.nav__phone:hover {
  background: var(--c-orange-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}
.nav__phone:active { transform: translateY(0); box-shadow: var(--shadow-sm); }
.nav__phone .icon { font-size: 17px; }

/* Mobile menu button */
.nav__burger {
  display: none;
  font-size: 24px;
  color: var(--c-brown);
  background: none;
  border: none;
  padding: 8px;
}

/* Mobile menu overlay */
.mobile-menu {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--c-white);
  flex-direction: column;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateX(6%);
  transition:
    opacity 0.3s ease,
    transform 0.35s var(--ease-out),
    visibility 0s linear 0.35s;
}
.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: none;
  transition:
    opacity 0.3s ease,
    transform 0.35s var(--ease-out);
}
.mobile-menu__link,
.mobile-menu__phone {
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 0.35s ease, transform 0.4s var(--ease-out);
}
.mobile-menu.is-open .mobile-menu__link,
.mobile-menu.is-open .mobile-menu__phone {
  opacity: 1;
  transform: none;
}
.mobile-menu.is-open .mobile-menu__link:nth-child(1) { transition-delay: 0.06s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(2) { transition-delay: 0.12s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(3) { transition-delay: 0.18s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(4) { transition-delay: 0.24s; }
.mobile-menu.is-open .mobile-menu__phone { transition-delay: 0.3s; }
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: var(--nav-h);
  border-bottom: 1px solid var(--c-border);
}
.mobile-menu__close {
  font-size: 24px;
  color: var(--c-brown);
  background: none;
  border: none;
  padding: 8px;
}
.mobile-menu__body {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 16px 0;
  flex: 1;
  overflow-y: auto;
}
.mobile-menu__link {
  display: block;
  padding: 16px 24px;
  font-size: 17px;
  font-weight: 600;
  color: var(--c-brown);
  border-bottom: 1px solid var(--c-border);
}
.mobile-menu__link--active { color: var(--c-orange); }
.mobile-menu__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 24px;
  background: var(--c-orange);
  color: var(--c-white);
  font-weight: 700;
  font-size: 15.5px;
  border-radius: var(--radius-btn);
  padding: 15px 26px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-orange);
  color: var(--c-white);
  font-weight: 700;
  font-size: 15.5px;
  border-radius: var(--radius-btn);
  padding: 15px 26px;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, transform 0.25s var(--ease-out), box-shadow 0.25s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover {
  background: var(--c-orange-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}
.btn-primary:active { transform: translateY(0) scale(0.98); box-shadow: var(--shadow-sm); }
.btn-primary--dark {
  background: var(--c-brown);
}
.btn-primary--dark:hover {
  background: #1a120c;
  box-shadow: 0 8px 20px -6px rgba(38, 27, 18, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--c-border-btn);
  color: var(--c-brown);
  font-weight: 600;
  font-size: 15.5px;
  border-radius: var(--radius-btn);
  padding: 15px 26px;
  transition: background 0.2s, border-color 0.2s, transform 0.25s var(--ease-out), box-shadow 0.25s;
  cursor: pointer;
  background: transparent;
}
.btn-secondary:hover {
  background: #F7F3EE;
  border-color: var(--c-orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary:active { transform: translateY(0) scale(0.98); box-shadow: none; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--c-orange);
  transition: color 0.2s;
}
.link-arrow:hover { color: var(--c-orange-hover); }
.link-arrow .icon { font-size: 16px; transition: transform 0.3s var(--ease-out); }
.link-arrow:hover .icon { transform: translateX(5px); }

/* ============================================================
   HERO (Home)
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  padding: var(--section-py) var(--section-px) 64px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero__content { display: flex; flex-direction: column; gap: 22px; }
.hero__buttons { display: flex; gap: 14px; margin-top: 6px; flex-wrap: wrap; }
.hero__image {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-img);
  box-shadow: var(--shadow-lg);
}

/* Hero entrance — staggered, plays once on load */
.hero__content > * { animation: fade-up 0.8s var(--ease-out) backwards; }
.hero__content > *:nth-child(1) { animation-delay: 0.05s; }
.hero__content > *:nth-child(2) { animation-delay: 0.15s; }
.hero__content > *:nth-child(3) { animation-delay: 0.25s; }
.hero__content > *:nth-child(4) { animation-delay: 0.35s; }
.hero__image { animation: fade-in 1s ease 0.3s backwards; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.trust-bar__item {
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--c-border);
  transition: background 0.3s ease;
}
.trust-bar__item:hover { background: var(--c-bg-warm); }
.trust-bar__item:last-child { border-right: none; }
.trust-bar__icon {
  font-size: 22px;
  color: var(--c-orange);
  transition: transform 0.3s var(--ease-out);
}
.trust-bar__item:hover .trust-bar__icon { transform: scale(1.18) rotate(-5deg); }
.trust-bar__text { font-size: 14px; font-weight: 600; }

/* ============================================================
   SERVICES CARDS (Home)
   ============================================================ */
.section-warm { background: var(--c-bg-warm); }
.section-pad { padding: var(--section-py) 0; }

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.services-header__text { display: flex; flex-direction: column; gap: 10px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.services-grid--2 { grid-template-columns: repeat(2, 1fr); }
.service-card {
  background: var(--c-white);
  border: 1px solid var(--c-border-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.service-card:hover {
  border-color: var(--c-orange);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card__media { overflow: hidden; }
.service-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.65s var(--ease-out);
}
.service-card:hover .service-card__img { transform: scale(1.07); }
.service-card:hover .link-arrow .icon { transform: translateX(5px); }
.service-card__body {
  padding: 26px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-card__title { font-size: 19px; font-weight: 700; }

/* ============================================================
   WHY US
   ============================================================ */
.why-us {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  padding: var(--section-py) var(--section-px);
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.why-us__image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-img);
  box-shadow: var(--shadow-lg);
}
.why-us__content { display: flex; flex-direction: column; gap: 26px; }
.why-us__heading { display: flex; flex-direction: column; gap: 10px; }
.why-us__list { display: flex; flex-direction: column; gap: 18px; }
.why-us__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: transform 0.3s var(--ease-out);
}
.why-us__item:hover { transform: translateX(5px); }
.why-us__item-icon {
  font-size: 22px;
  color: var(--c-orange);
  margin-top: 1px;
  transition: transform 0.3s var(--ease-out);
}
.why-us__item:hover .why-us__item-icon { transform: scale(1.15); }
.why-us__item-text { font-size: 15px; line-height: 1.6; color: var(--c-body); }
.why-us__item-text strong { color: var(--c-brown); }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.faq__left { display: flex; flex-direction: column; gap: 12px; }
.faq__left .body-md { max-width: 360px; }
.faq__phone {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--c-border-btn);
  color: var(--c-brown);
  font-weight: 600;
  font-size: 14.5px;
  border-radius: var(--radius-btn);
  padding: 13px 22px;
  margin-top: 8px;
  transition: background 0.2s;
}
.faq__phone:hover { background: var(--c-white); }
.faq__phone .icon { font-size: 16px; color: var(--c-orange); }
.faq__list { display: flex; flex-direction: column; gap: 12px; }

/* Accordion */
.accordion {
  background: var(--c-white);
  border: 1px solid var(--c-border-card);
  border-radius: 12px;
  padding: 20px 24px;
}
.accordion__trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  color: var(--c-brown);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.accordion__icon {
  font-size: 18px;
  color: var(--c-orange);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.accordion[data-open="true"] .accordion__icon {
  transform: rotate(180deg);
}
.accordion__body {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--c-body);
  padding-top: 12px;
  display: none;
}
.accordion[data-open="true"] .accordion__body {
  display: block;
  animation: fade-up 0.35s var(--ease-out);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--c-orange);
  padding: 56px var(--section-px);
}
.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 70%);
  pointer-events: none;
}
.cta-band::before {
  width: 520px;
  height: 520px;
  top: -300px;
  right: -100px;
  animation: drift 16s ease-in-out infinite alternate;
}
.cta-band::after {
  width: 380px;
  height: 380px;
  bottom: -240px;
  left: -80px;
  animation: drift 12s ease-in-out infinite alternate-reverse;
}
.cta-band__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band__text { display: flex; flex-direction: column; gap: 8px; }
.cta-band__heading {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--c-white);
}
.cta-band__sub {
  font-size: 15.5px;
  color: rgba(255,255,255,0.85);
}
.cta-band__buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--c-footer-bg);
  color: var(--c-footer-text);
  padding: 56px var(--section-px) 32px;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}
.footer__brand { display: flex; flex-direction: column; gap: 14px; }
.footer__brand-logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-weight: 800;
  font-size: 20px;
}
.footer__brand-via { color: var(--c-white); }
.footer__brand-syndic { color: var(--c-orange); }
.footer__brand-desc {
  font-size: 14px;
  line-height: 1.65;
  max-width: 360px;
}
.footer__social { display: flex; gap: 10px; margin-top: 4px; }
.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  font-size: 18px;
  transition: background 0.2s, transform 0.25s var(--ease-out);
}
.footer__social-link:hover { background: var(--c-orange); transform: translateY(-3px); }

.footer__col { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer__col-title {
  font-weight: 700;
  color: var(--c-white);
  font-size: 13px;
  letter-spacing: 1.5px;
}
.footer__col a {
  width: fit-content;
  transition: color 0.2s, transform 0.25s var(--ease-out);
}
.footer__col a:hover { color: var(--c-white); transform: translateX(4px); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  font-size: 12.5px;
  color: var(--c-footer-muted);
  line-height: 1.6;
}

/* ============================================================
   PAGE HEADER (About, Services, Contact)
   ============================================================ */
.page-header {
  position: relative;
  overflow: hidden;
  background: var(--c-bg-warm);
  padding: 64px var(--section-px);
  border-bottom: 1px solid var(--c-border);
}
.page-header::after {
  content: "";
  position: absolute;
  top: -180px;
  right: -120px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238, 112, 17, 0.07), transparent 70%);
  pointer-events: none;
}
.page-header__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.page-header__inner > * { animation: fade-up 0.7s var(--ease-out) backwards; }
.page-header__inner > *:nth-child(1) { animation-delay: 0.05s; }
.page-header__inner > *:nth-child(2) { animation-delay: 0.13s; }
.page-header__inner > *:nth-child(3) { animation-delay: 0.21s; }
.page-header__desc {
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-body);
  max-width: 640px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-mission {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  padding: var(--section-py) var(--section-px);
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.about-mission__content { display: flex; flex-direction: column; gap: 20px; }
.about-mission__content .body-md { font-size: 16px; line-height: 1.75; }
.about-mission__quote {
  border-left: 3px solid var(--c-orange);
  padding: 4px 0 4px 20px;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 600;
  color: var(--c-brown);
}
.about-mission__image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-img);
  box-shadow: var(--shadow-lg);
}

.about-locations {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.about-locations__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.location-card {
  background: var(--c-white);
  border: 1px solid var(--c-border-card);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.location-card__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.location-card__body {
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.location-card__title { font-size: 19px; font-weight: 700; }

.about-legal {
  padding: 64px var(--section-px);
}
.about-legal__card {
  max-width: var(--max-w);
  margin: 0 auto;
  background: var(--c-white);
  border: 1px solid var(--c-border-card);
  border-radius: var(--radius-card);
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-legal__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--c-muted);
}
.about-legal__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.about-legal__item { display: flex; flex-direction: column; gap: 4px; }
.about-legal__item-label { font-size: 12.5px; color: var(--c-muted); }
.about-legal__item-value { font-size: 15px; font-weight: 700; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: var(--section-py) var(--section-px);
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.service-detail--reversed { direction: ltr; }
.service-detail__image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-img);
  box-shadow: var(--shadow-lg);
}
.service-detail__content { display: flex; flex-direction: column; gap: 18px; }
.service-detail__checklist { display: flex; flex-direction: column; gap: 12px; }
.service-detail__check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.service-detail__check-icon {
  font-size: 18px;
  color: var(--c-orange);
  margin-top: 2px;
}
.service-detail__check-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--c-body);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  padding: var(--section-py) var(--section-px);
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex;
  gap: 18px;
  align-items: center;
  background: var(--c-white);
  border: 1px solid var(--c-border-card);
  border-radius: var(--radius-card);
  padding: 24px 26px;
  transition: border-color 0.25s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.contact-card:hover {
  border-color: var(--c-orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.contact-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--c-orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 24px;
  color: var(--c-orange);
  transition: transform 0.3s var(--ease-out);
}
.contact-card:hover .contact-card__icon { transform: scale(1.1) rotate(-4deg); }
.contact-card__text { display: flex; flex-direction: column; gap: 2px; }
.contact-card__label { font-size: 13px; color: var(--c-muted); }
.contact-card__value { font-size: 17px; font-weight: 700; }

.contact-map {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--c-border-card);
  background: #F3EDE4;
  height: 240px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Form */
.contact-form {
  background: var(--c-white);
  border: 1px solid var(--c-border-card);
  border-radius: 16px;
  padding: 40px;
}
.contact-form__inner { display: flex; flex-direction: column; gap: 18px; }
.contact-form__header { display: flex; flex-direction: column; gap: 6px; }
.contact-form__title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.contact-form__subtitle { font-size: 14px; color: var(--c-muted); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 13.5px; font-weight: 600; }
.form-input,
.form-select,
.form-textarea {
  border: 1.5px solid var(--c-border-input);
  border-radius: var(--radius-btn);
  padding: 13px 16px;
  font-size: 14.5px;
  font-family: 'Archivo', sans-serif;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--c-white);
  color: var(--c-brown);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--c-orange);
  box-shadow: 0 0 0 4px rgba(238, 112, 17, 0.12);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--c-placeholder);
}
.form-textarea { resize: vertical; }

.form-submit {
  width: 100%;
  background: var(--c-orange);
  color: var(--c-white);
  font-weight: 700;
  font-size: 15.5px;
  border-radius: var(--radius-btn);
  padding: 16px;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.form-submit:hover {
  background: var(--c-orange-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}
.form-submit:active { transform: translateY(0); box-shadow: none; }
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Form success state */
.contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 48px 24px;
  text-align: center;
}
.contact-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--c-orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--c-orange);
  animation: pop-in 0.5s var(--ease-out);
}
.contact-success__title { font-size: 22px; font-weight: 800; }
.contact-success__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-body);
  max-width: 380px;
}

/* Honeypot */
.hp-field { position: absolute; left: -9999px; top: -9999px; }

/* ============================================================
   BACK TO TOP (injected by JS)
   ============================================================ */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--c-orange);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px -4px rgba(38, 27, 18, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.3s ease, transform 0.3s var(--ease-out), background 0.2s, visibility 0s linear 0.3s;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 0.3s ease, transform 0.3s var(--ease-out), background 0.2s;
}
.back-to-top:hover { background: var(--c-orange-hover); transform: translateY(-3px); }
.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-px: 32px;
  }
  .hero { grid-template-columns: 1fr; gap: 40px; padding-top: 48px; }
  .hero__image { height: 320px; }
  .trust-bar { grid-template-columns: 1fr 1fr; }
  .trust-bar__item:nth-child(2) { border-right: none; }
  .trust-bar__item:nth-child(1),
  .trust-bar__item:nth-child(2) { border-bottom: 1px solid var(--c-border); }
  .services-grid,
  .services-grid--2 { grid-template-columns: 1fr; }
  .why-us { grid-template-columns: 1fr; gap: 40px; }
  .why-us__image { height: 280px; order: -1; }
  .faq { grid-template-columns: 1fr; gap: 40px; }
  .about-mission { grid-template-columns: 1fr; gap: 40px; }
  .about-mission__image { height: 300px; order: -1; }
  .about-locations__grid { grid-template-columns: 1fr; }
  .about-legal__grid { grid-template-columns: repeat(3, 1fr); }
  .service-detail { grid-template-columns: 1fr; gap: 40px; }
  .service-detail__image { order: -1; height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root {
    --section-px: 20px;
    --section-py: 48px;
  }
  .heading-xl { font-size: 36px; letter-spacing: -0.8px; }
  .heading-lg { font-size: 32px; }
  .heading-md { font-size: 28px; }
  .heading-sm { font-size: 26px; }
  .heading-card { font-size: 24px; }
  .heading-service { font-size: 26px; }

  /* Nav */
  .nav { padding: 0 20px; }
  .nav__links { display: none; }
  .nav__phone { display: none; }
  .nav__burger { display: flex; }

  .hero__image { height: 240px; }
  .hero__buttons { flex-direction: column; }
  .hero__buttons .btn-primary,
  .hero__buttons .btn-secondary { text-align: center; justify-content: center; }

  .trust-bar { grid-template-columns: 1fr; }
  .trust-bar__item { border-right: none; border-bottom: 1px solid var(--c-border); }
  .trust-bar__item:last-child { border-bottom: none; }

  .cta-band__inner { flex-direction: column; text-align: center; align-items: center; }
  .cta-band__buttons { flex-direction: column; width: 100%; }
  .cta-band__buttons a,
  .cta-band__buttons .btn-primary { width: 100%; justify-content: center; text-align: center; }

  .about-legal__grid { grid-template-columns: 1fr 1fr; }

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

  .page-header { padding: 40px var(--section-px); }

  .about-mission__image { height: 240px; }
  .service-detail__image { height: 240px; }
}

@media (max-width: 480px) {
  .heading-xl { font-size: 30px; }
  .about-legal__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
  .reveal { opacity: 1; }
}
