/* =============================================
   DESIGN TOKENS
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;1,9..144,300;1,9..144,400&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  /* — Colors — */
  --clr-deep:   #1C3040;   /* тёмный синий — тёмные секции, заголовки */
  --clr-sage:   #7B9E87;   /* шалфей — акцент, элементы */
  --clr-sand:   #EAE0D4;   /* тёплый песок — фон чередующихся секций */
  --clr-gold:   #BF9B6A;   /* янтарь — CTA, акцентные детали */
  --clr-cream:  #F7F3EE;   /* слоновая кость — основной фон */
  --clr-text:   #1C2D3A;   /* почти чёрный — основной текст */
  --clr-muted:  #697E8D;   /* приглушённый — вторичный текст */
  --clr-white:  #FFFFFF;
  --clr-border: rgba(28, 48, 64, 0.10);

  /* — Typography — */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;

  /* — Spacing — */
  --section-py:     clamp(4rem, 9vw, 8rem);
  --container-max:  1200px;
  --container-px:   clamp(1.25rem, 5vw, 2.5rem);

  /* — Borders — */
  --radius-sm:   8px;
  --radius-md:   18px;
  --radius-lg:   32px;
  --radius-full: 9999px;

  /* — Shadows — */
  --shadow-sm: 0 2px 12px rgba(28, 48, 64, 0.08);
  --shadow-md: 0 8px 32px rgba(28, 48, 64, 0.12);
  --shadow-lg: 0 20px 60px rgba(28, 48, 64, 0.16);

  /* — Transitions — */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s var(--ease);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--clr-text);
  background: var(--clr-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section-py { padding: var(--section-py) 0; }

/* =============================================
   TYPOGRAPHY SCALE
   ============================================= */
.display-1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.display-2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.01em;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.22;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-sage);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--clr-gold);
  color: var(--clr-white);
  border-color: var(--clr-gold);
}
.btn--primary:hover {
  background: #a8844d;
  border-color: #a8844d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(191, 155, 106, 0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--clr-deep);
  border-color: var(--clr-deep);
}
.btn--ghost:hover {
  background: var(--clr-deep);
  color: var(--clr-white);
  transform: translateY(-2px);
}
.btn--ghost-light {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(255,255,255,0.5);
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--clr-white);
  transform: translateY(-2px);
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.site-header.scrolled {
  background: rgba(247, 243, 238, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 0.75rem 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.header__logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--clr-deep);
  letter-spacing: -0.01em;
}
.header__logo span { color: var(--clr-sage); }

.header__nav { display: flex; align-items: center; gap: 2rem; }
.header__nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--clr-muted);
  transition: color var(--transition);
  letter-spacing: 0.01em;
}
.header__nav a:hover { color: var(--clr-deep); }

.header__cta { font-size: 0.88rem !important; padding: 0.6rem 1.35rem !important; }

/* Burger */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-deep);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--clr-cream);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--clr-deep);
}

/* =============================================
   SECTION 1 — HERO
   ============================================= */
.hero {
  min-height: 100svh;
  background: var(--clr-deep);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: calc(var(--section-py) + 5rem) 0 var(--section-py);
}

/* Animated energy orbs */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: var(--clr-sage);
  top: -150px; right: -100px;
  animation: orbFloat1 12s ease-in-out infinite;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: var(--clr-gold);
  bottom: -100px; left: 10%;
  animation: orbFloat2 16s ease-in-out infinite;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: #8b7cf8;
  top: 40%; right: 30%;
  animation: orbFloat3 10s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-60px, 40px) scale(1.1); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -60px) scale(0.9); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.15); }
  66% { transform: translate(-40px, 20px) scale(0.85); }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  position: relative;
  z-index: 1;
}

.hero__content { color: var(--clr-white); }

.hero__eyebrow {
  display: inline-block;
  color: var(--clr-sage);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--clr-white);
  margin-bottom: 1.25rem;
}
.hero__title em {
  font-style: italic;
  color: var(--clr-sage);
}

.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  margin-bottom: 2.25rem;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2rem;
}

.hero__credentials {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Photo */
.hero__photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__photo-aura {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,158,135,0.3) 0%, transparent 70%);
  animation: auraBreath 4s ease-in-out infinite;
}
@keyframes auraBreath {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.08); opacity: 1; }
}
.hero__photo {
  width: min(420px, 100%);
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
}
.hero__photo-placeholder {
  width: min(420px, 100%);
  aspect-ratio: 3/4;
  background: rgba(255,255,255,0.06);
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}
.hero__photo-placeholder svg { width: 48px; height: 48px; opacity: 0.4; }

/* =============================================
   SECTION 2 — REQUESTS (С чем я работаю)
   ============================================= */
.requests {
  background: var(--clr-cream);
  padding: var(--section-py) 0;
}
.requests__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.requests__header .section-title { margin-top: 0.5rem; }
.requests__subtitle {
  margin-top: 1rem;
  color: var(--clr-muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.requests__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.request-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  text-decoration: none;
  color: var(--clr-text);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.request-card:hover {
  border-color: var(--clr-sage);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.request-card__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 2.5rem;
  text-align: center;
}
.request-card__title {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
}
.request-card__arrow {
  margin-left: auto;
  color: var(--clr-sage);
  opacity: 0;
  transition: var(--transition);
  flex-shrink: 0;
}
.request-card:hover .request-card__arrow { opacity: 1; }

/* =============================================
   SECTION 3 — APPROACH (Мой подход)
   ============================================= */
.approach {
  background: var(--clr-deep);
  padding: var(--section-py) 0;
  color: var(--clr-white);
}
.approach__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.approach__left .eyebrow { color: var(--clr-sage); }
.approach__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 300;
  line-height: 1.2;
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
}
.approach__desc {
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  font-size: 1.02rem;
}
.approach__desc p + p { margin-top: 1rem; }

.approach__columns {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.approach-col {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.approach-col__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-sage);
  margin-bottom: 0.75rem;
}
.approach-col__items {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* =============================================
   SECTION 4 — ABOUT (Обо мне)
   ============================================= */
.about {
  background: var(--clr-sand);
  padding: var(--section-py) 0;
}
.about__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.about__photo-wrap { width: clamp(220px, 30vw, 380px); }
.about__photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about__photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: rgba(28, 48, 64, 0.07);
  border: 2px dashed rgba(28, 48, 64, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--clr-muted);
  font-size: 0.8rem;
  gap: 0.5rem;
}

.about__content .eyebrow { margin-bottom: 0.75rem; }
.about__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.about__text {
  color: var(--clr-muted);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 2rem;
}
.about__text p + p { margin-top: 1rem; }

.about__facts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--clr-white);
  border-radius: var(--radius-md);
}
.about-fact__number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--clr-deep);
  line-height: 1;
}
.about-fact__label {
  font-size: 0.78rem;
  color: var(--clr-muted);
  margin-top: 0.25rem;
}

/* =============================================
   SECTION 5 — SERVICES (Услуги)
   ============================================= */
.services {
  background: var(--clr-cream);
  padding: var(--section-py) 0;
}
.services__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.service-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  border-color: var(--clr-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--clr-sand);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.service-card__desc {
  color: var(--clr-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  flex: 1;
}
.service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--clr-border);
}
.service-card__price {
  font-weight: 600;
  color: var(--clr-deep);
  font-size: 1rem;
}
.service-card__link {
  font-size: 0.82rem;
  color: var(--clr-sage);
  font-weight: 500;
  transition: color var(--transition);
}
.service-card__link:hover { color: var(--clr-deep); }

.services__cta { text-align: center; }

/* =============================================
   SECTION 6 — PROMO (Медитации / Практики)
   ============================================= */
.promo {
  background: linear-gradient(135deg, #1C3040 0%, #2a4a3e 100%);
  padding: var(--section-py) 0;
  color: var(--clr-white);
}
.promo__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.promo__header .eyebrow { color: var(--clr-sage); }
.promo__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 300;
  margin-top: 0.5rem;
}
.promo__subtitle {
  margin-top: 0.75rem;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.promo__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.promo-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}
.promo-card:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(123,158,135,0.5);
  transform: translateY(-3px);
}
.promo-card__type {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-sage);
  margin-bottom: 0.75rem;
}
.promo-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.promo-card__desc {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.promo__cta { text-align: center; }

/* =============================================
   SECTION 7 — REVIEWS (Отзывы)
   ============================================= */
.reviews {
  background: var(--clr-cream);
  padding: var(--section-py) 0;
}
.reviews__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.review-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--clr-border);
}
.review-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--clr-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--clr-deep);
  flex-shrink: 0;
}
.review-card__meta {}
.review-card__name {
  font-weight: 600;
  font-size: 0.95rem;
}
.review-card__request {
  font-size: 0.78rem;
  color: var(--clr-muted);
  margin-top: 0.15rem;
}
.review-card__text {
  font-size: 0.93rem;
  color: var(--clr-muted);
  line-height: 1.75;
  font-style: italic;
}

/* =============================================
   SECTION 8 — FAQ
   ============================================= */
.faq {
  background: var(--clr-sand);
  padding: var(--section-py) 0;
}
.faq__inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.faq__left .section-title { margin-top: 0.5rem; }
.faq__subtitle {
  margin-top: 1rem;
  color: var(--clr-muted);
  line-height: 1.7;
}

.faq__list { display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  user-select: none;
}
.faq-item__icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--clr-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--clr-sage);
  color: white;
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item.open .faq-item__answer { max-height: 500px; }
.faq-item__answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--clr-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* =============================================
   SECTION 9 — CTA (Запись)
   ============================================= */
.cta-section {
  background: var(--clr-deep);
  padding: var(--section-py) 0;
  text-align: center;
  color: var(--clr-white);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(123,158,135,0.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-section__inner { position: relative; z-index: 1; }
.cta-section .eyebrow { color: var(--clr-sage); }
.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  line-height: 1.18;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.cta-section__subtitle {
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin: 0 auto 2.25rem;
  font-size: 1.02rem;
}
.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.cta-section__contacts {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.cta-contact:hover { color: rgba(255,255,255,0.9); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #111d26;
  color: rgba(255,255,255,0.45);
  padding: 2.5rem 0 1.5rem;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 1.5rem;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
}
.footer__nav a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer__nav a:hover { color: rgba(255,255,255,0.75); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
}
.footer__disclaimer {
  max-width: 600px;
  font-size: 0.7rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.25);
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__photo-wrap { display: none; }
  .approach__inner { grid-template-columns: 1fr; }
  .about__inner { grid-template-columns: 1fr; }
  .about__photo-wrap { width: 100%; max-width: 320px; margin: 0 auto; }
  .faq__inner { grid-template-columns: 1fr; }
  .header__nav, .header__cta { display: none; }
  .header__burger { display: flex; }
}
@media (max-width: 600px) {
  .requests__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .promo__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .about__facts { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__orb, .hero__photo-aura { animation: none; }
  [data-reveal] { opacity: 1; transform: none; }
}
