/* ─────────────────────────────────────────────────────────
   SOL SyncUp – Global styles
   ───────────────────────────────────────────────────────── */

:root {
  --bg: rgb(18, 18, 18);
  --bg-soft: rgb(10, 10, 10);
  --fg: #ffffff;
  --fg-muted: rgba(255, 255, 255, 0.7);
  --fg-dim: rgb(148, 148, 148);
  --fg-faint: rgb(129, 129, 129);
  --border-faint: rgba(255, 255, 255, 0.12);
  --border-soft: rgba(255, 255, 255, 0.2);
  --accent-green: rgb(53, 240, 163);
  --accent-mint: rgb(108, 221, 190);
  --accent-purple: rgb(99, 49, 253);
  --accent-purple-deep: rgb(59, 0, 237);

  /* Brand gradient (magenta → purple → green → mint) */
  --grad-brand: linear-gradient(
    360deg,
    rgb(207, 51, 224) 0%,
    rgb(153, 69, 255) 20%,
    rgb(20, 241, 149) 82%,
    rgb(110, 238, 188) 100%
  );
  --grad-brand-soft: linear-gradient(
    90deg,
    rgba(207, 51, 224, 0.5) 0%,
    rgba(153, 69, 255, 0.5) 20%,
    rgba(20, 241, 149, 0.5) 82%,
    rgba(110, 238, 188, 0.5) 100%
  );

  /* Layout */
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body { overflow-x: hidden; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

/* ─────────── Layout helpers ─────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 inline-axis;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  position: relative;
  padding: 40px 0px;
}

.section-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 36px);
  line-height: 1.2;
  text-align: center;
  margin: 0;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-weight: 500;
  font-size: clamp(18px, 2vw, 24px);
  text-align: center;
  margin: 8px 0 0;
  color: var(--fg);
}

/* ─────────── Logo ─────────── */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: "Audiowide", "Inter", sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: #fff;
  white-space: nowrap;
}

.logo .logo-bolt {
  display: inline-block;
  width: 18px;
  height: 38px;
  margin: 0 4px;
  background: var(--grad-brand);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 38'><path d='M5 0 L0 20 H7.5 L2.5 38 L17.5 15 H10 L17.5 0 Z' fill='black'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 38'><path d='M5 0 L0 20 H7.5 L2.5 38 L17.5 15 H10 L17.5 0 Z' fill='black'/></svg>") no-repeat center / contain;
}

.logo--lg { font-size: 22px; }
.logo--lg .logo-bolt { width: 28px; height: 60px; }

/* ─────────── Buttons ─────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 17px 28px;
  border: none;
  border-radius: 2px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 22px;
  text-align: center;
  cursor: pointer;
  transition: transform 200ms ease, filter 200ms ease, box-shadow 200ms ease;
  position: relative;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); filter: brightness(1.08); }
.btn:active { transform: translateY(0); }

.btn--gradient {
  background: var(--grad-brand);
  color: rgb(18, 18, 18);
  box-shadow: 0 8px 28px -10px rgba(153, 69, 255, 0.6);
}
.btn--gradient:hover { box-shadow: 0 12px 36px -10px rgba(20, 241, 149, 0.55); }

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgb(170, 170, 170);
}
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.04); }

.btn--purple {
  background: linear-gradient(180deg, rgb(99,49,253) 0%, rgb(59,0,237) 100%);
  color: #fff;
}

.btn-arrow {
  display: inline-block;
  width: 18px;
  height: 13px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18.35 12.85'><path d='M11.93 12.85L10.62 11.56L14.84 7.34H0V5.51H14.84L10.64 1.29L11.93 0L18.35 6.42Z'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18.35 12.85'><path d='M11.93 12.85L10.62 11.56L14.84 7.34H0V5.51H14.84L10.64 1.29L11.93 0L18.35 6.42Z'/></svg>") no-repeat center / contain;
}

/* ─────────── Header / Nav ─────────── */
.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1302px;
  height: 71px;
  border-radius: 10px;
  background: rgba(18, 18, 18, 0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 30px;
  z-index: 100;
  transition: background 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(18, 18, 18, 0.85);
  border-color: rgba(255, 255, 255, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 6px 0;
  transition: color 200ms ease;
}
.nav a:hover, .nav a.active { color: #fff; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 880px) {
  .site-header { padding: 12px 18px; height: 60px; }
  .nav-toggle { display: inline-flex; }
  .nav-wrap {
    position: absolute;
    top: calc(100% + 10px);
    left: 0; right: 0;
    background: rgba(18,18,18,0.95);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 18px;
    display: none;
  }
  .nav-wrap.is-open { display: block; }
  .nav { flex-direction: column; gap: 18px; align-items: flex-start; }
}

/* ─────────── Hero ─────────── */
.hero {
  position: relative;
  min-height: 743px;
  padding-top: 200px;
  padding-bottom: 120px;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url("assets/hero-swirl.png") center / cover no-repeat;
  opacity: 0.7;
  z-index: -2;
}

.hero__fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 165px;
  background: linear-gradient(rgba(18,18,18,0) 0%, rgb(18,18,18) 100%);
  z-index: -1;
}

.hero__inner {
  max-width: 900px;
  padding-inline: var(--gutter);
}

.hero h1 {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: clamp(48px, 8vw, 95px);
  line-height: 1.05;
  margin: 0 0 32px;
  letter-spacing: -0.02em;
}

.hero p.lead {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  margin: 0 0 36px;
  max-width: 680px;
  color: #fff;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ─────────── Events / Initiatives ─────────── */
.events-tabs {
  display: flex;
  justify-content: center;
  /* margin: 24px 0 48px; */
}
.events-tabs__pill {
  font-weight: 500;
  font-size: 24px;
  padding: 8px 16px;
  position: relative;
  margin: 0;
}
.events-tabs__pill::after {
  content: "";
  display: block;
  height: 2px;
  width: 60%;
  margin: 6px auto 0;
  background: var(--grad-brand);
  border-radius: 2px;
}

.event-row {
  display: flex;
  /* grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px); */
  align-items: center;
  justify-content: center;
  margin-block: 26px;
}
.event-row--reverse > .event-row__img { order: 2; }

.event-row__img {
  position: relative;
  border-radius: 8px;
  padding: 22px;
  background: var(--grad-brand-soft);
  aspect-ratio: 553 / 414;
}
img.past-events {
    width: 400px;
}

.event-row__img > div {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: var(--bg-soft) center / cover no-repeat;
}

.event-row__text {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.2;
  color: #fff;
}

@media (max-width: 800px) {
  .event-row { grid-template-columns: 1fr;
  gap:10px }
  .event-row--reverse > .event-row__img { order: 0; }
}

/* ─────────── Logos strip ─────────── */
.logos-strip {
  position: relative;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 40px;
}
.logos-strip__row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    gap: 32px;
    margin: 56px 0;
    max-width: 1300px;
    margin-inline: auto;
    padding-inline: var(--gutter);
    width: 50%;
}
.logos-strip__row .logo-card {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 58px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 200ms ease;
}
.logos-strip__row .logo-card:hover { opacity: 1; }
.logos-strip__row .logo-card img { max-height: 58px; width: auto; }

.logos-strip__brand {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.logos-strip__brand .dot {
  width: 32px; height: 32px;
  border-radius: 4px;
  background: var(--grad-brand);
}

.cta-center { display: flex; justify-content: center; margin-top: 32px; }

@media (max-width: 767px) {

  .logos-strip__row
  {
    width: 100%;
  }
}
/* ─────────── Abu Dhabi Event ─────────── */
.spotlight {
  padding: 20px 10px 20px 10px;
  text-align: center;
  position: relative;
}
.spotlight h2 {
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 29px);
  margin: 0 0 32px;
}
.spotlight__lead {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 300;
  max-width: 980px;
  margin: 0 auto 64px;
  color: #fff;
}

.spotlight__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 8vw, 125px);
  align-items: center;
  text-align: left;
  max-width: 1200px;
  margin-inline: auto;
}
.spotlight__img {
  width: 100%;
  aspect-ratio: 480 / 600;
  border-radius: 8px;
  background: url("assets/abu-dhabi.jpg") center / cover no-repeat, var(--bg-soft);
  border: 1px solid rgba(255,255,255,0.4);
  position: relative;
  overflow: hidden;
}
.spotlight__img::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 25%;
  background: linear-gradient(rgba(18,18,18,0) 0%, rgb(18,18,18) 100%);
}

.spotlight__panel {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.spotlight__panel-block {
  border-bottom: 1px solid rgb(233,233,233);
  padding: 20px 24px;
}
.spotlight__panel-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: clamp(20px, 2vw, 27px);
  letter-spacing: 0.02em;
  margin: 0 0 16px;
}
.spotlight__panel-title::before {
  content: "→";
  color: #fff;
}
/* .spotlight__panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 500;
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.4;
} */
.spotlight__panel ul li { padding: 4px 0; }

.spotlight__meta {
  font-weight: 300;
  font-size: clamp(18px, 1.7vw, 26px);
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.spotlight__tag {
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.2;
  margin-top: 16px;
}

@media (max-width: 800px) {
  .spotlight__grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .spotlight__panel-block { grid-template-columns: 1fr;
  padding: 8px;
  }
}
/* ─────────── About Us cards ─────────── */
.about-shell {
    background: linear-gradient(37deg, #000 53%, #35f0a25a 100%);
    border-radius: 8px;
    padding: 36px;
}
.about-shell--reverse {
    background: linear-gradient(34deg, rgb(50 240 163 / 10%) 0%, rgba(0, 0, 0, 0) 36%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.about-card {
  background: linear-gradient(79deg, rgba(0, 0, 0, 0) 0%, rgb(53 240 163 / 9%) 100%), var(--bg-soft);  border-radius: 8px;
  padding: 34px 44px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.about-card h3 {
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 32px);
  margin: 0 0 16px;
  line-height: 1.2;
  color: #fff;
}
.about-card p {
  font-weight: 300;
  /* font-size: clamp(16px, 1.5vw, 20px); */
  font-size: 18px;
  line-height: 1.6;
  text-align: justify;
  margin: 0;
  color: #fff;
}
.about-card__img {
  width: 100%;
  aspect-ratio: 412 / 329;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-unique {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-unique__img {
    background: linear-gradient(37deg, #00000033 53%, #35f0a336 100%);
    border-radius: 8px;
    padding: 36px;
}
@media (max-width: 800px) {
  .about-grid, .about-unique { grid-template-columns: 1fr; }
  .about-card { padding: 24px; }
}

/* ─────────── Community & Membership cards ─────────── */
.community {
  text-align: center;
  padding: 40px 10px;
}
.community h2 {
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 26px);
  margin: 0 0 32px;
}
.community__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1120px;
  margin: 0 auto 32px;
  padding-inline: var(--gutter);
  text-align: left;
}
.community__card {
  background: linear-gradient(229deg, rgba(108, 221, 190, 0.3) -20%, rgba(0, 0, 0, 0) 35%);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 4px 6px -4px rgba(0,0,0,0.1), 0 10px 15px -3px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 192px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.community__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px -12px rgba(108,221,190,0.18);
}
.community__icon {
  width: 36px;
  height: 36px;
  color: var(--accent-mint);
  display: flex;
  align-items: center;
  justify-content: center;
}
.community__card h3 {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.45;
  margin: 0;
  color: #fff;
}
.community__card p {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  color: rgb(170, 184, 175);
}

@media (max-width: 880px) {
  .community__cards { grid-template-columns: 1fr; }
}

/* ─────────── Subscribe panel ─────────── */
.subscribe-panel {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.2);
  /* background: radial-gradient(ellipse at top, rgba(108,221,190,0.32) 0%, rgba(71,167,140,0.12) 30%, rgba(0,0,0,0) 70%), rgba(71,71,71,0.04); */
  padding: 56px 32px;
  text-align: center;
  overflow: hidden;
  background-image: url('assets/lines-bg.png');
  isolation: isolate;
}
/* .subscribe-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(108,221,190,0.18), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(207,51,224,0.12), transparent 50%);
} */
.subscribe-panel h2 {
  font-family: "Open Sans", "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 28px;
  color: #fff;
}

/* ─────────── Footer ─────────── */
.footer {
  border-top: 1px solid var(--border-faint);
  padding: 64px 0 24px;
  margin-top: 56px;
}
.footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
}
.footer__links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 16px;
}
.footer__links span { color: rgba(255,255,255,0.4); }
.footer__links a { color: rgba(255,255,255,0.85); transition: color 200ms; }
.footer__links a:hover { color: var(--accent-mint); }

.footer__contact-row {
  border-block: 1px solid var(--border-faint);
  padding: 18px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.footer__contact-row span.sep { color: rgba(255,255,255,0.3); }

.footer__mid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 28px 0;
}
.footer__org { font-size: 12px; color: var(--fg-dim); }
.footer__org img, .footer__org svg { height: 40px; width: auto; margin-top: 12px; }

.footer__socials { display: flex; gap: 16px; }
.footer__socials a {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 200ms, border-color 200ms;
}
.footer__socials a:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }
.footer__socials svg { width: 22px; height: 22px; fill: #fff; }

.footer__bottom {
  border-top: 1px solid var(--border-faint);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0 0;
  font-size: 14px;
  color: var(--fg-faint);
}
.footer__bottom .footer__legal {
  display: flex;
  gap: 16px;
}
.footer__bottom .footer__legal a:hover { color: var(--accent-mint); }

/* swirl-side decoration */
.swirl-side {
  position: absolute;
  pointer-events: none;
  width: 690px;
  height: 839px;
  background: url("assets/swirl-side.png") center / cover no-repeat;
  opacity: 0.6;
  right: -100px;
  z-index: 0;
}

/* ─────────── Animations ─────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────── Contact page specific ─────────── */
.contact-hero {
  position: relative;
  padding-top: 160px;
  padding-bottom: 80px;
  overflow: hidden;
}
.contact-hero__bg {
  position: absolute;
  inset: 0;
  background: url("assets/hero-swirl.png") center / cover no-repeat;
  opacity: 0.7;
  z-index: -1;
}
.contact-hero__fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 200px;
  background: linear-gradient(rgba(18,18,18,0) 0%, rgb(18,18,18) 100%);
  z-index: 0;
}
.contact-form {
    background: white;
    padding: 20px;
    border-radius: 20px;
}
.contact-grid {
  /* display: grid; */
  /* grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); */
  gap: 80px;
  max-width: 1196px;
  margin: 0 auto;
  padding-inline: var(--gutter);
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-form h1 {
  color: #000;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 44px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.field label {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}
.field input, .field textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 84px;
  padding: 16px 22px;
  font-family: inherit;
  font-size: 15px;
  color: #fff;
  outline: none;
  transition: border-color 200ms, background 200ms;
}
.field textarea {
  border-radius: 16px;
  min-height: 140px;
  resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.55); }
.field input:focus, .field textarea:focus {
  border-color: var(--accent-mint);
  background: rgba(255,255,255,0.1);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

@media (max-width: 700px) {
  .field-row { grid-template-columns: 1fr; }
}

.contact-info {
  padding-top: 110px;
}
.contact-info h2 {
  font-weight: 700;
  font-size: clamp(20px, 2vw, 24px);
  margin: 0 0 8px;
}
.contact-info__sub {
  font-weight: 400;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 24px;
}
.contact-info__email {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 16px;
}
.contact-info__email a:hover { color: var(--accent-mint); }
.contact-info__email .ico {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgb(207,51,224), rgb(99,49,253));
}
.contact-info__email .ico svg { width: 16px; height: 16px; fill: #fff; }
.contact-info__note {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 320px;
}

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-info { padding-top: 0; }
}
/* ....................... contact page ................. */
/* ─────────── Contact Page ─────────── */

.contact-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
  background: url("assets/hero-swirl.png") center / cover no-repeat;
  opacity: 0.7;
  z-index: -1;
}

.contact-hero__fade {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 200px;
  background: linear-gradient(
    rgba(18,18,18,0) 0%,
    rgb(18,18,18) 100%
  );
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 2;
}

/* HEADING */

.contact-title {
  color: #fff;
  text-align: center;
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 40px;
}

/* FORM */

.contact-form {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  box-sizing: border-box;
}

/* HUBSPOT */

.contact-form form,
.contact-form .hs-form {
  width: 100%;
}

.contact-form .hs-form-field {
  width: 100% !important;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100% !important;
  padding: 14px 18px !important;
  border-radius: 12px !important;
  border: 1px solid #d9d9d9 !important;
  background: #fff !important;
  color: #000 !important;
  font-size: 15px !important;
  font-family: inherit !important;
  box-sizing: border-box;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* BUTTON */

.contact-form .hs-button {
  width: 100%;
  border: 0 !important;
  border-radius: 999px !important;
  padding: 16px 24px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  cursor: pointer;
  background: linear-gradient(90deg, #9945FF, #14F195) !important;
  color: #000 !important;
}

/* MOBILE */

@media (max-width: 768px) {

  .contact-hero {
    padding: 120px 0 60px;
  }

  .contact-title {
    font-size: 36px;
    margin-bottom: 28px;
  }

  .contact-form {
    padding: 24px 18px;
    border-radius: 18px;
  }

}

/* ─────────── Mobile hero adjustments ─────────── */
@media (max-width: 600px) {
  .hero { padding-top: 130px; padding-bottom: 80px; min-height: 600px; }
  .hero__inner { padding-inline: 20px; }
  section#events {
    padding: 20px 0;
}
}
@media (max-width: 767px) {

  section#events {
    padding: 20px 0;
}
.about-shell {
  padding: 6px;
}

}
