/* ===============================================
   ANITA ABELYAN — Portfolio V2
   Design : Magazine éditorial chic
   Typo : DM Serif Display + DM Sans
   =============================================== */

:root {
  --rose-pale: #F4DAD8;
  --rose-soft: #EAB8B6;
  --rose-deep: #A5605F;
  --bordeaux: #5A2328;
  --beige-light: #F7EDE0;
  --beige-cream: #FBF5EC;
  --ivory: #FDFBF7;
  --pearl: #FFFFFF;
  --charcoal: #1C1A1A;
  --graphite: #3B3738;
  --grey: #8A7A7A;
  --grey-light: #DDD2CD;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(253, 251, 247, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 100;
  border-bottom: 1px solid var(--grey-light);
  padding: 0;
}
.nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--bordeaux);
  text-decoration: none;
  letter-spacing: 0.5px;
}
.nav__logo span {
  font-style: italic;
}
.nav__menu {
  list-style: none;
  display: flex;
  gap: 36px;
}
.nav__menu a {
  font-size: 12px;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}
.nav__menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 1px;
  background: var(--bordeaux);
  transition: width 0.3s ease;
}
.nav__menu a:hover,
.nav__menu a.active { color: var(--bordeaux); }
.nav__menu a:hover::after,
.nav__menu a.active::after { width: 100%; }

.nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  margin: 5px 0;
  transition: 0.3s;
}

/* ============ HERO ACCUEIL ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--ivory) 0%, var(--beige-cream) 60%, var(--rose-pale) 100%);
  padding: 120px 48px 80px;
}
.hero__ornament {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.5;
}
.hero__ornament--1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--rose-soft) 0%, transparent 70%);
  top: -100px; right: -120px;
}
.hero__ornament--2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--beige-light) 0%, transparent 70%);
  bottom: 5%; left: -80px;
}
.hero__ornament--3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--rose-pale) 0%, transparent 70%);
  top: 40%; right: 8%;
}
.hero__inner {
  text-align: center;
  max-width: 920px;
  position: relative;
  z-index: 2;
  animation: fadeUp 1.4s ease-out;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 28px;
  font-weight: 500;
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--rose-soft);
  border-radius: 100px;
}
.hero__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(72px, 13vw, 180px);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 0.95;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hero__title-line--italic {
  font-style: italic;
  color: var(--bordeaux);
  font-family: 'DM Serif Display', serif;
}
.hero__divider {
  width: 80px;
  height: 1px;
  background: var(--rose-deep);
  margin: 0 auto 32px;
}
.hero__subtitle {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--charcoal);
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.4;
}
.hero__location {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 48px;
}
.hero__tagline {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  color: var(--graphite);
  font-size: 18px;
  max-width: 580px;
  margin: 0 auto 52px;
  line-height: 1.5;
}
.hero__cta {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.35s ease;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.btn--primary {
  background: var(--bordeaux);
  color: var(--ivory);
  border-color: var(--bordeaux);
}
.btn--primary:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn--ghost:hover {
  background: var(--charcoal);
  color: var(--ivory);
  transform: translateY(-2px);
}

/* ============ PAGE HEADER (pour pages intérieures) ============ */
.page-header {
  padding: 160px 48px 80px;
  background: var(--beige-cream);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-header::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rose-pale) 0%, transparent 70%);
  top: -150px; right: -100px;
  opacity: 0.6;
}
.page-header__inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-header__eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 24px;
  font-weight: 500;
}
.page-header__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 400;
  line-height: 1;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.page-header__title em {
  font-style: italic;
  color: var(--bordeaux);
}
.page-header__subtitle {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--graphite);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ============ SECTIONS GÉNÉRIQUES ============ */
.section {
  padding: 110px 48px;
}
.section--beige { background: var(--beige-cream); }
.section--cream { background: var(--beige-light); }
.section--rose { background: var(--rose-pale); }
.section--dark { background: var(--charcoal); color: var(--ivory); }

.section__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section__label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 500;
  margin-bottom: 20px;
}
.section__label--light { color: var(--rose-pale); }
.section__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 32px;
  color: var(--charcoal);
}
.section__title em {
  font-style: italic;
  color: var(--bordeaux);
}
.section__title--light { color: var(--ivory); }
.section__intro {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--graphite);
  max-width: 720px;
  margin-bottom: 60px;
  font-style: italic;
}

/* ============ ACCUEIL - PREVIEW SECTIONS ============ */
.preview-section {
  padding: 110px 48px;
}
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px;
}
.preview-card {
  background: var(--ivory);
  padding: 48px 40px;
  border-top: 3px solid var(--rose-soft);
  text-decoration: none;
  color: var(--charcoal);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.preview-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(244, 218, 216, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.4s;
}
.preview-card:hover {
  transform: translateY(-8px);
  border-color: var(--bordeaux);
  box-shadow: 0 30px 60px rgba(90, 35, 40, 0.08);
}
.preview-card:hover::before { opacity: 1; }
.preview-card__num {
  font-family: 'DM Serif Display', serif;
  font-size: 62px;
  font-style: italic;
  color: var(--rose-deep);
  line-height: 1;
  margin-bottom: 20px;
  font-weight: 400;
}
.preview-card__title {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--charcoal);
}
.preview-card__year {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 18px;
}
.preview-card__desc {
  font-size: 15px;
  color: var(--graphite);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}
.preview-card__arrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bordeaux);
  font-weight: 500;
  position: relative;
  display: inline-block;
}
.preview-card__arrow::after {
  content: ' →';
  transition: transform 0.3s;
  display: inline-block;
}
.preview-card:hover .preview-card__arrow::after {
  transform: translateX(4px);
}

/* ============ QUI JE SUIS - FACTS GRID ============ */
.qui-intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}
.qui-intro__photo {
  position: sticky;
  top: 120px;
}
.photo-frame {
  aspect-ratio: 3/4;
  background: var(--ivory);
  border: 1px solid var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.photo-frame::before {
  content: '';
  position: absolute;
  inset: -14px;
  border: 1px solid var(--rose-soft);
  z-index: -1;
}
.photo-placeholder {
  color: var(--rose-deep);
  text-align: center;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 16px;
}
.photo-placeholder p { margin-top: 14px; }
.photo-caption {
  text-align: center;
  margin-top: 24px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
}
.qui-intro__text p {
  margin-bottom: 22px;
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.75;
}
.qui-intro__lead {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  line-height: 1.4;
  font-style: italic;
  color: var(--charcoal);
}

/* Facts grid */
.facts-section {
  padding-top: 40px;
  border-top: 1px solid var(--grey-light);
}
.facts-title {
  font-family: 'DM Serif Display', serif;
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 48px;
  color: var(--charcoal);
}
.facts-title em { font-style: italic; color: var(--bordeaux); }
.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fact-card {
  background: var(--ivory);
  padding: 32px 28px;
  border-left: 3px solid var(--rose-soft);
  transition: all 0.35s ease;
  position: relative;
}
.fact-card:hover {
  transform: translateY(-4px);
  border-left-color: var(--bordeaux);
  box-shadow: 0 20px 40px rgba(90, 35, 40, 0.06);
}
.fact-card__icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}
.fact-card__text {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  line-height: 1.3;
  color: var(--charcoal);
  font-style: italic;
}

/* ============ VALUES ============ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.value-card {
  background: var(--ivory);
  padding: 36px 28px;
  border-top: 2px solid var(--rose-deep);
  text-align: center;
}
.value-card__label {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  font-style: italic;
  color: var(--bordeaux);
  margin-bottom: 14px;
}
.value-card p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
}

/* ============ PAGES BUT ============ */
.year-blocks {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.year-block {
  background: var(--ivory);
  padding: 52px 56px;
  border-left: 4px solid var(--rose-soft);
  position: relative;
}
.year-block--highlight {
  border-left-color: var(--bordeaux);
  background: linear-gradient(to right, rgba(244, 218, 216, 0.08) 0%, var(--ivory) 40%);
}
.year-block--skills {
  background: var(--beige-cream);
  border-left-color: var(--rose-deep);
}
.year-block--gema {
  background: var(--bordeaux);
  color: var(--ivory);
  border-left-color: var(--rose-soft);
}
.year-block--gema .year-block__title,
.year-block--gema .year-block__subtitle { color: var(--ivory); }
.year-block--gema .year-block__subtitle { color: var(--rose-pale); }
.year-block--gema p { color: var(--ivory); }

.year-block__tag {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}
.year-block__title {
  font-family: 'DM Serif Display', serif;
  font-size: 38px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.15;
}
.year-block__subtitle {
  font-family: 'DM Serif Display', serif;
  font-size: 19px;
  font-style: italic;
  color: var(--rose-deep);
  margin-bottom: 24px;
}
.year-block p {
  color: var(--graphite);
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.75;
}
.year-block__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.year-block__links a {
  color: var(--bordeaux);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--rose-soft);
  padding-bottom: 3px;
  transition: all 0.3s;
}
.year-block__links a:hover {
  border-color: var(--bordeaux);
  color: var(--charcoal);
}

/* ============ TAGS ============ */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.tag {
  display: inline-block;
  padding: 7px 16px;
  background: var(--rose-pale);
  color: var(--bordeaux);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
}

/* ============ SKILLS LIST ============ */
.skills-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 36px;
  margin-top: 20px;
}
.skills-list li {
  font-size: 15px;
  color: var(--charcoal);
  padding: 8px 0 8px 22px;
  position: relative;
  border-bottom: 1px dotted var(--grey-light);
}
.skills-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 17px;
  width: 10px; height: 1px;
  background: var(--rose-deep);
}
.skills-list--gema li {
  color: var(--ivory);
  border-bottom-color: rgba(255,255,255,0.15);
}
.skills-list--gema li::before { background: var(--rose-pale); }

/* ============ MEDIA SHOWCASE (article, vidéo, fiche) ============ */
.media-showcase {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.media-card {
  background: var(--pearl);
  border: 1px solid var(--grey-light);
  overflow: hidden;
  transition: all 0.4s ease;
  text-decoration: none;
  color: var(--charcoal);
  display: block;
}
.media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(90, 35, 40, 0.1);
}
.media-card__image {
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center;
  background-color: var(--beige-cream);
  position: relative;
}
.media-card__image--contain {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--beige-cream);
  height: 400px;
}
.media-card__badge {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--bordeaux);
  color: var(--ivory);
  padding: 7px 14px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}
.media-card__content {
  padding: 28px 32px;
}
.media-card__source {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 500;
  margin-bottom: 10px;
}
.media-card__title {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  line-height: 1.3;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.media-card__desc {
  font-size: 14px;
  color: var(--graphite);
  line-height: 1.6;
  margin-bottom: 14px;
}
.media-card__link {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bordeaux);
  font-weight: 500;
}

/* TikTok wrapper */
.tiktok-embed-wrapper {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  max-width: 100%;
  overflow: hidden;
}

/* ============ OTHER EXPERIENCES ============ */
.other-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.other-card {
  background: var(--ivory);
  padding: 38px 36px;
  border-top: 3px solid var(--rose-pale);
  transition: all 0.4s ease;
}
.other-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(90, 35, 40, 0.08);
}
.other-card--highlight {
  border-top-color: var(--bordeaux);
  background: linear-gradient(to bottom, rgba(244, 218, 216, 0.1) 0%, var(--ivory) 25%);
}
.other-card__date {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 500;
  margin-bottom: 14px;
}
.other-card__title {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--charcoal);
  line-height: 1.2;
}
.other-card p {
  font-size: 15px;
  color: var(--graphite);
  line-height: 1.7;
}

/* ============ CONTACT ============ */
.contact-hero {
  text-align: center;
  padding-top: 40px;
}
.contact__intro {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  font-style: italic;
  color: var(--rose-pale);
  max-width: 680px;
  margin: 0 auto 60px;
  line-height: 1.5;
}
.contact__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.contact-link {
  padding: 40px 32px;
  border: 1px solid var(--grey);
  text-decoration: none;
  color: var(--ivory);
  transition: all 0.4s ease;
  display: block;
  text-align: left;
}
.contact-link:hover {
  border-color: var(--rose-pale);
  background: rgba(244, 218, 216, 0.1);
  transform: translateY(-4px);
}
.contact-link__label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose-pale);
  margin-bottom: 14px;
  font-weight: 500;
}
.contact-link__value {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--ivory);
  line-height: 1.3;
  word-break: break-word;
}

/* ============ FOOTER ============ */
.footer {
  padding: 48px;
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.footer a {
  color: var(--rose-pale);
  text-decoration: none;
}

/* ============ CTA FOOTER (pour pages intérieures) ============ */
.cta-footer {
  background: var(--rose-pale);
  padding: 100px 48px;
  text-align: center;
}
.cta-footer h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--charcoal);
}
.cta-footer h2 em { font-style: italic; color: var(--bordeaux); }
.cta-footer p {
  font-size: 18px;
  color: var(--graphite);
  max-width: 600px;
  margin: 0 auto 36px;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .nav__menu { display: none; }
  .nav__burger { display: block; }
  .nav__menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--ivory);
    padding: 30px 48px;
    border-bottom: 1px solid var(--grey-light);
    gap: 20px;
  }

  .qui-intro { grid-template-columns: 1fr; gap: 50px; }
  .qui-intro__photo { position: static; max-width: 320px; margin: 0 auto; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .preview-grid { grid-template-columns: 1fr; }
  .other-grid { grid-template-columns: 1fr; }
  .skills-list { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; gap: 14px; text-align: center; }
}

@media (max-width: 600px) {
  .section, .preview-section { padding: 70px 22px; }
  .hero { padding: 100px 22px 60px; }
  .page-header { padding: 130px 22px 60px; }
  .nav__inner { padding: 16px 22px; }
  .year-block { padding: 36px 28px; }
  .hero__cta { flex-direction: column; align-items: stretch; max-width: 280px; margin: 0 auto; }
  .facts-grid { grid-template-columns: 1fr; }
  .cta-footer { padding: 70px 22px; }
}
