:root {
  --red: #d71920;
  --red-dark: #a81217;
  --ink: #171717;
  --muted: #626262;
  --line: #e6e1dc;
  --paper: #fffdf9;
  --soft: #f5f2ec;
  --green: #2f6d5b;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c4a;
  --gold: #c9912a;
  --shadow: 0 18px 45px rgba(30, 20, 15, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid rgba(230, 225, 220, 0.85);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-flag {
  display: block;
  width: clamp(72px, 8vw, 112px);
  height: 42px;
  object-fit: contain;
  object-position: center;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 6px 6px 0 #f2c94c;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #2f2a27;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover {
  color: var(--red-dark);
  border-color: var(--red);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 74px);
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.25) 54%, rgba(0, 0, 0, 0.08)),
    url("https://images.unsplash.com/photo-1581244277943-fe4a9c777189?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 26%;
  background: linear-gradient(0deg, var(--paper), transparent);
}

.hero-content {
  position: relative;
  width: min(860px, calc(100% - 36px));
  margin: 0 0 clamp(50px, 9vh, 100px) clamp(18px, 7vw, 92px);
  color: #fff;
}

.canada-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 7px 10px;
  color: #fff;
  background: rgba(215, 25, 32, 0.94);
  border-radius: 8px;
  font-weight: 800;
}

.flag {
  display: grid;
  width: 30px;
  height: 20px;
  place-items: center;
  background: linear-gradient(90deg, #d71920 0 25%, #fff 25% 75%, #d71920 75%);
  border-radius: 2px;
}

.flag span {
  width: 8px;
  height: 10px;
  background: var(--red);
  clip-path: polygon(50% 0, 60% 32%, 88% 20%, 73% 48%, 100% 58%, 67% 64%, 72% 100%, 50% 74%, 28% 100%, 33% 64%, 0 58%, 27% 48%, 12% 20%, 40% 32%);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 18px;
  font-size: 5.7rem;
  line-height: 0.94;
}

.hero-content p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #fff;
  background: var(--red);
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.whatsapp {
  color: #fff;
  background: var(--whatsapp-dark);
}

.button.whatsapp:hover {
  background: #0f7f43;
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.1);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 9vw, 110px) 0;
}

.section-kicker {
  margin-bottom: 14px;
  color: var(--red);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.intro {
  max-width: 880px;
  text-align: center;
}

.intro h2,
.section-heading h2,
.limits h2,
.about h2,
.faq h2,
.contact h2 {
  margin-bottom: 14px;
  font-size: 2.8rem;
  line-height: 1.08;
}

.intro p,
.section-heading p,
.about p,
.contact p {
  color: var(--muted);
  font-size: 1.07rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 34px;
}

.section-heading p {
  max-width: 420px;
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 228px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(50, 40, 33, 0.06);
}

.icon {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 34px;
  background: var(--soft);
  border-radius: 8px;
}

.icon::before,
.icon::after {
  position: absolute;
  content: "";
}

.icon-outlet::before {
  width: 18px;
  height: 24px;
  border: 3px solid var(--red);
  border-radius: 7px;
}

.icon-outlet::after {
  width: 4px;
  height: 4px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 8px 0 0 var(--red);
  transform: translateX(-4px);
}

.icon-bath::before {
  width: 24px;
  height: 14px;
  border: 3px solid var(--green);
  border-top: 0;
  border-radius: 0 0 10px 10px;
  transform: translateY(5px);
}

.icon-bath::after {
  width: 16px;
  height: 11px;
  border-top: 3px solid var(--green);
  border-left: 3px solid var(--green);
  border-radius: 8px 0 0;
  transform: translate(-6px, -8px);
}

.icon-paint::before {
  width: 24px;
  height: 16px;
  border: 3px solid var(--gold);
  border-radius: 3px;
}

.icon-paint::after {
  width: 6px;
  height: 20px;
  background: var(--gold);
  border-radius: 4px;
  transform: translateY(15px);
}

.icon-tile::before {
  width: 24px;
  height: 24px;
  background:
    linear-gradient(90deg, transparent 47%, var(--red) 47% 53%, transparent 53%),
    linear-gradient(0deg, transparent 47%, var(--red) 47% 53%, transparent 53%);
  border: 3px solid var(--red);
}

.icon-door::before {
  width: 18px;
  height: 28px;
  border: 3px solid var(--green);
  border-radius: 2px;
}

.icon-door::after {
  width: 4px;
  height: 4px;
  background: var(--green);
  border-radius: 50%;
  transform: translate(5px, 2px);
}

.icon-tool::before {
  width: 26px;
  height: 5px;
  background: var(--gold);
  border-radius: 99px;
  transform: rotate(-38deg);
}

.icon-tool::after {
  width: 9px;
  height: 9px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  transform: translate(-9px, 8px) rotate(-38deg);
}

.service-card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.service-card p,
.steps p,
.faq p,
.faq li,
.limits-list p {
  color: var(--muted);
}

.limits {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: #fff;
}

.limits h2 {
  margin-bottom: 0;
}

.limits-list {
  display: grid;
  gap: 14px;
}

.limits-list p {
  margin: 0;
  padding: 18px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.limits-list strong {
  color: #fff;
}

.about {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}

.about-image {
  min-height: 500px;
  background:
    linear-gradient(180deg, rgba(215, 25, 32, 0.04), rgba(0, 0, 0, 0.12)),
    url("photo.jpg") center / cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
  content: "";
  width: 12px;
  height: 7px;
  margin-top: 8px;
  border-bottom: 3px solid var(--green);
  border-left: 3px solid var(--green);
  transform: rotate(-45deg);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.steps article {
  min-height: 230px;
  padding: 26px;
  background: var(--soft);
  border-radius: 8px;
}

.steps span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 32px;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-weight: 900;
}

.service-areas {
  width: 100vw;
  max-width: none;
  margin-inline: calc(50% - 50vw);
  padding: clamp(52px, 7vw, 86px) clamp(18px, 5vw, 64px);
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.service-areas .section-heading,
.service-areas .area-list {
  max-width: 1120px;
  margin-inline: auto;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-list span {
  padding: 10px 14px;
  color: #332d29;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 850;
  box-shadow: 0 8px 20px rgba(50, 40, 33, 0.05);
}

.faq {
  max-width: 920px;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

details ul {
  margin: -8px 0 0;
  padding: 0 20px 20px 40px;
}

details li + li {
  margin-top: 7px;
}

.contact {
  padding: clamp(60px, 9vw, 105px) max(18px, calc((100vw - 1180px) / 2));
  color: #fff;
  background:
    linear-gradient(90deg, rgba(23, 23, 23, 0.94), rgba(23, 23, 23, 0.72)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.contact-content {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.contact p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  font-weight: 850;
}

.contact-links a {
  width: fit-content;
  border-bottom: 2px solid var(--red);
}

.contact-links .whatsapp-link {
  color: var(--whatsapp);
  border-color: var(--whatsapp);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  color: var(--ink);
  background: #fff;
  border-radius: 8px;
}

.form-extra {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  display: grid;
  gap: 7px;
  color: #332d29;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.file-input {
  padding: 11px 12px;
}

.field-help {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.contact-form .form-policy {
  margin: -2px 0 2px;
  color: #777;
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.35;
  text-align: left;
}

.contact-form .form-policy a {
  color: #3b332e;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.form-status {
  margin: 0;
  padding: 10px 12px;
  color: #5f6f68;
  background: #dff1e9;
  border: 1px solid #7bb59f;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
}

.form-status.is-error {
  color: var(--red-dark);
  background: rgba(215, 25, 32, 0.08);
  border-color: rgba(215, 25, 32, 0.24);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 56px);
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a,
.footer-links a {
  font-weight: 850;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  width: min(420px, calc(100% - 36px));
  align-items: center;
  gap: 16px;
  padding: 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cookie-banner a {
  color: var(--ink);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-button {
  min-height: 42px;
  padding: 9px 16px;
  color: #fff;
  background: var(--ink);
  flex: 0 0 auto;
}

.cookie-button:hover {
  background: #2c2c2c;
}

.legal-main {
  width: min(900px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(48px, 8vw, 90px) 0;
}

.legal-main h1 {
  margin-bottom: 12px;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1;
}

.legal-updated {
  margin-bottom: 34px;
  color: var(--muted);
  font-weight: 750;
}

.legal-section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
}

.legal-section ul {
  margin: 0;
  padding-left: 22px;
}

.legal-section li + li {
  margin-top: 8px;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 10px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.78) 64%),
      url("https://images.unsplash.com/photo-1581244277943-fe4a9c777189?auto=format&fit=crop&w=1000&q=82") center / cover;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto 58px;
  }

  h1 {
    font-size: 3.15rem;
  }

  .intro h2,
  .section-heading h2,
  .limits h2,
  .about h2,
  .faq h2,
  .contact h2 {
    font-size: 2rem;
  }

  .section-heading,
  .limits,
  .about,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .section-heading {
    flex-direction: column;
    align-items: start;
    gap: 12px;
  }

  .section-heading p {
    max-width: none;
  }

  .service-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 360px;
  }

  .site-footer {
    flex-direction: column;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
  }
}

@media (max-width: 520px) {
  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand small {
    display: none;
  }

  .brand-flag {
    width: 64px;
    height: 34px;
  }

  .hero-actions,
  .hero-actions .button,
  .contact-form .button {
    width: 100%;
  }

  .button {
    padding-inline: 14px;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }
}
