:root {
  --gold: #c9973a;
  --gold-strong: #a8751f;
  --gold-soft: #f6e7c3;
  --ink: #0b1426;
  --ink-2: #172136;
  --cream: #f8f3ea;
  --paper: #fffaf2;
  --white: #ffffff;
  --muted: #687083;
  --line: #e8ddcb;
  --sage: #73806e;
  --success: #18c46b;
  --shadow: 0 24px 70px rgba(11, 20, 38, 0.12);
  --shadow-soft: 0 16px 45px rgba(11, 20, 38, 0.08);
  --radius: 8px;
  --container: 1180px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --avatar-1: linear-gradient(135deg, #c9973a, #a8751f);
  --avatar-2: linear-gradient(135deg, #172136, #3a4a68);
  --avatar-3: linear-gradient(135deg, #4f5a48, #2e3529);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(201, 151, 58, 0.65);
  outline-offset: 4px;
}

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

svg {
  width: 1.1em;
  height: 1.1em;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.topbar {
  color: rgba(255, 255, 255, 0.9);
  background: #111722;
  font-size: 14px;
}

.topbar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar span,
.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar svg {
  color: var(--gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 250, 242, 0.92);
  border-bottom: 1px solid rgba(232, 221, 203, 0.75);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 178px;
}

.brand img {
  width: 190px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: var(--ink-2);
  font-weight: 600;
}

.nav-links a:not(.btn) {
  position: relative;
  padding-block: 8px;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 220ms ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.btn {
  position: relative;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 13px 22px 11px;
  color: #101826;
  background: linear-gradient(135deg, #e6c373, var(--gold));
  box-shadow: 0 12px 30px rgba(201, 151, 58, 0.28);
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 550ms var(--ease);
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(201, 151, 58, 0.35);
}

.btn svg {
  transition: transform 220ms var(--ease);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn--small {
  min-height: 44px;
  padding: 11px 19px 9px;
}

.btn--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: none;
}

.btn--line {
  color: var(--white);
  background: transparent;
  border-color: rgba(201, 151, 58, 0.9);
  box-shadow: none;
}

.btn--dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 12px 30px rgba(11, 20, 38, 0.18);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero__media-wrap,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media-wrap {
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  opacity: 0;
  transition: opacity 1800ms cubic-bezier(0.45, 0, 0.2, 1);
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 20, 38, 0.68), rgba(11, 20, 38, 0.15));
}

.hero__media.is-active {
  opacity: 1;
}

.hero__overlay {
  background:
    radial-gradient(circle at 18% 30%, rgba(201, 151, 58, 0.24), transparent 32%),
    linear-gradient(180deg, rgba(11, 20, 38, 0.05), rgba(11, 20, 38, 0.72));
}

.hero__blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__blobs span {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  animation: drift 16s ease-in-out infinite;
}

.hero__blobs span:nth-child(1) {
  top: 8%;
  right: 12%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(201, 151, 58, 0.55), transparent 70%);
  animation-duration: 18s;
}

.hero__blobs span:nth-child(2) {
  bottom: 4%;
  right: 32%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(246, 231, 195, 0.4), transparent 70%);
  animation-duration: 22s;
  animation-delay: -4s;
}

.hero__blobs span:nth-child(3) {
  top: 42%;
  right: 4%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(115, 128, 110, 0.4), transparent 70%);
  animation-duration: 14s;
  animation-delay: -8s;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-18px, 22px) scale(1.08); }
  66% { transform: translate(14px, -16px) scale(0.94); }
}

.hero__brushstroke {
  position: absolute;
  left: -6%;
  bottom: -14%;
  width: 46%;
  height: 60%;
  background: radial-gradient(ellipse at bottom left, rgba(201, 151, 58, 0.16), transparent 65%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(280px, 360px);
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  padding-block: 92px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
}

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

h1 {
  max-width: 760px;
  margin-top: 18px;
  font-weight: 500;
  font-size: clamp(42px, 6vw, 82px);
}

h1 em {
  color: var(--gold-soft);
  font-style: italic;
}

h2 {
  font-size: clamp(31px, 4vw, 52px);
}

h3 {
  font-size: 22px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  height: 3px;
  background: transparent;
  pointer-events: none;
}

.scroll-progress__bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-strong), var(--gold), var(--gold-soft));
  transition: width 80ms linear;
}

.icon-brand {
  width: 1.3em;
  height: 1.3em;
}

p {
  margin: 0;
}

.hero p {
  max-width: 620px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.hero-copy-title,
.hero-copy-description {
  transition: opacity 700ms cubic-bezier(0.45, 0, 0.2, 1);
}

.hero-copy-title.is-fading,
.hero-copy-description.is-fading {
  opacity: 0;
}

.hero__copy > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}

.hero__copy.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.hero__copy.is-visible > *:nth-child(1) { transition-delay: 60ms; }
.hero__copy.is-visible > *:nth-child(2) { transition-delay: 160ms; }
.hero__copy.is-visible > *:nth-child(3) { transition-delay: 260ms; }
.hero__copy.is-visible > *:nth-child(4) { transition-delay: 360ms; }
.hero__copy.is-visible > *:nth-child(5) { transition-delay: 440ms; }

.hero-card div {
  transition: background 200ms ease, transform 200ms ease;
}

.hero-card div:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero__badges span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 9px 14px 7px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.hero-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(11, 20, 38, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-card div {
  display: grid;
  gap: 2px;
  padding: 17px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.hero-card strong {
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
}

.hero-card span {
  color: rgba(255, 255, 255, 0.76);
}

.strip {
  background: var(--ink);
  color: var(--white);
}

.strip__inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.strip p {
  color: rgba(255, 255, 255, 0.82);
}

.strip strong {
  color: var(--gold-soft);
}

.strip__actions {
  display: flex;
  gap: 12px;
}

.link-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 10px 15px 8px;
  color: var(--white);
  font-weight: 700;
}

.section {
  padding-block: 96px;
}

.section-head {
  max-width: 650px;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head--center .eyebrow {
  justify-content: center;
}

.section-head h2 {
  margin-top: 12px;
}

.section-head p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 34px 0 28px;
}

.filter-btn {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 17px 8px;
  color: var(--ink-2);
  background: var(--white);
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.filter-btn.is-active,
.filter-btn:hover {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}

.service-card img {
  transition: transform 450ms var(--ease);
}

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

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card.is-hidden {
  display: none;
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.service-card__body {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.service-card__body > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-strong);
  font-weight: 800;
}

.service-card__body p {
  color: var(--muted);
}

.service-card__body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  color: var(--gold-strong);
  font-weight: 800;
}

.campaign {
  padding-block: 92px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 20, 38, 0.94), rgba(23, 33, 54, 0.86)),
    url("assets/campaign-painter.jpg") center / cover;
}

.campaign__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
  gap: 64px;
}

.campaign h2 {
  max-width: 680px;
  margin-top: 14px;
}

.campaign p {
  max-width: 650px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.check-list svg {
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--gold);
}

.campaign-box {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.98);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.campaign-box > span {
  color: var(--gold-strong);
  font-weight: 800;
  text-transform: uppercase;
}

.campaign-box h3 {
  margin-top: 8px;
}

.quote-form {
  display: grid;
  gap: 15px;
  margin-top: 22px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-2);
  font-weight: 700;
}

.quote-form input,
.quote-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 13px 9px;
  color: var(--ink);
  background: var(--white);
}

.why {
  background: var(--paper);
}

.why__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 64px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature {
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms ease;
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(201, 151, 58, 0.4);
}

.feature > svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: var(--radius);
  color: var(--gold-strong);
  background: var(--gold-soft);
  transition: transform 260ms var(--ease);
}

.feature:hover > svg {
  transform: scale(1.1) rotate(-4deg);
}

.feature p {
  color: var(--muted);
}

.stats {
  padding-block: 78px;
  color: var(--white);
  background: var(--ink);
}

.stats__head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.stats__head h2 {
  margin-top: 12px;
}

.stats__head h2 em {
  color: var(--gold);
  font-style: italic;
}

.eyebrow--center {
  justify-content: center;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stats__grid div {
  display: grid;
  gap: 6px;
  text-align: center;
}

.stats strong {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
}

.stat-suffix,
.stat-prefix {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.55em;
  font-weight: 600;
}

.stats .stat-label {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.process-step {
  min-height: 218px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.process-step span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
}

.process-step h3 {
  margin-top: 12px;
}

.process-step p {
  margin-top: 10px;
  color: var(--muted);
}

.gallery {
  padding-block: 96px;
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  margin-top: 34px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  margin: 0;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow-soft);
}

.gallery-item--wide {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 350ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border-radius: var(--radius);
  padding: 13px 15px 11px;
  color: var(--white);
  background: rgba(11, 20, 38, 0.72);
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.testimonials {
  background: var(--cream);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.testimonial {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 270px;
  padding: 30px 28px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease), border-color 280ms ease;
}

.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 151, 58, 0.35);
}

.testimonial__quote {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 30px;
  height: 30px;
  color: var(--gold-soft);
}

.stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
}

.stars svg {
  fill: currentColor;
  stroke: currentColor;
}

.testimonial p {
  color: var(--ink-2);
  font-size: 17.5px;
  line-height: 1.6;
}

.testimonial__person {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px 14px;
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.testimonial__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--white);
  background: var(--avatar-1);
  box-shadow: 0 8px 18px rgba(11, 20, 38, 0.18);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.testimonial-grid .testimonial:nth-child(2) .testimonial__avatar {
  background: var(--avatar-2);
}

.testimonial-grid .testimonial:nth-child(3) .testimonial__avatar {
  background: var(--avatar-3);
}

.testimonial__person > div {
  display: grid;
  gap: 1px;
}

.testimonial__person strong {
  font-size: 16px;
}

.testimonial__person span {
  color: var(--muted);
  font-size: 14px;
}

.testimonial__verified {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  padding: 5px 11px 4px;
  border-radius: 999px;
  background: rgba(24, 196, 107, 0.12);
  color: #0f9c56;
  font-size: 12.5px;
  font-weight: 700;
}

.testimonial__verified svg {
  width: 14px;
  height: 14px;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 22px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.testimonial-meta__score {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-meta__score strong {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--gold-strong);
}

.testimonial-meta__score > div {
  display: grid;
  gap: 4px;
}

.testimonial-meta__score span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.faq {
  background: var(--paper);
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px 15px;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--gold-strong);
  font-family: var(--font-body);
  font-size: 28px;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 22px 20px;
  color: var(--muted);
}

.contact {
  padding-block: 96px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 20, 38, 0.94), rgba(23, 33, 54, 0.86)),
    url("assets/contact-interior.jpg") center / cover;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: center;
  gap: 48px;
}

.contact p {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.contact-cards a,
.contact-cards div {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-cards svg {
  color: var(--gold);
  font-size: 28px;
}

.contact-cards span {
  color: rgba(255, 255, 255, 0.62);
}

.contact-cards strong {
  color: var(--white);
  line-height: 1.25;
}

.map-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.98);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.map-card p {
  color: var(--muted);
}

.zone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.zone-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px 7px;
  color: var(--ink-2);
  background: var(--cream);
  font-weight: 700;
}

.final-cta {
  padding-block: 30px 100px;
}

.final-cta__card {
  position: relative;
  overflow: hidden;
  padding: 72px 40px;
  border-radius: 28px;
  text-align: center;
  color: var(--white);
  background: linear-gradient(120deg, var(--gold-strong) 0%, var(--gold) 55%, #e6c373 100%);
  box-shadow: 0 30px 70px rgba(168, 117, 31, 0.35);
}

.final-cta__glow {
  position: absolute;
  top: -30%;
  left: 50%;
  width: 60%;
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35), transparent 70%);
  pointer-events: none;
}

.final-cta__card h2 {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
  color: var(--white);
}

.final-cta__card p {
  position: relative;
  max-width: 560px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
}

.final-cta__actions {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn--white {
  color: var(--gold-strong);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 12px 28px rgba(11, 20, 38, 0.18);
}

.btn--white:hover {
  box-shadow: 0 16px 36px rgba(11, 20, 38, 0.24);
}

.btn--white .icon-brand {
  color: var(--success);
}

.footer {
  color: rgba(255, 255, 255, 0.76);
  background: #090f1b;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 34px;
  padding-block: 58px;
}

.footer img {
  width: 185px;
  margin-bottom: 18px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.2));
}

.footer h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 19px;
}

.footer a {
  display: table;
  margin-top: 8px;
  transition: color 180ms ease;
}

.footer a:hover {
  color: var(--gold-soft);
}

.footer__bottom {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.float-call,
.float-whatsapp,
.back-top {
  position: fixed;
  z-index: 40;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.float-call:hover,
.float-whatsapp:hover {
  transform: translateY(-3px) scale(1.05);
}

.float-call {
  left: 22px;
  bottom: 24px;
  background: var(--ink);
  box-shadow: 0 12px 24px rgba(11, 20, 38, 0.28);
}

.float-whatsapp {
  right: 22px;
  bottom: 24px;
  background: var(--success);
  box-shadow: 0 14px 32px rgba(24, 196, 107, 0.35);
}

.float-whatsapp::after {
  content: "";
  position: absolute;
  inset: -14px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 196, 107, 0.55), rgba(24, 196, 107, 0) 72%);
  filter: blur(6px);
  animation: glow-breathe 2.4s ease-in-out infinite;
}

@keyframes glow-breathe {
  0%, 100% { transform: scale(0.92); opacity: 0.75; }
  50% { transform: scale(1.18); opacity: 1; }
}

.float-whatsapp .icon-brand {
  width: 1.7em;
  height: 1.7em;
}

.float-btn__ring {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: pulse-ring 2.4s ease-out infinite;
}

.float-call .float-btn__ring {
  background: rgba(11, 20, 38, 0.35);
}

.float-whatsapp .float-btn__ring {
  background: rgba(24, 196, 107, 0.4);
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.55; }
  80% { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

.float-btn__tip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translate(6px, -50%);
  padding: 8px 13px 6px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.float-call .float-btn__tip {
  right: auto;
  left: calc(100% + 12px);
  transform: translate(-6px, -50%);
}

.float-call:hover .float-btn__tip,
.float-whatsapp:hover .float-btn__tip {
  opacity: 1;
  transform: translate(0, -50%);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
  font-size: 32px;
  line-height: 1;
}

@media (max-width: 720px) {
  .whatsapp-float {
    right: 16px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float i {
    font-size: 28px;
  }
}

.back-top {
  right: 22px;
  bottom: 94px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(11, 20, 38, 0.88);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-top svg {
  transform: rotate(-90deg);
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-grid .reveal:nth-child(1), .feature-grid .reveal:nth-child(1), .testimonial-grid .reveal:nth-child(1), .process-grid .reveal:nth-child(1), .gallery-grid .reveal:nth-child(1), .stats__grid .reveal:nth-child(1) { transition-delay: 0ms; }
.service-grid .reveal:nth-child(2), .feature-grid .reveal:nth-child(2), .testimonial-grid .reveal:nth-child(2), .process-grid .reveal:nth-child(2), .gallery-grid .reveal:nth-child(2), .stats__grid .reveal:nth-child(2) { transition-delay: 90ms; }
.service-grid .reveal:nth-child(3), .feature-grid .reveal:nth-child(3), .testimonial-grid .reveal:nth-child(3), .process-grid .reveal:nth-child(3), .gallery-grid .reveal:nth-child(3), .stats__grid .reveal:nth-child(3) { transition-delay: 180ms; }
.service-grid .reveal:nth-child(4), .feature-grid .reveal:nth-child(4), .process-grid .reveal:nth-child(4), .stats__grid .reveal:nth-child(4) { transition-delay: 270ms; }
.service-grid .reveal:nth-child(5), .feature-grid .reveal:nth-child(5) { transition-delay: 360ms; }
.service-grid .reveal:nth-child(6) { transition-delay: 450ms; }

@media (max-width: 1050px) {
  .nav {
    min-height: 78px;
  }

  .brand img {
    width: 165px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: fixed;
    inset: 78px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 12px 20px 22px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(calc(-100% - 90px));
    visibility: hidden;
    pointer-events: none;
    transition: transform 220ms ease, visibility 220ms ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .hero__content,
  .campaign__inner,
  .why__grid,
  .faq__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 560px;
  }

  .service-grid,
  .testimonial-grid,
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .topbar__inner {
    justify-content: center;
    padding-block: 8px;
    text-align: center;
  }

  .topbar__inner span:nth-child(2) {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .hero__content {
    padding-block: 64px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero__actions,
  .strip__inner,
  .strip__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .link-action {
    width: 100%;
  }

  .section,
  .gallery,
  .contact,
  .campaign {
    padding-block: 70px;
  }

  .final-cta {
    padding-block: 10px 70px;
  }

  .final-cta__card {
    padding: 48px 24px;
    border-radius: 20px;
  }

  .final-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .final-cta__actions .btn {
    width: 100%;
  }

  .service-grid,
  .testimonial-grid,
  .feature-grid,
  .process-grid,
  .stats__grid,
  .contact-cards,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item img {
    min-height: 260px;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 18px;
  }

  .float-call,
  .float-whatsapp,
  .back-top {
    width: 54px;
    height: 54px;
  }

  .float-call {
    left: 16px;
    bottom: 20px;
  }

  .float-whatsapp {
    right: 16px;
    bottom: 20px;
  }

  .back-top {
    right: 16px;
    bottom: 86px;
  }

  .float-btn__tip {
    display: none;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Premium UI refresh: non-structural overrides only. */
:root {
  --gold: #c99a3d;
  --gold-strong: #a8751f;
  --gold-soft: #f8e7bc;
  --ink: #0a1020;
  --ink-2: #182235;
  --cream: #f7f2e9;
  --paper: #fffaf1;
  --muted: #606b7d;
  --line: rgba(27, 34, 48, 0.12);
  --shadow: 0 26px 80px rgba(10, 16, 32, 0.14);
  --shadow-soft: 0 16px 42px rgba(10, 16, 32, 0.08);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

body {
  background:
    radial-gradient(circle at 15% 4%, rgba(201, 154, 61, 0.1), transparent 28rem),
    linear-gradient(180deg, #fffaf2 0%, #f7f2e9 44%, #fffaf2 100%);
}

.scroll-progress {
  height: 3px;
  background: rgba(10, 16, 32, 0.08);
}

.scroll-progress__bar {
  background: linear-gradient(90deg, #f3d58c, var(--gold), #8f681e);
  box-shadow: 0 0 18px rgba(201, 154, 61, 0.34);
}

.topbar {
  background: linear-gradient(90deg, #080d18, #11192a);
}

.site-header {
  background: rgba(255, 250, 241, 0.82);
  box-shadow: 0 10px 34px rgba(10, 16, 32, 0.06);
}

.brand img {
  transition: transform 240ms var(--ease), filter 240ms var(--ease);
}

.brand:hover img {
  transform: translateY(-1px) scale(1.015);
  filter: drop-shadow(0 10px 18px rgba(10, 16, 32, 0.12));
}

.nav-links {
  gap: clamp(14px, 2vw, 24px);
}

.nav-links a:not(.btn) {
  transition: color 180ms var(--ease), transform 180ms var(--ease);
}

.nav-links a:not(.btn):hover,
.nav-links a:not(.btn).is-active {
  color: var(--gold-strong);
  transform: translateY(-1px);
}

.nav-toggle,
.filter-btn,
.link-action,
summary {
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease);
}

.nav-toggle:hover,
.filter-btn:hover,
.link-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(10, 16, 32, 0.1);
}

.btn {
  isolation: isolate;
  border-color: rgba(201, 154, 61, 0.78);
  background: linear-gradient(135deg, #f6d783 0%, #d4a646 48%, #a8751f 100%);
  box-shadow: 0 14px 34px rgba(168, 117, 31, 0.26);
}

.btn:active,
.filter-btn:active,
.link-action:active,
.nav-toggle:active {
  transform: translateY(0) scale(0.98);
}

.btn--ghost,
.btn--line {
  backdrop-filter: blur(14px);
}

.hero__media {
  filter: saturate(0.92) contrast(1.06);
}

.hero__overlay {
  background:
    radial-gradient(circle at 20% 24%, rgba(201, 154, 61, 0.24), transparent 31rem),
    linear-gradient(90deg, rgba(5, 10, 20, 0.82), rgba(9, 15, 28, 0.48) 54%, rgba(9, 15, 28, 0.24)),
    linear-gradient(180deg, rgba(5, 10, 20, 0.04), rgba(5, 10, 20, 0.78));
}

.hero__blobs,
.hero__brushstroke {
  display: none;
}

.hero h1 {
  letter-spacing: -0.02em;
  text-wrap: balance;
  text-shadow: 0 16px 44px rgba(0, 0, 0, 0.34);
}

.hero p,
.section-head p,
.campaign p,
.contact p {
  text-wrap: pretty;
}

.hero-card,
.campaign-box,
.map-card,
.service-card,
.feature,
.process-step,
.testimonial,
details,
.final-cta__card {
  border-color: rgba(10, 16, 32, 0.1);
  box-shadow: var(--shadow-soft);
}

.hero-card {
  background: rgba(13, 20, 34, 0.58);
  backdrop-filter: blur(20px) saturate(1.12);
}

.hero-card div {
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 220ms var(--ease), background 220ms var(--ease);
}

.hero-card div:hover {
  transform: translateX(3px);
  background: rgba(255, 255, 255, 0.12);
}

.strip {
  background: linear-gradient(90deg, #071020, #10192b);
}

.section-head h2 {
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.service-card,
.feature,
.process-step,
.testimonial {
  position: relative;
  overflow: hidden;
}

.service-card::after,
.feature::after,
.process-step::after,
.testimonial::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), transparent 36%);
  opacity: 0;
  transition: opacity 220ms var(--ease);
}

.service-card:hover::after,
.feature:hover::after,
.process-step:hover::after,
.testimonial:hover::after {
  opacity: 1;
}

.service-card:hover,
.feature:hover,
.process-step:hover,
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 62px rgba(10, 16, 32, 0.14);
}

.service-card__body a svg,
.service-card__body > span svg,
.feature > svg,
.contact-cards svg {
  transition: transform 220ms var(--ease);
}

.service-card__body a:hover svg {
  transform: translateX(4px);
}

.feature:hover > svg,
.contact-cards a:hover svg {
  transform: scale(1.08) rotate(-3deg);
}

.campaign,
.contact {
  background-attachment: fixed;
}

.campaign-box,
.map-card {
  backdrop-filter: blur(18px);
}

.quote-form input,
.quote-form select {
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), transform 180ms var(--ease);
}

.quote-form input:hover,
.quote-form select:hover {
  border-color: rgba(201, 154, 61, 0.55);
}

.quote-form input:focus,
.quote-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 154, 61, 0.16);
  outline: none;
}

.stats {
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 154, 61, 0.16), transparent 30rem),
    linear-gradient(135deg, #080d18, #121c2d);
}

.gallery-item img {
  transition: transform 520ms var(--ease), filter 520ms var(--ease);
}

.gallery-item:hover img {
  filter: saturate(1.04) contrast(1.04);
}

details {
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), border-color 200ms var(--ease);
}

details:hover,
details[open] {
  transform: translateY(-2px);
  border-color: rgba(201, 154, 61, 0.3);
  box-shadow: 0 18px 46px rgba(10, 16, 32, 0.1);
}

.contact-cards a,
.contact-cards div,
.zone-list span {
  transition: transform 190ms var(--ease), background 190ms var(--ease), border-color 190ms var(--ease);
}

.contact-cards a:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 154, 61, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.zone-list span:hover {
  transform: translateY(-1px);
  border-color: rgba(201, 154, 61, 0.38);
}

.float-call,
.float-whatsapp,
.back-top {
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), opacity 180ms var(--ease), background 180ms var(--ease);
}

.float-whatsapp {
  overflow: visible;
  background: #05e158;
}

.float-whatsapp .icon-brand {
  width: 1.35em;
  height: 1.35em;
  background: url("assets/whatsapp-premium-clean.png") center / contain no-repeat;
  color: transparent;
  stroke: none;
  fill: none;
}

.float-whatsapp .icon-brand use {
  display: none;
}

.float-whatsapp .icon-brand {
  width: 32px;
  height: 32px;
}

.float-whatsapp::after {
  background: rgba(5, 225, 88, 0.18);
  animation: premiumPulse 2.8s var(--ease) infinite;
}

.float-call:hover,
.float-whatsapp:hover,
.back-top:hover {
  transform: translateY(-3px) scale(1.03);
}

.reveal {
  transform: translateY(18px) scale(0.985);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}

.reveal.is-visible {
  transform: translateY(0) scale(1);
}

@keyframes premiumPulse {
  0%, 100% {
    opacity: 0.32;
    transform: scale(1);
  }
  50% {
    opacity: 0.12;
    transform: scale(1.18);
  }
}

@media (max-width: 1050px) {
  .site-header {
    background: rgba(255, 250, 241, 0.94);
  }

  .nav-links {
    gap: 4px;
    border-radius: 0 0 22px 22px;
  }

  .nav-links a:not(.btn) {
    padding-inline: 10px;
  }

  .hero__content {
    gap: 32px;
  }

  .campaign,
  .contact {
    background-attachment: scroll;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 30px, var(--container));
  }

  .topbar__inner {
    min-height: 40px;
    gap: 10px;
  }

  .brand img {
    width: 154px;
  }

  .nav {
    min-height: 76px;
  }

  .nav-toggle {
    width: 48px;
    height: 48px;
  }

  .hero {
    min-height: 760px;
  }

  .hero__content {
    padding-block: 56px 88px;
  }

  .hero h1 {
    font-size: clamp(39px, 11vw, 52px);
  }

  .hero p {
    font-size: 17px;
  }

  .hero__actions {
    gap: 12px;
  }

  .hero__badges {
    gap: 10px;
  }

  .hero__badges span {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
  }

  .section,
  .gallery,
  .contact,
  .campaign {
    padding-block: 64px;
  }

  .section-head--center {
    text-align: left;
  }

  .section-head--center .eyebrow {
    justify-content: flex-start;
  }

  .filter-bar {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .filter-bar::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex: 0 0 auto;
    min-height: 46px;
  }

  .service-card:hover,
  .feature:hover,
  .process-step:hover,
  .testimonial:hover {
    transform: translateY(-3px);
  }

  .campaign-box,
  .map-card,
  .service-card__body,
  .feature,
  .process-step,
  .testimonial {
    padding: 22px;
  }

  .contact-cards a,
  .contact-cards div {
    min-height: 122px;
  }

  .float-call,
  .float-whatsapp,
  .back-top {
    width: 56px;
    height: 56px;
  }

  .float-whatsapp .icon-brand {
    width: 34px;
    height: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .float-whatsapp::after {
    animation: none;
  }
}

/* Final motion pass: requested scroll reveal, 100ms stagger, hover lift, glass header. */
.site-header {
  transition:
    background-color 300ms ease,
    backdrop-filter 300ms ease,
    box-shadow 300ms ease,
    border-color 300ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 241, 0.72);
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow: 0 18px 48px rgba(10, 16, 32, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-grid .reveal:nth-child(1),
.feature-grid .reveal:nth-child(1),
.testimonial-grid .reveal:nth-child(1),
.process-grid .reveal:nth-child(1),
.gallery-grid .reveal:nth-child(1),
.stats__grid .reveal:nth-child(1) {
  transition-delay: 0ms;
}

.service-grid .reveal:nth-child(2),
.feature-grid .reveal:nth-child(2),
.testimonial-grid .reveal:nth-child(2),
.process-grid .reveal:nth-child(2),
.gallery-grid .reveal:nth-child(2),
.stats__grid .reveal:nth-child(2) {
  transition-delay: 100ms;
}

.service-grid .reveal:nth-child(3),
.feature-grid .reveal:nth-child(3),
.testimonial-grid .reveal:nth-child(3),
.process-grid .reveal:nth-child(3),
.gallery-grid .reveal:nth-child(3),
.stats__grid .reveal:nth-child(3) {
  transition-delay: 200ms;
}

.service-grid .reveal:nth-child(4),
.feature-grid .reveal:nth-child(4),
.process-grid .reveal:nth-child(4),
.stats__grid .reveal:nth-child(4) {
  transition-delay: 300ms;
}

.service-grid .reveal:nth-child(5),
.feature-grid .reveal:nth-child(5) {
  transition-delay: 400ms;
}

.service-grid .reveal:nth-child(6) {
  transition-delay: 500ms;
}

.btn,
.link-action,
.filter-btn,
.service-card,
.feature,
.process-step,
.testimonial,
.gallery-item,
.contact-cards a,
.contact-cards div,
details {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.btn:hover,
.link-action:hover,
.filter-btn:hover,
.service-card:hover,
.feature:hover,
.process-step:hover,
.testimonial:hover,
.gallery-item:hover,
.contact-cards a:hover,
details:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 56px rgba(10, 16, 32, 0.14);
}

@media (max-width: 720px) {
  .site-header.is-scrolled {
    background: rgba(255, 250, 241, 0.88);
  }

  .reveal {
    transform: translateY(18px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .site-header.is-scrolled,
  .reveal,
  .btn,
  .link-action,
  .filter-btn,
  .service-card,
  .feature,
  .process-step,
  .testimonial,
  .gallery-item,
  .contact-cards a,
  .contact-cards div,
  details {
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Final button normalization + clearer stats count animation. */
.hero__actions .btn--ghost,
.hero__actions .btn--line,
.final-cta__actions .btn--white {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.final-cta__actions .btn--white {
  color: rgba(10, 16, 32, 0.82);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(10, 16, 32, 0.12);
}

.hero__actions .btn--ghost::before,
.hero__actions .btn--line::before,
.final-cta__actions .btn--white::before {
  display: none;
}

.hero__actions .btn--ghost:hover,
.hero__actions .btn--line:hover,
.final-cta__actions .btn--white:hover {
  transform: translateY(-4px);
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow: 0 16px 36px rgba(10, 16, 32, 0.16);
}

.final-cta__actions .btn--white:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(10, 16, 32, 0.18);
}

.stats strong {
  font-variant-numeric: tabular-nums;
}

.stat-num {
  min-width: 1.5ch;
  display: inline-block;
  transform-origin: center bottom;
}

.stat-num.is-counting {
  animation: statTick 0.6s ease both;
}

@keyframes statTick {
  0% {
    opacity: 0.72;
    transform: translateY(8px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Priority sections: price list first, customer reviews second. */
.pricing {
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  border-top: 1px solid rgba(201, 154, 61, 0.14);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
  margin-top: 36px;
}

.price-card {
  position: relative;
  display: grid;
  align-content: center;
  gap: 9px;
  min-height: 224px;
  padding: 30px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, var(--white), #fffdf8);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms ease;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0 18% auto;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: var(--gold);
}

.price-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 154, 61, 0.44);
  box-shadow: var(--shadow);
}

.price-card--featured {
  border-color: var(--ink);
  background: linear-gradient(145deg, var(--ink), var(--ink-2));
  box-shadow: 0 20px 48px rgba(10, 16, 32, 0.2);
  transform: translateY(-8px);
}

.price-card--featured:hover {
  transform: translateY(-13px);
}

.price-card__type {
  color: var(--gold-strong);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
}

.price-card strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
}

.price-card--featured .price-card__type,
.price-card--featured strong {
  color: var(--gold-soft);
}

.price-card strong small {
  font-family: var(--font-body);
  font-size: 0.42em;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.price-card > span:last-child {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.price-card--featured > span:last-child {
  color: rgba(255, 255, 255, 0.7);
}

/* The floating WhatsApp action uses the supplied SVG icon only. */
.float-whatsapp {
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  overflow: visible;
  padding: 3px;
  border: 2px solid rgba(255, 255, 255, 0.96);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(10, 16, 32, 0.2);
  transition: none;
}

.float-whatsapp::after,
.float-whatsapp .float-btn__ring {
  display: none;
}

.float-whatsapp:hover {
  transform: none;
}

.float-whatsapp__icon {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  stroke: none;
}

.hero-copy-title[data-typing="true"]::after,
.hero-copy-description[data-typing="true"]::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.82em;
  margin-left: 0.1em;
  vertical-align: -0.08em;
  background: currentColor;
  animation: hero-copy-caret 760ms steps(1, end) infinite;
}

@keyframes hero-copy-caret {
  0%,
  48% {
    opacity: 1;
  }

  49%,
  100% {
    opacity: 0;
  }
}

/* Keep the hero copy visible while its children animate independently. */
.hero__copy.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card--featured,
  .price-card--featured:hover {
    transform: none;
  }

  .float-whatsapp {
    right: 16px;
    bottom: 18px;
    width: 58px;
    height: 58px;
  }
}

/* ==========================================================
   MOBILE STABILITY PATCH
   Keeps the existing desktop design intact and only fixes
   responsive sizing, overflow, touch targets and small-screen
   layout issues.
   ========================================================== */

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  min-width: 0;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

@media (max-width: 1050px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .nav {
    gap: 16px;
  }

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

  .brand img {
    max-width: 100%;
    height: auto;
  }

  .nav-toggle {
    flex: 0 0 48px;
  }

  .nav-links {
    width: 100%;
    max-width: 100vw;
    max-height: calc(100dvh - 78px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links a,
  .nav-links .btn {
    min-width: 0;
  }

  .hero__content,
  .campaign__inner,
  .why__grid,
  .faq__grid,
  .contact__grid {
    min-width: 0;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 76px;
  }

  body.nav-open {
    position: relative;
    width: 100%;
    overflow: hidden;
    touch-action: none;
  }

  .container {
    width: calc(100% - 30px);
    max-width: var(--container);
  }

  .topbar {
    font-size: 12px;
  }

  .topbar__inner {
    min-height: 38px;
    justify-content: center;
    padding-inline: 0;
  }

  .site-header {
    width: 100%;
  }

  .nav {
    min-height: 76px;
    width: 100%;
  }

  .brand {
    overflow: hidden;
  }

  .brand img {
    width: 154px;
    max-width: 100%;
  }

  .nav-toggle {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    max-width: 100vw;
    max-height: calc(100dvh - 76px);
    padding: 10px 15px 20px;
    border-radius: 0 0 18px 18px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links a:not(.btn) {
    width: 100%;
    min-height: 50px;
    padding: 10px 8px;
  }

  .nav-links .btn {
    width: 100%;
    margin-top: 6px;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    width: calc(100% - 30px);
    padding-block: 58px 72px;
    gap: 30px;
  }

  .hero__copy {
    width: 100%;
    max-width: 100%;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(36px, 10.8vw, 52px);
    overflow-wrap: anywhere;
  }

  .hero p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero__actions,
  .hero__badges {
    width: 100%;
  }

  .hero__actions .btn,
  .hero__actions a,
  .final-cta__actions .btn {
    width: 100%;
    max-width: 100%;
  }

  .hero__badges {
    align-items: stretch;
  }

  .hero__badges span {
    max-width: 100%;
  }

  .hero-card {
    width: 100%;
    max-width: 100%;
  }

  .hero-card strong {
    font-size: 30px;
  }

  .section,
  .gallery,
  .contact,
  .campaign {
    padding-block: 62px;
  }

  .section-head,
  .section-head p,
  .campaign p,
  .contact p {
    max-width: 100%;
  }

  .section-head--center {
    width: 100%;
  }

  .section-head h2,
  .campaign h2,
  .contact h2,
  .final-cta__card h2 {
    overflow-wrap: anywhere;
  }

  .filter-bar {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    padding-inline: 1px;
    overscroll-behavior-x: contain;
  }

  .filter-btn {
    min-height: 46px;
    white-space: nowrap;
  }

  .service-grid,
  .testimonial-grid,
  .feature-grid,
  .process-grid,
  .stats__grid,
  .contact-cards,
  .footer__grid,
  .pricing-grid {
    width: 100%;
    min-width: 0;
    grid-template-columns: 1fr;
  }

  .service-card,
  .testimonial,
  .feature,
  .process-step,
  .price-card,
  .campaign-box,
  .map-card,
  details {
    min-width: 0;
    max-width: 100%;
  }

  .service-card__body,
  .testimonial,
  .feature,
  .process-step,
  .campaign-box,
  .map-card {
    overflow-wrap: anywhere;
  }

  .testimonial__person {
    min-width: 0;
  }

  .testimonial__person > div {
    min-width: 0;
  }

  .testimonial__person strong,
  .testimonial__person span {
    overflow-wrap: anywhere;
  }

  .testimonial-meta {
    align-items: stretch;
  }

  .testimonial-meta__score {
    min-width: 0;
    flex-wrap: wrap;
  }

  .testimonial-meta .btn {
    width: 100%;
  }

  .contact-cards a,
  .contact-cards div {
    width: 100%;
    min-height: 118px;
  }

  .zone-list {
    max-width: 100%;
  }

  .zone-list span {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .final-cta__card {
    width: 100%;
    padding: 42px 20px;
    border-radius: 18px;
  }

  .final-cta__card p {
    max-width: 100%;
    font-size: 16px;
  }

  .footer__grid {
    gap: 28px;
  }

  .footer__bottom {
    width: 100%;
  }

  .float-call,
  .float-whatsapp,
  .back-top {
    width: 54px;
    height: 54px;
  }

  .float-call {
    left: 14px;
    bottom: 16px;
  }

  .float-whatsapp {
    right: 14px;
    bottom: 16px;
  }

  .back-top {
    right: 14px;
    bottom: 82px;
  }
}

@media (max-width: 420px) {
  .container,
  .hero__content {
    width: calc(100% - 24px);
  }

  .brand img {
    width: 140px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .nav-links {
    top: 76px;
    padding-inline: 12px;
  }

  .hero__content {
    padding-block: 48px 64px;
  }

  .hero h1 {
    font-size: clamp(34px, 10.5vw, 44px);
  }

  .hero p {
    font-size: 15.5px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.11em;
  }

  .hero__badges {
    gap: 8px;
  }

  .hero__badges span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .section,
  .gallery,
  .contact,
  .campaign {
    padding-block: 54px;
  }

  .campaign-box,
  .map-card,
  .service-card__body,
  .feature,
  .process-step,
  .testimonial {
    padding: 19px;
  }

  summary {
    padding-inline: 17px;
  }

  details p {
    padding-inline: 17px;
  }

  .price-card {
    min-height: 190px;
    padding: 26px 18px;
  }

  .testimonial-meta {
    padding: 18px;
  }

  .testimonial-meta__score strong {
    font-size: 34px;
  }

  .float-call,
  .float-whatsapp,
  .back-top {
    width: 50px;
    height: 50px;
  }

  .float-call {
    left: 12px;
    bottom: 12px;
  }

  .float-whatsapp {
    right: 12px;
    bottom: 12px;
  }

  .back-top {
    right: 12px;
    bottom: 72px;
  }
}

@media (max-width: 720px) and (orientation: landscape) {
  .nav-links {
    max-height: calc(100dvh - 70px);
    top: 70px;
  }

  .nav {
    min-height: 70px;
  }

  .hero__content {
    padding-block: 44px 58px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .btn:hover,
  .link-action:hover,
  .filter-btn:hover,
  .service-card:hover,
  .feature:hover,
  .process-step:hover,
  .testimonial:hover,
  .gallery-item:hover,
  .contact-cards a:hover,
  details:hover {
    transform: none;
  }

  .service-card:hover img {
    transform: none;
  }
}


/* Mobile secondary hero buttons: keep the main CTA prominent. */
@media (max-width: 720px) {
  .hero__actions .btn--ghost,
  .hero__actions .btn--line {
    width: auto;
    min-height: 40px;
    padding: 9px 14px 8px;
    font-size: 14px;
    gap: 7px;
    flex: 0 0 auto;
  }

  .hero__actions > .btn:not(.btn--ghost):not(.btn--line) {
    width: 100%;
  }
}
