:root {
  --ink: #101010;
  --muted: #66635f;
  --paper: #f5f3ef;
  --white: #fff;
  --red: #df171c;
  --red-dark: #ae0d12;
  --line: rgba(16, 16, 16, .14);
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

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

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--line);
}

.brand {
  width: clamp(190px, 21vw, 280px);
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
}

.nav > a {
  color: var(--ink);
  font-size: .86rem;
  font-weight: 800;
  text-decoration: none;
}

.nav > a:hover,
.phone-link:hover,
.email-link:hover,
.social-links a:hover {
  color: var(--red);
}

.login-link {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.language-switch {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  min-width: 82px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
}

.lang-btn {
  min-height: 34px;
  border: 0;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: .75rem;
  font-weight: 900;
}

.lang-btn.is-active {
  background: var(--ink);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 82vh;
  margin-top: 76px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #202020;
}

.hero-img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-img {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .67) 42%, rgba(0, 0, 0, .15) 78%);
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 670px;
  color: var(--white);
}

.eyebrow,
.section-label {
  margin: 0 0 10px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #fff;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3.5rem, 9vw, 7.2rem);
  line-height: .86;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.3vw, 4rem);
  line-height: .98;
  letter-spacing: 0;
}

.lead {
  max-width: 580px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(1rem, 1.6vw, 1.24rem);
}

.hero-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, .55);
  color: var(--white);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.price-band {
  padding: 34px 0;
  background: var(--red);
  color: var(--white);
}

.price-layout {
  display: grid;
  grid-template-columns: .7fr 1.3fr auto;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.price-band .section-label {
  color: rgba(255, 255, 255, .72);
}

.price {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: .9;
}

.price span {
  font-size: .32em;
  white-space: nowrap;
}

.price-layout > p {
  margin: 0;
  color: rgba(255, 255, 255, .84);
}

.section {
  padding: clamp(72px, 9vw, 120px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading > p:last-child {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr .8fr;
  gap: 12px;
  height: clamp(360px, 48vw, 590px);
}

.photo-grid figure {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ddd;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-row > div {
  display: grid;
  gap: 5px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.feature-row > div:first-child {
  padding-left: 0;
}

.feature-row > div:last-child {
  border-right: 0;
}

.feature-row strong {
  font-size: 1rem;
}

.feature-row span {
  color: var(--muted);
  font-size: .92rem;
}

.location-section {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  min-height: 550px;
  background: var(--ink);
  color: var(--white);
}

.location-photo {
  min-height: 430px;
}

.location-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-copy {
  align-self: center;
  max-width: 610px;
  padding: clamp(48px, 7vw, 100px);
}

.location-copy p:not(.section-label) {
  color: rgba(255, 255, 255, .7);
}

.phone-link,
.email-link {
  font-weight: 900;
}

.signup-section {
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--white);
}

.signup-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(38px, 8vw, 100px);
  align-items: start;
}

.signup-copy > p:not(.section-label) {
  color: var(--muted);
}

.signup-price {
  display: grid;
  gap: 2px;
  margin: 28px 0 18px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signup-price span {
  color: var(--muted);
}

.signup-price strong {
  color: var(--red);
  font-size: 2.6rem;
  line-height: 1;
}

.signup-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

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

.signup-form label {
  display: grid;
  gap: 7px;
  color: #333;
  font-size: .86rem;
  font-weight: 800;
}

.signup-form input,
.signup-form select,
.signup-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #bbb8b2;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.signup-form textarea {
  min-height: 105px;
  resize: vertical;
}

.signup-form input:focus,
.signup-form select:focus,
.signup-form textarea:focus {
  outline: 3px solid rgba(223, 23, 28, .18);
  border-color: var(--red);
}

.consent {
  grid-template-columns: 20px 1fr !important;
  align-items: start;
  font-weight: 400 !important;
}

.consent input {
  min-height: 0;
  margin: 3px 0 0;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.turnstile-wrap {
  min-height: 0;
}

.submit-btn {
  width: 100%;
}

.site-footer {
  padding: 32px 0;
  background: #090909;
  color: var(--white);
}

.footer-layout {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 30px;
}

.footer-layout > img {
  width: 180px;
  height: auto;
  object-fit: contain;
  border-radius: 3px;
}

.footer-layout > div {
  display: grid;
  gap: 3px;
}

.footer-layout span {
  color: rgba(255, 255, 255, .58);
}

.social-links {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.social-links a {
  color: rgba(255, 255, 255, .76);
  text-decoration: none;
  font-size: .86rem;
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 15;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #24a865;
  color: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
  font-size: .76rem;
  font-weight: 900;
  text-decoration: none;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px 0;
  background: var(--ink);
}

.thanks-wrap {
  width: min(720px, calc(100% - 40px));
}

.thanks-logo {
  width: min(360px, 80%);
  margin: 0 auto 22px;
  background: var(--white);
  border-radius: var(--radius);
}

.thanks-panel {
  padding: clamp(26px, 6vw, 52px);
  border-radius: var(--radius);
  background: var(--white);
}

.thanks-panel h1 {
  max-width: none;
  color: var(--ink);
  font-size: clamp(2.4rem, 7vw, 4.8rem);
}

.thanks-panel p {
  color: var(--muted);
}

.summary-box {
  margin: 22px 0;
  padding: 16px;
  white-space: pre-wrap;
  background: var(--paper);
  border-left: 4px solid var(--red);
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
  }

  .nav > a:not(.login-link) {
    display: none;
  }

  .hero {
    margin-top: 76px;
  }

  .price-layout,
  .signup-layout {
    grid-template-columns: 1fr;
  }

  .price-layout {
    gap: 20px;
  }

  .price-layout .btn {
    justify-self: start;
  }

  .photo-grid {
    grid-template-columns: 1.2fr .8fr;
  }

  .photo-grid figure:last-child {
    display: none;
  }

  .location-section {
    grid-template-columns: 1fr;
  }

  .location-copy {
    max-width: none;
  }

  .footer-layout {
    grid-template-columns: 150px 1fr;
  }

  .social-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    min-height: 68px;
    padding: 8px 14px;
  }

  .brand {
    width: 150px;
  }

  .login-link {
    padding-left: 0;
    border-left: 0;
    font-size: .76rem !important;
  }

  .nav {
    gap: 8px;
  }

  .hero {
    min-height: 76vh;
    margin-top: 68px;
  }

  .hero-img {
    object-position: 60% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(0, 0, 0, .91), rgba(0, 0, 0, .4));
  }

  h1 {
    font-size: clamp(3.1rem, 18vw, 5.3rem);
  }

  .hero-actions .btn,
  .location-actions .btn,
  .price-layout .btn {
    width: 100%;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    height: 430px;
  }

  .photo-grid figure:not(.photo-main) {
    display: none;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .feature-row > div,
  .feature-row > div:first-child {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-row > div:last-child {
    border-bottom: 0;
  }

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

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-layout > img {
    width: min(210px, 72vw);
  }

  .social-links {
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
