:root {
  --yellow: #ffd028;
  --yellow-deep: #ffbb00;
  --yellow-soft: #ffe699;
  --success: #3f8d24;
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --container: min(1200px, calc(100% - 32px));
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --text: #f2efe6;
  --muted: #bdb49d;
  --bg:
    radial-gradient(circle at 15% 0%, rgba(255, 208, 40, 0.18), transparent 24%),
    radial-gradient(circle at 100% 22%, rgba(255, 208, 40, 0.08), transparent 18%),
    linear-gradient(180deg, #050505 0%, #0b0b0b 48%, #080808 100%);
  --grid-line: rgba(255, 255, 255, 0.02);
  --ambient-line: rgba(255, 208, 40, 0.03);
  --header-bg: rgba(8, 8, 8, 0.78);
  --header-border: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 208, 40, 0.18);
  --line-strong: rgba(255, 208, 40, 0.34);
  --surface: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  --surface-strong:
    linear-gradient(180deg, rgba(255, 208, 40, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  --surface-panel: #141414;
  --surface-panel-strong:
    linear-gradient(180deg, rgba(255, 208, 40, 0.14), rgba(255, 255, 255, 0.02)),
    #141414;
  --card-border: rgba(255, 255, 255, 0.08);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --ghost-bg: rgba(255, 255, 255, 0.03);
  --ghost-border: rgba(255, 255, 255, 0.12);
  --outline-bg: rgba(255, 208, 40, 0.08);
  --signal-bg: rgba(255, 255, 255, 0.03);
  --badge-bg: rgba(8, 8, 8, 0.82);
  --field-bg: rgba(255, 255, 255, 0.04);
  --field-bg-focus: rgba(255, 255, 255, 0.06);
  --field-border: rgba(255, 255, 255, 0.1);
  --placeholder: #968f7d;
}

:root[data-theme="light"] {
  color-scheme: light;
  --text: #181511;
  --muted: #5d5345;
  --bg:
    radial-gradient(circle at 10% 0%, rgba(255, 208, 40, 0.25), transparent 22%),
    radial-gradient(circle at 100% 14%, rgba(255, 208, 40, 0.16), transparent 16%),
    linear-gradient(180deg, #fffdf7 0%, #f5efdf 52%, #fff9eb 100%);
  --grid-line: rgba(24, 21, 17, 0.04);
  --ambient-line: rgba(255, 208, 40, 0.08);
  --header-bg: rgba(255, 250, 240, 0.82);
  --header-border: rgba(24, 21, 17, 0.08);
  --line: rgba(180, 123, 0, 0.18);
  --line-strong: rgba(180, 123, 0, 0.34);
  --surface: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 232, 0.85));
  --surface-strong:
    linear-gradient(180deg, rgba(255, 208, 40, 0.12), rgba(255, 255, 255, 0.88)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 226, 0.84));
  --surface-panel: #fff9eb;
  --surface-panel-strong:
    linear-gradient(180deg, rgba(255, 208, 40, 0.2), rgba(255, 255, 255, 0.92)),
    #fff9eb;
  --card-border: rgba(24, 21, 17, 0.09);
  --shadow: 0 24px 60px rgba(62, 45, 12, 0.12);
  --ghost-bg: rgba(255, 255, 255, 0.55);
  --ghost-border: rgba(24, 21, 17, 0.1);
  --outline-bg: rgba(255, 208, 40, 0.14);
  --signal-bg: rgba(255, 255, 255, 0.62);
  --badge-bg: rgba(255, 249, 235, 0.92);
  --field-bg: rgba(255, 255, 255, 0.78);
  --field-bg-focus: rgba(255, 255, 255, 0.98);
  --field-border: rgba(24, 21, 17, 0.12);
  --placeholder: #7a6f5f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: var(--bg);
  transition: background-color 0.25s ease, color 0.25s ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 8%, var(--ambient-line) 8% 8.25%, transparent 8.25% 100%),
    linear-gradient(180deg, transparent 0 74%, var(--ambient-line) 74% 74.25%, transparent 74.25% 100%);
  z-index: -2;
}

.page-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  z-index: -1;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 94%);
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background:
    linear-gradient(90deg, rgba(255, 208, 40, 0.05), transparent 22%),
    var(--header-bg);
  border-bottom: 1px solid var(--header-border);
}

.nav-bar,
.hero-shell,
.structure-grid,
.contact-shell,
.footer-bar,
.section-top {
  display: grid;
  gap: 24px;
}

.nav-bar {
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  min-height: 88px;
  padding: 12px 0;
}

.brand-logo {
  width: 172px;
  height: auto;
}

.site-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 5px;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  background: var(--ghost-bg);
  font-size: 0.82rem;
  font-weight: 600;
}

.site-nav a {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--muted);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--yellow-deep);
  background: var(--outline-bg);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle,
.nav-quote {
  display: none;
}

.site-nav .nav-quote {
  display: none;
}

.theme-toggle,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 700;
  color: inherit;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.theme-toggle {
  gap: 10px;
  border-color: var(--card-border);
  background: var(--ghost-bg);
  font-size: 0.82rem;
}

.theme-toggle-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-deep) 100%);
  box-shadow: 0 0 0 4px rgba(255, 208, 40, 0.16);
}

.theme-toggle-bulb {
  display: none;
  color: var(--yellow-deep);
}

.theme-toggle-bulb svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.button-solid {
  color: #0a0a0a;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-deep) 100%);
  box-shadow: 0 18px 36px rgba(255, 187, 0, 0.2);
}

.button-outline {
  border-color: transparent;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-deep) 100%);
  color: #0a0a0a;
  box-shadow: 0 12px 24px rgba(255, 187, 0, 0.16);
}

.button-ghost {
  border-color: var(--ghost-border);
  background: var(--ghost-bg);
}

.button-full {
  width: 100%;
}

.hero {
  padding: 56px 0 26px;
}

.hero-shell {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.35;
  color: var(--yellow-deep);
}

.hero h1,
.section-top h2,
.manifesto-panel h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
}

.hero h1 {
  max-width: 13ch;
  font-size: clamp(2.55rem, 4.5vw, 4.6rem);
  letter-spacing: -0.035em;
}

.hero-text,
.section-lead,
.service-main p,
.board-card p,
.manifesto-panel p,
.value-card p,
.coverage-list li,
.quote-card p,
.contact-item p,
.form-feedback,
.footer-bar p {
  color: var(--muted);
}

.hero-text {
  max-width: 52ch;
  margin: 18px 0 26px;
  font-size: 0.96rem;
  line-height: 1.7;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-ticker span,
.service-tags li,
.board-label,
.hero-badge {
  border: 1px solid var(--line);
  background: var(--outline-bg);
  color: var(--yellow-deep);
}

.hero-ticker span {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-certifications {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.hero-certifications img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.hero-visual {
  display: grid;
  gap: 18px;
  align-items: end;
  justify-items: center;
}

.hero-portrait {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: end;
  min-height: 580px;
}

.hero-board,
.service-line,
.manifesto-panel,
.value-card,
.coverage-panel,
.quote-card,
.contact-form,
.contact-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-board::before,
.service-line::before,
.manifesto-panel::before,
.value-card::before,
.coverage-panel::before,
.quote-card::before,
.contact-form::before,
.contact-item::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), transparent);
}

.hero-photo {
  width: min(100%, 570px);
  max-height: 620px;
  object-fit: contain;
  object-position: bottom center;
}

.hero-status-bar {
  width: min(100%, 510px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-radius: 22px;
  background: var(--outline-bg);
  box-shadow: var(--shadow);
}

.hero-status-bar > div {
  padding: 15px 16px;
  background: var(--surface-panel);
}

.hero-status-bar span {
  display: block;
  margin-bottom: 6px;
  color: var(--yellow-deep);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.hero-status-bar strong {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 1.08rem;
  line-height: 1.2;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 20px 0 14px;
  border-radius: 999px;
  background: #25d366;
  color: #07180d;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.34), 0 8px 18px rgba(0, 0, 0, 0.26);
  animation: whatsapp-float 3.2s ease-in-out infinite;
}

.floating-whatsapp img {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
}

.floating-whatsapp span:last-child {
  position: relative;
  z-index: 1;
}

.floating-whatsapp-pulse {
  position: absolute;
  inset: -5px;
  border: 2px solid rgba(37, 211, 102, 0.65);
  border-radius: inherit;
  animation: whatsapp-pulse 2.4s ease-out infinite;
}

.mobile-quote-bar {
  position: fixed;
  right: 16px;
  bottom: 14px;
  left: 16px;
  z-index: 31;
  display: none;
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-deep));
  color: #0b0b0b;
  font: inherit;
  font-weight: 900;
  box-shadow: 0 18px 46px rgba(255, 208, 40, 0.34), 0 10px 26px rgba(0, 0, 0, 0.34);
  cursor: pointer;
}

body.modal-open .mobile-quote-bar {
  display: none;
}

body.modal-open {
  overflow: hidden;
}

.quote-modal[hidden] {
  display: none;
}

.quote-modal {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.quote-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.quote-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  padding: 38px;
  border: 1px solid var(--card-border);
  border-radius: 28px;
  background: var(--surface-panel);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.58);
  text-align: center;
}

.quote-modal-close,
.quote-back {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.quote-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--card-border);
  border-radius: 50%;
  font-size: 1.55rem;
  line-height: 1;
}

.quote-modal h2 {
  max-width: 18ch;
  margin: 0 auto;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.95rem, 4vw, 2.8rem);
  line-height: 1;
  text-transform: uppercase;
}

.quote-modal-lead {
  margin: 14px 0 26px;
  color: var(--muted);
  line-height: 1.65;
}

.quote-type-grid,
.quote-service-grid {
  display: grid;
  gap: 12px;
}

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

.quote-type-card,
.quote-service-option,
.quote-emergency {
  border: 1px solid var(--card-border);
  background: var(--ghost-bg);
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.quote-type-card:hover,
.quote-type-card:focus-visible,
.quote-service-option:hover,
.quote-service-option:focus-visible,
.quote-service-option[aria-pressed="true"] {
  border-color: var(--line-strong);
  background: var(--outline-bg);
  transform: translateY(-2px);
}

.quote-type-card {
  display: grid;
  min-height: 145px;
  align-content: start;
  justify-items: center;
  gap: 10px;
  padding: 20px;
  border-radius: 18px;
  text-align: center;
}

.quote-type-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 2px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: var(--outline-bg);
  color: var(--yellow-deep);
}

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

.quote-type-card strong {
  font-family: "Oswald", sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.quote-type-card span,
.quote-service-option span {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.quote-emergency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  margin-top: 14px;
  padding: 16px 18px;
  border-color: transparent;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-deep) 100%);
  color: #0a0a0a;
  box-shadow: 0 12px 24px rgba(255, 187, 0, 0.16);
}

.quote-emergency span {
  color: inherit;
  font-weight: 800;
}

.quote-emergency strong {
  font-size: 0.86rem;
}

.quote-back {
  margin: 0 0 24px;
  padding: 0;
}

.quote-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 22px;
}

.quote-service-option {
  min-height: 94px;
  padding: 14px;
  border-radius: 14px;
  text-align: center;
}

.quote-service-option strong,
.quote-service-option span {
  display: block;
}

.quote-service-option strong {
  margin-bottom: 7px;
  font-size: 0.9rem;
}

.quote-submit {
  width: 100%;
}

.quote-submit:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  box-shadow: none;
}

@keyframes whatsapp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes whatsapp-pulse {
  0% { opacity: 0.7; transform: scale(0.9); }
  70%, 100% { opacity: 0; transform: scale(1.16); }
}

.signal-strip {
  padding: 16px 0 0;
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.signal-row p {
  margin: 0;
  padding: 10px 14px;
  border-left: 3px solid var(--yellow);
  background: var(--signal-bg);
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 92px 0;
}

.section-top {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: end;
  margin-bottom: 30px;
}

.section-top h2,
.manifesto-panel h2,
.contact-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  max-width: 11ch;
}

.section-lead {
  margin: 0;
  line-height: 1.82;
}

.service-lines {
  display: grid;
  gap: 18px;
}

.solutions .section-top {
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.solutions .section-top h2 {
  max-width: 15ch;
  margin-inline: auto;
}

.solutions .section-lead {
  max-width: 62ch;
  margin-inline: auto;
}

.solutions .service-lines {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.solutions .service-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 310px;
  padding: 24px 20px 20px;
  border-radius: 16px;
  gap: 18px;
  text-align: center;
}

.solutions .service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--outline-bg);
  color: var(--yellow-deep);
}

.solutions .service-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.solutions .service-main {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.solutions .service-main h3 {
  font-size: 1.08rem;
  line-height: 1.3;
}

.solutions .service-main p {
  font-size: 0.88rem;
  line-height: 1.65;
}

.solutions .service-tags {
  justify-content: center;
  margin-top: auto;
}

.solutions .service-tags li {
  padding: 7px 9px;
  font-size: 0.72rem;
}

.solutions .service-booking {
  width: 100%;
  min-height: 42px;
  margin-top: 2px;
  padding-inline: 12px;
  font-size: 0.78rem;
}

.gallery-heading {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}

.gallery-heading h2 {
  max-width: 17ch;
  margin: 0 auto;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.1;
}

.gallery-heading > p:last-child {
  max-width: 62ch;
  margin: 16px auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.gallery-card {
  position: relative;
  min-height: 205px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-radius: 20px;
  background: var(--surface-panel);
  cursor: pointer;
}

.gallery-card:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, opacity 0.2s ease;
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 22%, rgba(0, 0, 0, 0.88) 100%);
  content: "";
}

.gallery-card:hover img {
  transform: scale(1.045);
}

.gallery-card.is-switching img {
  opacity: 0.42;
}

.gallery-card > div {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 20px;
  left: 22px;
  text-align: center;
}

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

.gallery-card span {
  margin-bottom: 7px;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-card strong {
  max-width: 24ch;
  margin-inline: auto;
  font-size: 0.92rem;
  line-height: 1.4;
}

.gallery-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: right;
}

.service-line {
  display: grid;
  grid-template-columns: 90px minmax(0, 1.2fr) minmax(220px, 0.8fr);
  align-items: center;
  gap: 24px;
  padding: 22px 24px;
  border-radius: 30px 14px 30px 14px;
}

.service-index,
.value-card span,
.quote-mark {
  font-family: "Oswald", sans-serif;
  font-size: 2.1rem;
  color: var(--yellow-deep);
}

.service-main h3,
.value-card h3,
.coverage-panel h3,
.quote-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.service-main p,
.manifesto-panel p,
.value-card p,
.quote-card p,
.contact-item p {
  margin: 0;
  line-height: 1.76;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: flex-end;
}

.service-tags li {
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
}

.structure-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.7fr) minmax(260px, 0.65fr);
  align-items: start;
}

.structure-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
  gap: 20px;
}

.structure-grid .manifesto-panel {
  grid-column: 1;
  grid-row: 1;
  min-height: 100%;
}

.structure-grid .coverage-panel {
  grid-column: 2;
  grid-row: 1;
  min-height: 100%;
}

.structure-grid .value-column {
  grid-column: 1 / -1;
  grid-row: 2;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.structure-grid .value-card {
  min-height: 185px;
  padding: 26px;
}

.manifesto-panel h2 {
  max-width: 13ch;
  font-size: clamp(2.35rem, 3.6vw, 3.85rem);
}

.manifesto-panel,
.coverage-panel,
.contact-form {
  padding: 30px;
  border-radius: var(--radius-xl);
}

.manifesto-quote {
  margin: 26px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  color: var(--yellow-deep);
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  line-height: 1.38;
}

.value-column {
  display: grid;
  gap: 18px;
}

.value-card,
.quote-card,
.contact-item {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.value-card span,
.quote-mark {
  display: inline-block;
  margin-bottom: 12px;
}

.coverage-panel ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.coverage-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  line-height: 1.72;
}

.coverage-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 208, 40, 0.12);
}

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

.testimonials-intro {
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.testimonials-intro h2 {
  max-width: 16ch;
  margin-inline: auto;
}

.testimonials-intro .section-lead {
  max-width: 56ch;
  margin: 16px auto 0;
}

.google-review-score {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 20px;
  border: 1px solid var(--card-border);
  border-radius: 18px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.quote-rack + .google-review-score {
  display: flex;
  width: fit-content;
  margin: 28px auto 0;
}

.google-review-score:hover,
.google-review-score:focus-visible {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}

.google-review-icon,
.reviewer > span {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-deep));
  color: #111;
  font-weight: 800;
}

.google-review-icon {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  font-size: 1.2rem;
}

.google-score-number {
  color: var(--yellow-deep);
  font-family: "Oswald", sans-serif;
  font-size: 1.65rem;
  line-height: 1;
}

.google-score-label {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
}

.google-score-stars {
  color: var(--yellow);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
}

.quote-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border-radius: 20px;
}

.quote-card-shift {
  transform: none;
}

.quote-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.quote-stars {
  color: var(--yellow);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.quote-card-top span {
  color: var(--muted);
  font-size: 0.78rem;
}

.quote-card > p {
  margin: 24px 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.reviewer > span {
  width: 34px;
  height: 34px;
  font-size: 0.72rem;
}

.reviewer h3 {
  margin: 0;
  font-size: 0.95rem;
}

.contact-shell {
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1fr);
  align-items: start;
}

.contact-copy h2 {
  max-width: 13ch;
  font-size: clamp(2.3rem, 3.6vw, 3.85rem);
}

.contact-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.contact-item span,
.form-row label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--yellow-deep);
}

.contact-item strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.2;
}

.contact-form {
  display: grid;
  gap: 18px;
  background: var(--surface-strong);
}

.form-heading {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
}

.form-heading span {
  display: block;
  margin-bottom: 7px;
  color: var(--yellow-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.form-heading h3 {
  margin: 0 0 16px;
  font-size: 1.2rem;
}

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

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

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--field-border);
  border-radius: 16px;
  padding: 16px 18px;
  background: var(--field-bg);
  color: var(--text);
  font: inherit;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--placeholder);
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 4px rgba(255, 208, 40, 0.1);
  background: var(--field-bg-focus);
}

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

.form-feedback {
  margin: 0;
  font-size: 0.94rem;
}

.form-feedback.is-success {
  color: var(--success);
}

.site-footer {
  padding: 58px 0 26px;
  border-top: 1px solid var(--header-border);
  background: rgba(255, 255, 255, 0.015);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(150px, 0.6fr) minmax(240px, 0.7fr);
  gap: 48px;
  padding-bottom: 38px;
}

.footer-brand img {
  width: 150px;
  margin-bottom: 18px;
}

.footer-brand p,
.footer-contact p,
.footer-bottom p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.footer-brand p {
  max-width: 55ch;
}

.footer-brand span {
  display: block;
  margin-top: 16px;
  color: var(--yellow-deep);
  font-size: 0.86rem;
  font-weight: 700;
}

.footer-certifications {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-certifications img {
  width: 76px;
  height: 76px;
  margin: 0;
  object-fit: contain;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-item svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--yellow-deep);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.footer-links h3,
.footer-contact h3 {
  margin: 0 0 7px;
  font-size: 1rem;
}

.footer-links a,
.footer-contact a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--yellow-deep);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--header-border);
}

.footer-bottom > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.footer-bottom p {
  font-size: 0.82rem;
}

@media (max-width: 1180px) {
  .hero-shell,
  .structure-grid,
  .contact-shell,
  .section-top,
  .footer-bar {
    grid-template-columns: 1fr;
  }

  .quote-card-shift {
    transform: none;
  }

  .footer-bar > p {
    text-align: left;
  }

  .structure-grid .manifesto-panel,
  .structure-grid .coverage-panel,
  .structure-grid .value-column {
    grid-column: auto;
    grid-row: auto;
  }

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

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

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

  .footer-main {
    grid-template-columns: minmax(0, 1fr) minmax(180px, 0.7fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .nav-bar {
    grid-template-columns: auto 1fr auto;
    justify-items: stretch;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid var(--card-border);
    border-radius: 999px;
    background: var(--ghost-bg);
    color: var(--text);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
  }

  .menu-toggle-icon,
  .menu-toggle-icon::before,
  .menu-toggle-icon::after {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .menu-toggle-icon {
    position: relative;
  }

  .menu-toggle-icon::before,
  .menu-toggle-icon::after {
    position: absolute;
    left: 0;
    content: "";
  }

  .menu-toggle-icon::before { top: -6px; }
  .menu-toggle-icon::after { top: 6px; }

  .menu-toggle[aria-expanded="true"] .menu-toggle-icon { background: transparent; }
  .menu-toggle[aria-expanded="true"] .menu-toggle-icon::before { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle-icon::after { transform: translateY(-6px) rotate(-45deg); }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    margin-top: 8px;
    padding: 12px 0 4px;
    border-top: 1px solid var(--header-border);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .site-nav.is-open { display: flex; }

  .site-nav a:not(.nav-quote) { padding: 11px 0; }

  .site-nav .nav-quote { display: inline-flex; margin-top: 8px; }

  .header-actions { display: none; }

  .hero-status-bar,
  .quote-rack,
  .contact-rail {
    grid-template-columns: 1fr;
  }

  .form-row-grid {
    grid-template-columns: 1fr;
  }

  .service-line {
    grid-template-columns: 1fr;
  }

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

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

  .service-tags {
    justify-content: flex-start;
  }

  .structure-grid .value-column {
    grid-template-columns: 1fr;
  }

  .structure-grid .value-card {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 82px;
  }

  .section {
    padding: 74px 0;
  }

  .hero {
    padding-top: 42px;
    text-align: center;
  }

  .hero h1 {
    max-width: none;
    font-size: 2.95rem;
  }

  .eyebrow,
  .hero-text,
  .section-lead,
  .manifesto-panel p,
  .coverage-panel p,
  .contact-copy p,
  .footer-brand p {
    text-align: center;
  }

  .hero-text {
    margin-inline: auto;
  }

  .hero-actions,
  .contact-actions {
    justify-content: center;
  }

  .hero-actions .button-solid[data-whatsapp-link] {
    display: none;
  }

  .hero-certifications,
  .footer-certifications,
  .service-tags {
    justify-content: center;
  }

  .hero-certifications {
    margin-top: 28px;
  }

  .hero-certifications img {
    width: 104px;
    height: 104px;
  }

  .section-top,
  .section-top > div,
  .service-line,
  .service-main,
  .manifesto-panel,
  .coverage-panel,
  .value-card,
  .review-card,
  .contact-copy,
  .contact-item,
  .footer-brand,
  .footer-links,
  .footer-contact {
    text-align: center;
  }

  .service-icon {
    margin-inline: auto;
  }

  .solutions .service-lines {
    grid-template-columns: 1fr;
  }

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

  .gallery-card:nth-child(n + 5) {
    display: none;
  }

  .gallery-card {
    min-height: 240px;
  }

  .gallery-note {
    max-width: 34ch;
    margin-inline: auto;
    text-align: center;
  }

  .solutions .service-line {
    min-height: auto;
  }

  .nav-bar {
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    min-height: 70px;
    padding-block: 8px;
    align-items: center;
  }

  .brand-logo { width: 118px; }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .menu-toggle-label { display: none; }

  .menu-toggle {
    grid-column: 2;
    grid-row: 1;
    width: 42px;
    min-height: 42px;
    padding: 0;
    justify-content: center;
    justify-self: center;
  }

  .menu-toggle-icon,
  .menu-toggle-icon::before,
  .menu-toggle-icon::after {
    width: 18px;
  }

  .theme-toggle {
    width: 42px;
    min-width: 42px;
    min-height: 42px;
    padding: 0;
    gap: 0;
  }

  .theme-toggle-dot {
    display: none;
  }

  .theme-toggle-bulb {
    display: inline-flex;
  }

  .header-actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    display: flex;
  }

  .theme-toggle [data-theme-label],
  .header-actions .button-outline,
  .site-nav .nav-quote {
    display: none;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
    align-items: center;
    width: min(100%, 330px);
    margin: 10px auto 2px;
    padding: 16px;
    border: 1px solid var(--card-border);
    border-radius: 26px;
    background:
      linear-gradient(180deg, rgba(255, 208, 40, 0.06), rgba(255, 255, 255, 0.02)),
      var(--surface-panel);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.26);
    text-align: center;
  }

  .site-nav a,
  .site-nav .nav-quote {
    justify-content: center;
    width: 100%;
  }

  .site-nav a:not(.nav-quote) {
    padding: 12px 16px;
    border: 1px solid transparent;
    border-radius: 16px;
    font-size: 0.9rem;
  }

  .site-nav a:not(.nav-quote):hover,
  .site-nav a:not(.nav-quote):focus-visible {
    border-color: var(--line);
  }

  .hero-portrait {
    min-height: 420px;
  }

  .hero-photo {
    max-height: 440px;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-quote-bar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-brand > img {
    margin-inline: auto;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom > div,
  .footer-contact-item {
    justify-content: center;
  }

  .quote-modal {
    padding: 12px;
  }

  .quote-modal-dialog {
    max-height: calc(100vh - 24px);
    padding: 32px 20px 22px;
    border-radius: 22px;
  }

  .quote-type-grid,
  .quote-service-grid {
    grid-template-columns: 1fr;
  }

  .quote-type-card {
    min-height: 92px;
  }

  .quote-emergency {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .theme-toggle,
  .button,
  .button-full {
    width: 100%;
  }

  .site-header .theme-toggle,
  .site-header .menu-toggle {
    width: 42px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

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

@media (prefers-reduced-motion: reduce) {
  .floating-whatsapp,
  .floating-whatsapp-pulse {
    animation: none;
  }
}
