/* =========================================================
   Accolade Lifts — styles.css
   Light & clean, navy + bright-blue, geometric display type.
   Brand colours extracted from the approved logo.
   ========================================================= */

:root {
  --navy:        #0d1b2e;
  --navy-700:    #142844;
  --navy-soft:   #1b3556;
  --blue:        #3b7ded;
  --blue-600:    #2f6bd6;
  --blue-300:    #7fa9f3;
  --blue-tint:   #eaf1fd;
  --white:       #ffffff;
  --bg:          #ffffff;
  --bg-soft:     #f4f7fb;
  --line:        #e2e9f3;
  --text:        #1a2433;
  --muted:       #5b6678;
  --muted-light: #9aa6b6;

  --radius:   18px;
  --radius-sm:12px;
  --shadow-sm: 0 2px 10px rgba(13,27,46,.06);
  --shadow:    0 18px 50px -20px rgba(13,27,46,.22);
  --shadow-lg: 0 40px 90px -32px rgba(13,27,46,.35);
  --ring:      0 0 0 4px rgba(59,125,237,.18);

  --display: "Sora", system-ui, sans-serif;
  --body:    "Hanken Grotesk", system-ui, sans-serif;

  --container: 1180px;
  --pad: clamp(1.1rem, 4vw, 2rem);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset / base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: var(--display); color: var(--navy); line-height: 1.08; font-weight: 700; letter-spacing: -.02em; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

.ico { width: 1.05em; height: 1.05em; fill: currentColor; flex: none; }

/* ---------- Buttons ---------- */
.btn {
  --bg-btn: var(--blue);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--display); font-weight: 600; font-size: .98rem;
  padding: .8rem 1.4rem; border-radius: 100px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  white-space: nowrap; line-height: 1;
}
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 10px 24px -10px rgba(59,125,237,.7); }
.btn--primary:hover { background: var(--blue-600); transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(59,125,237,.8); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); background: var(--blue-tint); }
.btn--lg { padding: 1rem 1.7rem; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn:focus-visible { outline: none; box-shadow: var(--ring); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--display); font-weight: 600; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-600); margin-bottom: 1rem;
}
.eyebrow__line { width: 28px; height: 2px; background: var(--blue); border-radius: 2px; }
.eyebrow--light { color: var(--blue-300); }

/* ---------- Top bar ---------- */
.topbar { background: var(--navy); color: #cdd8e8; font-size: .85rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 40px; gap: 1rem; }
.topbar__item { display: inline-flex; align-items: center; gap: .5rem; font-weight: 500; }
.topbar__pulse .dot { width: 8px; height: 8px; border-radius: 50%; background: #46d39a; box-shadow: 0 0 0 0 rgba(70,211,154,.7); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(70,211,154,.6)} 70%{box-shadow:0 0 0 8px rgba(70,211,154,0)} 100%{box-shadow:0 0 0 0 rgba(70,211,154,0)} }
.topbar__contact { display: flex; gap: 1.4rem; }
.topbar__link { display: inline-flex; align-items: center; gap: .45rem; transition: color .2s; }
.topbar__link:hover { color: #fff; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86); backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line); transition: box-shadow .3s, background .3s;
}
.header.is-stuck { box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 1rem; }
.brand__logo { height: 48px; width: auto; display: block; }
.nav { display: flex; align-items: center; gap: 1.9rem; }
.nav__link { font-family: var(--display); font-weight: 500; font-size: .98rem; color: var(--navy); position: relative; padding: .3rem 0; transition: color .2s; }
.nav__link::after { content:""; position:absolute; left:0; bottom:-2px; height:2px; width:0; background:var(--blue); transition:width .25s var(--ease); border-radius: 2px; }
.nav__link:hover { color: var(--blue); }
.nav__link:hover::after { width: 100%; }
.nav__cta { margin-left: .4rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(3rem, 7vw, 6rem) 0 clamp(3.5rem, 7vw, 6rem); overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 88% 0%, rgba(59,125,237,.10), transparent 70%),
    radial-gradient(45% 45% at 0% 100%, rgba(59,125,237,.07), transparent 70%);
}
.hero__bg::before {
  content:""; position:absolute; inset:0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 46px 46px; opacity: .5;
  mask-image: radial-gradient(circle at 70% 30%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 70% 30%, #000, transparent 72%);
}
.hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero__title { font-size: clamp(2.5rem, 6vw, 4.3rem); font-weight: 800; letter-spacing: -.035em; }
.grad { background: linear-gradient(100deg, var(--blue), #6aa1ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__lead { margin: 1.4rem 0 .9rem; font-size: 1.15rem; color: var(--muted); max-width: 40ch; }
.hero__meta { display: inline-flex; align-items: center; gap: .45rem; margin: 0 0 2rem; font-size: .95rem; font-weight: 600; color: var(--navy); }
.hero__meta .ico-pin { width: 1.05em; height: 1.05em; fill: var(--blue); flex: none; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2rem; }
.trust { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; }
.trust li { position: relative; padding-left: 1.5rem; font-weight: 600; font-size: .92rem; color: var(--navy); }
.trust li::before {
  content:""; position:absolute; left:0; top:50%; transform: translateY(-50%);
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--blue-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233b7ded'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* Hero media + bracket frame motif (from logo icon) */
.hero__media { position: relative; }
.frame { position: relative; border-radius: var(--radius); }
.frame img { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.bracket { position: absolute; width: 64px; height: 64px; z-index: 2; }
.bracket--tl { top: -16px; left: -16px; border-top: 5px solid var(--blue); border-left: 5px solid var(--blue); border-top-left-radius: 14px; }
.bracket--br { bottom: -16px; right: -16px; border-bottom: 5px solid var(--blue); border-right: 5px solid var(--blue); border-bottom-right-radius: 14px; }
.stat-card {
  position: absolute; left: -22px; bottom: 34px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: .9rem 1.2rem; box-shadow: var(--shadow); text-align: left;
}
.stat-card__num { display: block; font-family: var(--display); font-weight: 800; font-size: 1.7rem; color: var(--blue); line-height: 1; }
.stat-card__label { font-size: .8rem; color: var(--muted); font-weight: 500; }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: radial-gradient(120% 120% at 100% 0%, var(--navy-soft), var(--navy)); color: #d7e0ee; }
.section__head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section__head--light .section__title { color: #fff; }
.section__title { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.section__sub { margin-top: 1rem; color: var(--muted); font-size: 1.1rem; }
.section--navy .section__sub { color: #aebccf; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.5rem; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  overflow: hidden; text-align: center;
}
.card::before { content:""; position:absolute; inset:0 0 auto 0; height:3px; background: linear-gradient(90deg,var(--blue),#6aa1ff); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card__icon { width: 100%; display: grid; place-items: center; margin-bottom: 1.1rem; transition: transform .3s; }
.card__icon svg { width: 52px; height: 52px; fill: var(--blue); }
.card:hover .card__icon { transform: rotate(-6deg) scale(1.05); }
.card__title { font-size: 1.2rem; margin-bottom: .55rem; }
.card__text { color: var(--muted); font-size: .98rem; }
.card--accent { background: var(--navy); border-color: var(--navy); }
.card--accent .card__title { color: #fff; }
.card--accent .card__text { color: #b9c6da; }
.card--accent .card__icon svg { fill: #fff; }
.card__flag { position: absolute; top: 1.1rem; right: 1.1rem; background: var(--blue); color: #fff; font-family: var(--display); font-weight: 700; font-size: .72rem; padding: .25rem .55rem; border-radius: 100px; letter-spacing: .04em; }

/* ---------- Gallery ---------- */
.gallery { columns: 4; column-gap: 1rem; }
.gallery__item {
  position: relative; break-inside: avoid; margin-bottom: 1rem; border-radius: var(--radius-sm);
  overflow: hidden; cursor: pointer; background: var(--bg-soft); display: block; width: 100%;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.gallery__item img { width: 100%; height: auto; transition: transform .5s var(--ease); display: block; }
.gallery__item::after {
  content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(13,27,46,.55));
  opacity: 0; transition: opacity .3s;
}
.gallery__item .zoom {
  position: absolute; right: 12px; bottom: 12px; z-index: 2; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.92); display: grid; place-items: center; transform: scale(.6); opacity: 0; transition: .3s var(--ease);
}
.gallery__item .zoom svg { width: 18px; height: 18px; fill: var(--navy); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item:hover::after { opacity: 1; }
.gallery__item:hover .zoom { transform: scale(1); opacity: 1; }
.gallery__item:focus-visible { outline: none; box-shadow: var(--ring); }

/* ---------- Why / stats ---------- */
.why__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.ticklist { margin: 1.6rem 0 2rem; display: grid; gap: .85rem; }
.ticklist li { position: relative; padding-left: 2.1rem; font-weight: 500; }
.ticklist li::before {
  content:""; position:absolute; left:0; top:1px; width: 24px; height: 24px; border-radius: 8px;
  background: var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/15px no-repeat;
}
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.4rem; box-shadow: var(--shadow-sm); }
.stat__num { font-family: var(--display); font-weight: 800; font-size: clamp(2.2rem,5vw,3rem); color: var(--navy); line-height: 1; }
.stat__suffix { font-family: var(--display); font-weight: 800; font-size: 1.4rem; color: var(--blue); }
.stat__label { display: block; margin-top: .5rem; color: var(--muted); font-size: .92rem; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.3rem; }
.quote { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 1.8rem 1.6rem; backdrop-filter: blur(4px); }
.quote__stars { color: #ffc55a; letter-spacing: 2px; margin-bottom: .9rem; }
.quote blockquote { font-size: 1.05rem; color: #eaf0f8; line-height: 1.55; }
.quote figcaption { margin-top: 1.2rem; display: flex; flex-direction: column; }
.quote figcaption strong { color: #fff; font-family: var(--display); }
.quote figcaption span { color: #9fb0c6; font-size: .9rem; }

/* ---------- Areas ---------- */
.areas__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.area-tags { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.6rem 0 2rem; }
.area-tags li { background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: .5rem 1.1rem; font-weight: 600; font-size: .92rem; color: var(--navy); transition: .2s; }
.area-tags li:hover { border-color: var(--blue); color: var(--blue); }
.areas__media .frame img { aspect-ratio: 4/3; }

/* ---------- FAQ ---------- */
.faq__wrap { max-width: 820px; margin-inline: auto; }
.faq__wrap .section__head { margin-inline: auto; text-align: center; }
.faq__wrap .eyebrow { justify-content: center; }
.faq { display: grid; gap: .8rem; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: box-shadow .25s, border-color .25s; }
.faq__item[open] { box-shadow: var(--shadow-sm); border-color: var(--blue-300); }
.faq__item summary {
  cursor: pointer; list-style: none; padding: 1.15rem 1.4rem; font-family: var(--display); font-weight: 600; font-size: 1.05rem;
  color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.5rem; color: var(--blue); transition: transform .3s var(--ease); font-weight: 400; line-height: 1; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__body { padding: 0 1.4rem 1.25rem; color: var(--muted); }

/* ---------- Contact ---------- */
.section--contact { background: var(--bg-soft); }
.contact__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.contact__list { display: grid; gap: 1.2rem; margin-top: 2rem; }
.contact__list li { display: flex; gap: 1rem; align-items: center; }
.contact__ico { width: 48px; height: 48px; border-radius: 12px; background: var(--blue-tint); display: grid; place-items: center; flex: none; }
.contact__ico svg { width: 22px; height: 22px; fill: var(--blue); }
.contact__label { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-light); font-weight: 600; }
.contact__value { font-family: var(--display); font-weight: 700; font-size: 1.2rem; color: var(--navy); transition: color .2s; }
a.contact__value:hover { color: var(--blue); }
.contact__value--plain { font-size: 1rem; font-weight: 500; }

.contact__form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem,3vw,2.2rem); box-shadow: var(--shadow); }
.form__title { font-size: 1.4rem; margin-bottom: 1.3rem; }
.field { margin-bottom: 1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; color: var(--navy); font-family: var(--display); }
.field input, .field textarea {
  width: 100%; font-family: var(--body); font-size: 1rem; color: var(--text);
  padding: .8rem 1rem; border: 1.5px solid var(--line); border-radius: 12px; background: #fcfdff; transition: border-color .2s, box-shadow .2s; resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: var(--ring); }
.field.is-invalid input, .field.is-invalid textarea { border-color: #e5484d; }
.field__error { display: block; color: #e5484d; font-size: .82rem; margin-top: .35rem; min-height: 0; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form__status { margin-top: 1rem; font-weight: 600; font-size: .95rem; min-height: 1.2em; }
.form__status.is-ok { color: #11875b; }
.form__status.is-err { color: #e5484d; }
.form__note { margin-top: 1rem; font-size: .9rem; color: var(--muted); }
.form__note a { color: var(--blue); font-weight: 600; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: #aebccf; padding-top: clamp(3rem,6vw,4.5rem); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; padding-bottom: 2.5rem; }
.footer__logo { height: 116px; width: auto; margin-bottom: 1.1rem; }
.footer__tag { font-family: var(--display); font-weight: 600; color: var(--blue-300); letter-spacing: .04em; font-size: .9rem; }
.footer__small { font-size: .88rem; color: #8395ab; margin-top: .5rem; }
.footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer__col a { display: block; padding: .3rem 0; color: #aebccf; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__bar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.4rem 0; border-top: 1px solid rgba(255,255,255,.1); font-size: .85rem; color: #8395ab; }
.footer__credit { color: var(--blue-300); }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(8,16,28,.94); display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; }
.lightbox.is-open { display: flex; opacity: 1; }
.lightbox__img { max-width: 88vw; max-height: 86vh; border-radius: 10px; box-shadow: var(--shadow-lg); animation: lbin .35s var(--ease); }
@keyframes lbin { from { transform: scale(.94); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(255,255,255,.12); color: #fff; border: 0; cursor: pointer;
  width: 52px; height: 52px; border-radius: 50%; font-size: 1.8rem; line-height: 1; display: grid; place-items: center; transition: background .2s, transform .2s;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.25); }
.lightbox__close { top: 22px; right: 22px; font-size: 2rem; }
.lightbox__nav--prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 22px; top: 50%; transform: translateY(-50%); }
.lightbox__nav:hover { transform: translateY(-50%) scale(1.08); }
.lightbox__count { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: #cdd8e8; font-size: .9rem; font-family: var(--display); }

/* ---------- Floating call button (mobile) ---------- */
.fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 90; width: 58px; height: 58px; border-radius: 50%;
  background: var(--blue); display: none; place-items: center; box-shadow: 0 12px 28px -8px rgba(59,125,237,.8);
  animation: fabpulse 2.4s infinite;
}
.fab svg { width: 26px; height: 26px; fill: #fff; }
@keyframes fabpulse { 0%{box-shadow:0 0 0 0 rgba(59,125,237,.55), 0 12px 28px -8px rgba(59,125,237,.8)} 70%{box-shadow:0 0 0 16px rgba(59,125,237,0), 0 12px 28px -8px rgba(59,125,237,.8)} 100%{box-shadow:0 0 0 0 rgba(59,125,237,0), 0 12px 28px -8px rgba(59,125,237,.8)} }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===================================================
   Responsive
   =================================================== */
@media (max-width: 1024px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .gallery { columns: 3; }
  .quotes { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .topbar__link--email { display: none; }
  .nav-toggle { display: flex; }
  .nav {
    /* top/right/height (not inset:0 + bottom) so the panel still fills the
       screen even though .header's backdrop-filter is its containing block */
    position: fixed; top: 0; right: 0; left: auto; height: 100vh; height: 100dvh;
    width: min(82vw, 340px); background: #fff;
    flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: .4rem;
    padding: 6rem 2rem 2rem; transform: translateX(105%); transition: transform .35s var(--ease);
    box-shadow: var(--shadow-lg); z-index: 99; overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__link { font-size: 1.15rem; padding: .7rem 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav__link::after { display: none; }
  .nav__cta { margin: 1rem 0 0; width: 100%; }
  body.nav-open { overflow: hidden; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 460px; margin: 0 auto; order: -1; }
  .why__grid, .areas__grid, .contact__grid { grid-template-columns: 1fr; }
  .areas__media { order: -1; max-width: 520px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .fab { display: grid; }
}

@media (max-width: 560px) {
  .brand__logo { height: 38px; }
  .cards { grid-template-columns: 1fr; }
  .gallery { columns: 2; column-gap: .7rem; }
  .gallery__item { margin-bottom: .7rem; }
  .stats { grid-template-columns: 1fr 1fr; gap: .8rem; }
  .field-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bar { flex-direction: column; text-align: center; }
  .topbar__pulse { font-size: .8rem; }
  .stat-card { left: 0; }
  .hero__actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
