/* Shared foundation — tokens, reset, typography, footer */

:root {
  --bright-yellow: #ffed00;
  --pale-yellow: #ffde59;
  --dark-grey: #1d1d1d;
  --ash: #dedcdb;
  --ash-bg: #f7f7f7;
  --black: #000;
  --white: #fff;
  --body-text: #333;
  --text-muted: #555;
  --container-width: 1200px;
  --font: 'Open Sauce Sans', Arial, sans-serif;
  --section-pad: clamp(72px, 8vw, 108px);
  --section-pad-x: clamp(24px, 4vw, 48px);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-sm: 4px;
  --radius-md: 6px;
  --border-subtle: rgba(0, 0, 0, 0.08);
  --border-light: rgba(255, 255, 255, 0.14);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font);
}

body {
  color: var(--body-text);
  background-color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select,
optgroup {
  font-family: var(--font);
}

::selection {
  background: var(--bright-yellow);
  color: var(--black);
}

.wrapper .container,
.sv-reviews .sv-reviews__wrap,
.sv-process .sv-process__wrap {
  margin-left: auto;
  margin-right: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.h1,
.h2,
.h3 {
  letter-spacing: -0.02em;
  font-family: var(--font);
}

.h1 {
  color: var(--black);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.12;
  font-weight: 700;
}

.h2 {
  color: var(--black);
  font-size: clamp(1.85rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  font-weight: 600;
}

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

.h2.center {
  text-align: center;
}

.h3 {
  color: var(--black);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
}

.h3.white {
  color: var(--white);
}

.paragraph,
.paragraph-lg {
  color: var(--body-text);
  font-size: 1.1rem;
  line-height: 1.75;
}

.paragraph-lg {
  font-size: 1.2rem;
}

.paragraph.white {
  color: var(--white);
}

.paragraph.center {
  text-align: center;
}


.highlight,
.heading-hilighter,
.text-span-4,
.text-span-5 {
  background: linear-gradient(to top, var(--bright-yellow) 40%, transparent 40%);
  display: inline;
  padding: 0 4px;
}

/* Reveal: visible by default; animate only when JS is active */
.reveal {
  opacity: 1;
  transform: none;
}

html.js .reveal:not(.visible) {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

html.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.button,
.transparent-button,
.submit-button {
  display: inline-block;
  padding: 15px 22px;
  font-size: 1em;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.button {
  border: 2px solid transparent;
  background-color: var(--black);
  color: var(--white);
}

.button:hover {
  background-color: var(--bright-yellow);
  color: var(--black);
}

.button.yellow-text {
  background-color: var(--black);
  color: var(--bright-yellow);
  border: none;
}

.button.yellow-text:hover {
  background-color: #2a2a2a;
  color: var(--bright-yellow);
}

.button.outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.button.outline:hover {
  background: var(--white);
  color: var(--black);
}

.transparent-button {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}

.transparent-button:hover {
  background: var(--bright-yellow);
  border-color: var(--bright-yellow);
}

.submit-button {
  background: var(--black);
  color: var(--white);
  border: none;
}

.submit-button:hover {
  background: #2a2a2a;
}

.button:focus-visible,
.transparent-button:focus-visible,
.submit-button:focus-visible,
.navbar-contact-button:focus-visible {
  outline: 2px solid var(--bright-yellow);
  outline-offset: 3px;
}

/* Eyebrows */
.sv-eyebrow,
.sv-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.3;
}

.sv-eyebrow::before,
.sv-label::before {
  content: "";
  width: 28px;
  height: 2px;
  flex-shrink: 0;
}

.sv-eyebrow--dark,
.sv-label--dark {
  color: var(--dark-grey);
}

.sv-eyebrow--dark::before,
.sv-label--dark::before {
  background: var(--black);
}

.sv-eyebrow--light {
  color: var(--bright-yellow);
}

.sv-eyebrow--light::before {
  background: var(--bright-yellow);
}

.sv-eyebrow--hero,
.quote-hero__eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bright-yellow);
}

.sv-eyebrow--hero::before,
.quote-hero__eyebrow::before {
  display: none;
}

.sv-eyebrow--center {
  display: flex;
  justify-content: center;
  width: 100%;
}


/* Footer */
.wrapper.footer {
  background-color: var(--dark-grey);
  padding: 60px var(--section-pad-x) 48px;
  display: flex;
  flex-flow: column;
  align-items: center;
  width: 100%;
}

.div-block-14 {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.footer-logo {
  width: 140px;
}

.div-block-15 {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  flex-wrap: wrap;
}

.div-block-16 {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--white);
  transition: opacity 0.2s ease;
}

.div-block-16:hover {
  opacity: 0.75;
}

.image-6 {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.text-block-4 {
  font-size: 1.1em;
  color: var(--white);
}

.footer-line {
  width: 100%;
  max-width: var(--container-width);
  height: 1px;
  background-color: var(--ash);
  margin: 30px auto;
  opacity: 0.3;
}

.div-block-13 {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.text-block-3 {
  font-size: 0.9em;
  color: var(--ash);
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .div-block-15 {
    flex-flow: column;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.js .reveal:not(.visible) {
    opacity: 1;
    transform: none;
  }
}
