:root {
  --navy: #102a43;
  --navy-dark: #0b1f31;
  --navy-soft: #1f4e6d;
  --orange: #f26a2e;
  --orange-dark: #d95018;
  --yellow: #f7b32b;
  --white: #ffffff;
  --muted: #f4f7f8;
  --pale-blue: #dce8ef;
  --text: #17212b;
  --body: #586d7b;
  --border: #dce8ef;
  --shadow: 0 16px 40px rgba(16, 42, 67, 0.1);
  --shadow-small: 0 8px 24px rgba(16, 42, 67, 0.08);
  --radius: 16px;
  --container: 1200px;
  --font: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

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

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

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

h1,
h2,
h3 {
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5vw, 3.75rem);
  line-height: 1.04;
}

h1 span {
  color: var(--orange);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.12;
}

h3 {
  line-height: 1.25;
}

p {
  color: var(--body);
}

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

.section {
  padding: 88px 0;
}

.section-muted {
  background: var(--muted);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-heading {
  max-width: 750px;
  margin-bottom: 48px;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

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

.section-heading.centered > p:last-child {
  margin-inline: auto;
}

.lead-copy {
  max-width: 690px;
  font-size: 1.08rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 200ms ease, background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 10px 22px rgba(242, 106, 46, 0.23);
}

.button-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 13px 28px rgba(242, 106, 46, 0.28);
}

.button-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: #c5d5df;
}

.button-secondary:hover {
  border-color: var(--navy-soft);
}

.button-large {
  min-height: 54px;
  padding: 15px 24px;
}

.button-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
}

.text-link span {
  color: var(--orange);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.section-action {
  margin-top: 42px;
  text-align: center;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  min-height: 80px;
  align-items: center;
  gap: 28px;
}

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

.brand-symbol {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--navy);
}

.brand-symbol svg {
  width: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.brand-symbol .brand-accent {
  stroke: var(--orange);
  stroke-width: 3;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  color: var(--navy);
  font-size: 1rem;
}

.brand-text small {
  margin-top: 4px;
  color: var(--body);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  color: #334b5d;
  font-size: 0.9rem;
  font-weight: 700;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="true"]::after {
  transform: scaleX(1);
}

.header-cta {
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

/* Hero */
.hero {
  overflow: hidden;
  padding: 72px 0 80px;
  background: linear-gradient(135deg, #f7fafb 0%, #eaf1f4 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.location-eyebrow {
  padding: 8px 13px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: 999px;
  letter-spacing: 0.05em;
}

.location-eyebrow svg {
  width: 17px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: 1.14rem;
  line-height: 1.7;
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #415867;
  font-size: 0.87rem;
  font-weight: 700;
}

.check-icon {
  display: grid;
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--navy-soft);
  border-radius: 50%;
  font-size: 0.7rem;
}

.hero-visual {
  position: relative;
  max-width: 540px;
  margin-left: auto;
  padding: 0 0 26px 26px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 530px;
  background: var(--navy);
  border-radius: 32px 32px 100px 32px;
  box-shadow: 0 28px 60px rgba(16, 42, 67, 0.2);
}

.hero-panel::before {
  position: absolute;
  top: -90px;
  right: -80px;
  width: 270px;
  height: 270px;
  border: 48px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.hero-panel::after {
  position: absolute;
  bottom: 34px;
  left: 34px;
  width: 96px;
  height: 12px;
  background: var(--orange);
  border-radius: 999px;
  content: "";
  transform: rotate(-6deg);
}

.hero-panel img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  object-position: center bottom;
  background: transparent;
}

.building-lines {
  position: absolute;
  z-index: 1;
  right: 26px;
  bottom: 32px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  opacity: 0.18;
}

.building-lines span {
  width: 36px;
  border: 2px solid var(--white);
  border-bottom: 0;
}

.building-lines span:nth-child(1) {
  height: 130px;
}

.building-lines span:nth-child(2) {
  height: 190px;
}

.building-lines span:nth-child(3) {
  height: 155px;
}

.experience-card {
  position: absolute;
  z-index: 4;
  bottom: 0;
  left: 0;
  display: flex;
  max-width: 230px;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.experience-card span:last-child {
  color: var(--body);
  font-size: 0.82rem;
  line-height: 1.35;
}

.experience-card strong {
  display: block;
  color: var(--navy);
}

.experience-number {
  color: var(--orange);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.06em;
}

/* Trust */
.trust-strip {
  padding: 28px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 2px 24px;
  border-right: 1px solid var(--border);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.line-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--navy-soft);
  background: #edf4f7;
  border-radius: 12px;
}

.line-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.trust-item div {
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  color: var(--navy);
  font-size: 0.88rem;
}

.trust-item small {
  color: var(--body);
  font-size: 0.74rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  border-color: #b8cdd9;
  box-shadow: var(--shadow-small);
  transform: translateY(-5px);
}

.service-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--navy);
  background: #e9f1f5;
  border-radius: 13px;
}

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

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.service-card p {
  flex-grow: 1;
  margin-bottom: 22px;
  font-size: 0.94rem;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-soft);
  font-size: 0.88rem;
  font-weight: 800;
}

.service-card a span {
  color: var(--orange);
}

/* Differentials */
.split-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 64px;
}

.project-visual {
  overflow: hidden;
  background: var(--navy);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.project-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
}

.project-caption strong {
  color: var(--white);
}

.project-caption span {
  color: #bed0db;
  font-size: 0.82rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin: 32px 0;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.benefit > span {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 900;
}

.benefit h3 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.benefit p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

/* Process */
.process-section {
  color: var(--white);
  background: var(--navy);
}

.light-heading h2,
.light-heading p {
  color: var(--white);
}

.light-heading > p:last-child {
  color: #bdcfda;
}

.light-heading .eyebrow {
  color: #ff9a69;
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 30px;
  right: 12%;
  left: 12%;
  height: 1px;
  background: rgba(220, 232, 239, 0.3);
  content: "";
}

.process-list li {
  position: relative;
  z-index: 1;
  padding: 0 14px;
  text-align: center;
}

.step-number {
  display: grid;
  width: 60px;
  height: 60px;
  margin: 0 auto 22px;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border: 7px solid var(--navy);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16);
  font-size: 1.1rem;
  font-weight: 900;
}

.process-list h3 {
  margin-bottom: 9px;
  color: var(--white);
  font-size: 1.08rem;
}

.process-list p {
  margin-bottom: 0;
  color: #b8cad6;
  font-size: 0.88rem;
}

/* Portfolio */
.portfolio-heading {
  display: grid;
  max-width: none;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 60px;
}

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

.portfolio-heading > p {
  margin-bottom: 5px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  grid-template-rows: repeat(2, minmax(220px, auto));
  gap: 22px;
}

.portfolio-grid figure {
  position: relative;
  overflow: hidden;
  min-width: 0;
  margin: 0;
  background: var(--navy);
  border-radius: 18px;
}

.portfolio-grid img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transition: transform 400ms ease;
}

.portfolio-grid figure:hover img {
  transform: scale(1.025);
}

.portfolio-main {
  grid-row: 1 / 3;
}

.portfolio-main img {
  aspect-ratio: 4 / 5;
}

.portfolio-grid figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 42px 22px 18px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(8, 29, 45, 0.92));
}

.portfolio-grid figcaption strong,
.portfolio-grid figcaption span {
  display: block;
}

.portfolio-grid figcaption span {
  margin-top: 2px;
  color: #d8e4ea;
  font-size: 0.8rem;
}

.facade-art {
  display: grid;
  min-height: 240px;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 38px 30px 72px;
  background: linear-gradient(145deg, #1f4e6d, #102a43);
}

.facade-art span {
  background:
    linear-gradient(var(--orange), var(--orange)) 50% 18% / 45% 8% no-repeat,
    repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 0 13px, transparent 13px 27px);
  border-top: 8px solid rgba(255, 255, 255, 0.95);
  opacity: 0.86;
}

.facade-art span:nth-child(2),
.facade-art span:nth-child(4) {
  transform: translateY(20px);
}

/* Local and form */
.local-section {
  background: var(--white);
}

.local-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 72px;
}

.property-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.property-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #354d5d;
  font-weight: 700;
}

.property-list span {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--orange);
  background: #fff0e9;
  border-radius: 50%;
  font-size: 0.72rem;
}

.location-note {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.location-note svg {
  width: 27px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.8;
}

.location-note div {
  display: flex;
  flex-direction: column;
}

.location-note strong {
  color: var(--navy);
}

.location-note span {
  color: var(--body);
  font-size: 0.85rem;
}

.contact-card {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 5px solid var(--orange);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-kicker {
  margin-bottom: 5px;
  color: var(--orange-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.contact-card > p:not(.form-kicker) {
  margin-bottom: 25px;
}

.field {
  margin-bottom: 17px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  background: #fbfcfd;
  border: 1px solid #c8d6df;
  border-radius: 10px;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy-soft);
  box-shadow: 0 0 0 3px rgba(31, 78, 109, 0.12);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 2px 0 20px;
  color: var(--body);
  font-size: 0.77rem;
  line-height: 1.5;
}

.consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--navy);
}

.consent a {
  color: var(--navy-soft);
  font-weight: 800;
  text-decoration: underline;
}

.form-status {
  min-height: 1.5em;
  margin: 10px 0 0;
  font-size: 0.82rem;
  font-weight: 700;
}

/* About */
.about-section {
  border-top: 1px solid #edf2f5;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: stretch;
  gap: 70px;
}

.about-stat {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  color: var(--white);
  background: var(--navy);
  border-radius: 24px;
}

.about-stat::after {
  position: absolute;
  right: -75px;
  bottom: -75px;
  width: 230px;
  height: 230px;
  border: 40px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.about-number {
  color: var(--orange);
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.85;
}

.about-stat strong {
  margin-top: 20px;
  color: var(--white);
  font-size: 1.4rem;
}

.about-stat p {
  max-width: 300px;
  margin: 10px 0 0;
  color: #bfd0da;
}

.paint-line {
  width: 90px;
  height: 10px;
  margin-top: 28px;
  background: var(--orange);
  border-radius: 999px;
  transform: rotate(-4deg);
}

.commitments {
  display: grid;
  gap: 15px;
  margin: 28px 0 32px;
}

.commitments article {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.commitments h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.commitments p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: 64px;
}

.faq-intro {
  position: sticky;
  top: 112px;
}

.faq-intro > p:not(.eyebrow) {
  margin-bottom: 28px;
}

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

.faq-list details {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 13px;
}

.faq-list details[open] {
  border-color: #c3d5df;
  box-shadow: var(--shadow-small);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 54px 18px 20px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 22px;
  height: 22px;
  border: 1px solid #b9ccd7;
  border-radius: 50%;
  transform: translateY(-50%);
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1.5px;
  background: var(--navy);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  padding: 0 54px 19px 20px;
}

.faq-answer p {
  margin: 0;
  font-size: 0.93rem;
}

/* CTA */
.final-cta {
  padding: 64px 0;
  background: var(--navy);
}

.final-cta-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
  padding: 48px 54px;
  background: var(--navy-soft);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
}

.final-cta h2 {
  margin-bottom: 12px;
  color: var(--white);
}

.final-cta p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  color: #d0dee5;
}

.final-cta .eyebrow {
  color: #ffab80;
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 9px;
  text-align: center;
}

.whatsapp-icon {
  width: 22px;
}

.alternate-link {
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.final-cta-actions small {
  color: #b7cbd6;
  font-size: 0.72rem;
}

/* Footer */
.site-footer {
  color: #c3d2dc;
  background: var(--navy-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 52px;
  padding-top: 64px;
  padding-bottom: 48px;
}

.brand-light .brand-symbol,
.brand-light .brand-text strong {
  color: var(--white);
}

.brand-light .brand-text small {
  color: #9eb3c0;
}

.footer-brand p {
  max-width: 310px;
  margin: 22px 0 0;
  color: #9eb1bd;
  font-size: 0.9rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-column h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 0.98rem;
  letter-spacing: 0;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: #a9bbc6;
  font-size: 0.84rem;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: #8fa5b2;
  font-size: 0.78rem;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

.footer-bottom a {
  color: #a9bbc6;
  font-size: 0.78rem;
}

/* Floating action */
.floating-whatsapp {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: #1f9d55;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(12, 62, 35, 0.28);
  transition: transform 180ms ease, background-color 180ms ease;
}

.floating-whatsapp:hover {
  background: #178246;
  transform: translateY(-3px);
}

.floating-whatsapp svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

/* Tablet */
@media (max-width: 1080px) {
  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 0.83rem;
  }

  .header-cta {
    padding-inline: 14px;
    font-size: 0.83rem;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-panel {
    min-height: 480px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 0;
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(3) {
    padding-left: 0;
  }

  .split-layout,
  .local-grid,
  .about-grid {
    gap: 42px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 78px;
  }

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

  .section {
    padding: 56px 0;
  }

  h1 {
    font-size: clamp(2.25rem, 10vw, 2.55rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.05rem);
  }

  .header-inner {
    min-height: 70px;
    gap: 12px;
  }

  .brand-symbol,
  .brand-symbol svg {
    width: 36px;
    height: 36px;
  }

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

  .brand-text small {
    font-size: 0.59rem;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 99;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 70px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    margin: 0;
    padding: 12px 20px 24px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 28px rgba(16, 42, 67, 0.12);
  }

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

  .main-nav a {
    min-height: 48px;
    padding: 13px 4px;
    border-bottom: 1px solid #edf2f5;
    font-size: 1rem;
  }

  .main-nav a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 48px 0 52px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 2;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 0;
  }

  .hero-panel {
    min-height: 0;
    border-radius: 24px 24px 65px 24px;
  }

  .hero-panel img {
    width: 100%;
    max-height: none;
    aspect-ratio: 4 / 5;
    object-fit: contain;
  }

  .experience-card {
    position: relative;
    bottom: auto;
    left: auto;
    max-width: none;
    margin: 14px 0 0;
  }

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

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    flex: 1 1 200px;
  }

  .hero-trust {
    display: grid;
    gap: 10px;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px 16px;
  }

  .trust-item {
    align-items: flex-start;
    padding: 0;
    border: 0;
  }

  .trust-item .line-icon {
    width: 38px;
    height: 38px;
  }

  .trust-item small {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 24px;
  }

  .split-layout,
  .local-grid,
  .about-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .project-visual {
    order: 1;
  }

  .split-content {
    order: 2;
  }

  .project-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-list::before {
    top: 28px;
    bottom: 28px;
    left: 28px;
    width: 1px;
    height: auto;
  }

  .process-list li {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    padding: 0 0 28px;
    text-align: left;
  }

  .process-list li:last-child {
    padding-bottom: 0;
  }

  .step-number {
    width: 56px;
    height: 56px;
    margin: 0;
  }

  .portfolio-heading {
    display: block;
  }

  .portfolio-heading > p {
    margin-top: 18px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .portfolio-main {
    grid-row: auto;
  }

  .portfolio-main img,
  .portfolio-grid img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .facade-art {
    min-height: 260px;
  }

  .property-list {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 28px 22px;
  }

  .about-stat {
    min-height: 340px;
    padding: 38px 30px;
  }

  .about-number {
    font-size: 6rem;
  }

  .faq-intro {
    position: static;
  }

  .final-cta {
    padding: 48px 0;
  }

  .final-cta-box {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 36px 24px;
    text-align: center;
  }

  .final-cta p {
    margin-inline: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 26px;
    padding-top: 48px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 22px 0;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    gap: 12px 22px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
    flex-basis: auto;
  }

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

  .trust-item {
    align-items: center;
  }

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

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

  .final-cta-actions .button {
    padding-inline: 14px;
    font-size: 0.86rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* SmartClone IA: proteção de integridade visual */
html,body{max-width:100%;overflow-x:clip}main>section{position:relative;isolation:isolate;clear:both}img{max-width:100%;height:auto}img[src*="assets/"]{object-fit:contain}
