@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700&family=Playfair+Display:ital,wght@1,500;1,600&display=swap");

:root {
  --navy-950: #042632;
  --navy-900: #07384b;
  --navy-800: #0b465a;
  --teal-700: #087f83;
  --teal-500: #1ab4ad;
  --aqua-200: #afe4dc;
  --coral-500: #f46f55;
  --coral-400: #ff8169;
  --sand-100: #f7f1e6;
  --sand-50: #fcfaf5;
  --white: #fff;
  --ink: #113743;
  --muted: #60747a;
  --line: rgba(7, 56, 75, 0.14);
  --container: 1200px;
  --header-height: 84px;
  --shadow: 0 24px 70px rgba(4, 38, 50, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--sand-50);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 4px;
  color: white;
  background: var(--navy-950);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  position: relative;
  z-index: 50;
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy-950);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 35px;
}

.topbar p {
  margin: 0;
}

.topbar sup {
  font-size: 8px;
}

.topbar a {
  color: var(--aqua-200);
}

.topbar__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--coral-500);
}

.site-header {
  position: absolute;
  z-index: 40;
  top: 35px;
  left: 0;
  width: 100%;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.site-header.is-sticky {
  position: fixed;
  top: 0;
  color: var(--navy-900);
  border-bottom-color: transparent;
  background: rgba(252, 250, 245, 0.94);
  box-shadow: 0 10px 40px rgba(4, 38, 50, 0.09);
  backdrop-filter: blur(18px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 235px;
}

.brand__mark {
  display: grid;
  flex: 0 0 47px;
  width: 47px;
  height: 47px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.brand__mark svg {
  width: 37px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.18;
}

.brand__text strong {
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.brand__text span {
  margin-top: 4px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  opacity: 0.72;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 31px);
  font-size: 13px;
  font-weight: 600;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  padding: 31px 0;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.is-sticky .nav-cta {
  border-color: rgba(7, 56, 75, 0.28);
}

.nav-cta:hover {
  color: white;
  background: var(--coral-500);
  border-color: var(--coral-500);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 23px;
  height: 1.5px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(870px, 100svh - 35px);
  padding: 160px 0 100px;
  overflow: hidden;
  color: white;
  background: var(--navy-900);
  isolation: isolate;
}

.hero__backdrop {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(3, 34, 45, 0.91) 0%, rgba(4, 38, 50, 0.67) 43%, rgba(4, 38, 50, 0.12) 76%),
    linear-gradient(0deg, rgba(3, 32, 42, 0.72) 0%, transparent 44%), url("assets/hero-guadeloupe.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.015);
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 119px;
  bottom: 67px;
  left: calc(50% - min(50vw - 24px, 600px));
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: 119px;
  right: calc(50% - min(50vw - 24px, 600px));
  bottom: 67px;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
  content: "";
}

.hero__content {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 80px;
}

.hero__copy {
  max-width: 750px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 21px;
  color: var(--teal-700);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: var(--aqua-200);
}

h1,
h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(58px, 7.1vw, 98px);
}

h2 {
  margin-bottom: 25px;
  font-size: clamp(42px, 5vw, 68px);
}

h1 em,
h2 em {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
}

.hero__lead {
  max-width: 630px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 52px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.25s var(--ease), background 0.25s ease, border-color 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button--coral {
  color: white;
  background: var(--coral-500);
  box-shadow: 0 14px 32px rgba(244, 111, 85, 0.24);
}

.button--coral:hover {
  background: #e96048;
}

.button--glass {
  color: white;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.button--glass:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.14);
}

.hero__card {
  align-self: end;
  margin-bottom: 48px;
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 2px;
  background: rgba(5, 51, 65, 0.44);
  box-shadow: 0 18px 50px rgba(2, 25, 35, 0.19);
  backdrop-filter: blur(13px);
}

.hero__card-number {
  display: block;
  margin-bottom: -7px;
  color: var(--aqua-200);
  font-family: "Manrope", sans-serif;
  font-size: 55px;
  font-weight: 500;
  letter-spacing: -0.07em;
}

.hero__card-label,
.contact__label,
.info-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__card-label {
  color: var(--aqua-200);
}

.hero__card-line {
  width: 100%;
  height: 1px;
  margin: 19px 0;
  background: rgba(255, 255, 255, 0.24);
}

.hero__card p:not(.hero__card-label) {
  color: rgba(255, 255, 255, 0.73);
  font-size: 13px;
  line-height: 1.65;
}

.hero__card a {
  color: white;
  font-size: 12px;
  font-weight: 700;
}

.hero__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__footer-inner {
  display: flex;
  align-items: center;
  min-height: 67px;
  gap: 46px;
}

.hero__footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__footer p span {
  margin-right: 9px;
  color: var(--aqua-200);
}

.hero__scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__scroll i {
  position: relative;
  width: 1px;
  height: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
}

.hero__scroll i::after {
  position: absolute;
  top: -12px;
  left: 0;
  width: 1px;
  height: 11px;
  background: white;
  content: "";
  animation: scroll-line 2s infinite ease-in-out;
}

@keyframes scroll-line {
  0% { transform: translateY(0); }
  65%, 100% { transform: translateY(38px); }
}

.concept {
  background: var(--sand-50);
}

.concept__grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(50px, 9vw, 130px);
}

.section-heading h2 {
  max-width: 720px;
}

.section-heading > p:last-child,
.gallery__heading > p,
.highlights__heading > p,
.numbers__top > p {
  color: var(--muted);
}

.section-heading--center {
  max-width: 800px;
  margin: 0 auto 65px;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center h2 {
  margin-inline: auto;
}

.section-heading--center > p:last-child {
  max-width: 620px;
  margin-inline: auto;
  font-size: 17px;
}

.concept__intro {
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.lead {
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.55;
}

.concept__intro .lead {
  color: var(--ink);
}

.concept__intro p:not(.lead) {
  color: var(--muted);
}

.concept__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
  margin-top: 76px;
}

.feature {
  position: relative;
  display: flex;
  min-height: 285px;
  padding: 29px;
  overflow: hidden;
  border-radius: var(--radius-md);
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}

.feature::before {
  position: absolute;
  top: -88px;
  right: -75px;
  width: 185px;
  height: 185px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.18;
}

.feature:hover {
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.feature--ocean {
  color: white;
  background: var(--teal-700);
}

.feature--sand {
  color: var(--ink);
  background: #e9dfc9;
}

.feature--coral {
  color: white;
  background: var(--coral-500);
}

.feature__index {
  font-size: 11px;
  letter-spacing: 0.13em;
  opacity: 0.7;
}

.feature h3 {
  margin: 0 0 11px;
  font-family: "Manrope", sans-serif;
  font-size: 29px;
  letter-spacing: -0.04em;
}

.feature p {
  max-width: 300px;
  margin: 0;
  font-size: 14px;
  opacity: 0.78;
}

.feature__arrow {
  position: absolute;
  right: 26px;
  bottom: 24px;
  font-size: 22px;
  opacity: 0.62;
}

.feature div {
  padding-right: 26px;
}

.reasons {
  padding-top: 108px;
  background: white;
}

.reasons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reason-card {
  min-height: 340px;
  padding: 51px 45px;
  border-right: 1px solid var(--line);
}

.reason-card:last-child {
  border-right: 0;
}

.reason-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 43px;
  color: var(--teal-700);
  place-items: center;
  border-radius: 50%;
  background: rgba(26, 180, 173, 0.1);
}

.reason-card__icon svg {
  width: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.reason-card h3 {
  margin-bottom: 12px;
  font-family: "Manrope", sans-serif;
  font-size: 23px;
  letter-spacing: -0.035em;
}

.reason-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.highlights {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--navy-900);
}

.highlights::after {
  position: absolute;
  top: -300px;
  right: -300px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(175, 228, 220, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 105px rgba(175, 228, 220, 0.025), 0 0 0 210px rgba(175, 228, 220, 0.018);
  content: "";
}

.highlights__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(60px, 10vw, 145px);
}

.highlights__heading {
  position: sticky;
  top: 140px;
  align-self: start;
}

.highlights__heading h2 {
  font-size: clamp(42px, 4.6vw, 64px);
}

.highlights__heading > p:not(.eyebrow) {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.68);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
  font-size: 13px;
  font-weight: 700;
}

.highlight-row {
  display: grid;
  align-items: start;
  min-height: 170px;
  padding: 38px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  grid-template-columns: 42px 1fr 36px;
  gap: 20px;
}

.highlight-row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.highlight-row__number {
  padding-top: 4px;
  color: var(--aqua-200);
  font-size: 11px;
}

.highlight-row h3 {
  margin-bottom: 8px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(21px, 2.4vw, 27px);
  letter-spacing: -0.035em;
}

.highlight-row p {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.highlight-row__symbol {
  color: var(--coral-400);
  font-size: 25px;
  text-align: right;
}

.numbers {
  position: relative;
  padding: 120px 0 130px;
  overflow: hidden;
  background: var(--sand-100);
}

.numbers__pattern {
  position: absolute;
  top: 45px;
  right: -50px;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(7, 127, 131, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(7, 127, 131, 0.035), 0 0 0 110px rgba(7, 127, 131, 0.023);
}

.numbers__top {
  position: relative;
  display: grid;
  align-items: end;
  grid-template-columns: 1.15fr 0.65fr;
  gap: 100px;
}

.numbers__top h2 {
  max-width: 750px;
}

.numbers__top > p {
  padding-bottom: 22px;
}

.numbers__grid {
  position: relative;
  display: grid;
  margin-top: 63px;
  grid-template-columns: 0.85fr 1.3fr 0.95fr;
  border-top: 1px solid rgba(7, 56, 75, 0.2);
}

.stat {
  min-height: 300px;
  padding: 45px 35px 20px 0;
  border-right: 1px solid rgba(7, 56, 75, 0.2);
}

.stat:not(:first-child) {
  padding-left: 40px;
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  margin-bottom: -8px;
  color: var(--teal-700);
  font-family: "Manrope", sans-serif;
  font-size: clamp(58px, 6.3vw, 88px);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 1.05;
}

.stat strong sup {
  font-size: 30%;
}

.stat > span {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-style: italic;
}

.stat p {
  max-width: 290px;
  margin-top: 36px;
  color: var(--muted);
  font-size: 13px;
}

.stat--featured strong {
  color: var(--coral-500);
  font-size: clamp(51px, 5.7vw, 78px);
}

.stat--featured strong small {
  display: block;
  margin-bottom: 4px;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.stat .stat__trend {
  color: var(--teal-700);
  font-size: 86px;
  line-height: 1;
}

.gallery {
  background: white;
}

.gallery__heading {
  display: grid;
  align-items: end;
  margin-bottom: 54px;
  grid-template-columns: 1fr 0.65fr;
  gap: 80px;
}

.gallery__heading h2 {
  margin-bottom: 0;
}

.gallery__heading > p {
  margin: 0 0 8px;
}

.gallery__grid {
  display: grid;
  grid-auto-rows: 250px;
  grid-template-columns: repeat(12, 1fr);
  gap: 17px;
}

.gallery-card {
  position: relative;
  display: flex;
  padding: 25px;
  overflow: hidden;
  border-radius: var(--radius-md);
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
}

.gallery-card::after {
  position: absolute;
  z-index: -1;
  inset: 35% 0 0;
  background: linear-gradient(0deg, rgba(3, 31, 40, 0.75), transparent);
  content: "";
}

.gallery-card--large {
  grid-column: span 7;
  grid-row: span 2;
}

.gallery-card:not(.gallery-card--large) {
  grid-column: span 5;
}

.gallery-card--photo {
  background-image: linear-gradient(155deg, rgba(7, 56, 75, 0.06), rgba(7, 56, 75, 0.18)), url("assets/hero-guadeloupe.webp");
  background-position: 54% center;
  background-size: cover;
}

.gallery-card__badge {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 7px 11px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(4, 38, 50, 0.17);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.gallery-card__caption {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  color: white;
}

.gallery-card__caption span {
  max-width: 75%;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.gallery-card__caption small {
  font-size: 9px;
  letter-spacing: 0.1em;
  opacity: 0.65;
  text-align: right;
  text-transform: uppercase;
}

.gallery-card--line {
  color: var(--teal-700);
  background: #bee2dc;
}

.gallery-card--line::after {
  background: linear-gradient(0deg, rgba(7, 56, 75, 0.68), transparent 75%);
}

.gallery-card__art {
  position: absolute;
  top: 8px;
  right: 10px;
  left: 10px;
}

.gallery-card__art svg {
  width: 100%;
  max-height: 155px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  opacity: 0.35;
}

.gallery-card--stamp {
  min-height: 310px;
  color: white;
  background: var(--coral-500);
}

.gallery-card--stamp::after {
  background: linear-gradient(0deg, rgba(91, 30, 19, 0.45), transparent);
}

.gallery-card--stamp::before {
  position: absolute;
  top: 22px;
  right: 25px;
  width: 66px;
  height: 66px;
  border: 1px dashed rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  box-shadow: inset 0 0 0 7px var(--coral-500), inset 0 0 0 8px rgba(255, 255, 255, 0.3);
  content: "04";
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-style: italic;
  line-height: 66px;
  text-align: center;
}

.gallery-card__edition {
  position: absolute;
  top: 28px;
  left: 27px;
  font-family: "Manrope", sans-serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.gallery-card--sun {
  min-height: 310px;
  background: var(--navy-900);
}

.gallery-card__sun {
  position: absolute;
  top: -39px;
  left: 50%;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: #eed09c;
  box-shadow: 0 0 0 30px rgba(238, 208, 156, 0.08), 0 0 0 60px rgba(238, 208, 156, 0.04);
  transform: translateX(-50%);
}

.exhibitors {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--teal-700);
}

.exhibitors__grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(60px, 10vw, 140px);
}

.exhibitors__visual {
  position: relative;
  min-height: 500px;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit--one {
  width: 280px;
  height: 280px;
}

.orbit--two {
  width: 455px;
  height: 455px;
}

.orbit::after {
  position: absolute;
  top: 50%;
  right: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral-400);
  box-shadow: 0 0 0 7px rgba(244, 111, 85, 0.15);
  content: "";
}

.orbit__plane {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 100px;
  height: 100px;
  color: var(--teal-700);
  border-radius: 50%;
  background: var(--aqua-200);
  font-size: 37px;
  place-items: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 25px 50px rgba(4, 38, 50, 0.15);
}

.orbit__label {
  position: absolute;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(7, 101, 106, 0.6);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(7px);
}

.orbit__label--one { top: 8%; left: 32%; }
.orbit__label--two { top: 38%; right: 0; }
.orbit__label--three { bottom: 9%; left: 27%; }
.orbit__label--four { top: 48%; left: 0; }

.exhibitors__copy h2 {
  max-width: 560px;
}

.exhibitors__copy .lead {
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
}

.check-list {
  display: grid;
  margin: 32px 0 38px;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.check-list span {
  display: grid;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  color: var(--teal-700);
  border-radius: 50%;
  background: var(--aqua-200);
  font-size: 12px;
  place-items: center;
}

.practical {
  background: var(--sand-50);
}

.practical__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.info-card {
  position: relative;
  min-height: 310px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  transition: border-color 0.25s ease, box-shadow 0.3s ease, transform 0.3s var(--ease);
}

.info-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.info-card__number {
  display: block;
  margin-bottom: 70px;
  color: var(--coral-500);
  font-size: 12px;
  font-weight: 700;
}

.info-card__label {
  margin-bottom: 9px;
  color: var(--teal-700);
}

.info-card h3 {
  margin-bottom: 11px;
  font-family: "Manrope", sans-serif;
  font-size: 27px;
  letter-spacing: -0.04em;
}

.info-card h3 sup {
  font-size: 45%;
}

.info-card > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  color: white;
  background: var(--navy-950);
}

.contact::after {
  position: absolute;
  right: -140px;
  bottom: -250px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(175, 228, 220, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 95px rgba(175, 228, 220, 0.025), 0 0 0 190px rgba(175, 228, 220, 0.015);
  content: "";
}

.contact__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.68fr;
  gap: clamp(70px, 12vw, 170px);
}

.contact__heading h2 {
  max-width: 740px;
}

.contact__heading > p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
}

.contact__details {
  padding-top: 12px;
}

.contact__label {
  margin-bottom: 14px;
  color: var(--aqua-200);
}

.contact__details > a:not(.contact__domain) {
  display: block;
  width: fit-content;
  margin-bottom: 5px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.contact__details > a:hover {
  color: var(--coral-400);
}

.contact__divider {
  height: 1px;
  margin: 32px 0;
  background: rgba(255, 255, 255, 0.16);
}

.contact__domain {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 16px;
  font-weight: 600;
}

.site-footer {
  color: rgba(255, 255, 255, 0.68);
  background: #031c25;
}

.footer__top {
  display: grid;
  align-items: start;
  padding: 65px 0 45px;
  grid-template-columns: 1.4fr 0.7fr 0.5fr;
  gap: 70px;
}

.brand--footer {
  color: white;
}

.footer__top > p {
  font-size: 13px;
  line-height: 1.7;
}

.footer__top nav {
  display: grid;
  gap: 7px;
  font-size: 13px;
}

.footer__top nav a:hover {
  color: white;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__bottom p {
  margin: 0;
}

.back-to-top {
  position: fixed;
  z-index: 35;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 44px;
  height: 44px;
  color: white;
  border: 0;
  border-radius: 50%;
  background: var(--coral-500);
  box-shadow: 0 8px 25px rgba(4, 38, 50, 0.18);
  cursor: pointer;
  opacity: 0;
  place-items: center;
  transform: translateY(15px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal--delay {
  transition-delay: 0.12s;
}

.reveal--delay-2 {
  transition-delay: 0.22s;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--coral-400);
  outline-offset: 4px;
}

@media (max-width: 1020px) {
  :root { --header-height: 74px; }

  .main-nav {
    position: fixed;
    z-index: 45;
    top: 0;
    right: 0;
    display: flex;
    width: min(86vw, 390px);
    height: 100dvh;
    padding: 110px 38px 38px;
    color: white;
    background: var(--navy-950);
    box-shadow: -20px 0 50px rgba(2, 28, 37, 0.2);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    transform: translateX(105%);
    transition: transform 0.4s var(--ease);
  }

  .main-nav.is-open { transform: translateX(0); }

  .main-nav > a:not(.nav-cta) {
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 16px;
  }

  .main-nav > a:not(.nav-cta)::after { display: none; }

  .nav-cta {
    margin-top: 24px;
    text-align: center;
  }

  .is-sticky .nav-cta { border-color: rgba(255, 255, 255, 0.3); }

  .menu-toggle {
    position: relative;
    z-index: 50;
    display: block;
  }

  .menu-toggle.is-open { color: white; }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .hero__content { grid-template-columns: 1fr 240px; gap: 35px; }
  .concept__grid { gap: 60px; }
  .reason-card { padding: 45px 28px; }
  .numbers__top { gap: 50px; }
  .stat { padding-right: 25px; }
  .stat:not(:first-child) { padding-left: 27px; }
  .exhibitors__grid { gap: 65px; }
  .orbit--two { width: 390px; height: 390px; }
}

@media (max-width: 780px) {
  .container { width: min(calc(100% - 34px), var(--container)); }
  .section { padding: 82px 0; }
  .topbar__inner { min-height: 32px; }
  .topbar__inner > a { display: none; }
  .site-header { top: 32px; }
  .site-header.is-sticky { top: 0; }

  .brand__mark { width: 42px; height: 42px; flex-basis: 42px; }
  .brand__text strong { font-size: 15px; }
  .brand__text span { font-size: 8px; }

  .hero {
    min-height: 820px;
    padding: 137px 0 105px;
  }

  .hero__backdrop {
    background-image: linear-gradient(90deg, rgba(3, 34, 45, 0.92) 0%, rgba(4, 38, 50, 0.66) 100%),
      linear-gradient(0deg, rgba(3, 32, 42, 0.7), transparent 55%), url("assets/hero-guadeloupe.webp");
    background-position: 61% center;
  }

  .hero__content { grid-template-columns: 1fr; align-content: center; gap: 34px; }
  .hero__copy { padding-top: 20px; }
  .hero__card { display: none; }
  .hero__footer-inner { gap: 20px; }
  .hero__footer p:nth-child(3), .hero__scroll { display: none; }

  h1 { font-size: clamp(52px, 15vw, 76px); }
  h2 { font-size: clamp(39px, 11.5vw, 56px); }

  .concept__grid,
  .highlights__layout,
  .numbers__top,
  .gallery__heading,
  .exhibitors__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .concept__intro { padding-top: 28px; }
  .concept__features { grid-template-columns: 1fr; margin-top: 52px; }
  .feature { min-height: 245px; }

  .section-heading--center { margin-bottom: 47px; }
  .reasons__grid { grid-template-columns: 1fr; }
  .reason-card { min-height: auto; padding: 38px 24px; border-right: 0; border-bottom: 1px solid var(--line); }
  .reason-card:last-child { border-bottom: 0; }
  .reason-card__icon { margin-bottom: 25px; }

  .highlights__heading { position: static; }
  .highlights__layout { gap: 48px; }
  .highlight-row { grid-template-columns: 32px 1fr 25px; gap: 12px; }

  .numbers { padding: 82px 0 90px; }
  .numbers__top { gap: 10px; }
  .numbers__grid { grid-template-columns: 1fr; margin-top: 40px; }
  .stat, .stat:not(:first-child) { min-height: 225px; padding: 35px 0; border-right: 0; border-bottom: 1px solid rgba(7, 56, 75, 0.2); }
  .stat:last-child { border-bottom: 0; }
  .stat p { margin-top: 22px; }

  .gallery__heading { gap: 8px; }
  .gallery__grid { display: flex; flex-direction: column; }
  .gallery-card { min-height: 300px; }
  .gallery-card--large { min-height: 440px; }

  .exhibitors__grid { gap: 28px; }
  .exhibitors__visual { min-height: 400px; order: 2; }
  .orbit--one { width: 220px; height: 220px; }
  .orbit--two { width: 345px; height: 345px; }

  .practical__grid { grid-template-columns: 1fr; }
  .info-card { min-height: 250px; }
  .info-card__number { margin-bottom: 45px; }

  .contact { padding: 85px 0; }
  .contact__grid { gap: 46px; }

  .footer__top { grid-template-columns: 1fr; gap: 30px; }
  .footer__bottom { gap: 20px; flex-direction: column; }
}

@media (max-width: 450px) {
  .topbar { letter-spacing: 0.04em; }
  .brand { min-width: 0; }
  .brand__text span { max-width: 185px; }
  .hero { min-height: 760px; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero__footer-inner { justify-content: space-between; }
  .gallery-card__caption { align-items: start; flex-direction: column; }
  .gallery-card__caption small { text-align: left; }
  .orbit--two { width: 300px; height: 300px; }
  .orbit__label--two { right: -7px; }
  .orbit__label--four { left: -6px; }
  .back-to-top { right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
