:root {
  --accent: #827444;
  --text: #222;
  --header-h: 92px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Lato, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}
.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, .18);
}
.header-top {
  height: 11px;
  background: var(--accent);
}
.header-row {
  min-height: calc(var(--header-h) - 11px);
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo img {
  width: 178px;
  max-width: 100%;
  display: block;
}
.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  color: var(--text);
  font: 700 13px/1.2 Roboto, Arial, sans-serif;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--accent);
}
.main-nav a.active {
  color: var(--accent);
}
.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: #111;
  font: 700 13px/1 Roboto, Arial, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
}

.hero-section {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 70px 0;
  background: #111;
  scroll-margin-top: var(--header-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .66), rgba(0, 0, 0, .34) 47%, rgba(0, 0, 0, .08)),
    rgba(0, 0, 0, .03);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 54px;
  align-items: center;
  min-width: 0;
}
.hero-copy {
  max-width: 720px;
  color: #fff;
  min-width: 0;
}
h1,
h2 {
  margin: 0;
  color: #fff;
  font-family: Lato, Arial, sans-serif;
  font-size: 58px;
  font-weight: 900;
  line-height: .98;
  letter-spacing: 0;
  text-transform: uppercase;
}
.divider {
  width: 280px;
  max-width: 100%;
  height: 5px;
  margin: 18px 0 24px;
  background: var(--accent);
}
.hero-copy p {
  margin: 0 0 22px;
  max-width: 660px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: break-word;
}
.support-line {
  color: rgba(255, 255, 255, .92);
}
.whatsapp-cta {
  display: inline-grid;
  grid-template-columns: 42px auto;
  grid-template-areas:
    "icon label"
    "icon phone";
  column-gap: 14px;
  align-items: center;
  margin: 4px 0 18px;
  color: #fff;
  text-decoration: none;
}
.whatsapp-cta img {
  grid-area: icon;
  width: 42px;
  height: 42px;
}
.whatsapp-cta span {
  grid-area: label;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
}
.whatsapp-cta strong {
  grid-area: phone;
  color: #fff;
  font: 700 28px/1.1 Roboto, Arial, sans-serif;
}

.lead-form {
  display: grid;
  gap: 10px;
  min-width: 0;
}
.hero-form {
  width: 100%;
  min-width: 0;
  padding: 24px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .24);
  backdrop-filter: blur(10px);
}
.lead-form label { display: block; }
.lead-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, .72);
  border-radius: 5px;
  background: #fafafa;
  color: #222;
  font: italic 700 15px/1.3 Lato, Arial, sans-serif;
  letter-spacing: 0;
  padding: 13px 14px;
}
.lead-form textarea {
  min-height: 108px;
  resize: vertical;
}
.lead-form button {
  width: 200px;
  height: 42px;
  border: 0;
  border-radius: 7px;
  background: var(--accent);
  color: #fff;
  font: 700 15px/1 Lato, Arial, sans-serif;
  letter-spacing: 0;
  cursor: pointer;
}
.lead-form button:hover {
  background: #949494;
  color: #222;
}

.site-footer {
  background: #fafafa;
  padding: 32px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 2fr;
  gap: 20px;
  align-items: center;
}
.logo-footer img {
  width: 260px;
}
blockquote {
  margin: 0;
  color: var(--accent);
  text-align: right;
  font: 900 18px/1.25 Lato, Arial, sans-serif;
  letter-spacing: 0;
}
.site-footer p {
  margin: 22px 0 0;
  color: var(--accent);
  text-align: center;
  font: 300 11px/1 Lato, Arial, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 35;
  width: 86px;
  height: 86px;
  display: inline-flex;
}
.whatsapp-float img {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 940px) {
  .menu-toggle { display: inline-block; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 20px;
    margin: 0;
    padding: 13px 4%;
    background: var(--accent);
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    color: #fff;
    font-size: 12px;
  }
  .main-nav a.active {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  .hero-section {
    min-height: auto;
    padding: 62px 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  h1,
  h2 {
    font-size: 44px;
  }
  .hero-copy p {
    font-size: 20px;
  }
  .hero-form {
    max-width: 420px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .logo-footer {
    justify-self: center;
  }
  blockquote {
    text-align: center;
  }
}

@media (max-width: 520px) {
  :root { --header-h: 84px; }
  .container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .header-row {
    min-height: calc(var(--header-h) - 11px);
  }
  .logo img {
    width: 148px;
  }
  .hero-section {
    padding: 48px 0;
  }
  .hero-grid {
    width: 100%;
    max-width: 300px;
  }
  .hero-copy,
  .hero-copy p {
    width: 100%;
    max-width: 300px;
  }
  .hero-copy p {
    overflow-wrap: anywhere;
  }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .68), rgba(0, 0, 0, .4)),
      rgba(0, 0, 0, .04);
  }
  h1,
  h2 {
    font-size: 34px;
  }
  .hero-copy p {
    font-size: 18px;
  }
  .divider {
    width: 220px;
  }
  .whatsapp-cta {
    max-width: 100%;
    width: 230px;
    grid-template-columns: 38px minmax(0, 1fr);
  }
  .whatsapp-cta span,
  .whatsapp-cta strong {
    overflow-wrap: anywhere;
  }
  .whatsapp-cta img {
    width: 38px;
    height: 38px;
  }
  .whatsapp-cta strong {
    font-size: 20px;
  }
  .hero-form {
    justify-self: start;
    width: 230px;
    max-width: 230px;
    padding: 18px;
  }
  .g-recaptcha {
    max-width: 100%;
    overflow: hidden;
  }
  .lead-form button {
    width: 100%;
  }
  .whatsapp-float {
    width: 76px;
    height: 76px;
  }
}
