/* ===================================
   VANESSA VAN EROM — CLOSER HIGH-TICKET
   Professional · Modern · Minimalist
   =================================== */

:root {
  --bg:         #F8F7F4;
  --bg-alt:     #EFEDE8;
  --surface:    #FFFFFF;
  --ink:        #0C0F1A;
  --ink-2:      #2D3142;
  --ink-muted:  #6B7280;
  --ink-faint:  #B0B7C3;
  --gold:       #B8904A;
  --gold-light: #D4AA6A;
  --gold-bg:    #FBF6EE;
  --dark-bg:    #0C0F1A;
  --dark-surf:  #141726;
  --border:     rgba(12,15,26,0.09);
  --border-gold:rgba(184,144,74,0.25);

  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --radius:    6px;
  --radius-lg: 14px;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 7rem 0; }
.gold    { color: var(--gold); }

/* ========================
   BUTTONS
   ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  border: none;
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: #fff;
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,144,74,0.32);
}
.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(12,15,26,0.1);
}
.btn--sm  { padding: 0.6rem 1.25rem; font-size: 0.8rem; }
.btn--lg  { padding: 1rem 2.25rem; font-size: 0.925rem; }

/* ========================
   NAV
   ======================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.375rem 0;
  transition: background 0.4s var(--ease), padding 0.3s var(--ease),
              border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(248,247,244,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.9rem 0;
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(12,15,26,0.07);
  border-bottom: none;
}
.nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.06em;
}

/* ========================
   HERO
   ======================== */
.hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 5rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 110%;
  background: radial-gradient(ellipse at 80% 50%,
    rgba(184,144,74,0.09) 0%,
    rgba(184,144,74,0.03) 40%,
    transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
  pointer-events: none;
}

.hero__content {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hero__left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero__label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero__label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--ff-serif);
  font-size: clamp(2.8rem, 4.5vw, 4.25rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  font-size: 1rem;
  color: var(--ink-muted);
  line-height: 1.75;
  max-width: 460px;
}

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

/* Hero Photo */
.hero__right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__photo-area {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero__photo-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
  flex-shrink: 0;
}

.hero__photo-wrap::before {
  content: '';
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  right: -1.5rem; bottom: -1.5rem;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.hero__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  filter: grayscale(5%) contrast(1.02);
}

.hero__badges {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero__badge {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 0.875rem 1.25rem;
  line-height: 1.2;
  box-shadow: 0 8px 28px rgba(12,15,26,0.18);
  white-space: nowrap;
}

.hero__badge-number {
  display: block;
  font-family: var(--ff-serif);
  font-size: 2.25rem;
  font-weight: 700;
}
.hero__badge-unit {
  font-size: 1.2rem;
}
.hero__badge-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 0.1rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--ink-faint), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { opacity: 0.3; transform: scaleY(0.4); transform-origin: top; }
  50%  { opacity: 1;   transform: scaleY(1);   transform-origin: top; }
  100% { opacity: 0.3; transform: scaleY(0.4); transform-origin: top; }
}

/* ========================
   MARQUEE
   ======================== */
.marquee {
  background: var(--ink);
  overflow: hidden;
  padding: 0.85rem 0;
  user-select: none;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee__track span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}
.marquee__track .dot {
  color: var(--gold) !important;
  opacity: 1;
  font-size: 0.6rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ========================
   SECTION HEADERS
   ======================== */
.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.4rem, 3.5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-sub {
  color: var(--ink-muted);
  max-width: 480px;
  margin-top: 0.875rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.section-header { margin-bottom: 4rem; }

/* ========================
   STATS
   ======================== */
.stats {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats.section { padding: 0; }

.stats__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
}

.stats__item {
  text-align: center;
  padding: 4rem 2rem;
}

.stats__number {
  font-family: var(--ff-serif);
  font-size: clamp(3.5rem, 5.5vw, 5.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.stats__unit {
  font-size: 0.6em;
  font-weight: 600;
}

.stats__label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
}
.stats__sub {
  font-size: 0.72rem;
  color: var(--ink-muted);
  letter-spacing: 0.05em;
}

.stats__divider {
  width: 1px;
  height: 80px;
  background: var(--border);
}

/* ========================
   ABOUT
   ======================== */
.about { background: var(--bg); }

.about__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
}

.about__text {
  color: var(--ink-muted);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  font-size: 1.025rem;
}
.about__text strong {
  color: var(--ink);
  font-weight: 500;
}

.about__quote {
  border-left: 2px solid var(--gold);
  padding: 1.25rem 0 1.25rem 1.75rem;
  margin-top: 2.25rem;
}
.about__quote p {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: 0.875rem;
}
.about__quote cite {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

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

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease),
              box-shadow 0.3s var(--ease);
  position: relative;
}
.service-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(12,15,26,0.08);
}

.service-card__icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card__title {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.service-card__desc {
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.75;
}

/* ========================
   WHY ME
   ======================== */
.whyme { background: var(--bg-alt); }

.whyme__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.whyme__item {
  display: flex;
  gap: 2rem;
  padding: 3rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease);
}
.whyme__item:nth-child(2n)  { border-right: none; }
.whyme__item:nth-child(3),
.whyme__item:nth-child(4)   { border-bottom: none; }
.whyme__item:hover          { background: var(--surface); }

.whyme__num {
  font-family: var(--ff-serif);
  font-size: 2.75rem;
  font-weight: 700;
  color: rgba(12,15,26,0.08);
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.3s var(--ease);
  padding-top: 0.1rem;
}
.whyme__item:hover .whyme__num { color: rgba(184,144,74,0.35); }

.whyme__content h3 {
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.whyme__content p {
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.75;
}

/* ========================
   FOR WHO
   ======================== */
.forwho { background: var(--surface); }

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

.forwho__col {
  padding: 3rem;
  border-radius: var(--radius-lg);
}
.forwho__col--yes {
  background: var(--gold-bg);
  border: 1px solid var(--border-gold);
}
.forwho__col--no {
  background: var(--bg);
  border: 1px solid var(--border);
}

.forwho__col-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid;
}
.forwho__col-label--yes {
  color: var(--gold);
  border-color: rgba(201,169,110,0.2);
}
.forwho__col-label--no {
  color: var(--ink-faint);
  border-color: var(--border);
}

.forwho__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.forwho__list li {
  font-size: 0.93rem;
  color: var(--ink-muted);
  line-height: 1.65;
  padding-left: 1.25rem;
  position: relative;
}
.forwho__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 300;
}
.forwho__list--no li::before { color: var(--ink-faint); }
.forwho__list strong         { color: var(--ink); font-weight: 500; }
.forwho__list--no strong     { color: var(--ink-muted); }

/* ========================
   TESTIMONIALS
   ======================== */
.testimonials { background: var(--bg); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease),
              box-shadow 0.3s var(--ease);
}
.testi-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(12,15,26,0.1);
}

.testi-card__stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}
.testi-card__text {
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.8;
  flex: 1;
  font-style: italic;
}
.testi-card__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.testi-card__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: #060606;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.testi-card__name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
}
.testi-card__source {
  font-size: 0.72rem;
  color: var(--ink-muted);
  margin-top: 0.1rem;
}

/* ========================
   CTA
   ======================== */
.cta {
  background: var(--dark-bg);
}
.cta__inner {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}
.cta .section-label { color: var(--gold); }
.cta .section-label::before { background: var(--gold); }
.cta__title {
  font-family: var(--ff-serif);
  font-size: clamp(2.8rem, 5vw, 4.25rem);
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  margin: 0.5rem 0 1.25rem;
}
.cta__title em {
  font-style: italic;
  color: var(--gold-light);
}
.cta__sub {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.cta .btn--outline {
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}
.cta .btn--outline:hover {
  border-color: rgba(255,255,255,0.6);
  box-shadow: none;
}
.cta__note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.06em;
}

/* ========================
   FOOTER
   ======================== */
.footer {
  background: var(--dark-surf);
  padding: 2.5rem 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}
.footer__logo {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}
.footer__tagline {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.footer__info {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.18);
}

/* ========================
   HERO ENTRANCE ANIMATIONS
   ======================== */
.hero__label,
.hero__title,
.hero__sub,
.hero__actions,
.hero__right {
  opacity: 0;
  transform: translateY(20px);
  animation: heroEnter 0.8s var(--ease) forwards;
}
.hero__label   { animation-delay: 0.15s; }
.hero__title   { animation-delay: 0.3s; }
.hero__sub     { animation-delay: 0.45s; }
.hero__actions { animation-delay: 0.6s; }
.hero__right   { animation-delay: 0.2s; transform: translateY(12px); }

@keyframes heroEnter {
  to { opacity: 1; transform: translateY(0); }
}

/* Service card stagger */
.service-card:nth-child(1) { transition-delay: 0.0s; }
.service-card:nth-child(2) { transition-delay: 0.06s; }
.service-card:nth-child(3) { transition-delay: 0.12s; }
.service-card:nth-child(4) { transition-delay: 0.18s; }
.service-card:nth-child(5) { transition-delay: 0.24s; }
.service-card:nth-child(6) { transition-delay: 0.30s; }

/* Gold top border on service card hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }

/* ========================
   REVEAL ANIMATIONS
   ======================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================
   RESPONSIVE — 1024px
   ======================== */
@media (max-width: 1024px) {
  .section { padding: 5rem 0; }
  .services__grid       { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid  { grid-template-columns: repeat(2, 1fr); }
  .hero__content       { gap: 3rem; }
  .hero__photo-wrap    { max-width: 340px; }
  .hero__title         { font-size: clamp(2.6rem, 5vw, 3.8rem); }
  .section-title       { font-size: clamp(2.2rem, 4vw, 3rem); }

  .hero__photo-area { gap: 1rem; }
  .hero__badge { padding: 0.75rem 1rem; }
  .hero__badge-number { font-size: 1.8rem; }
}

/* ========================
   RESPONSIVE — 768px
   ======================== */
@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .section-header { margin-bottom: 2.5rem; }

  .hero {
    padding: 6rem 1.25rem 3rem;
    min-height: auto;
  }
  .hero__content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero__title { font-size: clamp(2.2rem, 8vw, 2.8rem); text-align: center; }
  .hero__sub   { text-align: center; max-width: none; }
  .hero__actions { justify-content: center; }
  .hero__label { justify-content: center; }
  .hero__right  { order: -1; }

  .hero__photo-area {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .hero__photo-wrap {
    max-width: 280px;
    margin: 0 auto;
  }
  .hero__photo-wrap::before {
    top: 0.75rem; left: 0.75rem;
    right: -0.75rem; bottom: -0.75rem;
  }

  .hero__badges {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .hero__badge {
    padding: 0.75rem 1rem;
    border-radius: 10px;
  }
  .hero__badge-number { font-size: 1.8rem; }

  .stats.section { padding: 0; }
  .stats__grid {
    grid-template-columns: 1fr;
  }
  .stats__divider {
    width: 60px;
    height: 1px;
    margin: 0 auto;
  }
  .stats__item { padding: 2.5rem 1.5rem; }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services__grid       { grid-template-columns: 1fr; gap: 1rem; }
  .whyme__grid          { grid-template-columns: 1fr; }
  .whyme__item          { border-right: none !important; padding: 2rem; }
  .whyme__item:nth-child(3) { border-bottom: 1px solid var(--border) !important; }
  .forwho__grid         { grid-template-columns: 1fr; gap: 1rem; }
  .forwho__col          { padding: 2rem; }
  .testimonials__grid   { grid-template-columns: 1fr; gap: 1rem; }

  .cta__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cta .btn { justify-content: center; }

  .btn { padding: 0.8rem 1.5rem; }
}

/* ========================
   RESPONSIVE — 480px
   ======================== */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .section { padding: 3rem 0; }

  .hero__title { font-size: clamp(1.9rem, 10vw, 2.4rem); }
  .hero__sub { font-size: 0.95rem; }
  .section-title { font-size: clamp(1.8rem, 7vw, 2.2rem); }
  .section-sub { font-size: 0.9rem; }

  .hero__photo-wrap { max-width: 220px; }
  .hero__badges { gap: 0.5rem; }
  .hero__badge { padding: 0.6rem 0.9rem; }
  .hero__badge-number { font-size: 1.5rem; }
  .hero__badge-label { font-size: 0.55rem; }

  .whyme__item    { padding: 1.75rem; flex-direction: column; gap: 0.5rem; }
  .whyme__num     { font-size: 1.8rem; }
  .forwho__col    { padding: 1.5rem; }
  .service-card   { padding: 1.75rem; }
  .testi-card     { padding: 1.5rem; }

  .btn { padding: 0.75rem 1.25rem; font-size: 0.8rem; }
  .btn--lg { padding: 0.875rem 1.75rem; }
}

/* ========================
   REDUCED MOTION
   ======================== */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation-play-state: paused; }
  .hero__scroll-line { animation: none; opacity: 0.4; }
}
