@font-face {
  font-family: "Canela";
  src: url("assets/canela-text-light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: oklch(96.8% 0.014 82);
  --paper-2: oklch(91.8% 0.014 82);
  --ink: oklch(16% 0.012 82);
  --muted: #5b5750;
  --line: #d8d0c3;
  --charcoal: #252627;
  --charcoal-2: #121315;
  --gold: #b98b55;
  --gold-dark: #916738;
  --white: #fffcf7;
  --radius: 8px;
  --max: 1180px;
  --sans: "Figtree", "Avenir Next", "Trebuchet MS", sans-serif;
  --serif: "Canela", Georgia, "Times New Roman", serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 52px);
  background: rgba(247, 244, 238, 0.9);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.site-footer div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img,
.site-footer img {
  width: 132px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  color: #292724;
  font-size: 15px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 260ms var(--ease), background 260ms var(--ease), border-color 260ms var(--ease);
}

.nav-cta,
.button.primary {
  background: var(--ink);
  color: var(--white);
  gap: 12px;
}

.button.secondary {
  background: transparent;
  border-color: rgba(17, 17, 17, 0.22);
  color: var(--ink);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button.primary span[aria-hidden="true"] {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: var(--gold);
  transition: transform 260ms var(--ease), background 260ms var(--ease);
}

.button.primary:hover span[aria-hidden="true"] {
  transform: translateX(3px);
  background: var(--gold-dark);
}

.menu-toggle {
  appearance: none;
  display: none;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 46px;
  min-width: 64px;
  padding: 0 16px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-toggle span {
  pointer-events: none;
}

.mobile-menu {
  position: absolute;
  left: clamp(16px, 4vw, 52px);
  right: clamp(16px, 4vw, 52px);
  top: calc(100% + 8px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: 0 24px 60px rgba(30, 26, 20, 0.14);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
}

.section-pad {
  padding: clamp(76px, 10vw, 128px) clamp(20px, 4vw, 56px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.96fr);
  align-items: center;
  gap: clamp(38px, 6vw, 80px);
  max-width: 1320px;
  min-height: calc(100vh - 78px);
  margin: 0 auto;
}

.eyebrow,
.section-kicker,
.offer-label {
  margin: 0 0 18px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 26px;
  font-size: clamp(58px, 8vw, 118px);
}

h2 {
  font-size: clamp(42px, 5vw, 76px);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.1;
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 46px;
  color: #514c45;
  font-size: 14px;
}

.proof-row span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.proof-row span::before {
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 999px;
  background: var(--gold);
}

.hero-media {
  position: relative;
  min-height: 620px;
}

.hero-photo {
  width: 82%;
  height: 560px;
  margin-left: auto;
  border-radius: var(--radius);
  object-fit: cover;
  filter: saturate(0.9);
}

.flow-panel {
  position: absolute;
  left: 0;
  bottom: 54px;
  width: min(380px, 82%);
  padding: 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 28px 60px rgba(30, 26, 20, 0.14);
}

.flow-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.flow-topline strong {
  color: var(--ink);
}

.flow-list {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.flow-list div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.flow-list p {
  margin: 0;
  font-size: 15px;
}

.dot {
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
}

.dot.muted {
  background: #d8d0c3;
}

.problem,
.offers,
.process,
.diagnosis {
  max-width: var(--max);
  margin: 0 auto;
}

.split-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.split-copy p,
.diagnosis-copy p,
.section-heading h2 {
  color: var(--ink);
}

.split-copy div {
  color: var(--muted);
  font-size: 19px;
}

.leak-grid,
.offer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 1fr 1.08fr;
  gap: 1px;
  margin-top: 58px;
  background: var(--line);
  border: 1px solid var(--line);
}

.leak-grid article,
.offer-card {
  min-height: 280px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.58);
}

.leak-grid span,
.timeline span {
  display: block;
  margin-bottom: 50px;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 34px;
}

.leak-grid p,
.offer-card p,
.timeline p,
.contrast p,
.diagnosis-copy p,
.form-note {
  color: var(--muted);
}

.image-band {
  position: relative;
  display: grid;
  min-height: 560px;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
}

.image-band img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  opacity: 0.46;
}

.image-band-copy {
  position: absolute;
  inset: auto clamp(22px, 7vw, 96px) clamp(46px, 8vw, 88px);
  max-width: 980px;
}

.image-band-copy p {
  color: #e6d8c5;
  font-size: clamp(18px, 2vw, 24px);
}

.image-band-copy h2 {
  max-width: 950px;
}

.testimonials {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  gap: clamp(34px, 6vw, 86px);
  max-width: var(--max);
  margin: 0 auto;
}

.testimonial-intro {
  position: sticky;
  top: 118px;
  align-self: start;
}

.testimonial-intro p {
  max-width: 520px;
  color: var(--muted);
  font-size: 19px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

.video-card {
  display: grid;
  gap: 16px;
}

.video-card.offset {
  margin-top: 64px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: var(--radius);
  background: var(--charcoal);
  box-shadow: 0 28px 70px rgba(47, 36, 24, 0.14);
}

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

.video-thumb {
  display: block;
  background:
    linear-gradient(180deg, rgba(18, 19, 21, 0.12), rgba(18, 19, 21, 0.55)),
    var(--charcoal);
}

.video-thumb img {
  object-fit: cover;
  opacity: 0.9;
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 1px solid rgba(255, 252, 247, 0.42);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.88);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  transition: transform 260ms var(--ease), background 260ms var(--ease);
  pointer-events: none;
}

.video-thumb:hover .play-button {
  background: var(--white);
  transform: translate(-50%, -50%) scale(1.05);
}

.video-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.video-caption p {
  margin: 0;
  color: var(--ink);
  font-weight: 750;
}

.video-caption a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
}

.video-modal[hidden] {
  display: none;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 19, 21, 0.72);
}

.video-modal-panel {
  position: relative;
  width: min(460px, 100%);
  max-height: min(860px, calc(100vh - 36px));
  display: grid;
  gap: 14px;
  padding: clamp(16px, 3vw, 22px);
  border: 1px solid rgba(255, 252, 247, 0.16);
  border-radius: var(--radius);
  background: var(--charcoal-2);
  color: var(--white);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.video-modal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.video-modal-top h2 {
  margin: 0;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 750;
  line-height: 1.2;
}

.video-close {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 252, 247, 0.26);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font: 750 12px var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.video-embed {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  background: #000;
}

.video-loading,
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-loading {
  display: grid;
  place-items: center;
  background: var(--charcoal);
}

.video-loading img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
}

.video-loading span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 252, 247, 0.35);
  border-radius: 999px;
  background: rgba(18, 19, 21, 0.62);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-embed iframe {
  z-index: 2;
  border: 0;
}

.video-fallback {
  margin: 0;
  color: #d7cec2;
  font-size: 13px;
}

.video-fallback a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section-heading {
  max-width: 780px;
}

.offer-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.offer-card {
  background: #fffaf1;
}

.feature-offer {
  background: #fff5e6;
  border-top: 3px solid var(--gold);
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-card ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.offer-card li {
  position: relative;
  padding-left: 22px;
  color: #34302b;
}

.offer-card li::before {
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 999px;
  background: var(--gold);
}

.process {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 5vw, 72px);
}

.process-intro {
  position: sticky;
  top: 118px;
  align-self: start;
}

.timeline {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.timeline article {
  padding: 34px;
  background: rgba(255, 255, 255, 0.58);
}

.timeline span {
  margin-bottom: 24px;
}

.contrast {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  max-width: none;
  background: var(--charcoal);
  color: var(--white);
}

.contrast-list {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contrast-list p {
  margin: 0;
  padding: 22px;
  background: rgba(255, 255, 255, 0.05);
  color: #eee8df;
  font-size: 18px;
}

.diagnosis {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.diagnosis-copy {
  position: sticky;
  top: 118px;
}

.diagnosis-copy p {
  max-width: 530px;
  font-size: 19px;
}

.diagnosis-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  background: #fffaf1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.ghl-form-shell {
  gap: 14px;
}

.ghl-form-shell iframe {
  width: 100%;
  min-height: 863px;
  border: 0;
  border-radius: 3px;
  background: var(--white);
}

.form-fallback[hidden] {
  display: none;
}

.form-fallback {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px dashed #cfc5b6;
  border-radius: 6px;
  background: rgba(255, 252, 247, 0.72);
}

.form-fallback p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-fallback a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

label {
  display: grid;
  gap: 8px;
  color: #39342d;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfc5b6;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: 500 16px var(--sans);
}

input,
select {
  min-height: 50px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  padding: 14px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(185, 139, 85, 0.3);
  border-color: var(--gold);
}

.form-note {
  margin: 0;
  font-size: 14px;
}

.help-text {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.form-note a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(20px, 4vw, 56px);
  background: var(--charcoal-2);
  color: var(--white);
}

.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 86px);
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 0;
}

.faq-heading {
  position: sticky;
  top: 118px;
  align-self: start;
}

.faq-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

details {
  background: #fffaf1;
}

summary {
  min-height: 60px;
  padding: 20px 24px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 750;
  list-style-position: outside;
}

details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.site-footer p {
  margin: 0;
  color: #c9c0b4;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px 22px;
  color: #eee8df;
  font-size: 13px;
}

.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero,
  .split-copy,
  .process,
  .contrast,
  .diagnosis,
  .faq,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 520px;
  }

  .hero-photo {
    width: 100%;
    height: 470px;
  }

  .flow-panel {
    bottom: 0;
  }

  .leak-grid,
  .offer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-intro,
  .diagnosis-copy,
  .faq-heading,
  .testimonial-intro {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand span {
    display: none;
  }

  .brand img,
  .site-footer img {
    width: 108px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 11px;
  }

  .menu-toggle {
    min-height: 40px;
    padding: 0 12px;
    font-size: 11px;
  }

  .mobile-menu {
    grid-template-columns: 1fr 1fr;
  }

  .section-pad {
    padding: 68px 18px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

  h2 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-media {
    min-height: 440px;
  }

  .hero-photo {
    height: 360px;
  }

  .flow-panel {
    position: relative;
    bottom: auto;
    left: auto;
    margin: -54px 13px 0;
    width: calc(100% - 26px);
    padding: 20px;
  }

  .leak-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .leak-grid article,
  .offer-card {
    min-height: auto;
  }

  .leak-grid span {
    margin-bottom: 28px;
  }

  .image-band,
  .image-band img {
    min-height: 640px;
  }

  .image-band-copy h2 {
    font-size: clamp(28px, 9vw, 42px);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

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

  .video-card.offset {
    margin-top: 0;
  }

  .video-frame {
    max-width: 320px;
  }
}
