:root {
  --ink: #0a0b0b;
  --black: #030303;
  --carbon: #12100d;
  --graphite: #201c17;
  --steel: #d8d2c5;
  --silver: #b8afa0;
  --paper: #171511;
  --platinum: #211d17;
  --white: #ffffff;
  --gold: #b78a3b;
  --gold-soft: #e4bf67;
  --ice: #cabfadd;
  --action: #c9963f;
  --action-dark: #7b5420;
  --red: #b3261e;
  --line-dark: rgba(228, 191, 103, 0.16);
  --line-light: rgba(228, 191, 103, 0.15);
  --shadow-dark: 0 26px 80px rgba(0, 0, 0, 0.38);
  --shadow-light: 0 18px 42px rgba(0, 0, 0, 0.22);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

html.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-menu-locked {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button {
  border: 0;
}

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

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: 4.35rem;
  line-height: 0.98;
}

h2 {
  max-width: 790px;
  margin-bottom: 20px;
  font-size: 2.7rem;
  line-height: 1.08;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  line-height: 1.2;
}

p {
  margin-bottom: 0;
}

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

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link:focus {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--gold-soft);
  border-radius: 8px;
  font-weight: 800;
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: currentColor;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 12px max(20px, calc((100vw - var(--max)) / 2));
  background: rgba(3, 4, 5, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: rgba(3, 4, 5, 0.96);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

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

.brand-logo {
  width: 118px;
  height: auto;
  flex: 0 0 118px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25));
}

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

.brand-text strong {
  font-size: 0.98rem;
}

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

.site-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.site-nav a {
  position: relative;
  padding: 12px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--gold-soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  content: "";
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--white);
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only),
.menu-toggle span:not(.sr-only)::before,
.menu-toggle span:not(.sr-only)::after {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease;
  content: "";
}

.menu-toggle span:not(.sr-only)::before {
  transform: translateY(-7px);
}

.menu-toggle span:not(.sr-only)::after {
  transform: translateY(5px);
}

.site-header.is-menu-open .menu-toggle span:not(.sr-only) {
  transform: rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:not(.sr-only)::before {
  transform: translateY(0) rotate(90deg);
}

.site-header.is-menu-open .menu-toggle span:not(.sr-only)::after {
  transform: translateY(-2px) scaleX(0);
}

.header-cta,
.button,
.package-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.header-cta {
  color: var(--black);
  background: linear-gradient(135deg, #f2dc94, var(--action) 58%, var(--action-dark));
  box-shadow: 0 14px 36px rgba(215, 184, 94, 0.24);
}

.button-primary {
  color: var(--black);
  background: linear-gradient(135deg, #f5e29b, var(--gold-soft) 55%, #b58e43);
  box-shadow: var(--shadow-dark);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-dark);
}

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

.button:hover,
.header-cta:hover,
.package-action:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 86svh;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  background-image: url("assets/polimento-hero.png");
  background-position: center right;
  background-size: cover;
  transform: scale(1.02);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 4, 5, 0.98) 0%, rgba(3, 4, 5, 0.76) 44%, rgba(3, 4, 5, 0.16) 100%),
    linear-gradient(0deg, rgba(3, 4, 5, 0.48), rgba(3, 4, 5, 0.08));
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 86svh;
  padding: 74px 0 42px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--gold-soft);
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 780px;
  margin: 0;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(237, 241, 242, 0.08);
  backdrop-filter: blur(12px);
}

.hero-metrics div {
  min-height: 96px;
  padding: 18px;
  border-right: 1px solid var(--line-dark);
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics dt {
  color: var(--gold-soft);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

.hero-metrics dd {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.section {
  padding: 92px 0;
}

.section-light {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 12%, rgba(183, 138, 59, 0.1), transparent 34%),
    var(--platinum);
}

.section-paper {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    var(--paper);
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 0%, rgba(131, 215, 223, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    var(--ink);
}

.split,
.result-layout,
.proof-layout,
.contact-layout,
.location-layout,
.footer-layout {
  display: grid;
  gap: 44px;
}

.split {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 450px);
  align-items: start;
}

.section-copy p,
.result-copy p,
.proof-intro p,
.contact-copy p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.06rem;
}

.support-copy {
  margin-top: 16px;
}

.section-dark .section-heading h2,
.section-dark .section-heading p {
  color: inherit;
}

.section-heading {
  margin-bottom: 38px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.diagnostic-panel {
  display: grid;
  gap: 12px;
}

.diagnostic-panel article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 2px 16px;
  min-height: 118px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(228, 191, 103, 0.08), rgba(255, 255, 255, 0.035)), var(--carbon);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  box-shadow: var(--shadow-light);
}

.diagnostic-panel span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-radius: 8px;
  font-weight: 900;
}

.diagnostic-panel h3 {
  margin-bottom: 4px;
}

.diagnostic-panel p {
  color: rgba(255, 255, 255, 0.68);
}

.service-grid,
.package-grid,
.review-grid,
.process-grid,
.benefit-grid {
  display: grid;
  gap: 18px;
}

.service-grid,
.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.package-card,
.review-card,
.process-step,
.benefit-card,
.lead-form {
  border-radius: 8px;
}

.benefit-card {
  min-height: 280px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)), var(--graphite);
  border: 1px solid var(--line-dark);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.benefit-card span {
  color: var(--gold-soft);
}

.benefit-card span {
  display: inline-flex;
  margin-bottom: 36px;
  font-weight: 900;
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.68);
}

.service-card,
.package-card {
  min-height: 410px;
  padding: 26px;
  background: var(--carbon);
  border: 1px solid var(--line-dark);
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card-featured,
.package-featured {
  border-color: rgba(243, 207, 119, 0.7);
  background:
    linear-gradient(180deg, rgba(201, 148, 47, 0.2), rgba(21, 21, 21, 0.96) 46%),
    var(--carbon);
}

.service-number {
  display: inline-flex;
  width: max-content;
  margin-bottom: 34px;
  color: var(--gold-soft);
  font-weight: 900;
}

.service-card p,
.package-card p,
.review-card p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 26px 0 0;
  color: rgba(255, 255, 255, 0.8);
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 20px;
}

.service-card li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--gold-soft);
  border-radius: 50%;
  content: "";
}

.result-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  align-items: center;
}

.decision-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(420px, 1fr);
  gap: 44px;
  align-items: start;
}

.decision-layout p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.06rem;
}

.decision-grid {
  display: grid;
  gap: 14px;
}

.decision-grid article {
  min-height: 150px;
  padding: 22px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(131, 215, 223, 0.1), rgba(227, 199, 118, 0.08)),
    var(--carbon);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.decision-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.decision-grid h3 {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}

.process-step {
  min-height: 245px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)), var(--graphite);
  border: 1px solid var(--line-dark);
}

.process-step span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 32px;
  color: var(--black);
  background: var(--gold-soft);
  border-radius: 8px;
  font-weight: 900;
}

.process-step p {
  color: rgba(255, 255, 255, 0.68);
}

.results-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 1fr);
  gap: 36px;
  align-items: center;
}

.results-copy p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.06rem;
}

.result-photo {
  margin: 0;
  overflow: hidden;
  background: var(--graphite);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  box-shadow: var(--shadow-dark);
}

.result-photo img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
}

.result-photo figcaption {
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

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

.result-pillars article {
  min-height: 220px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)), var(--graphite);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.result-pillars span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--gold-soft);
  font-weight: 900;
}

.result-pillars p {
  color: rgba(255, 255, 255, 0.68);
}

.package-card {
  display: flex;
  flex-direction: column;
}

.package-tag {
  display: inline-flex;
  width: max-content;
  min-height: 30px;
  margin-bottom: 16px;
  padding: 6px 10px;
  color: var(--ink) !important;
  background: var(--gold-soft);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
}

.package-card h3 {
  font-size: 1.45rem;
}

.package-action {
  width: 100%;
  margin-top: auto;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line-dark);
}

.package-action.is-selected,
.package-action:hover {
  color: var(--ink);
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

.proof-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  align-items: start;
}

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

.review-card {
  min-height: 150px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)), var(--graphite);
  border: 1px solid var(--line-dark);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.review-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-weight: 900;
}

.review-card h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.15;
}

.review-card p {
  color: rgba(255, 255, 255, 0.68);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(380px, 1fr);
  gap: 44px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)), var(--graphite);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.faq-list summary {
  min-height: 64px;
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  padding: 0 22px 22px;
  color: rgba(255, 255, 255, 0.68);
}

.contact-layout {
  grid-template-columns: minmax(0, 0.86fr) minmax(380px, 0.78fr);
  align-items: start;
}

.section-dark .contact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-points {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  padding: 0;
  list-style: none;
}

.contact-points li {
  position: relative;
  min-height: 56px;
  padding: 16px 16px 16px 44px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(237, 241, 242, 0.06);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.contact-points li::before {
  position: absolute;
  top: 22px;
  left: 18px;
  width: 8px;
  height: 8px;
  background: var(--gold-soft);
  border-radius: 999px;
  content: "";
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: var(--carbon);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-dark);
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 48px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 12px 13px;
  outline: 0;
}

.form-row textarea {
  min-height: 108px;
  resize: vertical;
}

.choice-block,
.calendar-widget,
.time-widget {
  display: grid;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.choice-block > span,
.calendar-head,
.calendar-controls {
  display: flex;
  align-items: center;
}

.calendar-head {
  justify-content: space-between;
  gap: 12px;
}

.choice-block > span,
.calendar-head > span,
.time-widget > span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
}

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

.choice-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.calendar-controls {
  gap: 8px;
}

.calendar-controls button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  cursor: pointer;
}

.calendar-controls button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.calendar-controls strong {
  min-width: 118px;
  color: var(--gold-soft);
  font-size: 0.86rem;
  text-align: center;
  text-transform: capitalize;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.calendar-weekdays span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
}

.calendar-spacer {
  min-height: 34px;
}

.calendar-day {
  display: grid;
  place-items: center;
  min-height: 34px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.calendar-day.is-selected {
  color: var(--black);
  background: linear-gradient(135deg, #f2dc94, var(--action));
  border-color: transparent;
}

.calendar-day:disabled {
  color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(255, 255, 255, 0.08);
  cursor: not-allowed;
}

.calendar-day.is-sunday {
  text-decoration: line-through;
}

.calendar-note {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

.choice-block.is-invalid,
.calendar-widget.is-invalid,
.time-widget.is-invalid {
  border-color: #ffb4ab;
}

.choice-grid label,
.time-grid label {
  cursor: pointer;
}

.choice-grid input,
.time-grid input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.choice-grid span,
.time-grid span {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 8px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 900;
  text-align: center;
}

.choice-grid input:checked + span,
.time-grid input:checked + span {
  color: var(--black);
  background: linear-gradient(135deg, #f2dc94, var(--action));
  border-color: transparent;
}

.choice-grid input:focus-visible + span,
.time-grid input:focus-visible + span {
  outline: 3px solid var(--gold-soft);
  outline-offset: 3px;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 3px rgba(243, 207, 119, 0.18);
}

.form-row input.is-invalid,
.form-row select.is-invalid,
.form-row textarea.is-invalid {
  border-color: #ffb4ab;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  min-height: 22px;
  color: var(--gold-soft);
  font-size: 0.9rem;
}

.form-status.is-error {
  color: #ffb4ab;
}

.location-layout {
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  align-items: center;
}

.location-layout address {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

.map-frame {
  overflow: hidden;
  min-height: 360px;
  background: #dfe5e7;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  box-shadow: var(--shadow-light);
}

.map-frame iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

.site-footer {
  padding: 58px 0;
  background: var(--black);
  border-top: 1px solid var(--line-dark);
}

.footer-layout {
  grid-template-columns: 1.25fr 0.8fr 0.8fr 1fr;
  align-items: start;
}

.footer-brand {
  margin-bottom: 16px;
}

.site-footer p,
.site-footer address {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer address,
.footer-links {
  display: grid;
  gap: 8px;
  font-style: normal;
}

.site-footer strong {
  color: var(--white);
}

.agency-credit {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(237, 241, 242, 0.055);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.agency-credit img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 8px;
}

.agency-credit span,
.agency-credit a {
  display: block;
}

.agency-cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  min-height: 38px;
  padding: 9px 12px;
  width: max-content;
  max-width: 100%;
  color: var(--black) !important;
  background: linear-gradient(135deg, #f2dc94, var(--action));
  border-radius: 8px;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.54);
  border-top: 1px solid var(--line-dark);
  font-size: 0.86rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--black);
  background: linear-gradient(135deg, #f2dc94, var(--action) 58%, var(--action-dark));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.floating-whatsapp .icon {
  width: 28px;
  height: 28px;
}

.legal-page {
  min-height: 100svh;
}

.legal-page h1 {
  max-width: 760px;
  color: var(--white);
  font-size: 3rem;
}

.legal-page p {
  max-width: 820px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.legal-page .button {
  margin-top: 18px;
}

:focus-visible {
  outline: 3px solid var(--gold-soft);
  outline-offset: 3px;
}

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

  html.js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .site-header {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .brand {
    min-width: 0;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    order: 3;
  }

  .header-cta {
    order: 2;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px 20px 22px;
    background: rgba(5, 5, 5, 0.98);
    border-bottom: 1px solid var(--line-dark);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-menu-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    min-height: 48px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .split,
  .result-layout,
  .results-showcase,
  .decision-layout,
  .proof-layout,
  .faq-layout,
  .contact-layout,
  .location-layout,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .package-grid,
  .process-grid,
  .benefit-grid,
  .result-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .site-header {
    min-height: 68px;
    padding: 10px 14px;
    gap: 10px;
  }

  .brand-logo {
    width: 92px;
    flex-basis: 92px;
  }

  .brand-text small {
    display: none;
  }

  .brand-text strong {
    font-size: 0.88rem;
  }

  .header-cta {
    min-height: 42px;
    padding: 10px 12px;
  }

  .header-cta span {
    display: none;
  }

  .site-nav {
    top: 68px;
  }

  .hero,
  .hero-content {
    min-height: 82svh;
  }

  .hero-content {
    padding: 58px 0 32px;
  }

  .hero-media {
    background-position: 63% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 4, 5, 0.99) 0%, rgba(3, 4, 5, 0.82) 62%, rgba(3, 4, 5, 0.3) 100%),
      linear-gradient(0deg, rgba(3, 4, 5, 0.58), rgba(3, 4, 5, 0.14));
  }

  h1 {
    font-size: 2.55rem;
    line-height: 1.02;
  }

  h2 {
    font-size: 1.82rem;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-metrics,
  .service-grid,
  .package-grid,
  .process-grid,
  .review-grid,
  .benefit-grid,
  .result-pillars {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    min-height: 78px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .hero-metrics div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 66px 0;
  }

  .service-card,
  .package-card,
  .process-step,
  .benefit-card,
  .result-pillars article {
    min-height: auto;
  }

  .lead-form {
    padding: 16px;
  }

  .map-frame,
  .map-frame iframe {
    height: 320px;
    min-height: 320px;
  }

  .choice-grid,
  .choice-grid-3,
  .time-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .decision-grid article {
    min-height: auto;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 430px) {
  .brand-text {
    display: none;
  }

  .brand-logo {
    width: 104px;
    flex-basis: 104px;
  }

  h1 {
    font-size: 2.22rem;
  }

  h2 {
    font-size: 1.62rem;
  }

  .hero-content {
    padding-top: 44px;
  }
}
