/* ============================================================
   RAW TAKE STUDIO — shared brand stylesheet
   Type: Bebas Neue (display) + Archivo (body)
   Palette: White Smoke / Near Black / Citron / Raspberry
   ============================================================ */

:root {
  /* Brand palette */
  --citron:       #CDDC39;
  --citron-dark:  #A4B02D;
  --raspberry:    #E30163;
  --raspberry-deep:#B80150;
  --smoke:        #F2F2F1;
  --smoke-2:      #E8E8E6;
  --ink:          #1A1A1A;
  --ink-soft:     #3a3a38;
  --ink-mute:     #6c6c68;
  --line:         #d9d9d6;
  --white:        #ffffff;

  /* Type */
  --display: "Bebas Neue", "Arial Narrow", sans-serif;
  --body: "Archivo", "Helvetica Neue", Arial, sans-serif;

  /* Rhythm */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --nav-h: 76px;

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--smoke);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* ---------- type ---------- */
.display {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: 0.01em;
}
h1, h2, h3 { font-family: var(--display); font-weight: 400; text-transform: uppercase; line-height: 0.92; letter-spacing: 0.01em; }
h1 { font-size: clamp(3.2rem, 9vw, 7.5rem); }
h2 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); }

.eyebrow {
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--ink-mute);
}
.lede { font-size: clamp(1.05rem, 1.6vw, 1.35rem); line-height: 1.55; color: var(--ink-soft); }
.text-rasp { color: var(--raspberry); }
.text-citron { color: var(--citron-dark); }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-wide { max-width: 1480px; margin-inline: auto; padding-inline: var(--gutter); }
section { position: relative; }
.section-pad { padding-block: clamp(64px, 11vw, 150px); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--body); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.82rem;
  padding: 1.05em 1.7em; border-radius: 100px;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-rasp { background: var(--raspberry); color: var(--white); }
.btn-rasp:hover { background: var(--raspberry-deep); box-shadow: 0 10px 30px -8px rgba(227,1,99,.5); }
.btn-ink { background: var(--ink); color: var(--smoke); }
.btn-ink:hover { background: #000; box-shadow: 0 10px 30px -10px rgba(0,0,0,.5); }
.btn-citron { background: var(--citron); color: var(--ink); }
.btn-citron:hover { background: var(--citron-dark); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--smoke); }
.btn-ghost-light { background: transparent; color: var(--smoke); box-shadow: inset 0 0 0 2px rgba(242,242,241,.45); }
.btn-ghost-light:hover { background: var(--smoke); color: var(--ink); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* attention pulse for a featured button */
@keyframes btnPulse {
  0%   { box-shadow: 0 0 0 0 rgba(227,1,99,.5); }
  70%  { box-shadow: 0 0 0 16px rgba(227,1,99,0); }
  100% { box-shadow: 0 0 0 0 rgba(227,1,99,0); }
}
.btn-pulse { animation: btnPulse 1.5s var(--ease) infinite; }
.btn-pulse:hover { animation-play-state: paused; }
@keyframes btnPulseCitron {
  0%   { box-shadow: 0 0 0 0 rgba(205,220,57,.6); }
  70%  { box-shadow: 0 0 0 16px rgba(205,220,57,0); }
  100% { box-shadow: 0 0 0 0 rgba(205,220,57,0); }
}
.btn-pulse-citron { animation: btnPulseCitron 1.5s var(--ease) infinite; }
.btn-pulse-citron:hover { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .btn-pulse, .btn-pulse-citron { animation: none; } }

.textlink {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .8rem;
  border-bottom: 2px solid var(--raspberry); padding-bottom: 3px;
  transition: gap .25s var(--ease);
}
.textlink:hover { gap: .85em; }

/* ============================================================
   HEADER / NAV  (injected by site.js)
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  color: var(--ink);
  background: var(--citron);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav.theme-dark {
  background: color-mix(in srgb, var(--ink) 75%, transparent);
  color: var(--smoke);
}
.nav.theme-dark.scrolled { border-bottom-color: rgba(255,255,255,.12); }
.nav__inner {
  position: relative;
  width: 100%; max-width: 1480px; margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; line-height: 1; white-space: nowrap; }

/* primary wordmark logo (left corner of header) */
.brand-logo { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand-logo img {
  height: 48px; width: auto; display: block;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.brand-logo:hover img { transform: translateY(-1px); opacity: .85; }
/* mono-white treatment on dark-theme navs (logo art is ink/black) */
.nav.theme-dark .brand-logo img { filter: brightness(0) invert(1); }
.brand__mark {
  font-family: var(--display); font-size: 1.7rem; letter-spacing: .02em; white-space: nowrap;
  color: var(--ink); transition: color .3s;
}
.nav.theme-dark .brand__mark { color: var(--smoke); }
.brand__dot { color: var(--raspberry); }
/* STUDIO sub-line with flanking rules, matching the logo lockup */
.brand__sub {
  display: flex; align-items: center; gap: 7px; align-self: stretch;
  font-family: var(--body); font-size: .56rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .42em; color: var(--ink-soft);
  padding-left: .42em;
}
.brand__sub::before, .brand__sub::after {
  content: ""; height: 1.5px; background: currentColor; opacity: .85;
}
.brand__sub::before { width: 14px; flex: 0 0 14px; }
.brand__sub::after { flex: 1; }
.nav.theme-dark .brand__sub { color: rgba(242,242,241,.62); }

.nav__links { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px);
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.nav__link {
  font-size: .82rem; font-weight: 600; letter-spacing: .02em; white-space: nowrap;
  position: relative; padding: 6px 0; color: inherit;
  opacity: .82; transition: opacity .2s;
}
.nav__link:hover { opacity: 1; color: var(--ink); font-weight: 700; }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--raspberry); transition: width .25s var(--ease);
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { width: 100%; }
.nav__link[aria-current="page"] { opacity: 1; color: var(--ink); font-weight: 700; }

.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__burger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; }
.nav__burger span { display:block; width: 22px; height: 2px; background: currentColor; position: relative; transition: .3s; }
.nav__burger span::before, .nav__burger span::after { content:""; position:absolute; left:0; width:22px; height:2px; background: currentColor; transition:.3s; }
.nav__burger span::before { top: -7px; }
.nav__burger span::after { top: 7px; }
body.menu-open .nav__burger span { background: transparent; }
body.menu-open .nav__burger span::before { top:0; transform: rotate(45deg); }
body.menu-open .nav__burger span::after { top:0; transform: rotate(-45deg); }

/* mobile drawer */
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 99;
  background: var(--ink); color: var(--smoke);
  padding: 40px var(--gutter);
  display: flex; flex-direction: column; gap: 6px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
body.menu-open .mobile-menu { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu a.m-link {
  font-family: var(--display); font-size: 2.4rem; padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; align-items: center;
}
.mobile-menu a.m-link .idx { font-family: var(--body); font-size: .7rem; color: var(--citron); letter-spacing: .2em; }
.mobile-menu .m-cta { margin-top: 24px; }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta .btn { display: none; }
  .nav__burger { display: flex; }
  .brand-logo img { height: 38px; }
}

/* ============================================================
   FOOTER (injected by site.js)
   ============================================================ */
.footer { background: var(--ink); color: var(--smoke); padding-top: clamp(60px, 8vw, 100px); }
.footer__top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.1fr; gap: 48px; padding-bottom: 56px; }
.footer__logo img { height: 60px; width: 60px; display: block; border-radius: 12px; transition: opacity .25s var(--ease); }
.footer__logo:hover img { opacity: .8; }
.footer__tag { margin-top: 20px; max-width: 34ch; color: rgba(242,242,241,.7); font-size: .95rem; line-height: 1.65; }
.footer__loc { display: block; padding: 6px 0; font-size: .92rem; color: rgba(242,242,241,.82); }
.footer h4 { font-family: var(--body); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--citron); margin-bottom: 16px; }
.footer__col a { display: block; padding: 6px 0; font-size: .92rem; color: rgba(242,242,241,.82); transition: color .2s, padding-left .2s; }
.footer__col a:hover { color: var(--white); padding-left: 6px; }
/* Follow column shows text links on desktop; icons appear only on mobile */
.footer__social .fsoc-ic { display: none; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.12); padding: 26px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: .8rem; color: rgba(242,242,241,.55); }
.footer__bar a:hover { color: var(--white); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { color: rgba(242,242,241,.7); transition: color .2s; }
.footer__legal a:hover { color: var(--white); }
.footer__brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.footer__brand-ic {
  width: 38px; height: 38px; flex: 0 0 auto; border-radius: 9px;
  background: var(--citron); color: var(--ink);
  display: grid; place-items: center;
  font-family: var(--display); font-size: 1.18rem; line-height: .7; letter-spacing: .01em;
}
.footer__brand-wm {
  font-family: var(--display); font-size: 1.34rem; letter-spacing: .02em; line-height: .9;
  color: var(--smoke); display: inline-flex; align-items: baseline; gap: .45ch;
}
.footer__brand-wm em {
  font-family: var(--body); font-style: normal; font-weight: 800; font-size: .5rem;
  letter-spacing: .34em; text-transform: uppercase; color: var(--citron); padding-left: .34em;
}
.footer__brand-dot { color: var(--raspberry); }
.footer__brand:hover .footer__brand-wm { color: var(--white); }

/* social avatar (bottom-right of footer) */
.footer__avatar { display: inline-flex; flex: 0 0 auto; }
.footer__avatar img {
  width: 50px; height: 50px; display: block; border-radius: 13px;
  box-shadow: 0 0 0 1px rgba(242,242,241,.14);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.footer__avatar:hover img {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(205,220,57,.55), 0 14px 28px -14px rgba(0,0,0,.6);
}
@media (max-width: 980px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand-col { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer__top { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  /* centre everything in the footer on mobile */
  .footer__logo { display: flex; justify-content: center; }
  .footer__tag { max-width: none; }
  .footer__col a, .footer__loc { padding-left: 0; }
  .footer__col a:hover { padding-left: 0; }
  /* Follow: swap the text list for a single centred row of social icons */
  .footer__social { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
  .footer__social h4 { width: 100%; margin-bottom: 6px; }
  .footer__social a { padding: 4px; }
  .footer__social .fsoc-tx { display: none; }
  .footer__social .fsoc-ic { display: inline-flex; }
  .footer__social .fsoc-ic svg { width: 26px; height: 26px; display: block; }
  /* bottom bar: centre copyright + legal, drop the corner logo */
  .footer__bar { justify-content: center; text-align: center; }
  .footer__legal { justify-content: center; width: 100%; }
  .footer__avatar { display: none; }
}

/* ============================================================
   WHATSAPP "LET'S CHAT" WIDGET (injected by site.js)
   ============================================================ */
.wa-widget {
  position: fixed; right: clamp(16px, 3vw, 28px); bottom: clamp(16px, 3vw, 28px); z-index: 90;
  display: flex; flex-direction: column; align-items: flex-end; gap: 14px;
}
/* toggle button */
.wa-chat {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--raspberry); color: #fff;
  padding: 13px 20px 13px 15px; border-radius: 100px;
  font-family: var(--body); font-weight: 700; font-size: .9rem; letter-spacing: .02em;
  box-shadow: 0 12px 30px -10px rgba(227,1,99,.55);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.wa-chat:hover { transform: translateY(-3px); background: var(--raspberry-deep); box-shadow: 0 16px 38px -10px rgba(227,1,99,.6); }
.wa-chat svg { width: 23px; height: 23px; flex: 0 0 auto; }

/* pop-up panel */
.wa-panel {
  width: min(340px, calc(100vw - 32px)); background: var(--white); color: var(--ink);
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 60px -18px rgba(0,0,0,.35), 0 0 0 1px rgba(0,0,0,.04);
  transform-origin: bottom right; animation: waPop .25s var(--ease);
}
.wa-panel[hidden] { display: none; }
@keyframes waPop { from { opacity: 0; transform: translateY(10px) scale(.96); } to { opacity: 1; transform: none; } }
.wa-panel__head { display: flex; align-items: center; gap: 12px; padding: 18px; border-bottom: 1px solid var(--line); }
.wa-panel__avatar img { width: 42px; height: 42px; border-radius: 50%; display: block; }
.wa-panel__title { flex: 1; display: flex; flex-direction: column; line-height: 1.3; }
.wa-panel__title strong { font-size: 1.05rem; font-weight: 700; }
.wa-panel__title span { font-size: .82rem; color: var(--ink-mute); }
.wa-panel__close { width: 30px; height: 30px; border-radius: 50%; color: var(--ink-mute); font-size: .95rem; display: grid; place-items: center; transition: background .2s, color .2s; }
.wa-panel__close:hover { background: var(--smoke); color: var(--ink); }
.wa-panel__body { padding: 18px; background: var(--smoke); }
.wa-panel__msg { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 16px; }
.wa-panel__msg p { font-size: .92rem; line-height: 1.6; color: var(--ink-soft); margin-bottom: 14px; }
.wa-panel__cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff; font-weight: 700; font-size: .85rem;
  padding: 11px 16px; border-radius: 100px; transition: background .2s, transform .2s var(--ease);
}
.wa-panel__cta:hover { background: #1eb457; transform: translateY(-1px); }
.wa-panel__cta svg { width: 17px; height: 17px; flex: 0 0 auto; }

@media (max-width: 520px) {
  .wa-chat { padding: 13px; gap: 0; }
  .wa-widget:not(.open) .wa-chat span { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-chat:hover, .wa-panel__cta:hover { transform: none; }
  .wa-panel { animation: none; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { overflow: hidden; white-space: nowrap; display: flex; user-select: none; }
.marquee__track { display: flex; align-items: center; gap: 0; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { font-family: var(--display); font-size: clamp(2rem, 5vw, 4rem); padding: 0 .4em; display: inline-flex; align-items: center; gap: .5em; }
.marquee__star { color: var(--raspberry); font-size: .6em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   CARDS / TAGS / MISC
   ============================================================ */
.tag {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em;
  padding: .5em .9em; border-radius: 100px; background: var(--citron); color: var(--ink);
}
.tag-rasp { background: var(--raspberry); color: #fff; }
.tag-outline { background: transparent; box-shadow: inset 0 0 0 1.5px var(--line); color: var(--ink-mute); }

.card {
  background: var(--white); border-radius: 18px; padding: 32px;
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -28px rgba(26,26,26,.3); border-color: transparent; }

/* ============================================================
   DEPLOYABLE IMAGE PLACEHOLDERS
   Drop a real photo into /images with the filename shown on the
   placeholder tag and it appears automatically — no JS, no editor.
   Until then, a clean striped box with the expected path is shown.
   ============================================================ */
.imgph {
  position: relative; overflow: hidden; border-radius: 16px;
  background: repeating-linear-gradient(135deg, var(--smoke-2) 0 14px, #ececeb 14px 28px);
  display: grid; place-items: center;
}
.imgph > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block; z-index: 2;
}
/* onerror hides the <img> (missing file) so the tag underneath shows */
.imgph > img[hidden] { display: none; }
.imgph__tag {
  position: relative; z-index: 1;
  font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: .72rem;
  line-height: 1.5; letter-spacing: .03em; color: var(--ink-mute);
  background: rgba(242,242,241,.9); box-shadow: 0 1px 3px rgba(0,0,0,.08);
  padding: .55em .85em; border-radius: 8px; text-align: center; max-width: 88%;
}
.imgph__tag strong { display: block; color: var(--ink); font-weight: 700;
  font-family: var(--body); letter-spacing: .02em; margin-bottom: 3px; }
.imgph__tag small { opacity: .8; }
/* production: real photos exist — never show the dev filename label (even while an image loads) */
.imgph__tag, .imgph > img[hidden] ~ .imgph__tag { display: none !important; }
/* clean, calm loading state instead of the striped dev pattern */
.imgph { background: var(--smoke-2); }
.e-about .imgph, .e-pf .imgph { background: #23231f; }

.slot-frame { position: relative; overflow: hidden; border-radius: 16px; }

/* placeholder figure (striped) */
.ph {
  position: relative; border-radius: 16px; overflow: hidden;
  background:
    repeating-linear-gradient(135deg, var(--smoke-2) 0 14px, #ececeb 14px 28px);
  display: grid; place-items: center;
}
.ph__label {
  font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: .72rem;
  letter-spacing: .04em; color: var(--ink-mute); background: rgba(242,242,241,.85);
  padding: .5em .8em; border-radius: 6px; text-align: center;
}

/* ---------- scroll reveal ---------- */
/* smooth ease-out curve, a bit more travel for a more present entrance */
:root { --ease-out: cubic-bezier(.16,.72,.24,1); }
.reveal { opacity: 0; transform: translateY(42px); transition: opacity .85s var(--ease-out), transform .85s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .10s; }
.reveal[data-d="2"] { transition-delay: .20s; }
.reveal[data-d="3"] { transition-delay: .30s; }
.reveal[data-d="4"] { transition-delay: .40s; }
.reveal[data-d="5"] { transition-delay: .50s; }

/* headings rise + ease into focus from a soft blur (visible, not jumpy) */
.reveal h1, .reveal h2, .reveal h3,
h1.reveal, h2.reveal, h3.reveal {
  filter: blur(11px);
  transform: translateY(22px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out), filter 1s var(--ease-out);
}
.reveal.in h1, .reveal.in h2, .reveal.in h3,
h1.reveal.in, h2.reveal.in, h3.reveal.in {
  filter: blur(0);
  transform: translateY(0);
}

/* photos: gentle zoom-settle as they enter (Ken Burns), + lift/zoom on hover */
.imgph { transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.imgph > img { transition: transform 1.1s var(--ease-out); }
/* entrance: image starts slightly zoomed inside its frame, then settles */
.reveal .imgph > img { transform: scale(1.09); }
.reveal.in .imgph > img { transform: scale(1); }
.imgph:hover { transform: translateY(-5px); }
/* keep hover-zoom working even after the entrance settle (higher specificity wins) */
.imgph:hover > img,
.reveal.in .imgph:hover > img { transform: scale(1.06); }

/* ---------- hover / tap micro-interactions ---------- */
.btn { transition: transform .22s var(--ease-out), box-shadow .28s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease); }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(.98); }
/* nav + footer links get a soft nudge, service/review cards already lift */
.nav__link { transition: opacity .2s, color .2s, transform .2s var(--ease-out); }
.nav__link:hover { transform: translateY(-1px); }
.svc-card, .rv-card, .footer__logo img { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .reveal h1, .reveal h2, .reveal h3, h1.reveal, h2.reveal, h3.reveal { filter: none !important; transform: none !important; }
  .reveal .imgph > img, .reveal.in .imgph > img { transform: none !important; }
  .imgph, .imgph > img { transition: none !important; }
  .imgph:hover { transform: none !important; }
  .imgph:hover > img, .reveal.in .imgph:hover > img { transform: none !important; }
  .btn:hover, .btn:active, .nav__link:hover { transform: none !important; }
  [data-parallax] { background-position: 50% 50% !important; }
  .marquee__track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- direction switcher (home variants only) ---------- */
.dirbar {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 120; display: flex; align-items: center; gap: 6px;
  background: var(--ink); color: var(--smoke);
  padding: 7px 8px 7px 16px; border-radius: 100px;
  box-shadow: 0 18px 50px -16px rgba(0,0,0,.6);
  font-size: .78rem;
}
.dirbar__label { font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .64rem; color: rgba(242,242,241,.6); padding-right: 4px; }
.dirbar a { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; background: rgba(255,255,255,.1); transition: .2s; }
.dirbar a:hover { background: rgba(255,255,255,.25); }
.dirbar a.active { background: var(--citron); color: var(--ink); }
@media (max-width: 600px) { .dirbar { bottom: 12px; } }

/* ---------- helpers ---------- */
.grid { display: grid; gap: clamp(18px, 2.4vw, 32px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 920px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }
.center { text-align: center; }
.mt-s { margin-top: 14px; } .mt-m { margin-top: 26px; } .mt-l { margin-top: 44px; }
.divider { height: 1px; background: var(--line); border: 0; }

/* ---------- cookie notice ---------- */
.cookie-bar {
  position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%);
  z-index: 9999; width: min(720px, calc(100% - 28px));
  background: var(--ink); color: var(--smoke);
  border: 1px solid rgba(255,255,255,.16); border-radius: 14px;
  padding: 16px 18px; box-shadow: 0 24px 60px -22px rgba(0,0,0,.7);
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.cookie-bar[hidden] { display: none; }
.cookie-bar__txt { flex: 1 1 300px; font-size: .84rem; line-height: 1.5; color: rgba(242,242,241,.85); }
.cookie-bar__txt a { color: var(--citron); font-weight: 600; text-decoration: underline; }
.cookie-bar__btns { display: flex; gap: 10px; margin-left: auto; }
.cookie-bar__btn { font-family: var(--body); font-weight: 700; font-size: .82rem;
  padding: .7em 1.35em; border-radius: 100px; cursor: pointer;
  border: 1px solid transparent; transition: background .2s var(--ease), border-color .2s var(--ease); }
.cookie-bar__btn--ok { background: var(--raspberry); color: #fff; }
.cookie-bar__btn--ok:hover { background: var(--raspberry-deep); }
.cookie-bar__btn--ghost { background: transparent; color: var(--smoke); border-color: rgba(255,255,255,.32); }
.cookie-bar__btn--ghost:hover { border-color: var(--smoke); }
/* keep the WhatsApp bubble out of the way while the notice is up */
.cookie-open .wa-widget { display: none; }
@media (max-width: 560px){
  .cookie-bar { bottom: 12px; padding: 15px; gap: 12px; }
  .cookie-bar__btns { width: 100%; }
  .cookie-bar__btn { flex: 1; }
}

/* ============================================================
   MOBILE: centre copy & titles that are left-aligned on desktop.
   Applies across all pages; long-form legal text stays left-aligned
   so policies keep reading naturally.
   ============================================================ */
@media (max-width: 760px){
  .wrap, .wrap-wide { text-align: center; }
  .legal, .legal ul, .legal ol, .legal li { text-align: left; }
}
