:root {
  --green: #103f46;
  --green-2: #17616b;
  --orange: #ef5538;
  --ink: #17363b;
  --muted: #66777a;
  --line: #e2e9e6;
  --soft: #f6f9f7;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button { font: inherit; }
.text-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s, box-shadow .25s;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .95);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(16, 63, 70, .07);
  backdrop-filter: blur(12px);
}
.site-header-static {
  position: relative;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.topbar {
  width: min(1180px, calc(100% - 48px));
  height: 82px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo {
  display: block;
  width: 172px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}
.topbar .button-nav {
  min-height: 44px;
  padding: 0 18px;
  font-size: 13px;
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  padding: 132px max(24px, calc((100% - 1180px) / 2)) 72px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 64px;
}
.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}
.hero-background img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.availability {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.availability i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #36a56e;
  box-shadow: 0 0 0 5px #dceee4;
  animation: pulse 1.8s infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 8px transparent; } }
.hero h1 {
  max-width: 680px;
  margin: 25px 0 22px;
  font-family: "Manrope", Arial, sans-serif;
  letter-spacing: -.052em;
}
.hero-title-main,
.hero-title-secondary {
  display: block;
}
.mobile-title-break { display: none; }
.hero-title-main {
  font-size: clamp(53px, calc(5.4vw + 3px), 75px);
  font-weight: 700;
  line-height: 1.04;
}
.hero-title-secondary {
  margin-top: 8px;
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 600;
  line-height: 1.06;
  color: var(--green-2);
  opacity: .84;
}
.hero-sub {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
}
.quick-facts {
  margin: 0 0 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px 22px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}
.button {
  min-height: 56px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 9px;
  background: var(--orange);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 9px 24px rgba(239, 85, 56, .2);
  transition: transform .2s, background .2s, box-shadow .2s;
}
.button:hover {
  background: #d9482e;
  box-shadow: 0 12px 28px rgba(239, 85, 56, .26);
  transform: translateY(-2px);
}
.cta-help {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.trust-bar {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 26px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-bar div {
  min-height: 92px;
  padding: 18px 34px;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  justify-items: center;
  row-gap: 4px;
  text-align: center;
}
.trust-bar div + div { border-left: 1px solid var(--line); }
.trust-bar .trust-location {
  grid-template-columns: 1fr;
}
.trust-bar span {
  grid-row: auto;
  align-self: center;
  margin-bottom: 3px;
  color: var(--orange);
  font-weight: 900;
}
.trust-bar strong { font-size: 15px; }
.trust-bar small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
  padding: 110px 0;
}
.section-title { max-width: 760px; }
.eyebrow {
  margin: 0 0 13px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.section h2,
.simple-cta h2,
.about-section h2 {
  margin: 0;
  font: 600 clamp(36px, 4vw, 54px)/1.1 "Manrope", Arial, sans-serif;
  letter-spacing: -.045em;
}
.places .section-title > p:last-child {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.place-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.place-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}
.place-grid img {
  display: block;
  width: 100%;
  height: 270px;
  object-fit: cover;
}
.place-grid article:nth-child(3) img { object-position: center 52%; }
.place-grid h3 {
  margin: 0;
  padding: 23px 25px 0;
  font: 600 24px/1.2 "Manrope", Arial, sans-serif;
}
.place-grid article p {
  min-height: 72px;
  margin: 0;
  padding: 12px 25px 25px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.places-cta {
  margin-top: 38px;
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
}
.places-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.places-cta .button { flex: 0 0 auto; }

.simple-cta {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  border-radius: 18px;
  background: var(--green);
  color: var(--white);
}
.simple-cta > div { max-width: 710px; }
.simple-cta .eyebrow { color: #ffad9c; }
.simple-cta h2 { font-size: clamp(34px, 3.5vw, 48px); }
.simple-cta > div > p:last-child:not(.eyebrow) {
  margin: 15px 0 0;
  color: #d8e5e5;
}
.simple-cta .button { flex: 0 0 auto; }

.easy-process ol {
  margin: 52px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  list-style: none;
}
.easy-process li {
  min-height: 154px;
  padding: 24px 0 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-top: 2px solid var(--green);
}
.easy-process li span {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}
.easy-process h3 {
  margin: 3px 0 10px;
  font: 600 21px/1.25 "Manrope", Arial, sans-serif;
}
.easy-process li p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.about-section {
  padding: 100px 24px;
  background: var(--soft);
}
.about-inner {
  width: min(1180px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: center;
  gap: 70px;
}
.about-text {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.about-inner ul {
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  list-style: none;
}
.about-inner li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}
.about-inner li span {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  border-radius: 50%;
  background: #e1f0e8;
  color: var(--green-2);
  font-size: 12px;
}
.about-cta { margin-top: 32px; }
.about-photo {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-photo img {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: contain;
}

.faq { padding-bottom: 120px; }
.faq .section-title {
  margin: 0 auto;
  text-align: center;
}
.faq-list {
  max-width: 860px;
  margin: 46px auto 0;
  display: grid;
  gap: 10px;
}
.faq details {
  padding: 21px 23px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}
.faq summary {
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
}
.faq details p {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.simple-cta-final { margin-bottom: 110px; }

.legal-page { background: var(--soft); }
.legal-hero {
  padding: 96px 24px 82px;
  background: var(--green);
  color: var(--white);
}
.legal-hero > div {
  width: min(900px, 100%);
  margin: auto;
}
.legal-hero .eyebrow { color: #ffad9c; }
.legal-hero h1 {
  max-width: 760px;
  margin: 0;
  font: 600 clamp(39px, 5vw, 67px)/1.05 "Manrope", Arial, sans-serif;
  letter-spacing: -.055em;
}
.legal-hero > div > p:not(.eyebrow) {
  max-width: 700px;
  margin: 23px 0 0;
  color: #d8e5e5;
  font-size: 17px;
  line-height: 1.6;
}
.legal-hero small { display: block; margin-top: 27px; color: #b7cdce; font-size: 12px; }
.legal-content {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 76px 0 104px;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  align-items: start;
  gap: 75px;
}
.legal-nav {
  position: sticky;
  top: 28px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}
.legal-nav p { margin: 0 0 12px; color: var(--ink); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.legal-nav a { display: block; padding: 8px 0; color: var(--muted); font-size: 13px; line-height: 1.35; }
.legal-nav a:hover { color: var(--orange); }
.legal-article {
  padding: 8px 0;
}
.legal-article section {
  padding: 0 0 43px;
  margin: 0 0 41px;
  border-bottom: 1px solid var(--line);
}
.legal-article section:last-child { margin-bottom: 0; border-bottom: 0; }
.legal-article h2 {
  margin: 0 0 16px;
  font: 700 clamp(23px, 2.5vw, 30px)/1.2 "Manrope", Arial, sans-serif;
  letter-spacing: -.035em;
}
.legal-article p { margin: 0 0 14px; color: var(--muted); font-size: 15px; line-height: 1.72; }
.legal-article p:last-child { margin-bottom: 0; }
.button-legal { min-height: 46px; margin-top: 8px; font-size: 13px; }
.legal-email { color: var(--green-2); font-size: 17px; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.legal-note { font-size: 13px !important; }
footer {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
  padding: 34px 0 46px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  align-items: center;
  gap: 26px;
  border-top: 1px solid var(--line);
}
footer p,
footer small {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.brand-logo-footer {
  width: 152px;
  height: 46px;
}

.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  width: min(560px, calc(100% - 44px));
  padding: 18px 54px 18px 20px;
  display: flex;
  align-items: center;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 55px rgba(16, 63, 70, .18);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner strong {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}
.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.cookie-actions {
  flex: 0 0 auto;
  display: flex;
  gap: 8px;
}
.cookie-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
}
.cookie-close:hover { background: var(--soft); color: var(--ink); }
.cookie-button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}
.cookie-button-primary {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}
.cookie-button-secondary {
  background: var(--white);
  color: var(--ink);
}

@media (max-width: 900px) {
  .hero { gap: 34px; }
  .easy-process ol { grid-template-columns: 1fr 1fr; }
  .about-inner { gap: 40px; }
}

@media (max-width: 760px) {
  .topbar,
  .trust-bar,
  .section,
  .simple-cta,
  footer { width: min(100% - 40px, 1180px); }
  .topbar { height: 72px; }
  .brand-logo { width: 136px; height: 45px; }
  .topbar .button-nav {
    width: auto;
    min-height: 42px;
    padding: 0 14px;
    font-size: 12px;
  }
  .hero {
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    padding: 102px 24px 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .hero-background img { object-position: center bottom; }
  .hero-copy {
    width: 100%;
    max-width: 560px;
  }
  .availability { justify-content: center; }
  .hero h1 { margin: 27px auto 25px; max-width: 560px; }
  .mobile-title-break { display: inline; }
  .hero-title-main { font-size: clamp(39px, calc(10.5vw + 3px), 45px); line-height: 1.08; }
  .hero-title-secondary { margin-top: 8px; font-size: clamp(31px, 8.5vw, 36px); line-height: 1.1; }
  .hero-sub {
    max-width: 520px;
    margin: 0 auto 31px;
    font-size: 17px;
    line-height: 1.55;
  }
  .quick-facts {
    margin: 0 0 34px;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .button { width: 100%; padding: 0 17px; font-size: 14px; }
  .cta-help { margin-top: 15px; }
  .trust-bar {
    padding: 0;
    grid-template-columns: repeat(3, 1fr);
  }
  .trust-bar div {
    min-height: 116px;
    padding: 18px 5px;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    row-gap: 4px;
  }
  .trust-bar .trust-location { grid-template-columns: 1fr; }
  .trust-bar span {
    grid-row: auto;
    margin-bottom: 3px;
  }
  .trust-bar div + div {
    border-top: 0;
    border-left: 1px solid var(--line);
  }
  .trust-bar strong { font-size: 13px; }
  .trust-bar small { font-size: 10px; }
  .section { padding: 80px 0; }
  .place-grid { margin-top: 36px; grid-template-columns: 1fr; }
  .place-grid img { height: 245px; }
  .places-cta { display: block; text-align: center; }
  .places-cta .button { margin-top: 22px; }
  .simple-cta {
    padding: 38px 25px;
    display: block;
    border-radius: 15px;
  }
  .simple-cta .button { margin-top: 28px; }
  .easy-process ol { margin-top: 37px; grid-template-columns: 1fr; gap: 28px; }
  .easy-process li { min-height: auto; padding-top: 19px; }
  .easy-process h3 { font-size: 21px; }
  .about-section { padding: 78px 20px; }
  .about-inner { grid-template-columns: 1fr; gap: 42px; }
  .about-copy,
  .about-copy .section-title { text-align: center; }
  .about-text {
    margin-right: auto;
    margin-left: auto;
  }
  .about-inner ul {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .about-inner li { justify-content: center; }
  .about-cta { max-width: 380px; margin: 32px auto 0; }
  .about-photo { min-height: 380px; }
  .about-photo img { height: 380px; }
  .faq { padding-bottom: 85px; }
  .simple-cta-final { margin-bottom: 80px; }
  .legal-hero { padding: 67px 20px 61px; }
  .legal-hero h1 { font-size: 40px; }
  .legal-hero > div > p:not(.eyebrow) { font-size: 15px; }
  .legal-content { width: min(100% - 40px, 1180px); padding: 48px 0 68px; display: block; }
  .legal-nav { position: static; margin-bottom: 37px; padding: 16px 18px; }
  .legal-nav a { padding: 6px 0; }
  .legal-article section { padding-bottom: 34px; margin-bottom: 32px; }
  .legal-article h2 { font-size: 24px; }
  .legal-article p { font-size: 14px; line-height: 1.68; }
  footer { padding: 30px 0 42px; grid-template-columns: 1fr; gap: 13px; }
  .cookie-banner {
    right: 16px;
    bottom: 16px;
    width: min(330px, calc(100% - 32px));
    padding: 13px 43px 13px 15px;
    align-items: center;
    flex-direction: row;
    gap: 12px;
    border-radius: 12px;
  }
  .cookie-banner strong { margin-bottom: 2px; font-size: 12px; }
  .cookie-banner p { font-size: 10px; line-height: 1.35; }
  .cookie-actions { width: auto; }
  .cookie-button { min-height: 34px; padding: 0 11px; font-size: 11px; }
  .cookie-close { top: 5px; right: 6px; width: 25px; height: 25px; font-size: 20px; }
}

@media (max-width: 390px) {
  .topbar,
  .trust-bar,
  .section,
  .simple-cta,
  footer { width: min(100% - 32px, 1180px); }
  .brand-logo { width: 124px; }
  .topbar .button-nav { padding: 0 12px; font-size: 11px; }
  .hero { padding: 96px 20px 36px; }
  .easy-process ol { grid-template-columns: 1fr; }
  .easy-process li { min-height: 125px; }
}
