:root {
  --bg: #f6f2eb;
  --paper: #fffdfa;
  --paper-2: #f1ebe1;
  --ink: #101617;
  --ink-soft: #2a3436;
  --muted: #6a7374;
  --line: rgba(16,22,23,.1);
  --orange: #f73706;
  --orange-dark: #cf2604;
  --green: #111a1d;
  --shadow-sm: 0 14px 34px rgba(16,22,23,.06);
  --shadow-lg: 0 32px 80px rgba(16,22,23,.12);
  --radius: 28px;
  --max: 1200px;
  --header-height: 112px;
  --header-compact-height: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
svg { flex: 0 0 auto; }
button, input, select, textarea { font: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 999;
  padding: 12px 16px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.container {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(8, 10, 12, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: height .38s cubic-bezier(.22,.61,.36,1), background .25s ease, box-shadow .25s ease, border-color .25s ease;
  will-change: height;
}
.site-header.scrolled {
  background: rgba(10, 12, 14, .96);
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
}
.site-header.is-compact {
  height: var(--header-compact-height);
  background: rgba(10, 12, 14, .98);
  box-shadow: 0 14px 30px rgba(0,0,0,.34);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 100%;
  min-height: 100%;
  transition: gap .35s ease;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
}
.brand img {
  display: block;
  width: clamp(138px, 13vw, 150px);
  height: auto;
  max-height: calc(var(--header-height) - 14px);
  object-fit: contain;
  transition: width .38s cubic-bezier(.22,.61,.36,1), max-height .38s cubic-bezier(.22,.61,.36,1), transform .38s cubic-bezier(.22,.61,.36,1);
  transform-origin: left center;
}
.site-header.is-compact .brand img {
  width: 110px;
  max-height: calc(var(--header-compact-height) - 10px);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  box-shadow: 0 8px 20px rgba(0,0,0,.22);
}
.nav-links a {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  color: rgba(255,255,255,.92);
  transition: padding .35s ease, font-size .35s ease, background .2s ease;
}
.nav-links a:hover,
.nav-links a:focus-visible { background: rgba(255,255,255,.08); }
.site-header.is-compact .nav-links a {
  padding: 8px 14px;
  font-size: 13px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-phone,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: -.01em;
  transition: min-height .35s ease, padding .35s ease, transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.nav-phone {
  background: linear-gradient(135deg, var(--orange), #ff5b2e);
  color: #1d120d;
  box-shadow: 0 16px 36px rgba(247,55,6,.28);
}
.site-header.is-compact .nav-phone {
  min-height: 44px;
  padding-inline: 16px;
}
.nav-phone:hover,
.button:hover { transform: translateY(-2px); }
.nav-phone svg,
.button svg,
.hero-points svg,
.contact-icon svg,
.floating-whatsapp svg,
.footer-bottom svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
}
.menu-lines { display: grid; gap: 4px; }
.menu-lines i {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero-full {
  position: relative;
  min-height: min(860px, calc(100vh - var(--header-height)));
  display: grid;
  align-items: end;
  overflow: clip;
  background: #141a1c;
}
.hero-bg,
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg img {
  object-fit: cover;
  object-position: center center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,14,16,.72) 0%, rgba(10,14,16,.52) 32%, rgba(10,14,16,.2) 100%),
    linear-gradient(180deg, rgba(10,14,16,.16) 0%, rgba(10,14,16,.44) 100%);
}
.hero-shell {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, var(--max));
  padding: clamp(60px, 10vw, 110px) 0 clamp(48px, 7vw, 72px);
}
.hero-panel {
  width: min(100%, 640px);
  color: #fff;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow-light { color: rgba(255,255,255,.88); }
.eyebrow span {
  display: inline-block;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.hero h1,
.section-heading h2,
.quote-copy h2,
.thank-you-card h1,
.not-found-card h1 {
  margin: 0;
  letter-spacing: -.065em;
  line-height: .96;
}
.hero h1 {
  font-size: clamp(52px, 8vw, 92px);
  max-width: 11ch;
}
.hero-lead {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.84);
  font-size: clamp(18px, 2.2vw, 22px);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.button-primary {
  background: linear-gradient(135deg, var(--orange), #ff5f33);
  color: #20140d;
  box-shadow: 0 20px 40px rgba(247,55,6,.26);
}
.button-secondary,
.button-light {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.12);
  color: #fff;
  backdrop-filter: blur(14px);
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}
.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}
.hero-points svg {
  width: 18px;
  height: 18px;
  color: #ffb06b;
}

.section { padding: 96px 0; }
.services-section { padding-top: 74px; }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 30px;
  align-items: end;
  margin-bottom: 30px;
}
.section-heading-compact {
  grid-template-columns: 1fr;
  margin-bottom: 24px;
}
.section-heading h2,
.quote-copy h2 {
  font-size: clamp(38px, 6vw, 62px);
}
.section-heading p,
.quote-copy p,
.footer-brand p,
.thank-you-card p,
.not-found-card p {
  color: var(--muted);
  font-size: 16px;
}
.section-heading > p { margin: 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.service-card,
.project-card,
.quote-form {
  border: 1px solid rgba(255,255,255,.12);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}
.service-card {
  min-height: 228px;
  padding: 28px;
  border-radius: 28px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover,
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-index {
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.service-card h3 {
  margin: 24px 0 10px;
  font-size: 28px;
  letter-spacing: -.04em;
}
.service-card p,
.project-card figcaption strong,
.contact-cards small,
.form-note,
.footer-links span,
.footer-bottom p { color: var(--muted); }
.service-card p { margin: 0; font-size: 15px; }

.project-section {
  background: linear-gradient(180deg, rgba(255,255,255,.38) 0%, rgba(241,235,225,.68) 100%);
}
.project-grid.three-up {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.project-card {
  overflow: hidden;
  border-radius: 30px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.project-card img {
  width: 100%;
  height: clamp(280px, 30vw, 380px);
  object-fit: cover;
  object-position: center center;
}
.project-card figcaption {
  display: grid;
  gap: 8px;
  padding: 22px;
}
.project-card span {
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.project-card strong {
  font-size: 18px;
  line-height: 1.45;
  font-weight: 800;
  color: rgba(255,255,255,.92);
}

.quote-section {
  background: linear-gradient(180deg, rgba(255,255,255,.4) 0%, rgba(241,235,225,.72) 100%);
}
.quote-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(34px, 5vw, 70px);
  align-items: start;
}
.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}
.contact-cards a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.72);
  transition: transform .2s ease, border-color .2s ease;
}
.contact-cards a:hover { transform: translateX(4px); border-color: rgba(247,55,6,.36); }
.contact-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 14px;
  background: var(--green);
  color: #fff;
}
.contact-cards a > span:last-child { display: grid; }
.contact-cards small {
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.contact-cards strong {
  margin-top: 2px;
  font-size: 16px;
}
.quote-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.quote-form label {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,.92);
  font-size: 13px;
  font-weight: 850;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(16,22,23,.12);
  border-radius: 14px;
  background: #faf8f3;
  color: #fff;
  padding: 14px 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.quote-form textarea { min-height: 132px; resize: vertical; }
.quote-form input::placeholder,
.quote-form textarea::placeholder { color: #99a3a2; }
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(247,55,6,.14);
}
.form-submit { width: 100%; }
.form-note { margin: 0; font-size: 12px; text-align: center; }
.honeypot { position: absolute !important; left: -9999px !important; }

.site-footer {
  padding: 70px 0 24px;
  background: #0d1719;
  color: #fff;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr .7fr .8fr;
  gap: 44px;
  padding-bottom: 40px;
}
.brand-light img { width: clamp(120px, 13vw, 150px); }
.footer-brand p {
  max-width: 460px;
  margin: 20px 0 0;
  color: rgba(255,255,255,.58);
}
.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}
.footer-links strong {
  margin-bottom: 8px;
  color: rgba(255,255,255,.42);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.footer-links a,
.footer-links span {
  color: rgba(255,255,255,.78);
  font-size: 14px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,.45);
  font-size: 11px;
}
.footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 850;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 18px;
  border: 2px solid rgba(255,255,255,.72);
  border-radius: 999px;
  background: #25d366;
  color: #073b1a;
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 18px 38px rgba(0,0,0,.18);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.25,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay { transition-delay: .12s; }

.thank-you-page,
.not-found-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background: linear-gradient(145deg, #f7f3eb, #ece5d8);
}
.thank-you-card,
.not-found-card {
  width: min(100%, 760px);
  padding: clamp(32px, 7vw, 64px);
  border-radius: 36px;
  background: var(--paper);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.thank-you-card .brand,
.not-found-card .brand {
  justify-content: center;
  margin-bottom: 36px;
}
.thank-you-card .brand img,
.not-found-card .brand img {
  width: clamp(150px, 18vw, 210px);
}
.thank-you-card h1,
.not-found-card h1 { font-size: clamp(40px, 7vw, 68px); }
.thank-you-card p,
.not-found-card p { max-width: 560px; margin: 22px auto 0; }
.thank-you-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .project-grid.three-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .project-grid.three-up .project-card:last-child { grid-column: 1 / -1; }
  .quote-grid,
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  :root {
    --header-height: 76px;
    --header-compact-height: 62px;
  }
  .container,
  .hero-shell { width: min(100% - 32px, var(--max)); }
  .brand img {
    width: 110px;
    max-height: calc(var(--header-height) - 6px);
  }
  .brand-light img { width: 104px; }
  .site-header.is-compact .brand img {
    width: 84px;
    max-height: calc(var(--header-compact-height) - 10px);
  }
  .nav-phone span { display: none; }
  .nav-phone { width: 48px; padding: 0; }
  .menu-button { display: grid; place-items: center; }
  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: grid;
    align-content: start;
    gap: 4px;
    padding: 18px 16px 26px;
    background: rgba(10,12,14,.98);
    border: 0;
    border-top: 1px solid rgba(255,255,255,.08);
    border-radius: 0 0 24px 24px;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform .25s ease, opacity .25s ease, visibility .25s ease;
    box-shadow: 0 20px 35px rgba(0,0,0,.42);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .site-header.is-compact .nav-links {
    top: var(--header-compact-height);
  }
  .nav-links a {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,.06);
  }
  .hero-full { min-height: calc(100vh - var(--header-height)); }
  .hero-shell { padding: 86px 0 38px; }
  .hero h1 { max-width: 11ch; }
  .section,
  .services-section { padding: 78px 0; }
  .section-heading,
  .services-grid,
  .project-grid.three-up,
  .quote-grid,
  .footer-top,
  .form-row { grid-template-columns: 1fr; }
  .project-grid.three-up .project-card:last-child { grid-column: auto; }
  .section-heading { gap: 18px; }
  .project-card img { height: 360px; }
  .footer-bottom {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 72px;
    --header-compact-height: 58px;
  }
  .site-header { height: var(--header-height); }
  .container,
  .hero-shell { width: min(100% - 24px, var(--max)); }
  .brand img { width: 96px; }
  .brand-light img { width: 96px; }
  .site-header.is-compact .brand img { width: 78px; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(10,14,16,.44) 0%, rgba(10,14,16,.62) 52%, rgba(10,14,16,.76) 100%),
      linear-gradient(90deg, rgba(10,14,16,.4) 0%, rgba(10,14,16,.2) 100%);
  }
  .hero-shell { padding: 84px 0 26px; }
  .hero h1 { font-size: 46px; }
  .hero-lead { font-size: 17px; }
  .button,
  .button-secondary,
  .button-primary,
  .nav-phone { min-height: 48px; }
  .hero-actions .button { width: 100%; }
  .hero-points { gap: 8px; }
  .hero-points li {
    width: 100%;
    justify-content: flex-start;
  }
  .service-card,
  .quote-form,
  .project-card,
  .thank-you-card,
  .not-found-card { border-radius: 24px; }
  .quote-form { padding: 20px; }
  .project-card img { height: 300px; }
  .floating-whatsapp {
    left: 14px;
    right: 14px;
    justify-content: center;
  }
}
