/* ==========================================================================
   Henryk Got You Covered — Styles
   Colors: Dark surface + warm amber/gold
   Fonts: Work Sans (headings) + Manrope (body)
   ========================================================================== */

/* --- Custom Properties --- */
:root {
  --color-primary: #D4A24E;
  --color-primary-bright: #FFBA20;
  --color-primary-dim: #A07830;
  --color-tertiary: #FFB783;
  --color-surface: #121416;
  --color-surface-low: #1A1C1E;
  --color-surface-mid: #1E2022;
  --color-surface-high: #282A2C;
  --color-surface-highest: #333537;
  --color-text: #E2E2E5;
  --color-muted: #8F9096;
  --color-border: rgba(255, 255, 255, 0.06);
  --color-border-hover: rgba(255, 255, 255, 0.12);

  --font-heading: 'Work Sans', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);

  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--color-surface);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container { padding: 0 2rem; }
}

/* --- Material Symbols --- */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

/* --- Section Defaults --- */
section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  section { padding: 7rem 0; }
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--color-text);
}

.section-subtitle {
  color: var(--color-muted);
  font-size: 1.125rem;
  max-width: 28rem;
  line-height: 1.6;
}

.section-header--split {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .section-header--split {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 4rem;
  }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-heading);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 160ms var(--ease-out), background 300ms var(--ease-out);
  border-radius: var(--radius-md);
  text-decoration: none;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background: var(--color-primary);
  color: #1a1400;
  padding: 1rem 1.75rem;
  font-size: 1.125rem;
}

.btn--primary:hover {
  background: var(--color-primary-bright);
}

.btn--ghost {
  background: var(--color-surface-highest);
  color: var(--color-text);
  padding: 1rem 1.75rem;
  font-size: 1.125rem;
  border: 1px solid var(--color-border);
}

.btn--ghost:hover {
  background: var(--color-surface-high);
  border-color: var(--color-border-hover);
}

.btn--dark {
  background: #0c0e10;
  color: var(--color-primary);
  padding: 1.25rem 2rem;
  font-size: 1.25rem;
}

.btn--dark:hover {
  background: #181a1c;
}

.btn--outline-dark {
  background: transparent;
  color: #0c0e10;
  padding: 1.25rem 2rem;
  font-size: 1.25rem;
  border: 2px solid #0c0e10;
}

.btn--outline-dark:hover {
  background: rgba(0, 0, 0, 0.05);
}

.btn--lg {
  padding: 1rem 1.75rem;
  font-size: 1.125rem;
}

.btn--xl {
  padding: 1.25rem 2rem;
  font-size: 1.375rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
  background: #0c0e10;
  color: var(--color-primary);
}

.btn--full:hover {
  background: #181a1c;
}

/* --- NAV --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: rgba(18, 20, 22, 0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--color-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

@media (min-width: 768px) {
  .nav__inner { padding: 1rem 2rem; }
}

.nav__logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.125rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.nav__links {
  display: none;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav__links { display: flex; }
}

.nav__links a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-muted);
  letter-spacing: -0.01em;
  transition: color 200ms var(--ease-out);
}

.nav__links a:hover {
  color: var(--color-text);
}

.nav__cta {
  display: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-primary);
  border: 1.5px solid rgba(212, 162, 78, 0.25);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: border-color 200ms var(--ease-out), transform 160ms var(--ease-out);
}

.nav__cta:hover {
  border-color: rgba(212, 162, 78, 0.5);
}

.nav__cta:active {
  transform: scale(0.97);
}

@media (min-width: 768px) {
  .nav__cta { display: inline-flex; }
}

/* Hamburger */
.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 60;
}

@media (min-width: 768px) {
  .nav__toggle { display: none; }
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 300ms var(--ease-out), opacity 200ms var(--ease-out);
  transform-origin: center;
}

.nav__toggle.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav__toggle.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(12, 14, 16, 0.92);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms var(--ease-out);
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-menu__link {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--color-text);
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 400ms var(--ease-out), transform 500ms var(--ease-out), color 200ms var(--ease-out);
}

.mobile-menu.is-open .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.is-open .mobile-menu__link:nth-child(1) { transition-delay: 80ms; }
.mobile-menu.is-open .mobile-menu__link:nth-child(2) { transition-delay: 130ms; }
.mobile-menu.is-open .mobile-menu__link:nth-child(3) { transition-delay: 180ms; }
.mobile-menu.is-open .mobile-menu__link:nth-child(4) { transition-delay: 230ms; }

.mobile-menu__link:hover {
  color: var(--color-primary);
}

.mobile-menu__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--color-primary);
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 400ms var(--ease-out), transform 500ms var(--ease-out);
  transition-delay: 280ms;
}

.mobile-menu.is-open .mobile-menu__phone {
  opacity: 1;
  transform: translateY(0);
}

/* --- HERO --- */
.hero {
  padding: 8rem 0 5rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero { padding: 10rem 0 7rem; }
}

.hero__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero__container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.hero__title em {
  color: var(--color-primary);
  font-style: italic;
}

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--color-muted);
  max-width: 32rem;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__visual {
  position: relative;
  display: none;
}

@media (min-width: 1024px) {
  .hero__visual { display: block; }
}

.hero__glow {
  position: absolute;
  top: -4rem;
  right: -4rem;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(212, 162, 78, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.hero__image-frame {
  position: relative;
  background: var(--color-surface-mid);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.hero__image-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--color-surface), transparent);
  pointer-events: none;
}

.hero__image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* --- SERVICES --- */
.services {
  background: var(--color-surface-low);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
  }

  .service-card:nth-child(1) { grid-column: span 7; }
  .service-card:nth-child(2) { grid-column: span 5; }
  .service-card:nth-child(3) { grid-column: span 5; }
  .service-card:nth-child(4) { grid-column: span 7; }
}

.service-card__shell {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 3px;
  transition: border-color 300ms var(--ease-out);
}

.service-card:hover .service-card__shell {
  border-color: var(--color-border-hover);
}

.service-card__inner {
  background: var(--color-surface-mid);
  border-radius: calc(var(--radius-lg) - 3px);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  min-height: 12rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-card__icon {
  font-size: 2.25rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

.service-card__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.service-card__desc {
  color: var(--color-muted);
  line-height: 1.6;
  font-size: 0.9375rem;
}

.service-card__bg-icon {
  position: absolute;
  right: -0.75rem;
  bottom: -0.75rem;
  font-size: 8rem;
  color: var(--color-text);
  opacity: 0.02;
  pointer-events: none;
  transition: opacity 400ms var(--ease-out);
}

.service-card:hover .service-card__bg-icon {
  opacity: 0.05;
}

/* --- HOW IT WORKS --- */
.how-it-works {
  background: var(--color-surface);
}

.how__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .how__layout {
    grid-template-columns: 4fr 8fr;
    gap: 4rem;
  }
}

.how__sticky-title {
  position: static;
}

@media (min-width: 1024px) {
  .how__sticky-title {
    position: sticky;
    top: 8rem;
  }
}

.how__steps-col {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.how__step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.how__number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--color-surface-highest);
  transition: color 400ms var(--ease-out);
  flex-shrink: 0;
}

.how__step:hover .how__number {
  color: var(--color-primary);
}

.how__step-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.75rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.375rem;
}

.how__step-desc {
  font-size: 1.125rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* --- ABOUT --- */
.about {
  background: var(--color-surface-low);
}

.about__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about__layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about__image-shell {
  position: relative;
  border: 2px solid rgba(212, 162, 78, 0.2);
  border-radius: var(--radius-xl);
  padding: 0.75rem;
}

.about__image-placeholder {
  background: var(--color-surface-mid);
  border-radius: calc(var(--radius-xl) - 0.75rem);
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about__badge {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  background: var(--color-primary);
  color: #1a1400;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(212, 162, 78, 0.25);
}

.about__text-col h2 {
  margin-bottom: 1.5rem;
}

.about__text-col p {
  color: var(--color-muted);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* --- TRUST / WHY CHOOSE --- */
.trust {
  background: var(--color-surface);
}

.trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .trust__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust__item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-surface-mid);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: border-color 300ms var(--ease-out), transform 300ms var(--ease-out);
}

.trust__item:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-2px);
}

.trust__icon {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
  display: block;
}

.trust__item h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.trust__item p {
  color: var(--color-muted);
  font-size: 0.9375rem;
  line-height: 1.5;
}

/* --- CONTACT / CTA --- */
.contact {
  background: var(--color-primary);
  color: #1a1400;
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .contact { padding: 7rem 0; }
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .contact__layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.contact__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1rem;
  color: #0c0e10;
}

.contact__subtitle {
  font-size: 1.25rem;
  color: rgba(12, 14, 16, 0.7);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact__area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: rgba(12, 14, 16, 0.8);
}

/* Contact Form */
.contact-form {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0c0e10;
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(12, 14, 16, 0.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: #0c0e10;
  transition: border-color 200ms var(--ease-out), background 200ms var(--ease-out);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(12, 14, 16, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0c0e10;
  background: rgba(255, 255, 255, 0.8);
}

.form-group textarea {
  resize: vertical;
  min-height: 5rem;
}

/* --- FOOTER --- */
.footer {
  background: #0a0b0c;
  padding: 4rem 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
  }
}

.footer__logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.125rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.footer__brand p {
  color: var(--color-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.footer__links h4,
.footer__contact-info h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.footer__links a,
.footer__contact-info a,
.footer__contact-info p {
  display: block;
  color: var(--color-muted);
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
  transition: color 200ms var(--ease-out);
}

.footer__links a:hover,
.footer__contact-info a:hover {
  color: var(--color-primary);
}

.footer__bottom {
  padding: 1.5rem 0;
}

.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-muted);
}

@media (min-width: 768px) {
  .footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__bottom a {
  color: var(--color-primary);
  transition: opacity 200ms var(--ease-out);
}

.footer__bottom a:hover {
  opacity: 0.8;
}

/* --- MOBILE DOCK --- */
.mobile-dock {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: 88%;
  max-width: 22rem;
  background: rgba(40, 42, 44, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 1.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

@media (min-width: 768px) {
  .mobile-dock { display: none; }
}

.mobile-dock__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--color-muted);
  transition: color 200ms var(--ease-out);
}

.mobile-dock__item:hover {
  color: var(--color-text);
}

.mobile-dock__label {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.mobile-dock__call {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  background: var(--color-primary);
  color: #1a1400;
  border-radius: 50%;
  margin-top: -1.75rem;
  box-shadow: 0 6px 20px rgba(212, 162, 78, 0.3);
  transition: transform 160ms var(--ease-out);
}

.mobile-dock__call:active {
  transform: scale(0.93);
}

/* --- SCROLL REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 600ms var(--ease-out), transform 700ms var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger reveals */
.services__grid .reveal:nth-child(1) { transition-delay: 0ms; }
.services__grid .reveal:nth-child(2) { transition-delay: 80ms; }
.services__grid .reveal:nth-child(3) { transition-delay: 160ms; }
.services__grid .reveal:nth-child(4) { transition-delay: 240ms; }

.trust__grid .reveal:nth-child(1) { transition-delay: 0ms; }
.trust__grid .reveal:nth-child(2) { transition-delay: 60ms; }
.trust__grid .reveal:nth-child(3) { transition-delay: 120ms; }
.trust__grid .reveal:nth-child(4) { transition-delay: 180ms; }

/* --- REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .mobile-menu__link,
  .mobile-menu__phone {
    opacity: 1;
    transform: none;
    transition: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   MOBILE OPTIMIZATIONS (max-width: 767px)
   ========================================================================== */
@media (max-width: 767px) {

  /* Footer clearance for dock */
  .footer { padding-bottom: 6rem; }

  /* Hero — tighter on small screens */
  .hero {
    padding: 6rem 0 3rem;
  }

  .hero__eyebrow {
    font-size: 0.6875rem;
    margin-bottom: 0.75rem;
  }

  .hero__title {
    font-size: 2.5rem;
    line-height: 0.95;
    margin-bottom: 1rem;
  }

  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.75rem;
    line-height: 1.55;
  }

  /* Hero buttons stack full-width on mobile */
  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-size: 1.0625rem;
  }

  /* Section spacing tighter */
  section {
    padding: 3.5rem 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .section-header--split {
    margin-bottom: 2rem;
  }

  /* Service cards — compact */
  .service-card__inner {
    padding: 1.5rem;
    min-height: auto;
  }

  .service-card__icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .service-card__title {
    font-size: 1.25rem;
  }

  .service-card__desc {
    font-size: 0.875rem;
  }

  .service-card__bg-icon {
    font-size: 5rem;
  }

  /* How It Works — compact */
  .how__steps-col {
    gap: 2rem;
  }

  .how__step {
    gap: 1rem;
  }

  .how__number {
    font-size: 2.5rem;
  }

  .how__step-title {
    font-size: 1.25rem;
  }

  .how__step-desc {
    font-size: 1rem;
  }

  /* About — shorter image, tighter text */
  .about__image-placeholder {
    aspect-ratio: 4 / 3;
  }

  .about__badge {
    bottom: -0.75rem;
    right: -0.5rem;
    font-size: 0.75rem;
    padding: 0.625rem 1rem;
  }

  .about__text-col h2 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
  }

  .about__text-col p {
    font-size: 1rem;
  }

  /* Trust grid — single column on small phones */
  .trust__grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .trust__item {
    padding: 1.5rem 1.25rem;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 1rem;
    text-align: left;
  }

  .trust__icon {
    grid-row: 1 / 3;
    align-self: center;
    margin-bottom: 0;
    font-size: 1.75rem;
  }

  .trust__item h3 {
    margin-bottom: 0.125rem;
    font-size: 1rem;
  }

  .trust__item p {
    font-size: 0.8125rem;
  }

  /* Contact section — tighter */
  .contact {
    padding: 3.5rem 0;
  }

  .contact__title {
    font-size: 2rem;
  }

  .contact__subtitle {
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
  }

  /* Contact buttons stack full-width */
  .contact__actions {
    flex-direction: column;
  }

  .contact__actions .btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  /* Nav — smaller logo */
  .nav__logo {
    font-size: 0.875rem;
  }

  .nav__inner {
    padding: 0.875rem 1rem;
  }

  /* Mobile dock — slightly larger call button */
  .mobile-dock__call {
    width: 3.5rem;
    height: 3.5rem;
  }
}
