:root {
  --bg: #07101f;
  --bg-soft: #0d1728;
  --surface: rgba(15, 25, 42, 0.82);
  --surface-solid: #111d31;
  --text: #f7f4ed;
  --muted: #c8c2b6;
  --heading: #fffaf0;
  --line: rgba(218, 181, 99, 0.24);
  --gold: #d8b15f;
  --gold-strong: #f0ce7b;
  --nav: rgba(7, 16, 31, 0.72);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --glow: rgba(216, 177, 95, 0.25);
  --field: rgba(255, 255, 255, 0.07);
  --field-solid: #111d31;
  --field-option: #f7f4ed;
}

[data-theme="light"] {
  --bg: #f7f4ee;
  --bg-soft: #ebe6dc;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-solid: #ffffff;
  --text: #162034;
  --muted: #5d6270;
  --heading: #081326;
  --line: rgba(167, 126, 48, 0.26);
  --gold: #a87c2c;
  --gold-strong: #c8993d;
  --nav: rgba(247, 244, 238, 0.78);
  --shadow: 0 24px 70px rgba(19, 28, 45, 0.14);
  --glow: rgba(196, 147, 55, 0.18);
  --field: rgba(8, 19, 38, 0.05);
  --field-solid: #ffffff;
  --field-option: #162034;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 8%, var(--glow), transparent 28rem),
    linear-gradient(135deg, var(--bg), var(--bg-soft));
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 420ms ease, color 420ms ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  z-index: -1;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  display: block;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 108px 0;
  scroll-margin-top: 90px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.site-header.scrolled,
.site-header.menu-open {
  background: var(--nav);
  border-color: var(--line);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1240px, calc(100% - 28px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 218px;
  overflow: hidden;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-strong);
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(145deg, rgba(216,177,95,0.22), transparent);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--heading);
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  transition: color 220ms ease;
}

.nav-link-icon {
  display: none;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--heading);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.menu-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--heading);
  background: var(--surface);
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.menu-toggle:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.theme-toggle {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  cursor: pointer;
}

.theme-toggle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: -20px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.16;
}

.theme-toggle input {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.theme-button {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 42px;
  height: 42px;
  margin-left: -21px;
  margin-top: -21px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: linear-gradient(145deg, #f4f1e9, #ded8cb);
  box-shadow:
    0 12px 22px -8px rgba(0, 0, 0, 0.48),
    inset 0 -3px 4px -1px rgba(0, 0, 0, 0.18),
    0 -8px 12px -4px rgba(255, 255, 255, 0.72),
    inset 0 3px 4px -1px rgba(255, 255, 255, 0.45),
    inset 0 0 5px 1px rgba(255, 255, 255, 0.72);
  transition: filter 260ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow 260ms cubic-bezier(0.23, 1, 0.32, 1), transform 260ms ease;
}

.theme-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 1;
  color: #0b1526;
  transition: color 260ms ease, transform 260ms ease;
}

.theme-toggle:hover .theme-button {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.theme-toggle input:active ~ .theme-button {
  filter: blur(0.35px);
  box-shadow:
    0 10px 20px -8px rgba(0, 0, 0, 0.42),
    inset 0 -7px 22px 1px rgba(255, 255, 255, 0.85),
    0 -8px 12px -4px rgba(255, 255, 255, 0.62),
    inset 0 7px 22px 0 rgba(0, 0, 0, 0.28),
    inset 0 0 9px 1px rgba(255, 255, 255, 0.58);
}

.theme-toggle input:checked ~ .theme-button {
  filter: blur(0.25px);
  background: linear-gradient(145deg, #10192b, #050b16);
  box-shadow:
    0 10px 24px -6px rgba(0, 0, 0, 0.55),
    inset 0 -8px 24px -1px rgba(255, 255, 255, 0.12),
    0 -8px 13px -6px rgba(255, 255, 255, 0.22),
    inset 0 8px 20px 0 rgba(0, 0, 0, 0.55),
    inset 0 0 5px 1px rgba(216, 177, 95, 0.22);
}

.theme-toggle input:checked ~ .theme-label {
  color: var(--gold-strong);
}

.mobile-menu-control {
  display: none;
  position: relative;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
}

.radial-menu-open {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.menu-open-button {
  position: absolute;
  inset: 4px;
  z-index: 4;
  display: block;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transform: scale(1.04) translate3d(0, 0, 0);
  transition: transform 360ms cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 220ms ease, background 220ms ease;
}

.menu-open-button:hover {
  border-color: var(--gold);
  transform: scale(1.12) translate3d(0, 0, 0);
}

.lines {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 22px;
  height: 2px;
  margin-left: -11px;
  margin-top: -1px;
  border-radius: 999px;
  background: var(--heading);
  transition: transform 220ms ease, opacity 220ms ease;
}

.line-1 {
  transform: translate3d(0, -7px, 0);
}

.line-2 {
  transform: translate3d(0, 0, 0);
}

.line-3 {
  transform: translate3d(0, 7px, 0);
}

.radial-menu-open:checked + .menu-open-button {
  transform: scale(0.9) translate3d(0, 0, 0);
  transition-timing-function: linear;
}

.radial-menu-open:checked + .menu-open-button .line-1 {
  transform: translate3d(0, 0, 0) rotate(45deg);
}

.radial-menu-open:checked + .menu-open-button .line-2 {
  transform: translate3d(0, 0, 0) scale(0.1, 1);
  opacity: 0;
}

.radial-menu-open:checked + .menu-open-button .line-3 {
  transform: translate3d(0, 0, 0) rotate(-45deg);
}

.theme-icon {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

[data-theme="dark"] .theme-icon-light,
[data-theme="light"] .theme-icon-dark {
  display: none;
}

.menu-toggle {
  display: none;
  gap: 4px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--heading);
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 128px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background:
    linear-gradient(90deg, var(--bg) 0%, transparent 62%),
    url("https://images.unsplash.com/photo-1593115057322-e94b77572f20?auto=format&fit=crop&w=1800&q=80") center/cover;
  transform: translateY(var(--parallax-y, 0px)) scale(1.05);
  transition: transform 120ms linear;
}

.ambient-glow {
  position: absolute;
  width: 38vw;
  max-width: 520px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(48px);
  background: var(--glow);
  opacity: 0.8;
  animation: drift 12s ease-in-out infinite alternate;
}

.glow-one {
  top: 15%;
  right: 7%;
}

.glow-two {
  left: -12%;
  bottom: 4%;
  animation-delay: -5s;
}

.hero-grid,
.split-grid,
.contact-grid,
.faq-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 5vw, 80px);
  align-items: center;
}

.hero-copy {
  max-width: 680px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-strong);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--heading);
  font-family: "Cormorant Garamond", serif;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(3.1rem, 7vw, 6.7rem);
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
}

h3 {
  color: var(--heading);
  line-height: 1.25;
}

.hero-text,
.section-copy p,
.section-heading p,
.cta-panel p,
.footer p,
.service-card p,
.faq-content p {
  color: var(--muted);
}

.hero-text {
  max-width: 610px;
  margin-bottom: 34px;
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease, background 240ms ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: #10121a;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  box-shadow: 0 16px 34px rgba(216, 177, 95, 0.22);
}

.btn-secondary {
  color: var(--heading);
  border-color: var(--line);
  background: var(--surface);
}

.btn-secondary:hover {
  border-color: var(--gold);
}

.btn-maps {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 56px;
  border: double 3px transparent;
  color: #fff;
  background-image:
    linear-gradient(rgba(13, 22, 37, 0.96), rgba(13, 22, 37, 0.96)),
    linear-gradient(137deg, #d7ab49 8%, #f2d27a 34%, #8e6a2e 62%, #d7ab49 88%);
  background-size: 300% 300%;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow:
    0 14px 30px rgba(10, 17, 29, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  animation: mapsGradient 6s ease infinite;
}

.btn-maps strong {
  position: relative;
  z-index: 2;
  color: #fff7e7;
  font-size: 0.98rem;
  letter-spacing: 0;
  text-shadow: 0 0 10px rgba(255, 241, 204, 0.22);
}

.maps-stars-shell {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 220ms ease;
}

.maps-stars {
  position: absolute;
  inset: -140%;
}

.maps-stars::before,
.maps-stars::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.92) 0.8px, transparent 1%);
  background-size: 42px 42px;
}

.maps-stars::before {
  opacity: 0.42;
  animation: mapsStarsDrift 52s linear infinite;
}

.maps-stars::after {
  opacity: 0.72;
  animation: mapsStarsRotate 92s linear infinite;
}

.maps-glow {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  display: flex;
  width: 13rem;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.maps-circle {
  width: 100%;
  height: 30px;
  filter: blur(1.9rem);
  animation: mapsPulse 4.2s infinite;
}

.maps-circle:nth-of-type(1) {
  background: rgba(215, 171, 73, 0.48);
}

.maps-circle:nth-of-type(2) {
  background: rgba(242, 210, 122, 0.42);
}

.btn-maps:hover .maps-stars-shell,
.btn-maps:focus-visible .maps-stars-shell {
  opacity: 1;
}

.btn-maps:hover {
  transform: translateY(-3px) scale(1.03);
}

.btn-maps:active {
  animation: none;
}

[data-theme="light"] .btn-maps {
  color: #fff;
  background-image:
    linear-gradient(rgba(18, 29, 46, 0.96), rgba(18, 29, 46, 0.96)),
    linear-gradient(137deg, #d7ab49 8%, #f4d78f 34%, #8e6a2e 62%, #d7ab49 88%);
}

.btn-whatsapp {
  gap: 10px;
}

.btn-whatsapp svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  stroke: none;
}

.portrait-card,
.image-frame,
.map-card,
.contact-form,
.cta-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.portrait-card {
  margin: 0;
  border-radius: 28px;
  transform: rotate(1.5deg);
}

.portrait-card img {
  width: 100%;
  height: min(68vh, 680px);
  min-height: 440px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}

.portrait-card::after,
.service-card::after,
.map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.46), transparent 52%);
  pointer-events: none;
}

.portrait-card figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  padding: 18px;
  border: 1px solid rgba(216, 177, 95, 0.38);
  border-radius: 18px;
  color: white;
  background: rgba(6, 11, 20, 0.58);
  backdrop-filter: blur(16px);
}

.portrait-card span,
.portrait-card strong {
  display: block;
}

.portrait-card span {
  color: var(--gold-strong);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.trust-strip {
  position: relative;
  z-index: 2;
  padding: 24px 0;
  border-block: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(18px);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trust-item,
.process-step {
  position: relative;
  overflow: hidden;
  min-height: 104px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.trust-item::before {
  content: "";
  position: absolute;
  inset: 4px;
  z-index: 1;
  border-radius: 14px;
  background: var(--surface);
  backdrop-filter: blur(18px);
}

.trust-item::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #ff1f1f;
  opacity: 0.72;
  filter: blur(18px);
  animation: trustBlobBounce 5.5s infinite ease;
}

.trust-item > * {
  position: relative;
  z-index: 2;
}

.icon,
.card-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(216, 177, 95, 0.1);
}

.icon svg,
.card-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item h3 {
  margin: 0;
  font-size: 1rem;
}

.trust-item .icon {
  width: 26px;
  height: 26px;
  margin-bottom: 10px;
}

.trust-item .icon svg {
  width: 13px;
  height: 13px;
}

.image-frame,
.map-card {
  border-radius: 26px;
}

.image-frame img,
.map-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.image-frame img {
  object-position: center center;
}

.section-copy {
  max-width: 620px;
}

.signature-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  color: var(--heading);
}

.signature-line span {
  width: 76px;
  height: 1px;
  background: var(--gold);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.process {
  overflow: hidden;
  padding-block: 78px;
  background:
    linear-gradient(90deg, rgba(7, 16, 31, 0.88), rgba(7, 16, 31, 0.56)),
    url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1800&q=82") center right / cover no-repeat;
  border-block: 1px solid var(--line);
}

[data-theme="light"] .process {
  background:
    linear-gradient(90deg, rgba(247, 244, 238, 0.9), rgba(247, 244, 238, 0.58), rgba(7, 16, 31, 0.3)),
    url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1800&q=82") center right / cover no-repeat;
}

.process .container {
  position: relative;
  z-index: 1;
}

.process-intro {
  max-width: 760px;
  margin-bottom: 24px;
}

.process .section-heading {
  max-width: 820px;
  margin-bottom: 0;
}

[data-theme="dark"] .process .section-heading h2 {
  color: #fff7e7;
}

[data-theme="dark"] .process .section-heading .eyebrow {
  color: var(--gold-strong);
}

.process .section-heading h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.7rem);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.service-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.service-card div {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.service-card h3 {
  margin-bottom: 10px;
}

.rights-cta {
  overflow: hidden;
}

.rights-cta::before {
  content: "";
  position: absolute;
  inset: 16% -10%;
  background:
    radial-gradient(circle at 28% 40%, var(--glow), transparent 22rem),
    linear-gradient(120deg, transparent, rgba(216,177,95,0.12), transparent);
  animation: slowSweep 10s ease-in-out infinite alternate;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 28px;
}

.cta-panel div {
  max-width: 760px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.process-step {
  min-height: 118px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
}

[data-theme="dark"] .process-step {
  background: rgba(9, 17, 30, 0.72);
}

.process-step span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-strong);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

.process-step h3 {
  margin: 0;
}

.accordion {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.faq-item button {
  width: 100%;
  padding: 20px 22px;
  border: 0;
  color: var(--heading);
  background: transparent;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-size: 1.25rem;
}

.faq-item.open button::after {
  content: "−";
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.faq-content p {
  margin: 0;
  padding: 0 22px 20px;
}

.map-card {
  min-height: 440px;
}

.map-pin {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 14px 18px;
  border: 1px solid rgba(216, 177, 95, 0.45);
  border-radius: 999px;
  color: white;
  background: rgba(6, 11, 20, 0.7);
  backdrop-filter: blur(14px);
  font-weight: 800;
}

.contact-grid {
  grid-template-columns: 0.85fr 1fr;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 38px);
  border-radius: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--heading);
  font-weight: 800;
}

.contact-field {
  display: grid;
  gap: 8px;
}

.field-label {
  color: var(--heading);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  color: var(--text);
  background: var(--field);
  outline: none;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(216, 177, 95, 0.12);
}

.case-select {
  position: relative;
  z-index: 24;
}

.case-select::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 24;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: rgba(6, 13, 24, 0.52);
  backdrop-filter: blur(6px) saturate(0.8);
  transition: opacity 180ms ease, visibility 180ms ease;
}

[data-theme="light"] .case-select::after {
  background: rgba(247, 244, 238, 0.42);
  backdrop-filter: blur(6px) saturate(0.9);
}

.case-select.open::after {
  opacity: 1;
  visibility: visible;
}

.case-select-toggle {
  position: relative;
  z-index: 26;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  color: var(--muted);
  background: var(--field-solid);
  cursor: pointer;
  outline: none;
  transition: border-color 220ms ease, box-shadow 220ms ease, color 220ms ease, background 220ms ease;
}

.case-select-toggle.selected {
  color: var(--text);
}

.case-select-toggle:focus,
.case-select.open .case-select-toggle {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(216, 177, 95, 0.12);
}

.case-select-toggle.invalid {
  border-color: #e25b5b;
  box-shadow: 0 0 0 4px rgba(226, 91, 91, 0.14);
}

.select-chevron {
  color: var(--heading);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 220ms ease;
}

.case-select.open .select-chevron {
  transform: rotate(180deg);
}

.case-select-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 27;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(216, 177, 95, 0.28);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(15, 25, 42, 0.98), rgba(9, 17, 30, 0.98));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

[data-theme="light"] .case-select-menu {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 239, 229, 0.98));
  box-shadow: 0 24px 60px rgba(18, 28, 45, 0.16);
}

.case-select.open .case-select-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.case-select-menu button {
  width: 100%;
  border: 0;
  padding: 13px 16px;
  color: var(--heading);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.case-select-menu button + button {
  border-top: 1px solid rgba(216, 177, 95, 0.1);
}

.case-select-menu button:hover,
.case-select-menu button:focus,
.case-select-menu button[aria-selected="true"] {
  color: var(--heading);
  background: rgba(216, 177, 95, 0.18);
}

.footer {
  padding: 56px 0;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
  gap: 26px;
}

.footer h2,
.footer h3 {
  margin-bottom: 10px;
}

/* ── Social Icon Buttons ─────────────────────────── */
.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon-wrap {
  position: relative;
}

.social-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) scale(0);
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  padding: 4px 10px;
  border-radius: 5px;
  white-space: nowrap;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 5;
}

.social-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
}

.social-icon-wrap:hover .social-tooltip {
  transform: translateX(-50%) scale(1);
}

/* Tooltip brand colors */
.insta-tooltip {
  background: linear-gradient(30deg, #405de6, #f56040);
}
.insta-tooltip::after {
  border-top-color: #c13584;
}

.linkedin-tooltip {
  background: #0274b3;
}
.linkedin-tooltip::after {
  border-top-color: #0274b3;
}

.whatsapp-tooltip {
  background: #25d366;
}
.whatsapp-tooltip::after {
  border-top-color: #25d366;
}

.youtube-tooltip {
  background: #ff0000;
}
.youtube-tooltip::after {
  border-top-color: #ff0000;
}

/* Icon circle */
.social-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.social-icon svg {
  position: relative;
  z-index: 2;
  width: 22px;
  height: 22px;
  fill: currentColor;
  stroke: none;
}

.social-icon::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  border-radius: 50%;
  transition: height 0.3s ease;
  z-index: 1;
}

.social-icon:hover::before {
  height: 100%;
}

.social-icon:hover {
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

/* Brand fill colors */
.insta-icon::before {
  background: linear-gradient(40deg, #405de6, #f56040);
}

.linkedin-icon::before {
  background: #0274b3;
}

.whatsapp-icon::before {
  background: #25d366;
}

.youtube-icon::before {
  background: #ff0000;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: white;
  background: #1fae64;
  box-shadow: 0 14px 34px rgba(31, 174, 100, 0.35);
  animation: pulse 2.6s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  stroke: none;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 760ms ease, transform 760ms ease;
}

.reveal.from-left {
  transform: translateX(-42px);
}

.reveal.from-right {
  transform: translateX(42px);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 {
  transition-delay: 120ms;
}

.delay-2 {
  transition-delay: 220ms;
}

.delay-3 {
  transition-delay: 320ms;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(28px, -24px, 0) scale(1.08);
  }
}

@keyframes slowSweep {
  from {
    transform: translateX(-3%);
  }
  to {
    transform: translateX(3%);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
  }
}

@keyframes mapsStarsDrift {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-135rem);
  }
}

@keyframes mapsStarsRotate {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@keyframes mapsGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes mapsPulse {
  0% {
    transform: scale(0.75);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
  100% {
    transform: scale(0.75);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

@keyframes trustBlobBounce {
  0% {
    transform: translate(-100%, -100%) translate3d(0, 0, 0);
  }
  25% {
    transform: translate(-100%, -100%) translate3d(120%, 0, 0);
  }
  50% {
    transform: translate(-100%, -100%) translate3d(120%, 95%, 0);
  }
  75% {
    transform: translate(-100%, -100%) translate3d(0, 95%, 0);
  }
  100% {
    transform: translate(-100%, -100%) translate3d(0, 0, 0);
  }
}

@media (max-width: 1080px) {
  .nav-links {
    position: fixed;
    top: 12px;
    right: 16px;
    z-index: 48;
    display: block;
    width: 52px;
    height: 52px;
    pointer-events: none;
  }

  .nav-links.open {
    pointer-events: auto;
  }

  .nav-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 1px solid rgba(216, 177, 95, 0.34);
    border-radius: 50%;
    color: var(--gold-strong);
    background: var(--surface-solid);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, 0, 0) scale(0.5);
    transition: transform 220ms ease-out, opacity 180ms ease, visibility 180ms ease, background 220ms ease, border-color 220ms ease;
  }

  .nav-link span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link::before {
    content: attr(data-label);
    position: absolute;
    right: 58px;
    top: 50%;
    padding: 6px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--heading);
    background: var(--surface-solid);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    font-size: 0.72rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(-50%) translateX(8px);
    transition: opacity 180ms ease, transform 180ms ease;
    pointer-events: none;
  }

  .nav-link:hover::before,
  .nav-link:focus-visible::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--heading);
    border-color: var(--gold);
    background: linear-gradient(145deg, var(--surface-solid), rgba(216, 177, 95, 0.16));
  }

  .nav-link-icon {
    display: block;
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .nav-links.open .nav-link {
    opacity: 1;
    visibility: visible;
    transition-timing-function: cubic-bezier(0.935, 0, 0.34, 1.33);
  }

  .nav-links.open .nav-link:nth-child(1) {
    transform: translate3d(-78px, 64px, 0) scale(1);
    transition-duration: 180ms;
  }

  .nav-links.open .nav-link:nth-child(2) {
    transform: translate3d(-140px, 76px, 0) scale(1);
    transition-duration: 260ms;
  }

  .nav-links.open .nav-link:nth-child(3) {
    transform: translate3d(-188px, 116px, 0) scale(1);
    transition-duration: 340ms;
  }

  .nav-links.open .nav-link:nth-child(4) {
    transform: translate3d(-198px, 178px, 0) scale(1);
    transition-duration: 420ms;
  }

  .nav-links.open .nav-link:nth-child(5) {
    transform: translate3d(-152px, 222px, 0) scale(1);
    transition-duration: 500ms;
  }

  .nav-links.open .nav-link:nth-child(6) {
    transform: translate3d(-88px, 234px, 0) scale(1);
    transition-duration: 580ms;
  }

  .nav-links.open .nav-link:nth-child(7) {
    transform: translate3d(-30px, 196px, 0) scale(1);
    transition-duration: 660ms;
  }

  .mobile-menu-control {
    display: block;
  }

  .hero-grid,
  .split-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .portrait-card img,
  .image-frame img,
  .map-card img {
    height: 480px;
  }

  .trust-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-panel,
  .footer-grid {
    grid-template-columns: 1fr;
    display: grid;
  }
}

@media (max-width: 680px) {
  .container {
    width: calc(100vw - 28px);
    max-width: 1160px;
  }

  .section {
    padding: 76px 0;
  }

  .nav {
    min-height: 70px;
    width: min(100% - 20px, 1240px);
    gap: 10px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    gap: 8px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

  .brand small {
    display: none;
  }

  .brand > span:not(.brand-mark) {
    display: none;
  }

  .brand strong {
    max-width: 126px;
    font-size: 0.92rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-copy,
  .section-copy,
  .hero-text {
    width: 100%;
    max-width: 100%;
  }

  .reveal.from-left,
  .reveal.from-right {
    transform: translateY(34px);
  }

  .theme-toggle,
  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .theme-toggle {
    flex-basis: 40px;
  }

  .theme-toggle::before,
  .theme-button {
    width: 40px;
    height: 40px;
    margin-left: -20px;
    margin-top: -20px;
  }

  .nav-links {
    top: 70px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 11.2vw, 3.35rem);
    line-height: 1.06;
  }

  h2 {
    font-size: clamp(2.1rem, 12vw, 3.2rem);
  }

  .process {
    padding-block: 54px;
    background-position: center;
  }

  .process-intro {
    margin-bottom: 16px;
  }

  .process .section-heading {
    margin-bottom: 18px;
  }

  .process .section-heading h2 {
    font-size: clamp(2.15rem, 10vw, 2.85rem);
    line-height: 1.04;
  }

  .hero-buttons,
  .btn {
    width: 100%;
  }

  .portrait-card {
    transform: none;
  }

  .portrait-card img,
  .image-frame img,
  .map-card img {
    height: 380px;
    min-height: 0;
  }

  .image-frame img {
    height: auto;
    aspect-ratio: 1.5 / 1;
  }

  .trust-grid,
  .cards-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    padding: 14px 0;
  }

  .trust-grid {
    gap: 10px;
  }

  .trust-item {
    min-height: 86px;
    padding: 16px 18px;
    border-radius: 16px;
  }

  .trust-item h3 {
    font-size: 0.98rem;
  }

  .process-grid {
    gap: 8px;
  }

  .process-step {
    min-height: 78px;
    padding: 14px 16px;
  }

  .process-step span {
    margin-bottom: 6px;
    font-size: 1.7rem;
  }

  .service-card {
    min-height: 0;
  }

  .cta-panel {
    padding: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal,
  .reveal.from-left,
  .reveal.from-right {
    opacity: 1;
    transform: none;
  }
}
