@font-face {
  font-family: "Scandia";
  src: url("/fonts/Scandia-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Scandia";
  src: url("/fonts/Scandia-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --red: #ed1024;
  --black: #090909;
  --white: #ffffff;
  --mid-gray: #a7a7a7;
  --dark-gray: #5b5b5b;
  --content-pad: clamp(1.5rem, 6.1vw, 4.125rem);
  --soft-shadow: 0 0.375rem 0.375rem rgb(0 0 0 / 18%);
  --card-radius: clamp(0.8rem, 2.8vw, 1.875rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #efefef;
  color: var(--black);
  font-family: "Scandia", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.page-shell {
  width: min(100%, 1080px);
  margin-inline: auto;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 0 2rem rgb(0 0 0 / 8%);
}

.content-pad {
  padding-inline: var(--content-pad);
}

.site-header {
  display: flex;
  justify-content: center;
  padding-top: clamp(0.75rem, 2.3vw, 1.55rem);
}

.brand-logo {
  position: relative;
  width: min(75.5vw, 816px);
  aspect-ratio: 816 / 237;
}

.brand-wordmark {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mark,
.brand-mark img {
  position: absolute;
  display: block;
}

.brand-mark {
  inset: 0;
}

.brand-mark-left {
  right: 14.8%;
  bottom: 0.4%;
  width: 13.6%;
  height: 77.2%;
}

.brand-mark-right {
  top: 0;
  right: 0;
  width: 25.5%;
  height: 87.4%;
}

.brand-logo::before,
.brand-logo::after {
  position: absolute;
  z-index: 2;
  bottom: 4.2%;
  width: 5.9%;
  height: 2.1%;
  content: "";
}

.brand-logo::before {
  right: 46.5%;
  background: #4ca039;
}

.brand-logo::after {
  right: 34%;
  background: var(--red);
}

.hero {
  padding-top: clamp(2rem, 7.1vw, 4.8rem);
  padding-bottom: clamp(2.1rem, 8.5vw, 5.75rem);
}

.hero h1,
.language-section h2,
.audience-section h2,
.closing-section h2 {
  margin: 0;
  font-size: clamp(2rem, 7.4vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.94;
}

.hero p,
.language-section p,
.audience-section > p,
.closing-section p {
  margin: clamp(1.9rem, 6vw, 4rem) 0 0;
  font-size: clamp(1rem, 3.7vw, 2.5rem);
  line-height: 1.25;
}

.primary-button {
  display: flex;
  width: min(70%, 667px);
  min-height: clamp(5rem, 14.5vw, 9.75rem);
  margin: clamp(1.6rem, 4.7vw, 3.15rem) auto 0;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--card-radius);
  background: var(--red);
  box-shadow: 0 0.375rem 0.375rem rgb(0 0 0 / 30%);
  color: var(--white);
  cursor: pointer;
  font-size: clamp(1.1rem, 4.6vw, 3.125rem);
  font-weight: 700;
  line-height: 0.92;
  text-align: center;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.55rem 0.8rem rgb(0 0 0 / 27%);
}

.primary-button:focus-visible,
.portfolio-arrow:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 0.25rem solid #111;
  outline-offset: 0.2rem;
}

.full-bleed-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.form-cover {
  aspect-ratio: 1084 / 943;
}

.form-section {
  scroll-margin-top: 1rem;
  padding-top: clamp(2.7rem, 8vw, 5.35rem);
  padding-bottom: clamp(3rem, 9vw, 6rem);
  background: var(--mid-gray);
}

.form-section > h2 {
  margin: 0 0 clamp(2.5rem, 8vw, 5.5rem);
  color: var(--white);
  font-size: clamp(2.45rem, 10.8vw, 7.3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.84;
}

.lead-form,
.form-grid {
  display: grid;
}

.form-grid {
  gap: clamp(0.75rem, 2.8vw, 1.9rem);
}

.lead-form label {
  display: grid;
  min-width: 0;
}

.lead-form label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 0;
  border-radius: var(--card-radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  color: var(--black);
  font-size: clamp(1rem, 3.7vw, 2.5rem);
}

.lead-form input,
.lead-form select {
  min-height: clamp(3.5rem, 9.3vw, 6.25rem);
  padding: 0 clamp(1.1rem, 3.4vw, 2.35rem);
}

.lead-form textarea {
  min-height: clamp(10rem, 30.2vw, 20.4rem);
  padding: clamp(1rem, 2.8vw, 1.9rem) clamp(1.1rem, 3.4vw, 2.35rem);
  resize: vertical;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #111;
  opacity: 1;
}

.lead-form select:invalid {
  color: #111;
}

.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-intro,
.privacy-note {
  text-align: center;
}

.form-intro {
  margin: clamp(2.3rem, 6.7vw, 4.5rem) 0 0;
  font-size: clamp(0.95rem, 2.8vw, 1.9rem);
  line-height: 1.2;
}

.privacy-note {
  margin: clamp(1rem, 2.3vw, 1.55rem) 0 0;
  font-size: clamp(0.85rem, 2.3vw, 1.55rem);
  line-height: 1.2;
  text-decoration: underline;
}

.form-submit {
  width: min(70%, 667px);
  min-height: clamp(4.4rem, 11vw, 7.4rem);
  font-size: clamp(1.05rem, 4vw, 2.8rem);
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-feedback {
  margin: 1.25rem 0 0;
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgb(255 255 255 / 78%);
  font-size: clamp(0.95rem, 2.4vw, 1.3rem);
  text-align: center;
}

.form-feedback.error {
  color: #9e0011;
}

.image-overlay {
  position: relative;
  color: var(--white);
}

.image-overlay::before,
.image-overlay::after {
  display: none;
}

.problem-section {
  min-height: clamp(34rem, 106vw, 71rem);
  padding-top: clamp(4.3rem, 16.4vw, 11rem);
  padding-bottom: clamp(4rem, 10vw, 6.75rem);
  background:
    linear-gradient(rgb(0 0 0 / 60%), rgb(0 0 0 / 60%)),
    url("/assets/file-image-from-rawpixel-id-116647-jpeg@1x.png") center / cover
      no-repeat;
}

.problem-section h2,
.question-section h2,
.reasons-section h2,
.benefits-section h2,
.steps-section > h2,
.about-section h2,
.faq-section h2 {
  margin: 0;
  font-size: clamp(2.7rem, 10.2vw, 6.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.96;
}

.problem-section p {
  margin: clamp(2.2rem, 6vw, 4rem) 0 0;
  font-size: clamp(1rem, 3.7vw, 2.5rem);
  line-height: 1.14;
}

.question-section,
.reasons-section {
  background: var(--red);
  color: var(--white);
}

.question-section {
  padding-top: clamp(2.5rem, 7.3vw, 4.9rem);
  padding-bottom: clamp(3rem, 7.3vw, 5.3rem);
}

.question-section > p,
.section-kicker {
  margin: 0;
  font-size: clamp(1.2rem, 4.6vw, 3.125rem);
  line-height: 1.1;
}

.question-section h2 {
  margin-top: clamp(2.2rem, 5.2vw, 3.5rem);
}

.language-section {
  padding-top: clamp(3rem, 8.2vw, 5.5rem);
  padding-bottom: clamp(3.2rem, 9vw, 6rem);
}

.reasons-section {
  padding-top: clamp(3rem, 8vw, 5.7rem);
  padding-bottom: clamp(3.5rem, 9vw, 6rem);
}

.reasons-section h2,
.benefits-section h2 {
  margin-top: clamp(1.7rem, 4.4vw, 3rem);
}

.card-stack {
  display: grid;
  gap: clamp(1rem, 3.9vw, 2.6rem);
  margin-top: clamp(2.6rem, 8.1vw, 5.5rem);
}

.white-card {
  border-radius: var(--card-radius);
  background: var(--white);
  box-shadow: 0 0.2rem 0.4rem rgb(0 0 0 / 16%);
  color: var(--black);
  text-align: center;
}

.reason-card {
  padding: clamp(1.1rem, 2.3vw, 1.55rem) clamp(1rem, 1.9vw, 1.25rem);
}

.reason-card h3,
.benefit-card h3 {
  margin: 0;
  font-size: clamp(1.5rem, 5.1vw, 3.45rem);
  line-height: 1.05;
}

.reason-card p {
  margin: clamp(0.55rem, 1.3vw, 0.85rem) 0 0;
  font-size: clamp(1rem, 3.7vw, 2.5rem);
  line-height: 1.12;
}

.audience-section {
  padding-top: clamp(3rem, 9.6vw, 6.5rem);
  padding-bottom: clamp(3.1rem, 9vw, 6rem);
}

.audience-section > p {
  margin-top: clamp(1.3rem, 3.2vw, 2.15rem);
}

.audience-grid {
  display: grid;
  gap: clamp(0.55rem, 0.9vw, 0.65rem);
  margin-top: clamp(2rem, 5.9vw, 4rem);
}

.audience-card {
  position: relative;
  display: flex;
  min-height: clamp(10.5rem, 42.1vw, 28.4rem);
  align-items: flex-end;
  overflow: hidden;
  border-radius: var(--card-radius);
  background-position: center;
  background-size: cover;
}

.audience-card::after {
  position: absolute;
  inset: auto 47% 2.6% 0.9%;
  height: 41.8%;
  border-radius: 0 0 0 var(--card-radius);
  background: linear-gradient(
    90deg,
    #ffffff 21.73%,
    rgb(255 255 255 / 31%) 80.44%
  );
  content: "";
}

.audience-card p {
  position: relative;
  z-index: 1;
  display: grid;
  margin: 0 0 clamp(0.65rem, 2.2vw, 1.45rem) clamp(0.9rem, 3.3vw, 2.25rem);
  font-size: clamp(0.95rem, 3.7vw, 2.5rem);
  font-weight: 700;
  line-height: 1.18;
}

.audience-closing {
  margin-top: clamp(2.5rem, 9vw, 6.5rem) !important;
  font-size: clamp(1.5rem, 7.2vw, 4.9rem) !important;
  letter-spacing: -0.02em;
  line-height: 0.98 !important;
}

.red-highlight {
  margin-top: clamp(0.5rem, 1.2vw, 0.8rem) !important;
  color: var(--red);
  font-size: clamp(1.45rem, 7.2vw, 4.9rem) !important;
  font-weight: 700;
  line-height: 1 !important;
}

.benefits-section {
  padding-top: clamp(3rem, 8.8vw, 6rem);
  padding-bottom: clamp(3.5rem, 9vw, 6.25rem);
  background: var(--dark-gray);
  color: var(--white);
}

.benefit-card {
  padding: clamp(1.1rem, 2.8vw, 1.9rem)
    clamp(0.9rem, 1.8vw, 1.25rem);
}

.benefit-eyebrow {
  margin: 0;
  color: var(--red);
  font-size: clamp(1.25rem, 5.1vw, 3.45rem);
  font-weight: 700;
  line-height: 1.05;
}

.benefit-card h3 {
  margin-top: clamp(0.35rem, 0.9vw, 0.65rem);
  font-size: clamp(1.6rem, 6vw, 4.05rem);
}

.benefit-card > p:last-child {
  margin: clamp(0.55rem, 1.4vw, 0.9rem) 0 0;
  font-size: clamp(1rem, 3.7vw, 2.5rem);
  line-height: 1.08;
}

.steps-section {
  padding-top: clamp(3rem, 11.5vw, 8.2rem);
  padding-bottom: clamp(4rem, 11vw, 7.5rem);
}

.steps-section > h2 {
  font-size: clamp(2.8rem, 9.5vw, 6.4rem);
  line-height: 0.98;
}

.steps-section ol {
  display: grid;
  gap: clamp(2rem, 7vw, 4.8rem);
  margin: clamp(2.4rem, 7vw, 4.7rem) 0 0;
  padding: 0;
  list-style: none;
}

.steps-section li {
  padding-bottom: clamp(1.2rem, 3vw, 2rem);
  border-bottom: 0.15rem solid #111;
}

.steps-section h3 {
  margin: 0;
  font-size: clamp(1.25rem, 5vw, 3.45rem);
  line-height: 1.12;
}

.steps-section li p {
  margin: clamp(0.5rem, 1.1vw, 0.75rem) 0 0;
  font-size: clamp(1rem, 3.7vw, 2.5rem);
  line-height: 1.12;
}

.about-section {
  min-height: clamp(52rem, 222vw, 150rem);
  padding-top: clamp(28rem, 109vw, 74rem);
  padding-bottom: clamp(3.5rem, 9vw, 6rem);
  background:
    linear-gradient(
      to bottom,
      rgb(0 0 0 / 0%) 0%,
      rgb(0 0 0 / 12%) 32%,
      rgb(0 0 0 / 64%) 45%,
      rgb(0 0 0 / 64%) 100%
    ),
    url("/assets/bendito-mockup--ccc-business-card-04@1x.png") center top /
      cover no-repeat;
}

.about-section h2 {
  font-size: clamp(3rem, 13vw, 8.75rem);
  line-height: 0.96;
}

.about-section p {
  margin: clamp(1.8rem, 5vw, 3.2rem) 0 0;
  font-size: clamp(1.05rem, 4.6vw, 3.1rem);
  line-height: 1.25;
}

.portfolio-section {
  position: relative;
  overflow: hidden;
  background: #ddd;
}

.portfolio-slides {
  position: relative;
  aspect-ratio: 1084 / 1211;
  overflow: hidden;
  touch-action: pan-y;
}

.portfolio-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
  visibility: hidden;
}

.portfolio-slide[hidden] {
  display: none;
}

.portfolio-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.portfolio-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-controls {
  position: absolute;
  z-index: 2;
  right: var(--content-pad);
  bottom: clamp(1.5rem, 4vw, 2.7rem);
  left: var(--content-pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  color: var(--white);
  font-size: clamp(1.15rem, 4.2vw, 2.5rem);
  text-align: center;
  text-shadow: 0 0.1rem 0.4rem rgb(0 0 0 / 70%);
}

.portfolio-arrow {
  display: flex;
  min-width: 2.5rem;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-size: 2em;
  font-weight: 400;
  text-shadow: inherit;
}

.portfolio-status {
  display: flex;
  min-height: clamp(3.3rem, 9vw, 6rem);
  align-items: center;
  justify-content: center;
  gap: clamp(0.55rem, 1.5vw, 1rem);
  border-radius: var(--card-radius);
  background: rgb(255 255 255 / 82%);
  box-shadow: var(--soft-shadow);
  color: var(--black);
  text-shadow: none;
}

.portfolio-status strong {
  line-height: 1;
}

.portfolio-counter {
  font-size: 0.62em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.faq-section {
  padding-top: clamp(4rem, 13vw, 9rem);
  padding-bottom: clamp(5rem, 13vw, 8.5rem);
  background: #fbfbfb;
}

.faq-section h2 {
  margin-bottom: clamp(2.5rem, 7vw, 4.7rem);
}

.faq-list {
  display: grid;
  gap: clamp(0.75rem, 2.8vw, 1.9rem);
}

.faq-list details {
  overflow: hidden;
  border-radius: var(--card-radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.faq-list summary {
  position: relative;
  padding: clamp(1rem, 2.7vw, 1.85rem)
    clamp(3rem, 7.5vw, 5rem) clamp(1rem, 2.7vw, 1.85rem)
    clamp(1.2rem, 3.4vw, 2.3rem);
  cursor: pointer;
  font-size: clamp(1rem, 3.7vw, 2.5rem);
  line-height: 1.2;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: clamp(1rem, 3vw, 2rem);
  transform: translateY(-50%) rotate(0deg);
  border-top: 0.55em solid #111;
  border-right: 0.45em solid transparent;
  border-left: 0.45em solid transparent;
  content: "";
  transition: transform 160ms ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 clamp(1.2rem, 3.4vw, 2.3rem)
    clamp(1.2rem, 3.4vw, 2.3rem);
  color: #333;
  font-size: clamp(0.95rem, 3vw, 1.8rem);
  line-height: 1.35;
}

.closing-section {
  padding-top: clamp(4rem, 10vw, 7rem);
  padding-bottom: clamp(4rem, 10vw, 7rem);
  background: #939393;
  color: var(--white);
}

.closing-section p {
  margin-top: clamp(2.1rem, 4.7vw, 3.2rem);
  line-height: 1.12;
}

.site-footer {
  display: grid;
  justify-items: center;
  padding-top: clamp(3rem, 9vw, 6rem);
  padding-bottom: clamp(2.8rem, 8vw, 5.5rem);
}

.footer-logo {
  width: min(87.4vw, 944px);
  aspect-ratio: 944 / 275;
}

.footer-logo .brand-mark-left {
  right: 14.8%;
  bottom: 0;
  width: 13.7%;
  height: 76.7%;
}

.footer-logo .brand-mark-right {
  width: 25.5%;
  height: 87.6%;
}

.footer-contacts {
  margin-top: 1.5rem;
  max-width: 64rem;
  text-align: center;
  font-style: normal;
}

.site-footer p {
  margin: 1.5rem 0 0;
  font-size: clamp(0.95rem, 2.6vw, 1.4rem);
  line-height: 1.45;
}

.footer-contacts p + p {
  margin-top: 0.45rem;
}

@media (min-width: 760px) {
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-wide {
    grid-column: 1 / -1;
  }

  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .audience-card {
    min-height: 23rem;
  }

  .audience-card::after {
    right: 28%;
    height: 45%;
  }
}

@media (max-width: 759px) {
  .page-shell {
    box-shadow: none;
  }

  .lead-form input,
  .lead-form select,
  .lead-form textarea {
    border-radius: 0.85rem;
  }

  .primary-button,
  .white-card,
  .audience-card,
  .faq-list details,
  .portfolio-controls strong {
    border-radius: 0.85rem;
  }
}

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

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