/* ============================================================
   STASH WHISPERER — Boutique Craft Landing Page
   Color Palette:
     --oatmeal:    #E8DFD0  (Warm Oatmeal)
     --slate:      #5A5A5A  (Slate Grey)
     --teal:       #4A7C7E  (Deep Dusty Teal)
     --cream:      #FAF7F2  (Cream)
     --white:      #FFFFFF
     --dark:       #2C2C2C
   ============================================================ */

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
  --oatmeal: #E8DFD0;
  --oatmeal-light: #F0EAE0;
  --slate: #5A5A5A;
  --slate-light: #7A7A7A;
  --teal: #4A7C7E;
  --teal-dark: #3A6264;
  --teal-light: #5A9698;
  --cream: #FAF7F2;
  --white: #FFFFFF;
  --dark: #2C2C2C;
  --dark-soft: #3A3A3A;

  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--slate);
  background-color: var(--white);
  overflow-x: hidden;
}

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

a {
  color: var(--teal);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--teal-dark);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.25;
  font-weight: 600;
}


/* ---------- UTILITIES ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.section-eyebrow--light {
  color: rgba(255, 255, 255, 0.7);
}

.section-heading {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-heading--centered {
  text-align: center;
}

.section-subheading {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
  color: var(--slate-light);
}


/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn--primary {
  background-color: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn--primary:hover {
  background-color: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background-color: transparent;
  color: var(--teal);
  border-color: var(--teal);
}

.btn--secondary:hover {
  background-color: var(--teal);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--outline {
  background-color: transparent;
  color: var(--teal);
  border-color: var(--teal);
}

.btn--outline:hover {
  background-color: var(--teal);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--white {
  background-color: var(--white);
  color: var(--teal);
  border-color: var(--white);
}

.btn--white:hover {
  background-color: var(--cream);
  border-color: var(--cream);
  color: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn--large {
  padding: 18px 44px;
  font-size: 0.9rem;
}

.btn--small {
  padding: 10px 22px;
  font-size: 0.75rem;
}

.btn--full {
  display: block;
  width: 100%;
}


/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
  background: transparent;
}

.nav--scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__logo:hover {
  color: var(--teal);
}

.nav__logo-icon {
  font-size: 1rem;
  color: var(--teal);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--slate);
  letter-spacing: 0.02em;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--teal);
  transition: width var(--transition);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link:hover {
  color: var(--teal);
}

.nav__link--cta {
  background-color: var(--teal);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background-color: var(--teal-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--dark);
  transition: all var(--transition);
  border-radius: 2px;
}

.nav__toggle--open .nav__toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle--open .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav__toggle--open .nav__toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__image-container {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(250, 247, 242, 0.92) 0%,
    rgba(250, 247, 242, 0.75) 50%,
    rgba(232, 223, 208, 0.6) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 0 24px;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero__subheadline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--slate);
  max-width: 540px;
  margin: 0 auto 40px;
  font-weight: 400;
  line-height: 1.6;
}


/* ---------- PROBLEM / SOLUTION ---------- */
.problem {
  padding: 100px 0 80px;
  background-color: var(--white);
}

.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}

.problem__lead {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 36px;
  color: var(--slate);
}

.problem__lead em {
  font-style: italic;
  color: var(--dark-soft);
}

.problem__points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.problem__point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.problem__point-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.problem__point-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.problem__point p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--slate-light);
}

.problem__visual {
  display: flex;
  justify-content: center;
}

.problem__illustration {
  max-width: 420px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.problem__solution {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding-top: 48px;
  border-top: 1px solid var(--oatmeal);
}

.problem__solution-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 28px;
  color: var(--slate);
}

.problem__solution-text strong {
  color: var(--teal);
  font-weight: 600;
}


/* ---------- SERVICES ---------- */
.services {
  padding: 100px 0;
  background-color: var(--cream);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  max-width: 960px;
  margin: 0 auto;
}

.services__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 36px 36px;
  position: relative;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.services__card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.services__card--featured {
  border: 2px solid var(--teal);
  box-shadow: var(--shadow-md);
}

.services__card--featured:hover {
  box-shadow: var(--shadow-xl);
}

.services__card-badge {
  position: absolute;
  top: -1px;
  left: 36px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.services__card-icon {
  margin-bottom: 24px;
}

.services__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.services__card-subtitle {
  font-size: 0.85rem;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.services__card-description {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 24px;
}

.services__card-features {
  margin-bottom: 32px;
  flex-grow: 1;
}

.services__card-features li {
  font-size: 0.88rem;
  color: var(--slate);
  padding: 8px 0;
  border-bottom: 1px solid var(--oatmeal-light);
  padding-left: 24px;
  position: relative;
}

.services__card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--teal);
  opacity: 0.4;
}

.services__card-features li:last-child {
  border-bottom: none;
}

.services__card-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--slate-light);
  margin-top: 12px;
}


/* ---------- PROCESS / HOW IT WORKS ---------- */
.process {
  padding: 100px 0;
  background-color: var(--white);
}

.process__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
}

.process__step {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 32px 24px;
}

.process__step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--oatmeal);
  line-height: 1;
  margin-bottom: 16px;
}

.process__step-icon {
  margin: 0 auto 20px;
  width: 64px;
  height: 64px;
}

.process__step-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.process__step-subtitle {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.process__step-description {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--slate-light);
}

.process__connector {
  display: flex;
  align-items: center;
  padding-top: 80px;
  opacity: 0.4;
}

.process__cta {
  text-align: center;
}


/* ---------- TESTIMONIAL ---------- */
.testimonial {
  padding: 80px 0;
  background-color: var(--cream);
}

.testimonial__card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 48px;
  position: relative;
}

.testimonial__quote-mark {
  margin: 0 auto 20px;
}

.testimonial__text {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: var(--dark-soft);
  margin-bottom: 24px;
}

.testimonial__author {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial__author-name {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

.testimonial__author-location {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--slate-light);
}


/* ---------- ABOUT ---------- */
.about {
  padding: 100px 0;
  background-color: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.about__image-wrapper {
  position: relative;
}

.about__image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 420px;
}

.about__image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--teal);
  border-radius: var(--radius-lg);
  z-index: -1;
  max-width: 420px;
  opacity: 0.3;
}

.about__text p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--slate);
}

.about__text p em {
  font-style: italic;
  color: var(--dark-soft);
}

.about__credentials {
  display: flex;
  gap: 32px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--oatmeal);
  border-bottom: 1px solid var(--oatmeal);
}

.about__credential {
  display: flex;
  flex-direction: column;
}

.about__credential-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1.1;
}

.about__credential-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--slate-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* ---------- FINAL CTA ---------- */
.cta-final {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, var(--teal-light) 100%);
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 Q15 20 30 30 Q45 40 60 30' fill='none' stroke='white' stroke-width='0.5' opacity='0.06'/%3E%3C/svg%3E") repeat;
  opacity: 1;
}

.cta-final__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-final__heading {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  color: var(--white);
  margin-bottom: 20px;
}

.cta-final__text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
}

.cta-final__note {
  margin-top: 20px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}


/* ---------- FOOTER ---------- */
.footer {
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.footer__logo:hover {
  color: var(--oatmeal);
}

.footer__logo-icon {
  font-size: 0.9rem;
  color: var(--teal-light);
}

.footer__tagline {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
}

.footer__social-link:hover {
  border-color: var(--teal-light);
  color: var(--teal-light);
  background: rgba(74, 124, 126, 0.1);
}

.footer__links-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__links ul li {
  margin-bottom: 8px;
}

.footer__links ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer__links ul li a:hover {
  color: var(--white);
}

.footer__service-area p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer__zip-codes li {
  font-size: 0.85rem;
  padding: 4px 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer__service-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
  margin-top: 8px;
}

.footer__contact p {
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.7);
}

.footer__contact a:hover {
  color: var(--white);
}

.footer__contact .btn {
  margin-top: 12px;
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.7);
}

.footer__contact .btn:hover {
  border-color: var(--teal-light);
  background: var(--teal);
  color: var(--white);
}

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer__legal {
  display: flex;
  gap: 12px;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.35);
}

.footer__legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}


/* ---------- SCROLL ANIMATIONS ---------- */
.animate-target {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delays for grouped items */
.problem__point.animate-target:nth-child(1) { transition-delay: 0s; }
.problem__point.animate-target:nth-child(2) { transition-delay: 0.1s; }
.problem__point.animate-target:nth-child(3) { transition-delay: 0.2s; }

.services__card.animate-target:nth-child(1) { transition-delay: 0s; }
.services__card.animate-target:nth-child(2) { transition-delay: 0.15s; }

.process__step.animate-target:nth-child(1) { transition-delay: 0s; }
.process__step.animate-target:nth-child(3) { transition-delay: 0.15s; }
.process__step.animate-target:nth-child(5) { transition-delay: 0.3s; }


/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ---------- TABLET (max-width: 1024px) ---------- */
@media (max-width: 1024px) {
  .problem__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .problem__visual {
    order: -1;
  }

  .problem__illustration {
    max-width: 320px;
  }

  .services__grid {
    gap: 24px;
  }

  .services__card {
    padding: 40px 28px 28px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__image-wrapper {
    display: flex;
    justify-content: center;
  }

  .about__image {
    max-width: 360px;
  }

  .about__image-accent {
    max-width: 360px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* ---------- MOBILE (max-width: 768px) ---------- */
@media (max-width: 768px) {
  /* Nav */
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--oatmeal);
  }

  .nav__links--open {
    display: flex;
  }

  .nav__link {
    padding: 12px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--oatmeal-light);
    width: 100%;
  }

  .nav__link::after {
    display: none;
  }

  .nav__link--cta {
    margin-top: 12px;
    text-align: center;
    border-bottom: none;
    padding: 14px 24px;
  }

  /* Hero */
  .hero {
    min-height: 90vh;
    padding: 120px 0 60px;
  }

  .hero__eyebrow {
    font-size: 0.68rem;
  }

  /* Services */
  .services {
    padding: 72px 0;
  }

  .services__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .services__card--featured {
    order: -1;
  }

  /* Process */
  .process {
    padding: 72px 0;
  }

  .process__steps {
    flex-direction: column;
    align-items: center;
  }

  .process__connector {
    transform: rotate(90deg);
    padding-top: 0;
    margin: -8px 0;
  }

  .process__step {
    max-width: 400px;
  }

  /* Testimonial */
  .testimonial__card {
    padding: 32px 16px;
  }

  /* About */
  .about {
    padding: 72px 0;
  }

  .about__credentials {
    gap: 24px;
  }

  .about__credential-number {
    font-size: 1.6rem;
  }

  /* CTA */
  .cta-final {
    padding: 72px 0;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ---------- SMALL MOBILE (max-width: 480px) ---------- */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    min-height: 85vh;
  }

  .btn--large {
    padding: 16px 32px;
    font-size: 0.82rem;
  }

  .problem {
    padding: 64px 0 56px;
  }

  .problem__illustration {
    max-width: 260px;
  }

  .services__card {
    padding: 36px 24px 24px;
  }

  .about__credentials {
    flex-wrap: wrap;
  }

  .about__image {
    max-width: 280px;
  }

  .about__image-accent {
    max-width: 280px;
    bottom: -12px;
    right: -12px;
  }
}


/* ---------- PRINT STYLES ---------- */
@media print {
  .nav, .cta-final, .footer__social {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  .btn {
    border: 1px solid #000;
    color: #000;
    background: transparent;
  }
}


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

  html {
    scroll-behavior: auto;
  }

  .animate-target {
    opacity: 1;
    transform: none;
  }
}

/* Focus styles */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* Skip to content (hidden, for screen readers) */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--teal);
  color: var(--white);
  padding: 8px 16px;
  z-index: 10000;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}
