:root {
  --black: #050504;
  --ink: #15120f;
  --muted: #6f665d;
  --paper: #f6f1ea;
  --paper-2: #fffaf4;
  --line: #ddd3c7;
  --gold: #d8953e;
  --gold-2: #b86f2c;
  --green: #20c35a;
  --shadow: 0 20px 45px rgba(21, 18, 15, 0.13);
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow-x: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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

.site-header {
  position: relative;
  z-index: 50;
  background: var(--black);
  color: #fff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.topbar {
  border-bottom: 1px solid rgba(216, 149, 62, 0.2);
}

.topbar__inner {
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
  color: #f3eee7;
}

.topbar__group,
.topbar__item {
  display: flex;
  align-items: center;
  gap: 21px;
}

.topbar__item {
  gap: 8px;
  white-space: nowrap;
}

.topbar svg,
.nav-link svg,
.btn svg,
.footer-contact svg,
.social-link svg {
  flex: 0 0 auto;
}

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

.topbar .whatsapp {
  color: #fff;
}

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

.navbar {
  position: relative;
  border-bottom: 1px solid rgba(216, 149, 62, 0.16);
}

.navbar__inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 26px;
  position: relative;
}

.brand {
  width: 300px;
  height: 66px;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 26px;
  min-width: 0;
}

.nav-list--left {
  justify-content: flex-start;
}

.nav-list--right {
  justify-content: flex-end;
}

.mobile-nav {
  display: none;
}

.nav-link {
  min-height: 72px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  transition: color 0.22s ease;
  white-space: nowrap;
}

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

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

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

.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 255px;
  padding: 10px;
  background: rgba(5, 5, 4, 0.97);
  border: 1px solid rgba(216, 149, 62, 0.24);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  color: #f4eee7;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dropdown-menu a:last-child {
  border-bottom: 0;
}

.dropdown-menu a:hover {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(216, 149, 62, 0.45);
  border-radius: var(--radius);
}

.mobile-menu-proxy {
  display: none;
}

.page {
  animation: pageIn 0.38s ease both;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.reveal-zoom {
  transform: scale(0.965);
}

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

.hero {
  position: relative;
  min-height: 330px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background-position: center;
  background-size: cover;
  animation: heroPan 16s ease-in-out infinite alternate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.5) 38%, rgba(0, 0, 0, 0.16) 70%, rgba(0, 0, 0, 0.04) 100%),
    radial-gradient(circle at 70% 20%, rgba(216, 149, 62, 0.08), transparent 34%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0%, rgba(216, 149, 62, 0.12) 46%, transparent 58%),
    radial-gradient(circle at 18% 74%, rgba(216, 149, 62, 0.11), transparent 25%);
  opacity: 0.34;
  transform: translateX(-18%);
  animation: heroGlow 7s ease-in-out infinite alternate;
}

.hero--home {
  min-height: 470px;
  display: flex;
  align-items: center;
}

.hero--compact {
  min-height: 230px;
}

.hero--quote {
  min-height: 405px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  align-items: center;
  padding: 52px 0;
}

.hero--compact .hero__inner {
  padding: 38px 0;
}

.hero__content {
  max-width: 540px;
  width: 100%;
  min-width: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
  color: var(--gold);
  font-size: 14px;
}

.breadcrumb span:last-child {
  color: #fff;
}

h1,
h2,
h3,
.section-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.12;
}

.hero h1 {
  font-size: 54px;
  max-width: 560px;
  animation: fadeUp 0.8s ease both;
}

.hero__subtitle {
  margin: 8px 0 0;
  max-width: 520px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 500;
  line-height: 1.16;
  animation: fadeUp 0.8s 0.04s ease both;
}

.hero h1 .accent,
.accent {
  color: var(--gold);
}

.hero p {
  margin: 19px 0 0;
  max-width: 520px;
  color: #f1ece5;
  font-size: 17px;
  animation: fadeUp 0.8s 0.08s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
  animation: fadeUp 0.8s 0.16s ease both;
}

.btn {
  position: relative;
  overflow: hidden;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -120% auto -120% -70%;
  width: 46%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: rotate(18deg);
  transition: left 0.55s ease;
}

.btn:hover::before {
  left: 125%;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #dda055, #aa6224);
  box-shadow: 0 12px 24px rgba(170, 98, 36, 0.23);
}

.btn-dark {
  color: #fff;
  background: #070706;
  border-color: rgba(216, 149, 62, 0.38);
}

.btn-outline {
  color: #fff;
  background: rgba(0, 0, 0, 0.34);
  border-color: rgba(216, 149, 62, 0.55);
}

.btn-light-outline {
  color: var(--ink);
  background: transparent;
  border-color: #1c1712;
}

.btn-full {
  width: 100%;
}

.hero-feature-bar {
  position: relative;
  z-index: 3;
  margin: -34px auto 0;
  width: min(1110px, calc(100% - 64px));
  min-height: 76px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(7, 7, 6, 0.98);
  color: #fff;
  border: 1px solid rgba(216, 149, 62, 0.23);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.25);
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero-feature svg {
  color: var(--gold);
  width: 34px;
  height: 34px;
  transition: transform 0.25s ease;
}

.hero-feature:hover svg,
.why-item:hover svg,
.timeline-item:hover .timeline-icon,
.stat:hover svg {
  transform: translateY(-3px) scale(1.06);
}

.hero-feature strong {
  display: block;
  line-height: 1.25;
  font-size: 14px;
}

.hero-feature span {
  display: block;
  color: #cfc7bd;
  font-size: 12px;
  line-height: 1.35;
}

.hero-badges {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 620px;
  background: rgba(5, 5, 4, 0.82);
  border: 1px solid rgba(216, 149, 62, 0.24);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.25;
}

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

.hero-badge svg {
  color: var(--gold);
  width: 30px;
  height: 30px;
}

.section {
  padding: 70px 0;
}

.section--tight {
  padding: 48px 0;
}

.section--white {
  background: var(--paper-2);
}

.section-heading {
  margin-bottom: 34px;
  text-align: center;
}

.section-heading h2 {
  font-size: 32px;
  color: var(--ink);
}

.section-heading p {
  max-width: 620px;
  margin: 12px auto 0;
  color: var(--muted);
}

.section-line {
  width: 44px;
  height: 2px;
  margin: 14px auto 0;
  background: var(--gold);
}

.home-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(320px, 1fr);
  align-items: center;
  gap: 54px;
  min-height: 255px;
}

.home-intro__image {
  min-height: 245px;
  background: url("../img/home-sketch.webp") center / contain no-repeat;
}

.home-intro__content {
  text-align: center;
}

.home-intro h2 {
  font-size: 32px;
}

.home-intro p {
  margin: 18px auto 24px;
  max-width: 610px;
  color: var(--muted);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.home-showcase {
  position: relative;
  width: 100%;
  height: 86vh;
  min-height: 540px;
  margin-bottom: 64px;
  overflow: hidden;
  background: var(--black);
}

.home-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 5, 4, 0.08), rgba(5, 5, 4, 0.3)),
    linear-gradient(90deg, rgba(5, 5, 4, 0.24), rgba(5, 5, 4, 0.04) 54%, rgba(5, 5, 4, 0.22));
}

.home-showcase__slides,
.home-showcase__slide {
  position: absolute;
  inset: 0;
}

.home-showcase__slide {
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 0.8s ease, transform 6.5s ease;
}

.home-showcase__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.home-showcase__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focus, center);
}

.home-showcase__dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.home-showcase__dot {
  width: 38px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.5);
  transition: width 0.24s ease, background 0.24s ease;
}

.home-showcase__dot.is-active {
  width: 58px;
  background: var(--gold);
}

.category-card,
.service-card,
.project-card,
.gallery-card,
.info-card,
.form-panel,
.map-panel,
.quote-reason-panel {
  background: rgba(255, 250, 244, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.category-card {
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card:hover,
.service-card:hover,
.project-card:hover,
.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.category-card__image {
  aspect-ratio: 1.22 / 1;
  overflow: hidden;
}

.category-card__image img,
.service-card__image img,
.project-card__image img,
.gallery-card__image img,
.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card:hover img,
.service-card:hover img,
.project-card:hover img,
.gallery-card:hover img,
.featured-card:hover img {
  transform: scale(1.045);
}

.category-card__body {
  position: relative;
  min-height: 162px;
  padding: 0 18px 18px;
}

.category-card__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-top: -24px;
  margin-bottom: 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.09);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.category-card__icon svg {
  color: var(--ink);
}

.category-card:hover .category-card__icon,
.timeline-item:hover .timeline-icon {
  box-shadow: 0 12px 24px rgba(216, 149, 62, 0.2);
}

.category-card h3 {
  min-height: 48px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.32;
}

.category-card p {
  min-height: 77px;
  margin: 8px 0 16px;
  color: var(--muted);
  font-size: 13px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 700;
}

.why-section {
  background:
    linear-gradient(90deg, rgba(5, 5, 4, 0.96), rgba(5, 5, 4, 0.94)),
    url("../img/cta-blueprint.webp") center / cover no-repeat;
  color: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.8fr;
  gap: 52px;
  align-items: center;
}

.why-copy h2 {
  font-size: 36px;
}

.why-copy p {
  color: #ded5cc;
  margin: 22px 0 28px;
}

.why-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-left: 1px solid rgba(216, 149, 62, 0.35);
}

.why-item {
  min-height: 146px;
  padding: 24px;
  border-right: 1px solid rgba(216, 149, 62, 0.35);
  border-bottom: 1px solid rgba(216, 149, 62, 0.22);
}

.why-item svg {
  color: var(--gold);
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  transition: transform 0.25s ease;
}

.why-item strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
}

.why-item p {
  margin: 0;
  color: #d0c8bf;
  font-size: 13px;
  line-height: 1.5;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 149, 62, 0.62), transparent);
}

.timeline-item {
  position: relative;
  text-align: center;
  padding: 0 10px;
}

.timeline-icon {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  margin: 0 auto 11px;
  background: var(--black);
  color: var(--gold);
  border-radius: 50%;
  border: 5px solid var(--paper);
  position: relative;
  z-index: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.timeline-item .step {
  color: var(--gold-2);
  font-weight: 800;
}

.timeline-item h3 {
  margin-top: 5px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 15px;
}

.timeline-item p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.featured-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.featured-card {
  aspect-ratio: 1.8 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.center-actions {
  display: flex;
  justify-content: center;
}

.stats-band {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  min-height: 134px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 24px;
}

.stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat svg {
  color: var(--gold-2);
  width: 31px;
  height: 31px;
  transition: transform 0.25s ease;
}

.stat strong {
  display: block;
  font-size: 28px;
  line-height: 1.1;
}

.stat span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 34px;
}

.filter-btn {
  min-height: 54px;
  min-width: 128px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  background: rgba(255, 250, 244, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.filter-btn:hover,
.filter-btn.is-active {
  transform: translateY(-2px);
  color: #fff;
  background: linear-gradient(135deg, #d39651, #ad6428);
  border-color: transparent;
}

.filter-btn svg {
  width: 27px;
  height: 27px;
}

.service-grid,
.project-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.project-grid {
  gap: 25px;
}

.service-card,
.project-card,
.gallery-card {
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card__image,
.project-card__image {
  aspect-ratio: 1.8 / 1;
  overflow: hidden;
  background: #111;
}

.gallery-card__image {
  aspect-ratio: 1.08 / 1;
  overflow: hidden;
  background: #111;
}

.service-card__body,
.project-card__body,
.gallery-card__body {
  padding: 18px 18px 20px;
}

.service-card h3,
.project-card h3,
.gallery-card h3 {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.28;
}

.gallery-card h3 {
  font-size: 16px;
}

.project-card .location,
.gallery-card .category {
  display: block;
  margin-top: 8px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.project-card .location {
  color: var(--ink);
  font-weight: 500;
  text-transform: none;
}

.gallery-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.service-card p,
.project-card p {
  min-height: 60px;
  margin: 10px 0 15px;
  color: var(--muted);
  font-size: 13px;
}

.service-list {
  display: grid;
  gap: 5px;
  margin: 14px 0 18px;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-size: 13px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.service-list svg {
  color: var(--gold-2);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold-2);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.intro-panel,
.about-story,
.statement-grid,
.material-panel,
.service-detail-grid,
.detail-light-cta__inner {
  display: grid;
  gap: 34px;
  align-items: center;
}

.intro-panel {
  grid-template-columns: 0.8fr 1.35fr;
  padding: 28px 0;
}

.intro-panel h2,
.about-story h2,
.statement-card h2,
.material-copy h2,
.detail-copy h2,
.detail-light-cta h2 {
  font-size: 32px;
}

.mission-box {
  position: relative;
  overflow: hidden;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.96), rgba(246, 241, 234, 0.92)),
    radial-gradient(circle at 92% 12%, rgba(216, 149, 62, 0.18), transparent 28%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mission-box::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(216, 149, 62, 0.08), transparent);
}

.mission-box__head {
  position: relative;
  max-width: 720px;
  margin-bottom: 28px;
}

.mission-box__head h2 {
  font-size: 34px;
}

.mission-box__head p {
  margin: 12px 0 0;
  color: var(--muted);
}

.mission-box__body {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(216, 149, 62, 0.22);
}

.mission-column {
  padding: 26px 28px 4px 0;
}

.mission-column + .mission-column {
  padding-right: 0;
  padding-left: 28px;
  border-left: 1px solid rgba(216, 149, 62, 0.22);
}

.mission-column span {
  color: var(--gold-2);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
}

.mission-column h3 {
  margin: 10px 0 12px;
  font-size: 23px;
}

.mission-column p {
  margin: 0;
  color: var(--muted);
}

.intro-panel p,
.about-story p,
.statement-card p,
.material-copy p,
.detail-copy p,
.detail-light-cta p {
  margin: 0;
  color: var(--muted);
}

.about-story {
  grid-template-columns: 1.2fr 1fr;
}

.about-story__copy p + p {
  margin-top: 14px;
}

.mini-card-grid {
  display: grid;
  gap: 14px;
}

.mini-card,
.statement-card,
.material-card,
.scope-card {
  background: rgba(255, 250, 244, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mini-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
}

.mini-card svg,
.material-card svg,
.scope-card svg,
.detail-feature svg {
  color: var(--gold-2);
}

.mini-card strong,
.material-card strong,
.detail-feature strong {
  display: block;
  min-width: 0;
  line-height: 1.3;
}

.mini-card span,
.material-card span,
.detail-feature span {
  min-width: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.mini-card span {
  grid-column: 2;
}

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

.statement-card {
  min-height: 245px;
  padding: 30px;
}

.statement-card p {
  margin-top: 16px;
}

.material-panel {
  grid-template-columns: 0.9fr 1.25fr;
}

.material-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.material-card {
  min-height: 140px;
  padding: 20px;
}

.material-card svg {
  margin-bottom: 12px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: -3px 0 15px;
}

.service-tags span {
  padding: 5px 8px;
  color: var(--gold-2);
  background: rgba(216, 149, 62, 0.09);
  border: 1px solid rgba(216, 149, 62, 0.22);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.hero--detail {
  min-height: 380px;
}

.service-detail-section {
  background:
    radial-gradient(circle at 72% 18%, rgba(216, 149, 62, 0.08), transparent 28%),
    var(--paper-2);
}

.service-detail-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.detail-gallery__main {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.detail-gallery__main img {
  width: 100%;
  aspect-ratio: 1.48 / 1;
  object-fit: cover;
}

.detail-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.detail-gallery__thumbs img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.detail-copy {
  padding-left: 10px;
}

.detail-copy p {
  margin-top: 18px;
}

.detail-feature-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.detail-feature {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

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

.scope-card {
  min-height: 118px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 20px;
}

.scope-card h3 {
  margin: 0 0 6px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 15px;
}

.scope-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.detail-rich {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.detail-rich__head {
  max-width: 720px;
  margin-bottom: 18px;
}

.detail-rich__head h2 {
  font-size: 28px;
}

.detail-rich__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.detail-rich-card {
  min-height: 150px;
  padding: 18px;
  background: rgba(255, 250, 244, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.detail-rich-card h3 {
  margin: 0 0 9px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.3;
}

.detail-rich-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}

.service-content-outline {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.service-content-outline__item {
  padding: 20px 22px;
  background: rgba(255, 250, 244, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-content-outline__item h2,
.service-content-outline__item h3 {
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.28;
}

.service-content-outline__item h2 {
  color: var(--ink);
  font-size: 22px;
}

.service-content-outline__item h3 {
  color: var(--gold-2);
  font-size: 18px;
}

.service-content-outline__item p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.service-content-outline__item--level-3 {
  margin-left: 24px;
  background: rgba(246, 241, 234, 0.76);
}

.materials-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.material-product-card {
  overflow: hidden;
  background: rgba(255, 250, 244, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.material-product-card__image {
  aspect-ratio: 1.72 / 1;
  overflow: hidden;
  background: #111;
}

.material-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.material-product-card__body {
  padding: 20px;
}

.material-product-card h3 {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 19px;
  line-height: 1.28;
}

.material-product-card p {
  margin: 10px 0 16px;
  color: var(--muted);
  font-size: 13.5px;
}

.material-product-card dl {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
}

.material-product-card dl div {
  padding-top: 10px;
  border-top: 1px solid rgba(221, 211, 199, 0.85);
}

.material-product-card dt {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.material-product-card dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 13px;
}

.material-product-card ul {
  display: grid;
  gap: 7px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-size: 13px;
}

.material-product-card li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.material-product-card li svg {
  color: var(--gold-2);
}

.process-section--dark {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 5, 4, 0.97), rgba(5, 5, 4, 0.95)),
    url("../img/cta-blueprint.webp") center / cover no-repeat;
}

.process-section--dark .section-heading h2,
.process-section--dark .timeline-item h3 {
  color: #fff;
}

.process-section--dark .timeline-icon {
  border-color: rgba(216, 149, 62, 0.22);
}

.process-section--dark .timeline-item p {
  color: #d7cec4;
}

.detail-light-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.96), rgba(255, 250, 244, 0.88)),
    url("../img/home-sketch.webp") left center / auto 100% no-repeat;
  border-top: 1px solid var(--line);
}

.detail-light-cta__inner {
  min-height: 142px;
  grid-template-columns: 1fr auto;
}

.detail-light-cta__actions {
  display: grid;
  gap: 12px;
  min-width: 250px;
}

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

.option-chip {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
}

.option-chip input {
  width: 14px;
  height: 14px;
  accent-color: var(--gold-2);
}

.file-field input {
  padding: 10px;
}

.file-field small {
  color: var(--muted);
  font-size: 12px;
}

.assurance-note {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  color: var(--muted);
  background: rgba(216, 149, 62, 0.08);
  border: 1px solid rgba(216, 149, 62, 0.2);
  border-radius: var(--radius);
  font-size: 13px;
}

.assurance-note svg {
  color: var(--gold-2);
  flex: 0 0 auto;
}

.cta-strip {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #070706 url("../img/cta-blueprint.webp") right center / cover no-repeat;
  border-top: 1px solid rgba(216, 149, 62, 0.24);
  border-bottom: 1px solid rgba(216, 149, 62, 0.24);
}

.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 4, 0.98) 0%, rgba(5, 5, 4, 0.92) 54%, rgba(5, 5, 4, 0.68) 100%);
}

.cta-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -34%;
  width: 26%;
  background: linear-gradient(90deg, transparent, rgba(216, 149, 62, 0.24), transparent);
  transform: skewX(-18deg);
  animation: ctaSweep 5.8s ease-in-out infinite;
}

.cta-strip__inner {
  min-height: 132px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 38px;
}

.cta-copy {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cta-copy svg {
  color: var(--gold);
  width: 74px;
  height: 74px;
}

.cta-copy h2 {
  font-size: 28px;
}

.cta-copy p {
  margin: 8px 0 0;
  color: #dfd7cf;
}

.cta-actions {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.benefit-bar {
  background: #fbf6ef;
  border-top: 1px solid var(--line);
}

.benefit-grid {
  min-height: 118px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  text-align: center;
}

.benefit-item {
  min-height: 84px;
  display: grid;
  place-items: center;
  padding: 8px 18px;
  border-right: 1px solid var(--line);
}

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

.benefit-item svg {
  color: var(--gold-2);
  width: 38px;
  height: 38px;
  margin-bottom: 4px;
}

.benefit-item strong {
  display: block;
  font-size: 14px;
}

.benefit-item span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.info-strip {
  margin-top: -1px;
  padding: 26px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: rgba(255, 250, 244, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.info-card {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 102px;
  padding: 18px 22px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  transition: background 0.18s ease, color 0.18s ease;
}

.info-card:last-child {
  border-right: 0;
}

.info-card svg {
  color: var(--gold-2);
  width: 40px;
  height: 40px;
}

.info-card strong {
  display: block;
  font-size: 13px;
}

.info-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

a.info-card:hover,
a.info-card:focus-visible {
  color: var(--gold-2);
  background: rgba(216, 149, 62, 0.08);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-panel,
.map-panel,
.quote-reason-panel {
  padding: 30px;
}

.panel-title {
  margin-bottom: 24px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-title::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin-top: 10px;
  background: var(--gold);
}

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

.form-grid .span-2 {
  grid-column: span 2;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea,
.newsletter input {
  width: 100%;
  min-height: 43px;
  padding: 12px 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus,
.newsletter input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(216, 149, 62, 0.13);
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
}

.checkbox-row input {
  width: 15px;
  height: 15px;
  accent-color: var(--gold-2);
}

.map-image {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.office-card {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 22px;
}

.office-card img {
  border-radius: var(--radius);
}

.office-card h3 {
  margin-bottom: 4px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 20px;
}

.office-card p {
  margin: 0 0 16px;
  color: var(--muted);
}

.reason-list {
  display: grid;
  gap: 22px;
}

.reason-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
}

.reason-item svg {
  color: var(--gold-2);
  width: 42px;
  height: 42px;
}

.reason-item strong {
  display: block;
  margin-bottom: 4px;
}

.reason-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.support-box {
  margin-top: 28px;
  padding: 22px;
  color: #fff;
  background: #070706;
  border-radius: var(--radius);
}

.support-box strong {
  display: block;
  margin-bottom: 8px;
}

.site-footer {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 5, 4, 0.98), rgba(5, 5, 4, 0.96)),
    url("../img/cta-blueprint.webp") center / cover no-repeat;
}

.footer-main {
  padding: 48px 0 36px;
  border-top: 1px solid rgba(216, 149, 62, 0.24);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.9fr 1.05fr 1.05fr 1.2fr;
  gap: 36px;
}

.footer-logo {
  width: 250px;
  max-width: 100%;
  margin-bottom: 18px;
}

.footer-about p,
.footer-col li,
.footer-contact,
.newsletter p,
.footer-bottom {
  color: #d2cbc3;
  font-size: 13px;
}

.footer-about p {
  max-width: 290px;
  margin: 0 0 24px;
}

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

.social-link {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: #fff;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

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

.footer-col {
  padding-left: 26px;
  border-left: 1px solid rgba(216, 149, 62, 0.27);
}

.footer-col h3 {
  margin-bottom: 16px;
  color: var(--gold);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-col ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.footer-contact {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  margin-bottom: 13px;
}

.footer-contact[href] {
  transition: color 0.18s ease;
}

.footer-contact[href]:hover,
.footer-contact[href]:focus-visible {
  color: var(--gold);
}

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

.newsletter p {
  margin: 0 0 18px;
}

.newsletter-form {
  position: relative;
}

.newsletter input {
  padding-right: 46px;
  color: #fff;
  background: #0c0c0a;
  border-color: rgba(216, 149, 62, 0.35);
}

.newsletter button {
  position: absolute;
  right: 4px;
  top: 4px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #fff;
  background: transparent;
  border: 0;
}

.footer-bottom {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(216, 149, 62, 0.25);
}

.footer-policy {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.floating-whatsapp {
  position: fixed;
  right: 30px;
  bottom: 28px;
  z-index: 70;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease;
  animation: whatsappPulse 2.6s ease-in-out infinite;
}

.floating-whatsapp img {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
}

.floating-whatsapp:hover {
  transform: scale(1.06);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(0, 0, 0, 0.86);
}

.lightbox.is-open {
  display: flex;
}

.lightbox__image {
  max-width: min(980px, 92vw);
  max-height: 82vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.lightbox__caption {
  position: absolute;
  left: 32px;
  bottom: 28px;
  color: #fff;
  font-weight: 700;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 26px;
  width: 44px;
  height: 44px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  font-size: 32px;
  line-height: 1;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 120;
  min-width: 260px;
  max-width: calc(100% - 48px);
  padding: 14px 18px;
  color: #fff;
  background: #11100e;
  border: 1px solid rgba(216, 149, 62, 0.42);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@keyframes pageIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroPan {
  from {
    background-position: 47% center;
  }
  to {
    background-position: 55% center;
  }
}

@keyframes heroGlow {
  from {
    opacity: 0.18;
    transform: translateX(-22%);
  }
  to {
    opacity: 0.42;
    transform: translateX(18%);
  }
}

@keyframes ctaSweep {
  0%,
  42% {
    left: -34%;
  }
  72%,
  100% {
    left: 108%;
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28), 0 0 0 0 rgba(32, 195, 90, 0.38);
  }
  50% {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28), 0 0 0 13px rgba(32, 195, 90, 0);
  }
}

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .navbar__inner {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    padding-right: 64px;
  }

  .brand {
    flex: 0 0 auto;
    justify-self: auto;
    margin-right: auto;
    width: 260px;
    height: 62px;
  }

  .menu-toggle {
    display: inline-flex;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 90;
    width: 48px;
    height: 46px;
    color: var(--black);
    background: var(--gold);
    border: 2px solid #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
  }

  .nav-list {
    display: none;
  }

  body.menu-open .nav-list {
    display: none;
  }

  .mobile-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 80;
    display: none;
    max-height: calc(100vh - 112px);
    overflow-y: auto;
    padding: 14px 32px 24px;
    background: rgba(5, 5, 4, 0.99);
    border-top: 1px solid rgba(216, 149, 62, 0.28);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
  }

  body.menu-open .mobile-nav {
    display: block;
    animation: navDrop 0.24s ease both;
  }

  .nav-link {
    min-height: 46px;
  }

  .mobile-nav__item {
    border-bottom: 1px solid rgba(216, 149, 62, 0.16);
  }

  .mobile-nav__link {
    width: 100%;
    min-height: 46px;
    justify-content: space-between;
  }

  .mobile-nav__link::after {
    display: none;
  }

  .mobile-nav__sub {
    display: grid;
    gap: 5px;
    padding: 0 0 12px 14px;
  }

  .mobile-nav__sub a {
    color: #d8d0c7;
    font-size: 13px;
    padding: 5px 0;
  }

  .mobile-nav__sub a:hover {
    color: var(--gold);
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    display: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .has-dropdown:hover .dropdown-menu,
  .has-dropdown:focus-within .dropdown-menu {
    display: block;
  }

  .hero-feature-bar,
  .hero-badges,
  .service-grid,
  .project-grid,
  .materials-page-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-showcase {
    height: 78vh;
    min-height: 470px;
  }

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

  .why-grid,
  .cta-strip__inner,
  .two-column,
  .intro-panel,
  .about-story,
  .material-panel,
  .service-detail-grid,
  .detail-light-cta__inner {
    grid-template-columns: 1fr;
  }

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

  .scope-grid,
  .choice-grid,
  .detail-rich__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-copy {
    padding-left: 0;
  }

  .cta-actions {
    justify-content: flex-start;
  }

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

  .benefit-grid,
  .stats-grid,
  .featured-row {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .topbar__inner {
    min-height: 42px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    overflow: hidden;
  }

  .topbar__group {
    gap: 14px;
    flex-wrap: nowrap;
    min-width: 0;
  }

  .topbar__item {
    font-size: 0;
    gap: 0;
  }

  .topbar svg {
    width: 21px;
    height: 21px;
  }

  .navbar__inner {
    min-height: 70px;
    position: relative;
    padding-right: 58px;
  }

  .brand {
    width: min(228px, calc(100vw - 112px));
    height: 60px;
  }

  .menu-toggle {
    display: inline-flex !important;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 90;
    width: 48px;
    height: 46px;
    color: var(--black);
    background: var(--gold);
    border: 2px solid #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
  }

  .mobile-nav {
    top: 100%;
    max-height: calc(100vh - 110px);
    padding: 12px 18px 22px;
  }

  .hero,
  .hero--home,
  .hero--quote {
    min-height: 430px;
  }

  .hero--compact {
    min-height: 280px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 34px;
    overflow-wrap: break-word;
  }

  .hero__subtitle {
    font-size: 25px;
  }

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

  .hero-feature-bar {
    position: static;
    width: 100%;
    margin: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .hero-feature-bar + .section--white {
    padding-top: 18px;
  }

  .home-showcase {
    height: 68vh;
    min-height: 380px;
    margin-bottom: 42px;
  }

  .home-showcase__dots {
    bottom: 18px;
  }

  .home-showcase__dot {
    width: 26px;
  }

  .home-showcase__dot.is-active {
    width: 42px;
  }

  .hero-feature,
  .hero-badge {
    padding: 14px;
  }

  .hero-feature svg,
  .hero-badge svg {
    width: 28px;
    height: 28px;
  }

  .section {
    padding: 52px 0;
  }

  .section-heading h2,
  .home-intro h2 {
    font-size: 25px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: break-word;
  }

  .home-intro,
  .info-grid,
  .benefit-grid,
  .featured-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    min-height: 96px;
  }

  .stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
    padding: 10px 4px;
  }

  .stat svg {
    width: 24px;
    height: 24px;
  }

  .stat strong {
    font-size: 21px;
  }

  .stat span {
    font-size: 10px;
    line-height: 1.25;
  }

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

  .timeline-item {
    min-height: 168px;
    padding: 12px 7px 10px;
    background: rgba(255, 250, 244, 0.82);
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .timeline-icon {
    width: 43px;
    height: 43px;
    margin-bottom: 7px;
    border-width: 4px;
  }

  .timeline-icon svg {
    width: 18px;
    height: 18px;
  }

  .timeline-item .step {
    font-size: 13px;
    line-height: 1;
  }

  .timeline-item h3 {
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.2;
  }

  .timeline-item p {
    margin-top: 6px;
    font-size: 9.2px;
    line-height: 1.34;
    overflow-wrap: anywhere;
  }

  .why-items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-left: 0;
  }

  .why-item {
    min-height: 154px;
    padding: 14px 10px;
    border-right: 1px solid rgba(216, 149, 62, 0.24);
    border-bottom: 1px solid rgba(216, 149, 62, 0.24);
  }

  .why-item:nth-child(3n) {
    border-right: 0;
  }

  .why-item svg {
    width: 27px;
    height: 27px;
    margin-bottom: 9px;
  }

  .why-item strong {
    font-size: 12px;
    line-height: 1.25;
  }

  .why-item p {
    margin-top: 7px;
    font-size: 10.5px;
    line-height: 1.38;
  }

  .service-strip,
  .service-grid,
  .project-grid,
  .gallery-grid,
  .hero-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .filter-bar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 26px;
  }

  .filter-btn {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 10px 8px;
    font-size: 11px;
    line-height: 1.2;
    white-space: normal;
  }

  .hero--detail {
    min-height: 390px;
  }

  .intro-panel,
  .about-story,
  .statement-grid,
  .material-panel,
  .service-detail-grid,
  .detail-light-cta__inner {
    gap: 22px;
  }

  .intro-panel h2,
  .about-story h2,
  .statement-card h2,
  .material-copy h2,
  .detail-copy h2,
  .detail-light-cta h2 {
    font-size: 24px;
  }

  .mission-box {
    padding: 22px;
  }

  .mission-box__head {
    margin-bottom: 20px;
  }

  .mission-box__head h2 {
    font-size: 25px;
  }

  .mission-box__head p {
    font-size: 13px;
  }

  .mission-box__body {
    grid-template-columns: 1fr;
  }

  .mission-column,
  .mission-column + .mission-column {
    padding: 18px 0 0;
    border-left: 0;
  }

  .mission-column + .mission-column {
    margin-top: 18px;
    border-top: 1px solid rgba(216, 149, 62, 0.22);
  }

  .mission-column h3 {
    font-size: 18px;
  }

  .mission-column p {
    font-size: 13px;
    line-height: 1.5;
  }

  .statement-grid,
  .material-points,
  .materials-page-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .service-content-outline__item--level-3 {
    margin-left: 0;
  }

  .mini-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .statement-card {
    min-height: auto;
    padding: 22px;
  }

  .mini-card {
    min-height: 142px;
    grid-template-columns: 1fr;
    align-content: start;
    justify-items: center;
    gap: 7px;
    padding: 12px 8px;
    text-align: center;
  }

  .mini-card svg {
    width: 27px;
    height: 27px;
  }

  .mini-card strong {
    font-size: 10.5px;
    line-height: 1.2;
  }

  .mini-card span {
    grid-column: auto;
    font-size: 9.5px;
    line-height: 1.3;
  }

  .material-card {
    min-height: auto;
    padding: 16px;
  }

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

  .detail-rich {
    margin-top: 24px;
    padding-top: 22px;
  }

  .detail-rich__head h2 {
    font-size: 22px;
  }

  .detail-rich__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .detail-rich-card {
    min-height: auto;
    padding: 14px;
  }

  .scope-card {
    min-height: 132px;
    grid-template-columns: 1fr;
    gap: 9px;
    align-content: start;
    padding: 14px 12px;
  }

  .scope-card svg {
    width: 28px;
    height: 28px;
  }

  .scope-card h3 {
    font-size: 12px;
    line-height: 1.25;
  }

  .scope-card p {
    font-size: 10.5px;
    line-height: 1.36;
  }

  .detail-gallery__main img {
    aspect-ratio: 1.22 / 1;
  }

  .detail-gallery__thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
  }

  .detail-feature-list {
    gap: 14px;
  }

  .detail-feature {
    grid-template-columns: 36px 1fr;
  }

  .detail-light-cta__inner {
    min-height: auto;
    padding: 24px 0;
  }

  .detail-light-cta__actions {
    min-width: 0;
  }

  .option-chip {
    min-height: 39px;
    font-size: 11px;
  }

  .assurance-note {
    align-items: flex-start;
    font-size: 12px;
  }

  .home-intro {
    gap: 24px;
  }

  .home-intro__image {
    min-height: 180px;
  }

  .hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 7px;
    min-height: 118px;
    padding: 12px 6px;
    border-right: 1px solid rgba(216, 149, 62, 0.18);
    border-bottom: 0;
  }

  .hero-feature:nth-child(2n) {
    border-right: 1px solid rgba(216, 149, 62, 0.18);
  }

  .hero-feature:nth-child(4n) {
    border-right: 0;
  }

  .hero-feature strong {
    font-size: 10.5px;
    line-height: 1.15;
  }

  .hero-feature span {
    font-size: 9.5px;
    line-height: 1.25;
  }

  .info-card,
  .benefit-item,
  .stat {
    border-right: 0;
    border-bottom: 1px solid rgba(216, 149, 62, 0.18);
  }

  .timeline::before {
    display: none;
  }

  .cta-copy,
  .cta-actions,
  .hero-actions,
  .footer-bottom,
  .office-card {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-strip__inner {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) 132px;
    gap: 10px;
    padding: 14px 0;
    align-items: center;
  }

  .cta-copy {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: start;
    gap: 9px;
  }

  .cta-copy svg {
    width: 27px;
    height: 27px;
  }

  .cta-copy h2 {
    font-size: 16px;
    line-height: 1.13;
  }

  .cta-copy p {
    margin-top: 5px;
    font-size: 10.5px;
    line-height: 1.35;
  }

  .cta-actions {
    display: grid;
    gap: 8px;
  }

  .cta-actions .btn {
    min-height: 38px;
    justify-content: flex-start;
    gap: 7px;
    padding: 8px 9px;
    font-size: 9.5px;
    line-height: 1.15;
    white-space: normal;
    text-align: left;
  }

  .cta-actions .btn svg {
    width: 16px;
    height: 16px;
  }

  .cta-actions .btn small {
    display: none;
  }

  .two-column {
    gap: 14px;
  }

  .form-panel,
  .map-panel,
  .quote-reason-panel {
    padding: 22px;
  }

  .form-grid,
  .office-card {
    grid-template-columns: 1fr;
  }

  .form-grid .span-2 {
    grid-column: auto;
  }

  .footer-col {
    padding-left: 0;
    border-left: 0;
  }

  .footer-bottom {
    min-height: auto;
    padding: 18px 0;
  }

  .floating-whatsapp {
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
  }
}

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

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