:root {
  --navy-950: #041425;
  --navy-900: #071b31;
  --navy-850: #0a243e;
  --navy-800: #102d49;
  --red: #ef2b2f;
  --red-dark: #d71920;
  --green: #13984b;
  --orange: #f26722;
  --blue: #0c63bb;
  --yellow: #e1aa0a;
  --ink: #112239;
  --muted: #66748a;
  --line: #e0e5ec;
  --soft: #f6f7f9;
  --white: #fff;
  --container: 1180px;
  --shadow: 0 14px 34px rgba(14, 37, 61, .12);
  --shadow-lg: 0 26px 68px rgba(5, 24, 43, .24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
svg { display: block; }
.container { width: min(calc(100% - 36px), var(--container)); margin-inline: auto; }
.section { padding: 56px 0 62px; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 500;
  padding: 10px 14px;
  color: var(--navy-900);
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.skip-link:focus { top: 16px; }

/* Top bar */
.topbar {
  color: #fff;
  background: linear-gradient(90deg, #06182c, #0b263f);
  font-size: .78rem;
}
.topbar-inner {
  min-height: 39px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar-info,
.topbar-actions,
.social-mini {
  display: flex;
  align-items: center;
}
.topbar-info { gap: 28px; }
.topbar-info span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .9);
}
.topbar-info svg {
  width: 14px;
  height: 14px;
  fill: var(--red);
}
.topbar-actions { gap: 18px; }
.social-mini { gap: 8px; }
.social-mini span {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #2a4259;
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 900;
}
.top-phone {
  align-self: stretch;
  min-height: 39px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  font-size: .88rem;
  font-weight: 900;
}
.top-phone svg { width: 18px; height: 18px; fill: currentColor; }

/* Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(5,24,43,.08);
  backdrop-filter: blur(14px);
}
.nav-row {
  min-height: 72px;
  display: grid;
  grid-template-columns: 210px 1fr 184px;
  align-items: center;
  gap: 24px;
}
.logo {
  width: fit-content;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.logo strong {
  color: var(--red-dark);
  font-size: 2.62rem;
  font-weight: 950;
  letter-spacing: -.055em;
  text-shadow: 0 3px 0 rgba(0,0,0,.08);
}
.logo small {
  margin-top: 3px;
  color: #050505;
  font-size: .59rem;
  font-weight: 950;
  letter-spacing: .03em;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: #101b29;
  font-size: .77rem;
  font-weight: 900;
  text-transform: uppercase;
}
.main-nav a { padding: 27px 0 24px; }
.main-nav a:hover,
.main-nav a.active { color: var(--red); }
.nav-quote {
  min-height: 42px;
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-900), #0d2b49);
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(7,27,49,.16);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}
.nav-quote:hover { background: var(--red-dark); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: #f1f3f6;
  border-radius: 8px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy-900);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 475px;
  overflow: hidden;
  color: #fff;
  background: var(--navy-950);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-house.webp");
  background-position: center right;
  background-size: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 24, 43, .97) 0%, rgba(5, 24, 43, .88) 34%, rgba(5, 24, 43, .30) 64%, rgba(5, 24, 43, .05) 100%),
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.12));
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 475px;
  display: flex;
  align-items: center;
  padding-top: 35px;
  padding-bottom: 28px;
}
.hero-copy { width: min(530px, 100%); }
.hero-brand {
  margin: 0;
  color: var(--red);
  font-size: clamp(4rem, 7vw, 5.4rem);
  font-weight: 950;
  letter-spacing: -.06em;
  line-height: .85;
  text-shadow: 0 5px 0 rgba(0,0,0,.1);
}
.hero h1 {
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(2rem, 4.1vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -.035em;
}
.hero-lead {
  max-width: 470px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.92);
  font-size: 1.06rem;
}
.hero-divider {
  width: 390px;
  max-width: 100%;
  height: 1px;
  margin: 22px 0 18px;
  background: rgba(255,255,255,.34);
}
.hero-promises {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  max-width: 470px;
}
.hero-promises article {
  display: flex;
  align-items: center;
  gap: 10px;
}
.promise-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  color: #fff;
}
.promise-icon svg { width: 31px; height: 31px; fill: currentColor; }
.hero-promises article > span:last-child { display: grid; line-height: 1.15; }
.hero-promises strong { font-size: .78rem; }
.hero-promises small { margin-top: 3px; color: rgba(255,255,255,.75); font-size: .68rem; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 26px;
}
.hero-call,
.hero-whatsapp {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 10px 21px;
  border-radius: 6px;
  font-size: .92rem;
  font-weight: 900;
}
.hero-call {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}
.hero-call svg { width: 20px; height: 20px; fill: currentColor; }
.hero-whatsapp {
  color: #fff;
  background: rgba(7,27,49,.58);
  border: 2px solid #fff;
}
.wa-circle {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: .79rem;
}

/* Section title */
.section-title {
  margin-bottom: 20px;
  text-align: center;
}
.section-title h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -.035em;
}
.section-title h2 span { color: var(--red); }
.section-title p {
  margin: 8px auto 0;
  color: var(--muted);
  font-size: .94rem;
}

/* Services */
.services { background: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
  margin-top: 22px;
}
.service-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e6ec;
  border-radius: 12px;
  box-shadow: 0 12px 25px rgba(18, 38, 59, .1);
  transition: transform .22s ease, box-shadow .22s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 38px rgba(18, 38, 59, .15);
}
.service-card > img {
  width: 100%;
  height: 166px;
  object-fit: cover;
}
.service-number {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border-radius: 11px 0 11px 0;
  font-size: .91rem;
  font-weight: 950;
}
.service-round-icon {
  position: absolute;
  left: 14px;
  top: 140px;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 9px 20px rgba(0,0,0,.15);
}
.service-round-icon svg { width: 25px; height: 25px; fill: currentColor; }
.service-body { min-height: 213px; padding: 31px 15px 16px; }
.service-body h3 {
  margin: 0 0 9px;
  color: var(--ink);
  font-size: 1rem;
}
.service-body p {
  margin: 0;
  color: #3b4657;
  font-size: .77rem;
  line-height: 1.48;
}
.service-body a {
  position: absolute;
  left: 15px;
  bottom: 15px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent);
  font-size: .75rem;
  font-weight: 900;
}
.card-green { --accent: var(--green); }
.card-orange { --accent: var(--orange); }
.card-blue { --accent: var(--blue); }
.card-yellow { --accent: var(--yellow); }
.card-red { --accent: var(--red); }

/* Why us */
.why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 335px;
  border-bottom: 3px solid var(--red);
  background: var(--navy-950);
}
.why-copy {
  display: flex;
  justify-content: flex-end;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(5,24,43,.98), rgba(8,36,63,.96));
}
.why-inner {
  width: min(590px, 100%);
  padding: 34px 24px 28px 34px;
}
.why h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.05;
}
.why h2 span { color: var(--red); }
.why-inner > p {
  margin: 9px 0 0;
  color: rgba(255,255,255,.82);
  font-size: .92rem;
}
.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 20px;
}
.quality-grid article {
  min-height: 145px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 7px;
}
.quality-grid svg {
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  fill: #fff;
}
.quality-grid strong {
  color: #fff;
  font-size: .82rem;
  line-height: 1.22;
}
.quality-grid span {
  margin-top: 6px;
  color: rgba(255,255,255,.68);
  font-size: .63rem;
  line-height: 1.3;
}
.why-image {
  min-height: 335px;
  background-image:
    linear-gradient(90deg, rgba(239,43,47,.28), rgba(239,43,47,0) 3%),
    url("assets/why-kitchen.webp");
  background-position: center;
  background-size: cover;
}

/* Coverage */
.coverage { padding-top: 24px; padding-bottom: 26px; }
.coverage .section-title { margin-bottom: 12px; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(9, minmax(0,1fr));
  align-items: stretch;
  margin-top: 17px;
}
.areas-grid article {
  min-height: 83px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 5px;
  text-align: center;
  border-right: 1px solid #d8dde4;
}
.areas-grid article:last-child { border-right: 0; }
.area-icon {
  color: var(--red);
  font-size: 1.7rem;
  line-height: 1;
}
.areas-grid strong {
  color: #17283e;
  font-size: .76rem;
}

/* CTA */
.cta {
  color: #fff;
  background:
    radial-gradient(circle at 20% 30%, rgba(21,62,97,.5), transparent 38%),
    linear-gradient(90deg, #06182c, #0a2844);
}
.cta-row {
  min-height: 112px;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  align-items: center;
  gap: 44px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.cta-copy h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  line-height: 1.02;
}
.cta-copy h2 span { color: var(--red); }
.cta-copy p { margin: 7px 0 0; color: rgba(255,255,255,.78); font-size: .84rem; }
.cta-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}
.cta-phone,
.cta-whatsapp {
  min-height: 69px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 18px;
  border-radius: 7px;
}
.cta-phone { background: linear-gradient(135deg, var(--red), var(--red-dark)); }
.cta-whatsapp { background: linear-gradient(135deg, #17a851, #119443); }
.cta-phone svg { width: 31px; height: 31px; fill: currentColor; }
.cta-phone > span,
.cta-whatsapp > span:last-child { display: grid; line-height: 1.12; }
.cta-phone strong,
.cta-whatsapp strong { font-size: 1.18rem; }
.cta-phone small,
.cta-whatsapp small { margin-top: 4px; font-size: .72rem; }
.wa-circle.large { width: 37px; height: 37px; font-size: 1rem; }

/* Footer */
.site-footer { background: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr .9fr .95fr 1.15fr .75fr;
  gap: 34px;
  padding-top: 29px;
  padding-bottom: 24px;
}
.footer-logo strong { font-size: 2.7rem; }
.footer-about p {
  max-width: 250px;
  margin: 13px 0 0;
  color: #4f5b6d;
  font-size: .76rem;
  line-height: 1.55;
}
.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  color: #38465a;
  font-size: .74rem;
}
.footer-column h3 {
  margin: 4px 0 6px;
  color: #17283e;
  font-size: .78rem;
  text-transform: uppercase;
}
.footer-column a:hover { color: var(--red); }
.footer-column a::before { content: "✓"; margin-right: 8px; color: var(--navy-900); font-weight: 900; }
.contact-column span,
.contact-column a { line-height: 1.45; }
.contact-column a::before { content: "•"; color: var(--red); }
.social-footer { display: flex; gap: 8px; }
.social-footer span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #263f59;
  border-radius: 50%;
  font-weight: 900;
}
.footer-bottom {
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #687487;
  border-top: 1px solid #e1e5ea;
  font-size: .68rem;
}
.footer-bottom p { margin: 0; }
.mobile-actions { display: none; }

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  place-items: center;
  padding: 20px;
}
.modal.is-open { display: grid; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 15, 28, .76);
  backdrop-filter: blur(6px);
}
.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 32px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute;
  right: 14px;
  top: 11px;
  width: 35px;
  height: 35px;
  border: 0;
  color: var(--navy-900);
  background: #eef1f5;
  border-radius: 50%;
  font-size: 1.35rem;
}
.modal-kicker {
  margin: 0;
  color: var(--red);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.modal-dialog h2 { margin: 7px 0 0; color: var(--navy-900); font-size: 1.7rem; }
.modal-text { margin: 8px 0 20px; color: var(--muted); font-size: .88rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.modal-dialog label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: #17283e;
  font-size: .78rem;
  font-weight: 800;
}
.modal-dialog input,
.modal-dialog select,
.modal-dialog textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: #f8f9fb;
  border: 1px solid #d7dee7;
  border-radius: 7px;
  outline: 0;
}
.modal-dialog input:focus,
.modal-dialog select:focus,
.modal-dialog textarea:focus {
  background: #fff;
  border-color: #7790aa;
  box-shadow: 0 0 0 4px rgba(7,27,49,.08);
}
.modal-dialog textarea { resize: vertical; }
.modal-submit {
  width: 100%;
  min-height: 48px;
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, #17a851, #119443);
  border-radius: 7px;
  font-weight: 900;
}
.form-status { min-height: 20px; margin: 10px 0 0; color: var(--green); font-size: .78rem; text-align: center; }

/* Motion */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1120px) {
  .nav-row { grid-template-columns: 185px 1fr 170px; }
  .main-nav { gap: 18px; font-size: .72rem; }
  .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-body { min-height: 190px; }
  .areas-grid { grid-template-columns: repeat(5, 1fr); }
  .areas-grid article { border-bottom: 1px solid #d8dde4; }
  .areas-grid article:nth-child(5n) { border-right: 0; }
  .footer-grid { grid-template-columns: 1.3fr .8fr .9fr 1fr; }
  .social-column { grid-column: 4; }
}

@media (max-width: 900px) {
  body { padding-bottom: 70px; }
  .topbar-inner { min-height: 44px; }
  .topbar-info span:nth-child(2) { display: none; }
  .nav-row {
    min-height: 70px;
    display: flex;
    justify-content: space-between;
  }
  .logo strong { font-size: 2.25rem; }
  .menu-toggle { display: block; order: 3; }
  .nav-quote { margin-left: auto; padding: 0 17px; }
  .main-nav {
    position: fixed;
    inset: 114px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px 10px; border-radius: 7px; }
  .main-nav a:hover { background: #f3f5f7; }
  .hero,
  .hero-content { min-height: 520px; }
  .hero-bg { background-position: 64% center; }
  .hero-overlay {
    background: linear-gradient(90deg, rgba(5,24,43,.97) 0%, rgba(5,24,43,.88) 55%, rgba(5,24,43,.46) 100%);
  }
  .why { grid-template-columns: 1fr; }
  .why-copy { justify-content: center; }
  .why-inner { width: min(100%, 720px); padding: 38px 26px; }
  .why-image { min-height: 330px; }
  .cta-row { grid-template-columns: 1fr; gap: 20px; }
  .cta-copy { text-align: center; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .social-column { grid-column: auto; }
  .mobile-actions {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 9px;
    z-index: 140;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 7px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(5,24,43,.12);
    border-radius: 13px;
    box-shadow: 0 16px 38px rgba(5,24,43,.22);
    backdrop-filter: blur(12px);
  }
  .mobile-actions a {
    min-height: 46px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 8px;
    font-weight: 900;
  }
  .mobile-phone { background: var(--red); }
  .mobile-wa { background: var(--green); }
}

@media (max-width: 650px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .topbar { font-size: .7rem; }
  .topbar-info { gap: 10px; }
  .social-mini { display: none; }
  .top-phone { padding: 0 13px; }
  .nav-quote { display: none; }
  .main-nav { inset: 114px 12px auto; }
  .hero,
  .hero-content { min-height: 570px; }
  .hero-content { align-items: flex-end; padding-bottom: 42px; }
  .hero-bg { background-position: 72% center; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5,24,43,.20) 0%, rgba(5,24,43,.48) 30%, rgba(5,24,43,.97) 72%, rgba(5,24,43,.99) 100%);
  }
  .hero-copy { width: 100%; }
  .hero-brand { font-size: 3.8rem; }
  .hero h1 { font-size: 2.1rem; }
  .hero-lead { font-size: .98rem; }
  .hero-divider { margin: 18px 0 15px; }
  .hero-promises { grid-template-columns: 1fr; gap: 10px; }
  .hero-promises article { width: fit-content; }
  .hero-actions { flex-direction: column; }
  .hero-call,
  .hero-whatsapp { width: 100%; }
  .section { padding: 48px 0 52px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card > img { height: 220px; }
  .service-round-icon { top: 194px; }
  .service-body { min-height: 176px; }
  .quality-grid { grid-template-columns: repeat(2, 1fr); }
  .why-image { min-height: 260px; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .areas-grid article:nth-child(5n) { border-right: 1px solid #d8dde4; }
  .areas-grid article:nth-child(3n) { border-right: 0; }
  .cta-actions { grid-template-columns: 1fr; }
  .cta-phone,
  .cta-whatsapp { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-about p { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; justify-content: center; padding: 13px 0; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .modal-dialog { padding: 25px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
