:root {
  --accent: oklch(0.66 0.105 67);
  --accent-strong: oklch(0.58 0.105 66);
  --olive: oklch(0.36 0.028 151);
  --olive-deep: oklch(0.31 0.027 151);
  --paper: oklch(0.965 0.012 81);
  --paper-soft: oklch(0.945 0.018 80);
  --ink: oklch(0.29 0.012 75);
  --muted: oklch(0.46 0.013 73);
  --line: oklch(0.79 0.035 74);
  --container: min(1476px, calc(100vw - 196px));
  --serif: "Prata", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input {
  font-family: var(--sans);
}

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

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  padding: 0 48px;
  border: 1px solid color-mix(in oklch, var(--olive) 78%, var(--paper));
  border-radius: 5px;
  color: var(--paper);
  background: var(--olive);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-align: center;
  transition:
    background-color 260ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.button:hover {
  background: var(--olive-deep);
  transform: translateY(-2px);
}

.button:focus-visible,
input:focus-visible,
.cookie-banner button:focus-visible,
a:focus-visible {
  outline: 3px solid color-mix(in oklch, var(--accent) 55%, transparent);
  outline-offset: 3px;
}

.button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.hero {
  background: var(--olive);
}

.hero__visual {
  position: relative;
  min-height: min(47.4vw, 796px);
  overflow: hidden;
  background: var(--paper-soft);
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin-inline: auto;
  padding-top: clamp(72px, 7.6vw, 128px);
}

.sale-badge {
  margin-bottom: 18px;
  color: var(--accent-strong);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.35vw, 1.45rem);
  line-height: 1.2;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 34px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(3.4rem, 4.55vw, 4.85rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.hero__lead {
  max-width: 610px;
  margin-bottom: 54px;
  color: var(--ink);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.65;
}

.hero__lead strong {
  font-weight: 500;
}

.hero__button {
  min-width: 438px;
}

.hero-facts {
  display: grid;
  min-height: 160px;
  padding: 22px max(6vw, calc((100vw - 1476px) / 2));
  grid-template-columns: repeat(3, 1fr);
  background: var(--olive);
}

.hero-facts article {
  display: grid;
  min-width: 0;
  padding: 0 clamp(32px, 3.1vw, 58px);
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: center;
}

.hero-facts article:first-child {
  padding-left: 0;
}

.hero-facts article:last-child {
  padding-right: 0;
}

.hero-facts article + article {
  border-left: 1px solid color-mix(in oklch, var(--paper) 48%, transparent);
}

.fact-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.hero-facts h2 {
  margin-bottom: 7px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.28vw, 1.35rem);
  font-weight: 400;
  line-height: 1.25;
}

.hero-facts p {
  max-width: 380px;
  margin: 0;
  color: color-mix(in oklch, var(--paper) 89%, transparent);
  font-size: 0.78rem;
  line-height: 1.45;
}

.section {
  padding: 78px 0 0;
}

.features {
  background: var(--paper);
}

.section-title {
  position: relative;
  margin: 0 0 58px;
  padding-bottom: 31px;
  font-family: var(--serif);
  font-size: clamp(2.55rem, 3.55vw, 3.65rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.section-title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 84px;
  height: 3px;
  background: var(--accent);
  content: "";
}

.feature-highlight {
  display: grid;
  grid-template-columns: minmax(0, 1.78fr) minmax(330px, 1fr);
  gap: 30px;
}

.feature-highlight__image,
.feature-highlight__copy {
  min-height: 650px;
  border-radius: 14px;
}

.feature-highlight__image {
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: center;
}

.feature-highlight__copy {
  display: flex;
  padding: clamp(54px, 5vw, 88px) clamp(42px, 4.2vw, 74px);
  flex-direction: column;
  justify-content: center;
  color: var(--paper);
  background: var(--olive);
}

.feature-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.feature-icon--large {
  width: 64px;
  height: 64px;
  margin-bottom: 34px;
}

.feature-highlight h3,
.feature-item h3 {
  font-family: var(--serif);
  font-weight: 400;
}

.feature-highlight h3 {
  position: relative;
  margin-bottom: 42px;
  padding-bottom: 29px;
  font-size: clamp(1.75rem, 2.25vw, 2.25rem);
  line-height: 1.25;
}

.feature-highlight h3::after,
.feature-item h3::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 2px;
  background: var(--accent);
  content: "";
}

.feature-highlight p {
  max-width: 35ch;
  margin: 0;
  color: color-mix(in oklch, var(--paper) 91%, transparent);
  font-size: 1rem;
  line-height: 1.82;
}

.feature-list {
  display: grid;
  margin-top: 52px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-item {
  display: flex;
  min-width: 0;
  padding: 0 28px;
  flex-direction: column;
}

.feature-item:first-child {
  padding-left: 16px;
}

.feature-item:last-child {
  padding-right: 0;
}

.feature-item + .feature-item {
  border-left: 1px solid var(--line);
}

.feature-item__copy {
  min-height: 350px;
}

.feature-item .feature-icon {
  margin-bottom: 24px;
}

.feature-item h3 {
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 22px;
  font-size: clamp(1.35rem, 1.7vw, 1.72rem);
  line-height: 1.28;
}

.feature-item p {
  max-width: 42ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.68;
}

.feature-item__image {
  order: 2;
  width: 100%;
  height: 310px;
  border-radius: 10px;
  object-fit: cover;
}

.lead-section {
  padding: 54px 0 38px;
}

.lead-panel {
  display: grid;
  min-height: 510px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  grid-template-columns: 1.04fr 0.96fr;
  background: color-mix(in oklch, var(--paper) 96%, var(--accent));
}

.lead-panel__visual {
  position: relative;
  min-height: 510px;
  overflow: hidden;
}

.lead-panel__background {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lead-panel__brochure {
  position: absolute;
  right: -4%;
  bottom: 7%;
  width: min(58%, 430px);
  filter: drop-shadow(0 18px 24px color-mix(in oklch, var(--ink) 24%, transparent));
}

.lead-panel__copy {
  padding: 38px 72px 30px;
}

.lead-panel h2 {
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.25vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.lead-list {
  display: grid;
  gap: 7px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.lead-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--muted);
  font-size: 0.77rem;
  line-height: 1.35;
}

.lead-list img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.lead-form {
  width: 100%;
}

.form-title {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.73rem;
  font-weight: 500;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 9px;
}

.lead-form input {
  width: 100%;
  height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ink);
  background: color-mix(in oklch, var(--paper) 98%, transparent);
  font-size: 0.75rem;
}

.lead-form input::placeholder {
  color: color-mix(in oklch, var(--muted) 58%, transparent);
}

.form-button {
  width: 100%;
  min-height: 46px;
  padding-inline: 20px;
  font-size: 0.82rem;
}

.lead-form__status {
  min-height: 14px;
  margin: 4px 0 0;
  color: oklch(0.46 0.09 151);
  font-size: 0.68rem;
  text-align: center;
}

.lead-form__status.is-error {
  color: oklch(0.49 0.14 27);
}

.lead-form__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.57rem;
  line-height: 1.35;
}

.lead-form__note a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer {
  margin-top: 0;
  padding: 22px 0 24px;
  color: color-mix(in oklch, var(--paper) 88%, transparent);
  background: var(--olive);
  font-size: 0.69rem;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer__inner > div,
.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.footer__inner strong {
  font-weight: 400;
}

.footer a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.counter-pixel {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
}

@media (max-width: 1180px) {
  :root {
    --container: min(100% - 72px, 1060px);
  }

  .hero__visual {
    min-height: 690px;
  }

  .hero__content {
    padding-top: 82px;
  }

  .hero h1 {
    max-width: 690px;
    font-size: clamp(3.2rem, 6vw, 4.2rem);
  }

  .hero-facts {
    padding-inline: 42px;
  }

  .hero-facts article {
    padding-inline: 28px;
    grid-template-columns: 52px 1fr;
  }

  .fact-icon {
    width: 50px;
    height: 50px;
  }

  .feature-highlight__image,
  .feature-highlight__copy {
    min-height: 560px;
  }

  .feature-highlight__image {
    height: 560px;
  }

  .lead-panel__copy {
    padding-inline: 42px;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 48px, 620px);
  }

  .button {
    min-height: 56px;
    padding-inline: 24px;
    font-size: 0.83rem;
  }

  .hero__visual {
    min-height: 590px;
  }

  .hero__visual::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(
      90deg,
      rgb(246 242 234 / 0.88) 0%,
      rgb(246 242 234 / 0.64) 52%,
      rgb(246 242 234 / 0.08) 100%
    );
    content: "";
    pointer-events: none;
  }

  .hero__image {
    object-position: center center;
  }

  .hero__content {
    padding-top: 46px;
  }

  .sale-badge {
    max-width: 255px;
    margin-bottom: 12px;
    font-size: 1rem;
  }

  .hero h1 {
    max-width: 340px;
    margin-bottom: 22px;
    font-size: clamp(2.35rem, 11vw, 3.15rem);
    line-height: 1.13;
  }

  .hero__lead {
    max-width: 300px;
    margin-bottom: 22px;
    font-size: 0.82rem;
    line-height: 1.68;
  }

  .hero__button {
    min-width: 0;
    width: min(100%, 310px);
  }

  .hero-facts {
    min-height: 0;
    padding: 18px 24px;
    grid-template-columns: 1fr;
  }

  .hero-facts article,
  .hero-facts article:first-child,
  .hero-facts article:last-child {
    padding: 16px 0;
    grid-template-columns: 45px 1fr;
    gap: 15px;
  }

  .hero-facts article + article {
    border-top: 1px solid color-mix(in oklch, var(--paper) 40%, transparent);
    border-left: 0;
  }

  .fact-icon {
    width: 43px;
    height: 43px;
  }

  .hero-facts h2 {
    margin-bottom: 4px;
    font-size: 1.17rem;
  }

  .hero-facts p {
    font-size: 0.68rem;
    line-height: 1.45;
  }

  .section {
    padding-top: 34px;
  }

  .section-title {
    margin-bottom: 17px;
    padding-bottom: 0;
    font-size: clamp(2rem, 9vw, 2.7rem);
    line-height: 1.13;
  }

  .section-title::after {
    display: none;
  }

  .feature-highlight {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .feature-highlight__image {
    height: 245px;
    min-height: 245px;
    border-radius: 13px;
  }

  .feature-highlight__copy {
    min-height: 0;
    padding: 29px 31px 32px;
    border-radius: 13px;
  }

  .feature-icon--large {
    width: 50px;
    height: 50px;
    margin-bottom: 0;
  }

  .feature-highlight h3 {
    margin: -46px 0 14px 67px;
    padding-bottom: 0;
    font-size: 1.5rem;
  }

  .feature-highlight h3::after {
    display: none;
  }

  .feature-highlight p {
    max-width: none;
    margin-left: 67px;
    font-size: 0.76rem;
    line-height: 1.58;
  }

  .feature-list {
    display: grid;
    margin-top: 10px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .feature-item,
  .feature-item:first-child,
  .feature-item:last-child {
    display: flex;
    padding: 0;
    flex-direction: column;
  }

  .feature-item + .feature-item {
    border-left: 0;
  }

  .feature-item__image {
    order: 1;
    height: 138px;
    border-radius: 9px;
  }

  .feature-item__copy {
    order: 2;
    min-height: 0;
    padding: 11px 18px 14px;
    border-bottom: 1px solid var(--line);
  }

  .feature-item .feature-icon {
    float: left;
    width: 36px;
    height: 36px;
    margin: 0 12px 4px 0;
  }

  .feature-item h3 {
    min-height: 36px;
    margin: 0 0 4px;
    padding: 4px 0 0;
    font-size: 1.06rem;
    line-height: 1.25;
  }

  .feature-item h3::after {
    display: none;
  }

  .feature-item p {
    max-width: none;
    padding-left: 48px;
    font-size: 0.64rem;
    line-height: 1.48;
  }

  .lead-section {
    padding: 22px 0 26px;
  }

  .lead-panel {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .lead-panel__visual {
    min-height: 260px;
  }

  .lead-panel__brochure {
    right: 5%;
    bottom: 1%;
    width: 53%;
  }

  .lead-panel__copy {
    padding: 24px 25px 20px;
  }

  .lead-panel h2 {
    margin-bottom: 13px;
    font-size: 1.45rem;
    line-height: 1.2;
  }

  .lead-list {
    gap: 5px;
    margin-bottom: 13px;
  }

  .lead-list li {
    font-size: 0.68rem;
  }

  .lead-list img {
    width: 14px;
    height: 14px;
  }

  .form-row {
    gap: 6px;
  }

  .lead-form input {
    height: 36px;
  }

  .form-button {
    min-height: 43px;
  }

  .footer {
    padding-block: 18px;
  }

  .footer__inner {
    align-items: center;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer__inner > div,
  .footer nav {
    justify-content: center;
  }

}

@media (max-width: 430px) {
  :root {
    --container: calc(100% - 32px);
  }

  .hero__visual {
    min-height: 525px;
  }

  .hero__content {
    padding-top: 31px;
  }

  .hero h1 {
    max-width: 350px;
    font-size: 2rem;
  }

  .feature-highlight__image {
    height: 205px;
    min-height: 205px;
  }

  .feature-highlight__copy {
    padding-inline: 22px;
  }

  .feature-highlight p {
    margin-left: 58px;
  }

  .feature-item__image {
    height: 122px;
  }

  .lead-panel__visual {
    min-height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
