/* =========================================================
   CLOSURE — FAQ + Final CTA + Footer
   Sayfanın kapanış üçlüsü
   ========================================================= */

/* =========================================================
   FAQ — Accordion, sales-focused questions
   ========================================================= */

.faq {
  background: var(--surface-2);
  padding-block: clamp(5rem, 10vh, 8rem);
}

.faq__list {
  margin-top: clamp(3rem, 6vw, 4rem);
  max-width: 820px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--surface-1);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  overflow: hidden;
  transition:
    border-color var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out);
}
.faq-item[open] {
  border-color: rgba(230, 22, 115, 0.35);
  box-shadow: 0 6px 20px rgba(230, 22, 115, 0.08);
}
.faq-item:hover {
  border-color: var(--line);
}

/* Summary — the question row */
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink-d-100);
  user-select: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::marker { display: none; }

.faq-item__chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--ink-d-60);
  transition: transform 300ms var(--ease-premium), color 200ms var(--ease-out);
}
.faq-item[open] .faq-item__chevron {
  transform: rotate(180deg);
  color: var(--brand-magenta);
}

/* Answer — animated grid-row trick for height transition */
.faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 380ms var(--ease-premium);
}
.faq-item[open] .faq-item__a {
  grid-template-rows: 1fr;
}
.faq-item__a-inner {
  overflow: hidden;
  min-height: 0;
}
.faq-item__a-inner > div {
  padding: 0 1.25rem 1.25rem 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink-d-60);
  border-top: 1px solid var(--line-soft);
  padding-top: 1rem;
  margin-top: 0;
}
.faq-item__a-inner strong {
  color: var(--ink-d-100);
  font-weight: 600;
}
.faq-item__a-inner a {
  color: var(--brand-magenta-deep);
  font-weight: 500;
  border-bottom: 1px solid currentColor;
}
.faq-item__a-inner a:hover {
  color: var(--brand-magenta);
}

/* FAQ — "Daha fazlası" blok: primary CTA + secondary WhatsApp note */
.faq__more {
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}

.faq__more-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.75rem;
  background: linear-gradient(135deg, var(--brand-magenta), var(--brand-indigo));
  color: #fff;
  border-radius: var(--r-pill, 999px);
  font-family: var(--ff-display);
  font-size: var(--fs-body);
  font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow:
    0 8px 24px rgba(230, 22, 115, 0.28),
    0 2px 6px rgba(230, 22, 115, 0.12);
  transition: transform 220ms var(--ease-premium),
              box-shadow 220ms var(--ease-out),
              gap 220ms var(--ease-premium);
}
.faq__more-cta svg {
  transition: transform 220ms var(--ease-premium);
}
.faq__more-cta:hover,
.faq__more-cta:focus-visible {
  transform: translateY(-2px);
  gap: 0.9rem;
  box-shadow:
    0 14px 32px rgba(230, 22, 115, 0.35),
    0 4px 10px rgba(230, 22, 115, 0.18);
  outline: none;
}
.faq__more-cta:hover svg,
.faq__more-cta:focus-visible svg {
  transform: translateX(3px);
}

.faq__more-note {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--ink-d-60);
  max-width: 52ch;
}
.faq__more-note a {
  color: var(--brand-magenta-deep);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  transition: color 180ms var(--ease-out);
}
.faq__more-note a:hover { color: var(--brand-magenta); }
.faq__more-note strong { color: var(--ink-d-100); }

/* =========================================================
   FINAL CTA — "Konuşalım"
   ========================================================= */

.final-cta {
  background: var(--surface-0);
  padding-block: clamp(5rem, 10vh, 8rem);
}

.final-cta__card {
  position: relative;
  max-width: 1080px;
  margin-inline: auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.75rem, 4vw, 4rem);
  background: linear-gradient(160deg, #0a0a10 0%, #14141d 100%);
  color: #fff;
  border-radius: 32px;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  box-shadow:
    0 40px 100px rgba(15, 15, 22, 0.20),
    0 8px 24px rgba(15, 15, 22, 0.10);
}

/* Atmospheric glow */
.final-cta__card::before {
  content: "";
  position: absolute;
  inset: -30% -10%;
  background:
    radial-gradient(40% 60% at 30% 50%, rgba(230, 22, 115, 0.30), transparent 70%),
    radial-gradient(40% 50% at 80% 60%, rgba(52, 60, 144, 0.22), transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}
.final-cta__card > * { position: relative; z-index: 1; }

.final-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--sp-4);
}
.final-cta__eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--brand-magenta);
}

.final-cta__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--sp-4);
}
.final-cta__title .accent {
  background: linear-gradient(135deg, #ff5fa3 0%, #f093c4 50%, #b8bce8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.final-cta__sub {
  font-size: var(--fs-lead);
  line-height: var(--lh-relaxed);
  color: rgba(255, 255, 255, 0.72);
  max-width: 50ch;
  margin: 0 auto clamp(2.5rem, 4vw, 3.5rem);
}

/* Channel cards */
.channels {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
  max-width: 880px;
  margin-inline: auto;
}
@media (min-width: 700px) { .channels { grid-template-columns: repeat(3, 1fr); } }

.channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: clamp(1.5rem, 2.5vw, 2rem) 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  text-decoration: none;
  color: #fff;
  transition:
    background var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out),
    transform var(--dur-base) var(--ease-premium);
}
.channel:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.channel__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.channel--whatsapp .channel__icon {
  background: #25d366;
  color: #073b1f;
}
.channel--phone .channel__icon {
  background: linear-gradient(135deg, #4f7df0, #2a5dd0);
  color: #fff;
}
.channel--email .channel__icon {
  background: linear-gradient(135deg, var(--brand-magenta), var(--brand-magenta-deep));
  color: #fff;
}
.channel__icon svg { width: 22px; height: 22px; }

.channel__label {
  font-family: var(--ff-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  margin-top: 0.2rem;
}
.channel__value {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  font-family: var(--ff-mono);
}

/* Trust signal */
.final-cta__trust {
  margin-top: clamp(2rem, 3vw, 2.5rem);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.22);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}
.final-cta__trust .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55);
  animation: pulse-dot 2s ease-out infinite;
}

/* Mesai dışı: gri sabit nokta, pulse yok */
.final-cta__trust.is-offline .dot,
.availability.is-offline .dot {
  background: #9aa0a6;
  box-shadow: none;
  animation: none;
}

/* =========================================================
   FOOTER — Brand celebration with animated hospitality palette
   Her bizimle çalışan markanın renk paletinden ilham alan
   blobs drift + hue cycle ediyor. Subtle alt mesaj.
   ========================================================= */

/* @property — modern browsers smooth interpolate custom properties */
@property --hue1 { syntax: '<number>'; initial-value: 220; inherits: false; }
@property --hue2 { syntax: '<number>'; initial-value: 330; inherits: false; }
@property --hue3 { syntax: '<number>'; initial-value: 190; inherits: false; }
@property --hue4 { syntax: '<number>'; initial-value: 350; inherits: false; }
@property --hue5 { syntax: '<number>'; initial-value: 45;  inherits: false; }

.footer {
  position: relative;
  background: #050508;
  color: rgba(255, 255, 255, 0.7);
  padding-block: clamp(5rem, 9vw, 7rem) clamp(2rem, 3vw, 2.5rem);
  overflow: hidden;
  isolation: isolate;
}

/* ---------- Animated background ---------- */
.footer__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.footer__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  will-change: transform;
  mix-blend-mode: screen;
}

/* Blob 1 — Hilton mavi → Marriott kırmızı → Hyatt mor (28s drift, 24s hue) */
.footer__blob--1 {
  width: 50vw;
  height: 50vw;
  top: -15%;
  left: -12%;
  background: radial-gradient(circle, hsl(var(--hue1), 70%, 48%) 0%, transparent 65%);
  opacity: 0.55;
  animation:
    fb-drift-1 28s ease-in-out infinite,
    fb-hue-1 24s ease-in-out infinite;
}
@keyframes fb-hue-1 {
  0%, 100% { --hue1: 220; }   /* Hilton mavi */
  33%      { --hue1: 350; }   /* Marriott kırmızı */
  66%      { --hue1: 280; }   /* Hyatt mor */
}
@keyframes fb-drift-1 {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  33%      { transform: translate3d(8vw, -4vh, 0) scale(1.1); }
  66%      { transform: translate3d(-5vw, 6vh, 0) scale(0.92); }
}

/* Blob 2 — QrMenum magenta → Ramada altın (32s drift, 28s hue) */
.footer__blob--2 {
  width: 48vw;
  height: 48vw;
  top: 18%;
  right: -18%;
  background: radial-gradient(circle, hsl(var(--hue2), 75%, 50%) 0%, transparent 65%);
  opacity: 0.5;
  animation:
    fb-drift-2 32s ease-in-out infinite,
    fb-hue-2 28s ease-in-out infinite;
}
@keyframes fb-hue-2 {
  0%, 100% { --hue2: 330; }   /* QrMenum magenta */
  50%      { --hue2: 38; }    /* Ramada altın */
}
@keyframes fb-drift-2 {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50%      { transform: translate3d(-10vw, 8vh, 0) scale(1.15); }
}

/* Blob 3 — Hyatt teal → QrMenum indigo (36s drift, 32s hue) */
.footer__blob--3 {
  width: 42vw;
  height: 42vw;
  bottom: -12%;
  left: 22%;
  background: radial-gradient(circle, hsl(var(--hue3), 65%, 42%) 0%, transparent 65%);
  opacity: 0.5;
  animation:
    fb-drift-3 36s ease-in-out infinite,
    fb-hue-3 32s ease-in-out infinite;
}
@keyframes fb-hue-3 {
  0%, 100% { --hue3: 190; }   /* Hyatt teal */
  50%      { --hue3: 245; }   /* QrMenum indigo */
}
@keyframes fb-drift-3 {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50%      { transform: translate3d(8vw, -10vh, 0) scale(1.05); }
}

/* Blob 4 — Bordo (Ramada Resort) → Crowne Plaza koyu mavi */
.footer__blob--4 {
  width: 38vw;
  height: 38vw;
  top: 45%;
  left: 35%;
  background: radial-gradient(circle, hsl(var(--hue4), 65%, 38%) 0%, transparent 65%);
  opacity: 0.42;
  animation:
    fb-drift-4 30s ease-in-out infinite,
    fb-hue-4 26s ease-in-out infinite;
}
@keyframes fb-hue-4 {
  0%, 100% { --hue4: 350; }   /* Burgundy */
  50%      { --hue4: 215; }   /* Crowne Plaza navy */
}
@keyframes fb-drift-4 {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50%      { transform: translate3d(-6vw, -8vh, 0) scale(0.92); }
}

/* Blob 5 — Doubletree altın → magenta */
.footer__blob--5 {
  width: 32vw;
  height: 32vw;
  top: 5%;
  right: 28%;
  background: radial-gradient(circle, hsl(var(--hue5), 72%, 50%) 0%, transparent 65%);
  opacity: 0.38;
  animation:
    fb-drift-5 26s ease-in-out infinite,
    fb-hue-5 30s ease-in-out infinite;
}
@keyframes fb-hue-5 {
  0%, 100% { --hue5: 45; }    /* Doubletree altın */
  50%      { --hue5: 320; }   /* Magenta */
}
@keyframes fb-drift-5 {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50%      { transform: translate3d(5vw, 10vh, 0) scale(1.1); }
}

/* Vignette: keep edges dark for text legibility */
.footer__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, transparent 0%, rgba(5, 5, 8, 0.65) 100%),
    linear-gradient(180deg, rgba(5, 5, 8, 0.5) 0%, transparent 30%, transparent 70%, rgba(5, 5, 8, 0.85) 100%);
}

/* Decorative curves (Aptify-style) at bottom right */
.footer__curves {
  position: absolute;
  bottom: -60px;
  right: -40px;
  width: 600px;
  height: 400px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}
.footer__curves path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 1;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .footer__blob {
    animation: none !important;
  }
  .footer__blob--1 { background: radial-gradient(circle, hsl(220, 70%, 48%) 0%, transparent 65%); }
  .footer__blob--2 { background: radial-gradient(circle, hsl(330, 75%, 50%) 0%, transparent 65%); }
  .footer__blob--3 { background: radial-gradient(circle, hsl(190, 65%, 42%) 0%, transparent 65%); }
  .footer__blob--4 { background: radial-gradient(circle, hsl(350, 65%, 38%) 0%, transparent 65%); }
  .footer__blob--5 { background: radial-gradient(circle, hsl(45, 72%, 50%) 0%, transparent 65%); }
}

/* ---------- Content positioning ---------- */
.footer .container {
  position: relative;
  z-index: 2;
}

/* ---------- Hero brand block — 2 column on desktop ---------- */
.footer__hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
  align-items: center;
}
@media (min-width: 880px) {
  .footer__hero {
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(3rem, 5vw, 5rem);
  }
}

.footer__hero-left {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  max-width: 580px;
  align-items: flex-start;
}
.footer__hero-right {
  display: flex;
  flex-direction: column;
}

.footer__logo {
  height: 38px;
  width: auto;
  filter: brightness(1.2);
}
.footer__tagline {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: #fff;
}
.footer__tagline .accent {
  background: linear-gradient(135deg, #ff5fa3 0%, #f093c4 50%, #b8bce8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer__sub {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  max-width: 52ch;
}

/* ---------- Goreel Works inline brand link + logo ---------- */
.footer__brand-link {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  text-decoration: none;
  transition: opacity var(--dur-fast) var(--ease-out), transform var(--dur-base) var(--ease-premium);
  margin: 0 0.15em;
}
.footer__brand-link:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.footer__brand-logo {
  height: 1.4em;
  width: auto;
  vertical-align: middle;
  display: inline-block;
}
/* Bottom bar copyright — daha küçük logo */
.footer__brand-logo--sm {
  height: 1.1em;
}
.footer__brand-link--inline {
  /* Copyright bar içinde yazı akışına uyumlu */
  margin: 0 0.1em;
}

/* ---------- Manifesto signature (right column on desktop) ---------- */
.footer__manifesto {
  margin-top: 0;
  padding: clamp(1.5rem, 2.5vw, 2rem) clamp(1.5rem, 3vw, 2.25rem);
  border-radius: 16px;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* Subtle quote mark watermark in corner */
.footer__manifesto::before {
  content: "\201C"; /* sol çift tırnak — typographic opening quote */
  position: absolute;
  top: -1.5rem;
  right: 0.5rem;
  font-family: var(--ff-display);
  font-size: 8rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(180deg,
    rgba(230, 22, 115, 0.18) 0%,
    rgba(230, 22, 115, 0) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.footer__manifesto-quote {
  position: relative;
  z-index: 1;
  font-family: var(--ff-display);
  font-size: clamp(1.125rem, 1.5vw + 0.5rem, 1.5rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  max-width: 38ch;
}
.footer__manifesto-quote .accent {
  background: linear-gradient(135deg, #ff5fa3 0%, #f093c4 50%, #b8bce8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.footer__manifesto-attr {
  position: relative;
  z-index: 1;
  margin: 0.85rem 0 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
  font-weight: 500;
}
.footer__manifesto-dash {
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--brand-magenta);
}

/* ---------- Grid (links columns) ---------- */
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 720px) { .footer__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .footer__grid { grid-template-columns: repeat(4, 1fr); } }

.footer__col h4 {
  font-family: var(--ff-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer__col h4::before {
  content: "";
  width: 14px; height: 1px;
  background: var(--brand-magenta);
  display: inline-block;
}
.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer__col a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  transition: color 220ms var(--ease-out), gap 220ms var(--ease-premium);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.footer__col a:hover {
  color: #fff;
  gap: 0.55rem;
}
.footer__col a svg {
  width: 11px;
  height: 11px;
  opacity: 0.55;
  transition: opacity 220ms var(--ease-out);
}
.footer__col a:hover svg { opacity: 1; }

/* ---------- Bottom bar ---------- */
.footer__bottom {
  padding-top: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer__copy strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}
.footer__legal {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.footer__legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 220ms var(--ease-out);
}
.footer__legal a:hover { color: var(--brand-magenta-soft); }

/* Social inline (small) */
.footer__social {
  display: inline-flex;
  gap: 0.5rem;
}
.footer__social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition:
    background 220ms var(--ease-out),
    border-color 220ms var(--ease-out),
    color 220ms var(--ease-out);
}
.footer__social a:hover {
  background: var(--brand-magenta);
  border-color: var(--brand-magenta);
  color: #fff;
}
.footer__social a svg { width: 14px; height: 14px; }
