:root {
  --teal: #1a2e2e;
  --teal-2: #25423f;
  --gold: #b8892a;
  --gold-2: #d4a842;
  --ivory: #fdfbf8;
  --cream: #f7f3ed;
  --ink: #1c1c1c;
  --soil: #5c5750;
  --border: #e0d8cc;
  --white: #ffffff;
  --indigo: #263b65;
  --moss: #526b4f;
  --wine: #6b3432;
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Raleway", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.lp-nav {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 48px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(0,0,0,.56), rgba(0,0,0,0));
}

.lp-brand,
.lp-nav-actions,
.lp-nav-actions a {
  display: flex;
  align-items: center;
}

.lp-brand {
  gap: 12px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0,0,0,.45);
}

.lp-brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 4px;
}

.lp-nav-actions { gap: 10px; }
.lp-nav-actions a {
  min-height: 40px;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lp-nav-actions .lp-nav-wa {
  background: var(--gold);
  border-color: var(--gold);
}

.lp-hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  padding: 112px clamp(18px, 4vw, 56px) 44px;
}

.lp-hero-media,
.lp-hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.lp-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lp-hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(11,16,16,.82), rgba(11,16,16,.48) 47%, rgba(11,16,16,.7)),
    linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.64));
}

.lp-hero-grid {
  width: min(1220px, 100%);
  min-height: calc(100svh - 156px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

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

.lp-kicker {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.04;
}

h1 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(3.15rem, 7vw, 6.6rem);
}

h2 {
  font-size: clamp(2.2rem, 4.5vw, 4.25rem);
  color: var(--ink);
}

h3 { font-size: 2rem; }

.lp-lead {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.84);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.lp-hero-ctas,
.lp-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.lp-btn:hover { transform: translateY(-2px); }
.lp-btn-primary {
  color: var(--white);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 16px 34px rgba(0,0,0,.22);
}
.lp-btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.48);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
}
.lp-btn-dark {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}

.lp-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.lp-trust-row span {
  padding: 8px 12px;
  color: rgba(255,255,255,.86);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  font-size: .82rem;
}

.lp-trust-row strong { color: var(--gold-2); }

.lead-panel {
  color: var(--ink);
  background: rgba(253,251,248,.96);
  border: 1px solid rgba(255,255,255,.52);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,.36);
  overflow: hidden;
}

.lead-panel-head {
  padding: 26px 28px 18px;
  background: linear-gradient(135deg, var(--teal), #10201f);
  color: var(--white);
}

.lead-panel-head p {
  margin: 0 0 8px;
  color: var(--gold-2);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.lead-panel-head h2 {
  color: var(--white);
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.lead-panel-head span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.72);
  font-size: .9rem;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px 28px 28px;
}

.field,
.check {
  display: grid;
  gap: 6px;
}

.field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field label {
  color: var(--teal);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 45px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  padding: 10px 12px;
}

.field textarea { resize: vertical; min-height: 84px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,137,42,.14);
}

.check {
  grid-template-columns: 18px 1fr;
  align-items: start;
  color: var(--soil);
  font-size: .76rem;
  line-height: 1.45;
}

.check input {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--gold);
}

.check a { color: var(--gold); font-weight: 700; }
.lead-submit { width: 100%; border: 0; cursor: pointer; }
.lead-submit:disabled { opacity: .72; cursor: wait; transform: none; }

.form-note {
  display: none;
  padding: 11px 12px;
  border-radius: 4px;
  font-size: .86rem;
}

.form-note.visible { display: block; }
.form-note-ok { color: #176335; background: #edf8f0; }
.form-note-error { color: #8a2c24; background: #fff0ee; }

.lp-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--teal);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.12);
}

.proof-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 24px clamp(16px, 3vw, 34px);
  border-right: 1px solid rgba(255,255,255,.12);
}

.proof-item i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--gold-2);
  border: 1px solid rgba(212,168,66,.42);
}

.proof-item strong { display: block; font-size: .96rem; }
.proof-item span { display: block; color: rgba(255,255,255,.62); font-size: .84rem; }

.lp-band {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 70px);
}

.lp-split {
  display: grid;
  grid-template-columns: minmax(280px, 390px) 1fr;
  gap: clamp(32px, 6vw, 74px);
  align-items: start;
}

.lp-copy p:not(.lp-kicker) {
  margin: 20px 0 0;
  color: var(--soil);
  font-size: 1.02rem;
}

.apt-mini-grid {
  display: grid;
  gap: 18px;
}

.apt-mini {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 198px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.apt-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apt-mini div { padding: 24px; }
.apt-mini span {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.apt-mini p {
  margin: 10px 0 18px;
  color: var(--soil);
}

.apt-mini a {
  color: var(--teal);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.apt-mini-ducal { border-top: 4px solid var(--wine); }
.apt-mini-indigo { border-top: 4px solid var(--indigo); }
.apt-mini-musgo { border-top: 4px solid var(--moss); }

.lp-gallery {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  grid-auto-rows: minmax(220px, 25vw);
  gap: 10px;
  padding: 10px;
  background: var(--ink);
}

.lp-gallery figure {
  margin: 0;
  overflow: hidden;
  background: var(--teal);
}

.lp-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.lp-gallery figure:hover img { transform: scale(1.04); }
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

.lp-reviews {
  background:
    linear-gradient(90deg, rgba(26,46,46,.96), rgba(26,46,46,.86)),
    url("../Alta/_RIV8241.jpg") center/cover;
  color: var(--white);
}

.reviews-head {
  display: grid;
  grid-template-columns: minmax(260px, 520px) minmax(220px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  margin-bottom: 34px;
}

.reviews-head h2 { color: var(--white); }

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

blockquote {
  margin: 0;
  padding: 26px;
  color: var(--white);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
}

blockquote p {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.18;
}

blockquote cite {
  display: block;
  margin-top: 18px;
  color: var(--gold-2);
  font-size: .76rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.lp-final {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(56px, 8vw, 94px) clamp(18px, 5vw, 70px);
  background: var(--cream);
}

.lp-final h2 {
  max-width: 780px;
  font-size: clamp(2.25rem, 5vw, 4.7rem);
}

.lp-final-actions {
  justify-content: flex-end;
  margin: 0;
  min-width: min(100%, 390px);
}

.lp-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 70px) 96px;
  background: var(--ink);
  color: rgba(255,255,255,.64);
  font-size: .86rem;
}

.lp-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.lp-footer strong { color: var(--white); }
.lp-footer a { color: rgba(255,255,255,.78); }

.mobile-stick {
  position: fixed;
  z-index: 60;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
  box-shadow: 0 -12px 30px rgba(0,0,0,.2);
}

.mobile-stick a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  gap: 8px;
  color: var(--white);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mobile-stick a:first-child { background: var(--gold); }
.mobile-stick a:last-child { background: #1f8f4b; }

@media (max-width: 1040px) {
  .lp-hero-grid,
  .lp-split {
    grid-template-columns: 1fr;
  }

  .lp-hero-grid {
    align-items: start;
    min-height: auto;
  }

  .lead-panel { max-width: 620px; }
  .lp-proof { grid-template-columns: repeat(2, 1fr); }
  .reviews-head,
  .quote-grid { grid-template-columns: 1fr; }
  .lp-final { align-items: flex-start; flex-direction: column; }
  .lp-final-actions { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .lp-nav {
    height: 64px;
    padding: 0 14px;
  }

  .lp-brand span { display: none; }
  .lp-nav-actions a { padding: 0 10px; }
  .lp-nav-actions a span { display: none; }
  .lp-hero { padding: 88px 14px 28px; }
  h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .lp-hero-ctas .lp-btn,
  .lp-final-actions .lp-btn { width: 100%; }
  .lead-panel-head,
  .lead-form { padding-left: 18px; padding-right: 18px; }
  .field-pair,
  .lp-proof,
  .apt-mini,
  .lp-gallery { grid-template-columns: 1fr; }
  .proof-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .lp-band { padding-left: 18px; padding-right: 18px; }
  .apt-mini { min-height: 0; }
  .apt-mini img { height: 230px; }
  .lp-gallery { grid-auto-rows: 230px; }
  .gallery-tall,
  .gallery-wide {
    grid-row: auto;
    grid-column: auto;
  }
  .lp-footer {
    flex-direction: column;
    padding-bottom: 86px;
  }
  .mobile-stick { display: grid; }
}
