:root {
  --paper: #fbf7f1;
  --paper-2: #f4eadf;
  --white: #fffdfa;
  --ink: #241d18;
  --muted: #6d625a;
  --gold: #a1661c;
  --gold-dark: #75450e;
  --line: rgba(117, 69, 14, .18);
  --shadow: 0 22px 55px rgba(53, 35, 20, .1);
  --radius: 22px;
  --header-h: 94px;
  --content-max: 1240px;
  --page-gutter: clamp(22px, 3vw, 46px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 22px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  animation: page-fade-in .42s ease both;
}
body.page-leaving { opacity: 0; animation: none; transition: opacity .28s ease; }
@keyframes page-fade-in { from { opacity: 0; } to { opacity: 1; } }
body.menu-open, body.modal-open { overflow: hidden; }
img { max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, h4 {
  margin: 0 0 .55em;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: .98;
  text-wrap: balance;
}
h1 { font-size: clamp(3rem, 7vw, 5.8rem); }
h2 { font-size: clamp(2.45rem, 5vw, 4.3rem); }
h3 { font-size: 1.8rem; }
p { margin: 0 0 1em; text-wrap: pretty; }

.container { width: min(calc(100% - var(--page-gutter) - var(--page-gutter)), var(--content-max)); margin-inline: auto; }
.narrow { width: min(100%, 900px); }
.section, .simple-page { padding: 88px 0; }
.centered { text-align: center; }
.page-intro { max-width: 760px; margin: 0 auto 48px; }
.page-intro > p:last-child { color: var(--muted); }
.section-heading { max-width: 820px; margin: 0 auto 38px; text-align: center; }
.section-heading > p { color: var(--muted); }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--gold-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 38px; height: 1px; background: currentColor; }
.eyebrow.centered { justify-content: center; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 3000;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 253, 250, .94);
  border-bottom: 1px solid rgba(60, 42, 27, .08);
  transition: min-height .25s ease, box-shadow .25s ease, background .25s ease;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.site-header.header--scrolled { box-shadow: 0 10px 30px rgba(42, 28, 17, .08); }
.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; flex: 0 0 auto; }
.brand-image img { display: block; width: clamp(228px, 22vw, 304px); height: auto; }
.brand-mark { width: 44px; height: 44px; display: grid; place-items: center; border: 2px solid var(--ink); border-radius: 50%; font-weight: 800; }
.brand-text { display: grid; line-height: 1.2; }
.brand-text strong { font-size: .9rem; letter-spacing: .08em; }
.brand-text span { color: var(--muted); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; justify-content: center; gap: 24px; }
.main-nav > a, .dropdown-trigger {
  position: relative;
  padding: 14px 0;
  color: #352d27;
  background: none;
  border: 0;
  text-decoration: none;
  font-size: .73rem;
  font-weight: 600;
  cursor: pointer;
}
.main-nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 7px;
  height: 1px;
  background: var(--gold);
  transition: right .22s ease;
}
.main-nav > a:hover::after, .main-nav > a:focus-visible::after, .main-nav > a.active::after { right: 0; }
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 1200;
  width: min(390px, calc(100vw - 32px));
  display: grid;
  gap: 4px;
  padding: 10px;
  background: rgba(255, 253, 250, .98);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(43, 28, 17, .16);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.dropdown-menu a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 2px;
  padding: 13px 15px;
  color: var(--ink);
  text-decoration: none;
  border-radius: 12px;
  transition: background .18s ease, color .18s ease;
}
.dropdown-icon { width: 34px; height: 34px; display: grid; place-items: center; color: var(--gold-dark); background: var(--paper); border: 1px solid var(--line); border-radius: 50%; }
.dropdown-icon img { width: 17px; height: 17px; }
.dropdown-menu a > span:last-child { display: grid; gap: 2px; }
.dropdown-menu a:hover, .dropdown-menu a:focus-visible { color: var(--gold-dark); background: var(--paper); }
.dropdown-menu strong { font-size: .8rem; }
.dropdown-menu small { color: var(--muted); font-size: .66rem; line-height: 1.45; }
.dropdown.is-open .dropdown-menu,
.dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

@media (hover: hover) and (min-width: 901px) {
  .dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
}

.mobile-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px 9px;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu-toggle span { display: block; width: 27px; height: 2px; margin: 5px auto; background: var(--ink); transition: transform .22s ease, opacity .22s ease; }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: .79rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary, .btn-whatsapp { color: #fff; background: var(--gold); box-shadow: 0 12px 28px rgba(161, 102, 28, .2); }
.btn-primary:hover, .btn-whatsapp:hover { background: var(--gold-dark); }
.btn-secondary { color: var(--gold-dark); background: transparent; border-color: var(--gold); }
.btn-secondary:hover { color: #fff; background: var(--gold-dark); }
.btn-light { color: var(--ink); background: #fff; }
.btn-instagram { color: #fff; background: linear-gradient(135deg, #6a34a4, #c53f7b 52%, #dc8b35); }
.btn svg { width: 18px; height: 18px; flex: 0 0 auto; fill: currentColor; }
.header-cta { white-space: nowrap; }

.reveal { opacity: 1; transform: none; }
.js-ready .reveal:not(.is-visible) { opacity: 0; transform: translateY(14px) scale(.995); }
.js-ready .reveal { transition: opacity .62s cubic-bezier(.2,.72,.22,1), transform .62s cubic-bezier(.2,.72,.22,1); will-change: opacity, transform; }
.js-ready .reveal.is-visible { opacity: 1; transform: none; }

.site-footer { padding: 62px 0 20px; color: #e9e3dc; background: #1f1814; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.25fr; gap: 40px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-grid a { color: #d7cec5; text-decoration: none; font-size: .78rem; }
.footer-grid a:hover { color: #fff; }
.footer-grid strong { color: #fff; font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-grid p { max-width: 360px; color: #b9aea5; font-size: .8rem; }
.footer-brand img { width: 285px; height: auto; filter: brightness(0) invert(1); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 38px; padding-top: 18px; color: #9f958c; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom small { font-size: .67rem; }

.simple-page { min-height: 68vh; background: linear-gradient(180deg, var(--white), var(--paper)); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.steps article { padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.steps article > span { color: var(--gold); font-weight: 700; }

.process-page { background: linear-gradient(180deg, #fffdfa 0%, #fbf7f1 58%, #f5ebdf 100%); }
.process-journey { width: min(100%, 1040px); display: grid; gap: 16px; margin: 0 auto; padding: 0; list-style: none; }
.process-journey li { display: grid; grid-template-columns: 84px 1fr; gap: 24px; align-items: center; padding: 27px 30px; background: rgba(255,255,255,.82); border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 15px 34px rgba(53,35,20,.06); }
.process-icon { width: 68px; height: 68px; display: grid; place-items: center; color: #fff; background: var(--gold-dark); border-radius: 50%; box-shadow: 0 10px 24px rgba(117,69,14,.18); }
.process-icon img { width: 31px; height: 31px; filter: brightness(0) invert(1); }
.process-journey small { display: block; margin-bottom: 5px; color: var(--gold); font-size: .68rem; font-weight: 700; letter-spacing: .14em; }
.process-journey h2 { margin-bottom: 7px; font-size: clamp(1.8rem, 3.5vw, 2.45rem); }
.process-journey p { margin: 0; color: var(--muted); font-size: .88rem; }
.process-showcase { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; width: min(100%, 1040px); margin: 64px auto 0; }
.process-showcase figure { margin: 0; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); }
.process-showcase img { display: block; width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.process-showcase figcaption { display: grid; gap: 4px; padding: 20px 22px; }
.process-showcase figcaption strong { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.55rem; }
.process-showcase figcaption span { color: var(--muted); font-size: .8rem; }
.process-cta { width: min(100%, 1040px); display: flex; align-items: center; justify-content: space-between; gap: 28px; margin: 64px auto 0; padding: 34px; color: #fff; background: #241d18; border-radius: 24px; }
.process-cta .eyebrow, .process-cta h2 { color: #fff; }
.process-cta p:not(.eyebrow) { max-width: 650px; color: #d7cec5; }

.faq-list { display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: border-color .28s ease, box-shadow .28s ease, transform .28s ease; }
.faq-item[open] { border-color: rgba(161,102,28,.35); box-shadow: 0 14px 34px rgba(53,35,20,.07); }
.faq-item summary { position: relative; padding: 20px 58px 20px 22px; font-weight: 700; line-height: 1.45; cursor: pointer; list-style: none; transition: color .24s ease, padding .3s ease; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 22px; top: 14px; color: var(--gold); font-size: 1.45rem; transform: rotate(0); transition: transform .3s ease, color .3s ease; }
.faq-item[open] summary { color: var(--gold-dark); }
.faq-item[open] summary::after { content: "+"; transform: rotate(45deg); }
.faq-answer { height: 0; padding: 0 22px; color: var(--muted); opacity: 0; overflow: hidden; transition: height .36s cubic-bezier(.2,.72,.22,1), opacity .26s ease, padding .36s cubic-bezier(.2,.72,.22,1); }
.faq-item[open] .faq-answer { height: auto; padding-top: 6px; padding-bottom: 20px; opacity: 1; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-cta-box { margin-top: 36px; padding: 28px; text-align: center; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); }

.contact-layout { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr); gap: 26px; align-items: start; }
.contact-form-card, .contact-info-card { background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); overflow: hidden; }
.contact-form-card { padding: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid label { display: grid; gap: 7px; }
.form-grid label.full { grid-column: 1 / -1; }
.form-grid label > span { font-size: .72rem; font-weight: 700; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 11px; }
.form-grid textarea { min-height: 140px; resize: vertical; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.contact-booth-media { aspect-ratio: 4 / 5; padding: 18px; background: linear-gradient(180deg, #fff, var(--paper-2)); }
.contact-booth-media img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center; }
.contact-info-copy { padding: 25px; }
.booth-specs { padding-left: 19px; color: var(--muted); font-size: .86rem; }
.booth-specs li + li { margin-top: 8px; }
.contact-mini-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }

.gallery-page-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 24px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.gallery-grid figure { position: relative; margin: 0; min-width: 0; aspect-ratio: 4 / 3; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 20px; }
.gallery-grid img { display: block; width: 100%; height: 100%; min-height: 0; object-fit: cover; transition: transform .35s ease; }
.gallery-grid img.gallery-focus-top { object-position: center 2%; }
.gallery-grid img.gallery-product { object-fit: contain; padding: 16px; background: var(--paper-2); }
.gallery-grid figure:hover img { transform: scale(1.025); }
.gallery-grid figcaption { position: absolute; left: 14px; bottom: 14px; padding: 7px 11px; background: rgba(255,253,250,.9); border-radius: 999px; font-size: .7rem; font-weight: 700; }
.gallery-open { position: relative; width: 100%; height: 100%; display: block; padding: 0; color: inherit; background: transparent; border: 0; cursor: zoom-in; overflow: hidden; }
.gallery-open::after { content: "+"; position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; display: grid; place-items: center; color: #fff; background: rgba(30,22,17,.68); border: 1px solid rgba(255,255,255,.5); border-radius: 50%; font-family: Montserrat,Arial,sans-serif; font-size: 1.15rem; opacity: 0; transform: translateY(5px); transition: opacity .25s ease,transform .25s ease; }
.gallery-open:hover::after,.gallery-open:focus-visible::after { opacity: 1; transform: none; }
.gallery-caption { position: absolute; left: 14px; bottom: 14px; max-width: calc(100% - 28px); padding: 8px 12px; color: #2d241e; background: rgba(255,253,250,.92); border-radius: 999px; box-shadow: 0 5px 16px rgba(28,20,15,.1); font-size: .7rem; font-weight: 700; line-height: 1.25; }

.gallery-lightbox { position: fixed; inset: 0; z-index: 1800; display: grid; grid-template-columns: minmax(48px,1fr) minmax(0,1180px) minmax(48px,1fr); align-items: center; gap: 12px; padding: clamp(14px,3vw,38px); background: rgba(14,11,9,.9); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .26s ease,visibility 0s linear .26s; }
.gallery-lightbox.is-open { opacity: 1; visibility: visible; pointer-events: auto; transition-delay: 0s; }
.gallery-lightbox-content { grid-column: 2; min-width: 0; max-height: calc(100dvh - 76px); display: grid; grid-template-rows: minmax(0,1fr) auto; margin: 0; padding: 10px 10px 12px; background: #fff; border-radius: 18px; box-shadow: 0 30px 80px rgba(0,0,0,.35); overflow: hidden; transform: translateY(10px) scale(.985); transition: transform .3s cubic-bezier(.2,.72,.22,1); }
.gallery-lightbox.is-open .gallery-lightbox-content { transform: none; }
.gallery-lightbox-content img { display: block; width: 100%; height: 100%; max-height: calc(100dvh - 132px); object-fit: contain; background: #17120f; border-radius: 11px; }
.gallery-lightbox-content figcaption { padding: 12px 8px 2px; color: #51463d; text-align: center; font-size: .78rem; font-weight: 600; }
.gallery-lightbox-close,.gallery-lightbox-nav { position: absolute; z-index: 2; display: grid; place-items: center; color: #fff; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.38); border-radius: 50%; cursor: pointer; transition: background .2s ease,transform .2s ease; }
.gallery-lightbox-close:hover,.gallery-lightbox-nav:hover { background: rgba(255,255,255,.22); }
.gallery-lightbox-close { top: 18px; right: 18px; width: 46px; height: 46px; font-size: 1.5rem; }
.gallery-lightbox-nav { top: 50%; width: 48px; height: 48px; font-size: 2rem; transform: translateY(-50%); }
.gallery-lightbox-prev { left: 18px; }
.gallery-lightbox-next { right: 18px; }
body.gallery-lightbox-open { overflow: hidden; }

.clients-audience-grid { display: grid; gap: 24px; }
.client-audience-card { display: grid; grid-template-columns: minmax(280px,.9fr) minmax(0,1.1fr); min-width: 0; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); overflow: hidden; }
.client-audience-card:nth-child(even) { grid-template-columns: minmax(0,1.1fr) minmax(280px,.9fr); }
.client-audience-card:nth-child(even) img { order: 2; }
.client-audience-card > img { display: block; width: 100%; height: 100%; min-height: 320px; object-fit: cover; object-position: center; }
.client-audience-card > div { align-self: center; padding: clamp(28px,5vw,58px); }
.client-audience-card span { color: var(--gold-dark); font-size: .67rem; font-weight: 700; letter-spacing: .16em; }
.client-audience-card h2 { margin: 9px 0 13px; font-size: clamp(2rem,3.4vw,3.2rem); }
.client-audience-card p { color: var(--muted); }
.client-assurance-section { background: var(--paper); }
.client-assurance-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.client-assurance-grid article { padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: 19px; }
.client-assurance-grid strong { color: var(--gold-dark); font-size: .68rem; letter-spacing: .14em; }
.client-assurance-grid h3 { margin: 18px 0 8px; font-size: 1.65rem; }
.client-assurance-grid p { margin: 0; color: var(--muted); font-size: .83rem; }

.process-showcase figure:first-child img { object-fit: contain; padding: 16px; background: var(--paper-2); }
.process-showcase figure:last-child img { object-fit: contain; background: #201913; }

:focus-visible { outline: 3px solid rgba(161, 102, 28, .52); outline-offset: 3px; }

@media (max-width: 1160px) {
  .main-nav { gap: 15px; }
  .header-cta { display: none; }
}

@media (max-width: 900px) {
  :root { --header-h: 82px; }
  :root { --page-gutter: 18px; }
  .mobile-menu-toggle { display: block; margin-left: auto; }
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    z-index: 1100;
    max-height: calc(100dvh - var(--header-h));
    display: block;
    padding: 14px 18px 24px;
    background: rgba(255,253,250,.99);
    border-top: 1px solid var(--line);
    box-shadow: 0 24px 45px rgba(44, 30, 18, .14);
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    -webkit-overflow-scrolling: touch;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .main-nav > a, .dropdown-trigger { width: 100%; display: flex; padding: 15px 6px; text-align: left; font-size: .86rem; border-bottom: 1px solid rgba(117,69,14,.11); }
  .main-nav > a::after { display: none; }
  .dropdown-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0 0 0 10px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    transform: none;
    transition: max-height .28s ease, padding .28s ease;
  }
  .dropdown.is-open .dropdown-menu { max-height: 430px; padding-block: 7px 10px; transform: none; }
  .dropdown-menu a { grid-template-columns: 40px minmax(0,1fr); padding: 12px 13px; background: var(--paper); margin-bottom: 5px; }
  .dropdown-menu small { font-size: .7rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .client-audience-card,.client-audience-card:nth-child(even) { grid-template-columns: 1fr; }
  .client-audience-card:nth-child(even) img { order: 0; }
  .client-assurance-grid { grid-template-columns: 1fr; }
  .gallery-lightbox { grid-template-columns: 54px minmax(0,1fr) 54px; gap: 6px; padding: 66px 10px 18px; }
  .gallery-lightbox-nav { position: static; align-self: center; justify-self: center; transform: none; }
  .gallery-lightbox-prev { grid-column: 1; grid-row: 1; }
  .gallery-lightbox-content { grid-column: 2; grid-row: 1; }
  .gallery-lightbox-next { grid-column: 3; grid-row: 1; }
  .process-showcase { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .section, .simple-page { padding: 68px 0; }
  .brand-image img { width: min(232px, 66vw); }
  .form-grid, .gallery-grid, .steps, .footer-grid { grid-template-columns: 1fr; }
  .form-grid label.full { grid-column: auto; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .gallery-grid { gap: 14px; }
  .gallery-grid figure, .gallery-grid img { min-height: 0; }
  .gallery-grid figure { aspect-ratio: 4 / 3; border-radius: 15px; }
  .gallery-caption { left: 10px; bottom: 10px; max-width: calc(100% - 20px); font-size: .65rem; }
  .gallery-open::after { top: 10px; right: 10px; opacity: 1; transform: none; }
  .gallery-lightbox { grid-template-columns: 1fr 1fr; grid-template-rows: minmax(0,1fr) 50px; padding: 62px 10px 12px; }
  .gallery-lightbox-content { grid-column: 1 / -1; grid-row: 1; max-height: calc(100dvh - 132px); }
  .gallery-lightbox-content img { max-height: calc(100dvh - 190px); }
  .gallery-lightbox-prev,.gallery-lightbox-next { grid-row: 2; }
  .gallery-lightbox-prev { grid-column: 1; }
  .gallery-lightbox-next { grid-column: 2; }
  .gallery-lightbox-close { top: 10px; right: 10px; }
  .client-audience-card > img { min-height: 0; aspect-ratio: 4 / 3; }
  .client-audience-card > div { padding: 27px 23px 30px; }
  .process-journey li { grid-template-columns: 1fr; gap: 17px; padding: 24px; }
  .process-icon { width: 62px; height: 62px; }
  .process-cta { align-items: flex-start; flex-direction: column; padding: 27px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .js-ready .reveal:not(.is-visible), .js-ready .reveal { opacity: 1; transform: none; }
  body { animation: none; }
  body.page-leaving { opacity: 1; }
}
