:root {
  --bg: #fbf6f1;
  --bg-alt: #f3ebe2;
  --ink: #2a2019;
  --ink-soft: #5c4f45;
  --accent: #c2654f;
  --accent-deep: #9c4d3a;
  --line: #e6dcd0;
  --radius: 16px;
  --radius-pill: 999px;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --max: 1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

/* Intro curtain */
.intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-deep);
  color: var(--bg);
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
.intro.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.intro__ring-wrap {
  position: relative;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro__ring {
  position: absolute;
  inset: 0;
  transform: rotate(-90deg);
}
.intro__ring-track {
  fill: none;
  stroke: rgba(255,255,255,0.12);
  stroke-width: 2.5;
}
.intro__ring-fill {
  fill: none;
  stroke: rgba(255,255,255,0.80);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 264;
  stroke-dashoffset: 264;
  animation: ringClose 0.65s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.1s;
}
@keyframes ringClose {
  to { stroke-dashoffset: 0; }
}
.intro__logo {
  position: relative;
  z-index: 1;
  filter: brightness(0) invert(1);
  opacity: 0;
  transform: scale(0.85);
  animation: introLogoIn 0.45s var(--ease) forwards 0.78s;
}
@keyframes introLogoIn {
  to { opacity: 1; transform: scale(1); }
}
@keyframes fadeIn { to { opacity: 1; } }

/* Grain texture */
.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@media (prefers-reduced-motion: reduce) {
  .intro { display: none; }
  .grain { display: none; }
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  filter: blur(6px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }

/* Manual cascade for grouped items (storytelling sequence, not just lazy fade) */
.bento__cell:nth-child(2),
.diff-item:nth-child(2),
.testimonial:nth-child(2) { transition-delay: 0.12s; }
.bento__cell:nth-child(3),
.diff-item:nth-child(3),
.testimonial:nth-child(3) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.btn:active { transform: scale(0.97); }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-deep); }
.btn--small { padding: 0.6rem 1.2rem; font-size: 0.875rem; }
.btn--large { padding: 1.1rem 2rem; font-size: 1.05rem; }
.btn--outline { border: 1.5px solid var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--bg); }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 246, 241, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--accent-deep);
}
.nav__logo-img {
  height: 38px;
  width: auto;
  display: block;
}
@media (max-width: 480px) {
  .nav__logo-img { height: 30px; }
}
.nav__links {
  display: flex;
  gap: 2rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.nav__links a:hover { color: var(--accent-deep); }
@media (max-width: 860px) {
  .nav__links { display: none; }
}

/* Hero */
.hero {
  position: relative;
  padding: 4rem 1.5rem 0;
  overflow: hidden;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.hero__blob--1 { width: 420px; height: 420px; background: var(--accent); top: -120px; left: -120px; }
.hero__blob--2 { width: 320px; height: 320px; background: var(--accent-deep); bottom: -80px; right: 8%; }
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  min-height: 60dvh;
}
.hero__title {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  margin-bottom: 1.25rem;
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .line span {
  display: block;
  transform: translateY(110%);
}
.hero__sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 38ch;
  margin-bottom: 1.75rem;
}
.hero__asset {
  position: relative;
  aspect-ratio: 9/16;
  width: 100%;
  max-width: 360px;
  justify-self: end;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(155deg, var(--accent) 0%, var(--accent-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: perspective(900px) rotateX(0deg) rotateY(0deg);
  transition: transform 0.3s var(--ease);
  will-change: transform;
}
.hero__glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.35), transparent 55%);
  animation: drift 9s ease-in-out infinite alternate;
  pointer-events: none;
}
.hero__reel {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.hero__reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--ink);
}
.hero__reel-link {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(20, 14, 10, 0.45);
  backdrop-filter: blur(4px);
  color: #fff;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.hero__reel-link:hover { background: rgba(20, 14, 10, 0.7); transform: scale(1.06); }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes drift {
  from { transform: translate(0, 0); }
  to { transform: translate(6%, 8%); }
}
.hero__badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  color: var(--accent-deep);
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(42,32,25,0.18);
}
.hero__badge .count-up { font-family: var(--font-display); font-size: 1rem; }
@media (prefers-reduced-motion: reduce) {
  .hero__glow { animation: none; }
  .draw-path { animation: none; stroke-dashoffset: 0; }
  .hero__asset { transform: none !important; }
}
@media (max-width: 860px) {
  .hero {
    padding: 0 0 2.5rem;
    min-height: 92svh;
    display: flex;
    align-items: flex-end;
  }
  .hero__inner {
    position: static;
    display: block;
    min-height: auto;
    width: 100%;
    padding: 0 1.5rem;
  }
  .hero__copy { position: relative; z-index: 2; }
  .hero__title, .hero__sub { color: #fff; }
  .hero__sub { color: rgba(255,255,255,0.88); }
  .hero__asset {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    aspect-ratio: auto;
    border-radius: 0;
    justify-self: stretch;
    transform: none;
  }
  .hero__asset::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(20,14,10,0.1) 0%, rgba(20,14,10,0.05) 30%, rgba(20,14,10,0.55) 75%, rgba(20,14,10,0.85) 100%);
  }
  .hero__badge { top: 1rem; left: 1rem; bottom: auto; z-index: 3; }
  .hero__reel-link { z-index: 3; }
}

/* Trust strip */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 3rem;
}
.trust-strip__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.trust-item svg { color: var(--accent); flex-shrink: 0; }

/* About */
.about { position: relative; overflow: hidden; padding: 7rem 1.5rem; max-width: var(--max); margin: 0 auto; }
.about__blob {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(70px);
  opacity: 0.18;
  top: -60px;
  right: 5%;
  pointer-events: none;
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;
  gap: 3rem;
  align-items: center;
}
.about__visual {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about__lede h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  max-width: 18ch;
}
.about__body p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 48ch;
  margin-bottom: 1.75rem;
}
.about__tags { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.about__tags span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-deep);
  background: var(--bg-alt);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
}
@media (max-width: 860px) {
  .about__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .about__visual { order: -1; aspect-ratio: 4/3.4; margin: 0 -1.5rem; border-radius: 0; }
}

/* Spotlight */
.spotlight { position: relative; overflow: hidden; padding: 0 1.5rem 7rem; max-width: var(--max); margin: 0 auto; }
.spotlight__blob {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--accent-deep);
  filter: blur(80px);
  opacity: 0.15;
  bottom: -40px;
  left: 0;
  pointer-events: none;
}
.spotlight__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
  background: var(--bg-alt);
  border-radius: 24px;
  padding: 2.5rem;
}
.spotlight__media { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; }

.compare {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(155deg, var(--accent-deep) 0%, var(--accent) 100%);
  overflow: hidden;
}
.compare__side {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.9);
}
.compare__side--before {
  background: url(assets/slider-antes.webp) center/cover no-repeat;
}
.compare__side--before::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(42,32,25,0.18);
  pointer-events: none;
}
.compare__side--after {
  background: url(assets/slider-depois.webp) center/cover no-repeat;
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.05s linear;
}
.compare__side svg { display: none; }
.compare__tag {
  position: absolute;
  top: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.compare__side--before .compare__tag { left: 1rem; }
.compare__side--after .compare__tag { right: 1rem; }
.compare__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  appearance: none;
  background: transparent;
  cursor: ew-resize;
}
.compare__range::-webkit-slider-thumb {
  appearance: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--accent);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  cursor: ew-resize;
}
.compare__range::-moz-range-thumb {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--accent);
  cursor: ew-resize;
}
.compare__range::-webkit-slider-runnable-track { background: transparent; }
.spotlight__copy h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 1rem; }
.spotlight__copy p { color: var(--ink-soft); margin-bottom: 1.5rem; max-width: 42ch; }
.spotlight__list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.spotlight__list li {
  position: relative;
  padding-left: 1.5rem;
  font-weight: 500;
}
.spotlight__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
@media (max-width: 860px) {
  .spotlight__inner { grid-template-columns: 1fr; padding: 1.5rem; gap: 1.5rem; }
}

/* Services — fullbleed photo cards */
.services { background: var(--ink); }
.services__header { text-align: center; padding: 2.5rem 1.5rem 0; }
.services__header h2 { color: #fff; font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 2rem; }
.services__cards {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 280px 280px;
}
.svc-card {
  position: relative;
  background-image: var(--svc-img);
  background-size: cover;
  background-position: center;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  transition: background-size 0.7s var(--ease);
}
.svc-card--main { grid-row: span 2; }
.svc-card:hover { background-size: 108%; }
.svc-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,14,10,0) 0%, rgba(20,14,10,0.3) 40%, rgba(20,14,10,0.94) 100%);
  transition: background 0.5s var(--ease);
}
.svc-card:hover .svc-card__scrim {
  background: linear-gradient(180deg, rgba(20,14,10,0.05) 0%, rgba(20,14,10,0.45) 35%, rgba(20,14,10,0.97) 100%);
}
.svc-card__body {
  position: relative;
  z-index: 1;
  padding: 2rem 2rem 2.5rem;
}
.svc-card__num {
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  position: absolute;
  top: 0.5rem;
  right: 1.5rem;
  letter-spacing: -0.03em;
  pointer-events: none;
}
.svc-card__tag {
  display: inline-block;
  padding: 0.28rem 0.75rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: 0.6rem;
}
.svc-card h3 { font-size: 1.4rem; color: #fff; margin-bottom: 0.4rem; }
.svc-card p { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.65; max-width: 30ch; }
.differentials h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 2.5rem; text-align: center; }
@media (prefers-reduced-motion: reduce) { .svc-card:hover { background-size: cover; } }
@media (max-width: 860px) {
  .services__cards { grid-template-columns: 1fr; grid-template-rows: auto; }
  .svc-card, .svc-card--main { grid-row: auto; min-height: 340px; }
}

/* Differentials */
.differentials { padding: 5rem 1.5rem 6rem; max-width: 760px; margin: 0 auto; }
.diff-list { display: flex; flex-direction: column; }
.diff-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}
.diff-item:last-child { border-bottom: 1px solid var(--line); }
.diff-item svg { color: var(--accent); flex-shrink: 0; margin-top: 0.2rem; }
.diff-item h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.diff-item p { color: var(--ink-soft); font-size: 0.95rem; }

/* Tecnologia — fundo atmosférico */
.tecnologia {
  position: relative;
  padding: 8rem 1.5rem;
  color: #fff;
}
.tecnologia__bg {
  position: absolute;
  inset: 0;
  background: url(assets/scanner-uso.webp) center 30%/cover no-repeat;
  opacity: 0.40;
}
.tecnologia__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    rgba(42,32,25,0.96) 0%,
    rgba(42,32,25,0.85) 40%,
    rgba(42,32,25,0.40) 65%,
    rgba(42,32,25,0.05) 100%);
}
.tecnologia__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.tecnologia__copy { display: flex; flex-direction: column; gap: 1.5rem; }
.tecnologia__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.tecnologia__copy h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: #fff;
  line-height: 1.15;
  max-width: 16ch;
}
.tecnologia__copy p { color: rgba(251,246,241,0.7); font-size: 1.05rem; max-width: 44ch; line-height: 1.75; }
.tecnologia__equip {
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.6));
}
.tecnologia__equip img {
  width: 100%;
  max-width: 340px;
  transform: rotate(-6deg) translateY(-12px);
  transition: transform 0.6s var(--ease);
  mix-blend-mode: screen;
}
.tecnologia__equip:hover img { transform: rotate(-2deg) translateY(-20px); }
@media (max-width: 860px) {
  .tecnologia__inner { grid-template-columns: 1fr; gap: 3rem; }
  .tecnologia__equip img { max-width: 220px; transform: rotate(-4deg); }
  .tecnologia__overlay {
    background: linear-gradient(180deg,
      rgba(42,32,25,0.92) 0%,
      rgba(42,32,25,0.85) 60%,
      rgba(42,32,25,0.7) 100%);
  }
}

/* WhatsApp floating button */
.wpp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.5rem;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: #25d366;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.8rem 1.3rem 0.8rem 1rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  animation: wppPulse 2.8s ease-in-out infinite;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.wpp-float:hover {
  transform: scale(1.07) !important;
  box-shadow: 0 14px 38px rgba(37,211,102,0.6);
  animation: none;
}
.wpp-float svg { flex-shrink: 0; width: 22px; height: 22px; }
@keyframes wppPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 28px rgba(37,211,102,0.45); }
  50%       { transform: scale(1.05); box-shadow: 0 14px 40px rgba(37,211,102,0.65); }
}
@media (max-width: 480px) {
  .wpp-float span { display: none; }
  .wpp-float { padding: 0.9rem; border-radius: 50%; }
}

/* Testimonials */
.testimonials {
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
  padding: 6rem 1.5rem;
}
.testimonials__blob {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(75px);
  opacity: 0.16;
  top: -50px;
  right: -40px;
  pointer-events: none;
}
.testimonials h2 {
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 2.5rem;
}
.testimonials__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}
.testimonial {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem;
}
.testimonial--lead {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial--lead p {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 500;
}
.testimonial p { margin-bottom: 1rem; color: var(--ink); }
.testimonial cite { font-style: normal; font-weight: 600; color: var(--accent-deep); display: block; }
.testimonial cite span { font-weight: 400; color: var(--ink-soft); }
@media (max-width: 860px) {
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonial--lead { grid-row: auto; }
}

/* Location */
.location { position: relative; overflow: hidden; padding: 6rem 1.5rem; max-width: var(--max); margin: 0 auto; }
.location__blob {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--accent-deep);
  filter: blur(70px);
  opacity: 0.14;
  top: 10%;
  right: 10%;
  pointer-events: none;
}
.location__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: stretch;
}
.location__info h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 2rem; }
.location__list { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.location__list strong { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--accent-deep); margin-bottom: 0.25rem; }
.location__list span { color: var(--ink-soft); }
.location__map { border-radius: var(--radius); overflow: hidden; min-height: 360px; }
@media (max-width: 860px) {
  .location__inner { grid-template-columns: 1fr; }
  .location__map { min-height: 280px; }
}

/* Final CTA */
.cta-final {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, var(--accent-deep) 0%, var(--accent) 100%);
  color: #fff;
  text-align: center;
  padding: 6rem 1.5rem;
  border-radius: 24px;
  max-width: calc(var(--max) - 3rem);
  margin: 0 auto 5rem;
}
.cta-final__blob {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  filter: blur(50px);
  top: -100px;
  right: -60px;
  pointer-events: none;
}
.cta-final > *:not(.cta-final__blob) { position: relative; z-index: 1; }
.cta-final h2 { color: #fff; font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 0.75rem; }
.cta-final p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-final .btn--primary { background: #fff; color: var(--accent-deep); }
.cta-final .btn--primary:hover { background: rgba(255,255,255,0.9); }

/* Footer */
.footer { border-top: 1px solid var(--line); padding: 4rem 1.5rem 2rem; }
.footer__inner {
  max-width: var(--max);
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer__col { display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.9rem; color: var(--ink-soft); }
.footer__col strong { color: var(--ink); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.3rem; }
.footer__col a:hover { color: var(--accent); }
.footer__brand { display: flex; align-items: center; gap: 0.55rem; color: var(--accent-deep); font-family: var(--font-display); font-weight: 600; margin-bottom: 0.5rem; }
.footer__logo-img { height: 34px; width: auto; display: block; }
.footer__copy { text-align: center; color: var(--ink-soft); font-size: 0.8rem; border-top: 1px solid var(--line); padding-top: 1.5rem; max-width: var(--max); margin: 0 auto; }
@media (max-width: 860px) {
  .footer__inner { grid-template-columns: 1fr 1fr; text-align: left; }
}
