/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #3a3a3a;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

/* ─── Tokens ─── */
:root {
  --teal:    #38b49c;
  --yellow:  #f6b500;
  --grey:    #3c3c3c;
  --text:    #3a3a3a;
  --muted:   #6c6c6c;
  --border:  #e8e6e1;
  --bg-warm: #f9fafb;
  --px: 20px;
}
@media (min-width: 900px) { :root { --px: 48px; } }

/* ─── Content container (used inside full-bleed sections) ─── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--px);
}

/* ─── Scroll offset for sticky header ─── */
.why-join, .challenges, .course, .schedule, .faq, .sponsors {
  scroll-margin-top: 72px;
}

/* ─── Mobile section padding ─── */
@media (max-width: 767px) {
  .why-join, .challenges, .course, .schedule, .faq, .sponsors, .features {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}

/* ─── Image placeholder ─── */
.img-ph {
  background: #c8d0d6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a8894;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  padding: 16px;
}

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 var(--border);
  overflow: visible;
}

.header__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--px);
}

.header__brand {
  display: block;
  margin-bottom: -18px;
}

.header__logo-img {
  height: 64px;
  width: auto;
  position: relative;
  z-index: 110;
}

.header__nav-wrap {
  display: flex; align-items: center;
  padding: 8px 0;
}

.header__burger {
  display: flex; flex-direction: column;
  justify-content: center; gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; padding: 4px;
  margin: 0;
}
.header__burger-line {
  display: block; width: 100%; height: 2px;
  background: #444; border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) { opacity: 0; }
.header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header__nav {
  display: none; flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: #fff; border-top: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  padding: 8px 0 16px;
}
.header__nav--open { display: flex; }

.header__nav-link {
  display: block; padding: 12px var(--px);
  transition: color .15s;
}
.header__nav-link:not(.header__nav-link--cta):hover { color: var(--teal); }
.header__nav-link.is-active { color: var(--teal); }
.header__nav-link--cta {
  margin: 8px var(--px) 0;
  background: var(--teal); color: #fff;
  border-radius: 24px; text-align: center;
  padding: 12px 20px; font-weight: 700;
}

@media (min-width: 900px) {
  .header__inner { align-items: flex-end; }
  .header__brand { padding: 0; margin-bottom: -58px; }
  .header__logo-img { height: 130px; }
  .header__burger { display: none; }
  .header__nav-wrap { align-self: center; padding: 0; }
  .header__nav {
    display: flex !important; flex-direction: row; align-items: center;
    gap: 32px; position: static; border: none;
    box-shadow: none; padding: 0; background: transparent;
  }
  .header__nav-link { display: inline; padding: 0; font-size: 16px; }
  .header__nav-link--cta { margin: 0; padding: 11px 22px; font-size: 14px; }
}

/* ══════════════════════════════════════════
   HERO — full bleed, no side wedges
══════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  background: #2a3a42;
  overflow: hidden;
}

.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__overlay { display: none; }

/* ─── Animated date ─── */
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-bg-slide {
  from { opacity: 0; transform: translateX(-90px) rotate(-10deg); }
  to   { opacity: 1; transform: translateX(0) rotate(-2deg); }
}
@keyframes hero-bg-slide-alt {
  from { opacity: 0; transform: translateX(-90px) rotate(10deg); }
  to   { opacity: 1; transform: translateX(0) rotate(2deg); }
}

.hero__date {
  position: absolute;
  bottom: 90px; left: 0; right: 0;
  z-index: 20;
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__date-item {
  position: relative;
  padding: 6px 36px;
  opacity: 0;
  animation: hero-fade-up .8s ease-out forwards;
}
.hero__date-item--day     { animation-delay: .3s; }
.hero__date-item--month   { animation-delay: .5s; z-index: 10; }
.hero__date-item--year    { animation-delay: .7s; }

.hero__date-text {
  font-family: 'Reem Kufi', sans-serif;
  font-size: clamp(2.4rem, 8vw, 5rem);
  color: #fff;
  position: relative; z-index: 1;
  display: block; line-height: 1.15;
}

.hero__date-bg {
  position: absolute; inset: 0;
  z-index: 0; opacity: 0;
}
.hero__date-bg--yellow {
  background: var(--yellow);
  animation: hero-bg-slide .6s ease-out .3s forwards;
}
.hero__date-bg--dark {
  background: #3c3c3c;
  animation: hero-bg-slide-alt .6s ease-out .5s forwards;
}
.hero__date-bg--teal {
  background: var(--teal);
  animation: hero-bg-slide .6s ease-out .7s forwards;
}

/* ─── Wave at very bottom ─── */
.hero__wave {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 90px;
  z-index: 10;
}

@media (min-width: 640px) {
  .hero__date { bottom: 100px; }
}

@media (min-width: 900px) {
  .hero__date { bottom: 110px; }
  .hero__wave { height: 110px; }
}

/* ══════════════════════════════════════════
   INTRO BAND
══════════════════════════════════════════ */
.intro-band {
  background: var(--teal);
  padding: 60px 0 72px;
}
.intro-band__text {
  position: relative;
  text-align: center;
  color: #fff;
  font-size: clamp(15px, 2.2vw, 21px);
  font-weight: 600; line-height: 1.6;
}

/* ══════════════════════════════════════════
   WHY JOIN US
══════════════════════════════════════════ */
.why-join { background: var(--teal); padding: 84px 0 88px; }

.why-join__heading {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 400; color: #fff;
  line-height: 1.2; text-wrap: balance;
  text-align: center; margin-bottom: 44px;
}
.why-join__heading strong { font-weight: 800; }

.why-join__cols {
  display: grid;
  gap: 28px;
}

.why-join__col p {
  color: rgba(255,255,255,0.88);
  line-height: 1.8; margin-bottom: 16px;
}
.why-join__col p:last-child { margin-bottom: 0; }

.why-join__circles {
  margin-top: 64px;
}

.why-join .features__circle span {
  color: #fff;
}

.why-join .features__circle svg.circle-ring circle {
  stroke: rgba(255,255,255,0.75);
}

@media (min-width: 768px) {
  .why-join__cols { grid-template-columns: 1fr 1fr; gap: 60px; }
}

/* ══════════════════════════════════════════
   FEATURE CIRCLES
══════════════════════════════════════════ */
.features {
  background: #f9fafb;
  padding: 48px 0 72px;
}
/* .features is now merged into .why-join — kept for fallback */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
}
@media (min-width: 640px) {
  .features__grid { grid-template-columns: repeat(6, 1fr); gap: 20px; }
}

/* ── Circle draw animation ── */
@keyframes circle-text-fade {
  from { opacity: 0; transform: scale(.85); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes circle-draw {
  from { stroke-dashoffset: 352; }
  to   { stroke-dashoffset: 0; }
}

.features__circle {
  width: 100%; aspect-ratio: 1;
  border-radius: 50%;
  display: flex; align-items: center;
  justify-content: center; text-align: center; padding: 14px;
  position: relative;
}
.features__circle span {
  color: var(--text); font-weight: 500;
  font-size: clamp(11px, 1.2vw, 14px); line-height: 1.3;
  position: relative; z-index: 1;
  opacity: 0;
}
.features__circle svg.circle-ring {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.features__circle svg.circle-ring circle {
  stroke-dasharray: 352;
  stroke-dashoffset: 352;
}
.features__circle.is-visible span {
  animation: circle-text-fade .45s ease-out calc(var(--circ-delay, 0s)) forwards;
}
.features__circle.is-visible svg.circle-ring circle {
  animation: circle-draw .8s cubic-bezier(.4,0,.2,1) calc(var(--circ-delay, 0s) + .35s) forwards;
}

/* ══════════════════════════════════════════
   CHALLENGES
══════════════════════════════════════════ */
.challenges {
  background: #fff;
  padding: 84px 0 108px;
}
.challenges__header {
  text-align: center; margin-bottom: 52px;
}
.challenges__title {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 400; color: var(--text);
}
.challenges__title strong { font-weight: 800; }
.challenges__sub {
  color: #9a9a9a; font-size: 15px;
  font-weight: 500; margin-top: 6px;
}

.challenges__wrap { position: relative; }
.challenges__grid {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: 60px;
  padding-top: 34px;
}

/* Race card */
@keyframes card-rise {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.race-card {
  border-radius: 22px;
  padding: 0 24px 26px;
  box-shadow: 0 14px 40px rgba(0,0,0,.15);
  display: flex; flex-direction: column;
  opacity: 0;
  transition: transform .25s ease, box-shadow .25s ease;
}
.race-card.is-visible {
  animation: card-rise .65s cubic-bezier(.22,.61,.36,1) var(--card-delay, 0s) forwards;
}
.race-card:hover {
  box-shadow: 0 24px 56px rgba(0,0,0,.22);
}
.race-card--teal   { background: var(--teal); }
.race-card--yellow { background: var(--yellow); }
.race-card--grey   { background: var(--grey); }

.race-card__icon {
  width: 58px; height: 58px; border-radius: 50%;
  margin: -29px auto 16px;
  display: flex; align-items: center; justify-content: center;
}
.race-card--yellow .race-card__icon { background: #d49900; }
.race-card--grey   .race-card__icon { background: #525252; }
.race-card--teal   .race-card__icon { background: #2d9680; }

.race-card__title {
  color: #fff; font-weight: 800;
  font-size: 24px; text-align: center;
  line-height: 1.2; margin-bottom: 12px;
}
.race-card__desc {
  color: rgba(255,255,255,.92);
  font-size: 14px; line-height: 1.6; margin-bottom: 16px;
}

.race-card__features {
  color: #fff; font-size: 14px;
  font-weight: 600; margin-bottom: 20px;
  display: flex; flex-direction: column; gap: 9px;
}
.race-card__features-label {
  font-size: 14px; opacity: .7;
  text-transform: uppercase; letter-spacing: 1px;
}
.race-card__features li {
  display: flex; align-items: center; gap: 8px;
}
.race-card__check {
  flex-shrink: 0; width: 17px; height: 17px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  display: flex; align-items: center; justify-content: center;
}

.race-card__cta {
  display: block; margin-top: auto;
  background: #fff; color: #444;
  text-align: center; padding: 13px;
  border-radius: 26px; font-weight: 700;
  font-size: 14px;
  transition: background .18s, box-shadow .18s, transform .18s;
}
.race-card__cta:hover {
  background: #f0f0f0;
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
  transform: translateY(-2px);
}

@media (min-width: 600px) {
  .challenges__grid { flex-direction: row; flex-wrap: wrap; gap: 24px; }
  .race-card { flex: 1; min-width: calc(50% - 12px); }
}

@media (min-width: 900px) {
  .challenges__grid { flex-direction: row; flex-wrap: nowrap; gap: 26px; }
  .race-card { flex: 1; min-width: 0; }
  .race-card--grey { margin-top: -14px; box-shadow: 0 22px 50px rgba(0,0,0,.2); }
  .race-card__icon { width: 62px; height: 62px; margin: -31px auto 16px; }
  .race-card__title { font-size: 26px; }
}

/* ══════════════════════════════════════════
   THE COURSE
══════════════════════════════════════════ */
.course {
  background: var(--bg-warm);
  padding: 84px 0 108px;
}

.course__header {
  text-align: center;
  margin-bottom: 36px;
}

.course__title {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 400; color: var(--text);
  margin-bottom: 0;
}
.course__title strong { font-weight: 800; }

.course__sub {
  color: #9a9a9a; font-size: 15px;
  font-weight: 500; margin-top: 6px;
  text-wrap: balance;
}

/* ── Tabs: segmented control ── */
.course__tabs {
  display: flex;
  background: #e4e6e9;
  border-radius: 50px;
  padding: 5px;
  gap: 4px;
  margin-bottom: 36px;
}

.course__tab {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2px; padding: 10px 8px;
  border-radius: 46px; border: none;
  background: none; font-family: inherit; cursor: pointer;
  transition: background .2s, box-shadow .2s;
}
.course__tab:hover { background: rgba(255,255,255,.45); }
.course__tab--active {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.13);
}

.course__tab-dist {
  display: block; font-size: clamp(16px, 4vw, 22px);
  font-weight: 800; line-height: 1;
  color: var(--muted);
  transition: color .2s;
}
.course__tab--active .course__tab-dist { color: var(--tc, var(--teal)); }

.course__tab-name {
  display: block; font-size: 10px; font-weight: 600;
  color: var(--muted); letter-spacing: .4px;
}

@media (min-width: 640px) {
  .course__tab { padding: 12px 24px; }
  .course__tab-dist { font-size: clamp(18px, 2.5vw, 26px); }
}

.course__panel { display: none; }
.course__panel--active { display: block; }

.course__body {
  display: flex; flex-direction: column; gap: 10px;
}

.course__desc {
  font-size: 14.5px; line-height: 1.75;
  color: var(--muted); margin-bottom: 20px;
}

.course__features-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px;
}

.course__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px; list-style: none;
}

.course__feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--text); font-weight: 500;
}

.course__check {
  flex-shrink: 0; width: 20px; height: 20px;
  border-radius: 50%; background: var(--teal);
  display: flex; align-items: center; justify-content: center;
}

.course__map-label {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--muted); margin-bottom: 12px;
}

.course__map {
  width: 100%; min-height: 280px;
  border-radius: 14px; overflow: hidden;
}

@media (min-width: 480px) {
  .course__features { grid-template-columns: 1fr 1fr; gap: 10px 28px; }
}

@media (min-width: 768px) {
  .course__map { min-height: 420px; }
}

/* ══════════════════════════════════════════
   ON THE DAY — SCHEDULE
══════════════════════════════════════════ */
.schedule {
  background: #fff;
  padding: 84px 0 108px;
}

.schedule__header {
  text-align: center;
  margin-bottom: 48px;
}

.schedule__title {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 400; color: var(--text);
  margin-bottom: 8px;
}
.schedule__title strong { font-weight: 800; }

.schedule__sub {
  color: var(--muted); font-size: 15px; font-weight: 500;
}

.schedule__timeline {
  position: relative;
}

.schedule__line {
  position: absolute;
  left: 9px; top: 12px; bottom: 12px;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal) 80%, rgba(56,180,156,0));
}

.schedule__list {
  position: relative;
  display: flex; flex-direction: column;
  gap: 20px; list-style: none;
}

@keyframes sched-in {
  from { opacity: 0; transform: translateX(-18px); }
  to   { opacity: 1; transform: translateX(0); }
}

.schedule__item {
  display: flex; align-items: center; gap: 24px;
  opacity: 0;
}
.schedule__item.is-visible {
  animation: sched-in .5s ease-out var(--sched-delay, 0s) forwards;
}

.schedule__dot {
  flex-shrink: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff; border: 2px solid var(--teal);
  position: relative; z-index: 1;
}
.schedule__dot::after {
  content: ''; position: absolute; inset: 3px;
  background: var(--teal); border-radius: 50%;
}

.schedule__card {
  flex: 1;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 3px 14px rgba(0,0,0,.06);
}
.schedule__card--highlight {
  border-color: var(--yellow);
  box-shadow: 0 4px 20px rgba(246,181,0,.18);
}

.schedule__time {
  font-size: 14px; font-weight: 700;
  color: var(--yellow); letter-spacing: .5px;
  margin-bottom: 4px;
}

.schedule__name {
  font-size: 16px; font-weight: 800;
  color: var(--text); line-height: 1.3;
  margin-bottom: 4px;
}

.schedule__desc {
  font-size: 14px; color: var(--muted); line-height: 1.65;
}

@media (min-width: 640px) {
  .schedule__line { left: 11px; }
  .schedule__dot { width: 24px; height: 24px; }
  .schedule__card { padding: 20px 28px; }
  .schedule__name { font-size: 18px; }
}

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq {
  background: var(--bg-warm);
  padding: 84px 0 108px;
}

.faq__title {
  text-align: center;
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 400; color: var(--text);
  margin-bottom: 36px;
}
.faq__title strong { font-weight: 800; }

.faq__list {
  display: flex; flex-direction: column; gap: 10px;
}

.faq__list { gap: 14px; }

.faq__item {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq__item--open {
  box-shadow: 0 4px 16px rgba(0,0,0,.07);
}

.faq__btn {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 16px; padding: 20px 22px;
  width: 100%; background: none; border: none;
  text-align: left; cursor: pointer;
}

.faq__question {
  color: var(--text);
  font-weight: 600; font-size: 15px; line-height: 1.4;
}

.faq__chevron {
  flex-shrink: 0;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  transition: transform .25s ease, background .15s;
}
.faq__btn:hover .faq__chevron { background: #f3f4f6; }
.faq__item--open .faq__chevron { transform: rotate(180deg); }

.faq__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}
.faq__item--open .faq__body { max-height: 320px; }

.faq__answer {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 14px; line-height: 1.75;
}

@media (min-width: 640px) {
  .faq__btn { padding: 22px 28px; }
  .faq__answer { padding: 0 28px 22px; }
}

/* ══════════════════════════════════════════
   SPONSORS
══════════════════════════════════════════ */
.sponsors {
  background: #fff;
  padding: 60px 0 90px;
}
.sponsors__title {
  text-align: center;
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 400; color: var(--text);
  margin-bottom: 0;
}
.sponsors__title strong { font-weight: 800; }
.sponsors__tagline {
  text-align: center; font-size: 15px;
  font-weight: 500; color: #9a9a9a;
  line-height: 1.6; text-wrap: balance;
  margin: 6px auto 32px;
}
.sponsors__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.sponsor-card {
  background: #fff; border: 1px solid #ececec;
  flex: 0 0 calc(50% - 7px);
  aspect-ratio: 1 / 0.8;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 10px rgba(0,0,0,.04);
  padding: 16px;
}
.sponsor-card a {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
}
.sponsor-card img {
  max-width: 100%; max-height: 70%;
  width: auto; height: auto;
  object-fit: contain;
}
@media (min-width: 480px) { .sponsor-card { flex: 0 0 calc(33.333% - 10px); } }
@media (min-width: 640px) { .sponsor-card { flex: 0 0 calc(25% - 11px); } }
@media (min-width: 900px) {
  .sponsors__grid { gap: 18px; }
  .sponsor-card { flex: 0 0 calc(20% - 15px); }
}

.sponsors__cta {
  margin-top: 48px;
  text-align: center;
}
.sponsors__cta-text {
  font-size: 15px; color: var(--muted);
  margin-bottom: 16px;
}
.sponsors__cta-btn {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--teal);
  color: var(--teal);
  border-radius: 24px;
  padding: 12px 28px;
  font-size: 15px; font-weight: 600;
  transition: background .2s, color .2s;
}
.sponsors__cta-btn:hover {
  background: var(--teal);
  color: #fff;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  padding: 0;
}
.footer__cta {
  background: var(--teal);
  padding: 72px 0 80px;
  text-align: center;
}
.footer__cta-heading {
  font-size: clamp(28px, 4vw, 44px); font-weight: 400;
  color: #fff; margin-bottom: 10px;
}
.footer__cta-heading strong { font-weight: 800; }
.footer__cta-sub {
  font-size: 16px; color: rgba(255,255,255,0.85); margin-bottom: 32px;
}
.footer__cta-btn {
  display: inline-block;
  background: #fff; color: var(--grey);
  padding: 15px 36px; border-radius: 50px;
  font-family: inherit; font-size: 14px; font-weight: 700;
  letter-spacing: .5px; text-decoration: none;
  transition: background .2s, transform .2s;
}
.footer__cta-btn:hover { background: #f0f0f0; transform: translateY(-2px); }

.footer__main {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  padding: 40px 0 36px;
}
.footer__inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 20px;
  text-align: center;
}
.footer__email {
  font-size: 15px; font-weight: 600;
  color: var(--teal); text-decoration: none;
}
.footer__email:hover { text-decoration: underline; }

.footer__socials {
  display: flex; gap: 16px; align-items: center;
}
.footer__social {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: #f3f4f6; color: var(--grey);
  text-decoration: none;
  transition: background .2s, color .2s;
}
.footer__social:hover { background: var(--teal); color: #fff; }

.footer__copyright {
  font-size: 12px; color: #9ca3af; line-height: 1.6;
}
.footer__built {
  font-size: 12px; color: #c4c9d4;
}
.footer__built a { color: var(--teal); text-decoration: none; }
.footer__built a:hover { text-decoration: underline; }
