:root {
  --crimson-darkest: #3E1421;
  --crimson-darker: #551126;
  --crimson-dark: #690D25;
  --crimson: #8E1928;
  --crimson-light: #A11D2B;
  --crimson-lighter: #BA2029;
  --crimson-lightest: #C0292A;
  --text: #2b2226;
  --muted: #585063;
  --panel: #F3EBF5;
  --panel-2: #FAF7FB;
  --soft-shadow: 0 10px 30px rgba(0,0,0,.06);
  --ring: 0 0 0 3px rgba(174,31,43,.16);
}

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

body {
  font-family: "Nunito Sans", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--panel-2), #fff 40%);
  line-height: 1.6;
}

/* NAVBAR */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: saturate(140%) blur(8px);
  background: color-mix(in oklab, #fff 70%, var(--panel) 30%);
  border-bottom: 1px solid color-mix(in oklab, var(--crimson-darkest) 8%, #fff);
  margin-bottom: 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .75rem 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .625rem;
  text-decoration: none;
}

.brand svg {
  width: 48px;
  height: 48px;
  display: block;
}

.brand-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--crimson-darkest);
}

.spacer {
  flex: 1;
}

a {
  text-decoration: none;
}

.nav a.link {
  color: var(--crimson-dark);
  padding: .5rem .75rem;
  border-radius: .625rem;
  font-weight: 700;
}

.nav a.link:hover {
  background: color-mix(in oklab, var(--panel) 60%, #fff);
}

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: 0.5;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--crimson-dark);
  border-radius: 3px;
  transition: transform .3s ease, opacity .3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-inner {
    position: relative;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
    z-index: 1100;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-top: 1px solid color-mix(in oklab, var(--crimson-darkest) 8%, #fff);
    display: none;
    box-shadow: var(--soft-shadow);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: .75rem 0;
    width: 100%;
  }
}

/* HERO */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  font-size: .8rem;
  color: var(--crimson-dark);
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  line-height: 1.1;
  color: var(--crimson-darkest);
  font-size: clamp(2.6rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.hero p.lede {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 60ch;
  text-align: center;
}

.hero-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo svg {
  width: 100%;
  max-width: 480px;
  height: auto;
}

@media (max-width: 960px) {
  /* Center hero buttons on mobile */
  .hero .cta-row {
    justify-content: center;
  }
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 2rem;
  }

  .hero-logo {
    margin-top: 2rem;
  }
}

/* BUTTONS */
.btn {
  appearance: none;
  border: none;
  cursor: pointer;
  padding: .85rem 1.1rem;
  border-radius: .75rem;
  font-weight: 800;
  letter-spacing: .2px;
  transition: transform .06s ease, box-shadow .2s ease;
}

.btn-primary {
  background: linear-gradient(90deg, var(--crimson-dark), var(--crimson-lightest));
  color: #fff;
  box-shadow: var(--soft-shadow);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(161,29,43,.25);
}

.btn-outline {
  background: #fff;
  color: var(--crimson);
  border: 2px solid color-mix(in oklab, var(--crimson) 35%, #fff);
}

.btn-outline:hover {
  box-shadow: var(--ring);
}

.cta-row {
  display: flex;
  gap: .75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

/* SECTIONS */
.section {
  padding: 2.5rem 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  color: var(--crimson-darkest);
  margin: 0 0 1rem;
  text-align: center;
}

.kicker {
  color: var(--muted);
  margin-bottom: 1.2rem;
  text-align: center;
}

.desc {
  margin-bottom: 1.2rem;
}

.about {
  background: linear-gradient(180deg, var(--crimson), var(--crimson-dark));
  color: #fff;
  box-shadow: var(--soft-shadow);
}

.about h2,
.about .kicker {
  color: #fff;
}

.venue {
  background: linear-gradient(180deg, var(--panel), #fff 85%);
  border-top: 1px solid color-mix(in oklab, var(--crimson-darkest) 8%, #fff);
  border-bottom: 1px solid color-mix(in oklab, var(--crimson-darkest) 8%, #fff);
}

.structure {
  background: linear-gradient(180deg, #fff, var(--panel) 85%);
  justify-items: center;
}

.about .container {
  border-radius: 18px;
  padding: 1.4rem 1.4rem 1rem;
  box-shadow: var(--soft-shadow);
}

/* TRACKS / THEMES */
.tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.track-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.1rem 1.1rem .95rem;
  border: 1px solid color-mix(in oklab, var(--crimson-darkest) 10%, #fff);
  box-shadow: var(--soft-shadow);
}

.track-card h3 {
  margin: .3rem 0 .3rem;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--crimson-dark);
}

.badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(90deg, var(--crimson-dark), var(--crimson-lightest));
  padding: .25rem .5rem;
  border-radius: .5rem;
}

/* SPEAKERS / COMMITTEE */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) and (max-width: 1023px) {
  .speakers-grid > :last-child {
    grid-column: 1 / -1;
    justify-self: center;
  }
}

.committee_member,
.speaker {
  background: #fff;
  border: 1px solid color-mix(in oklab, var(--crimson-darkest) 10%, #fff);
  border-radius: 16px;
  padding: .9rem;
  box-shadow: var(--soft-shadow);
}

.committee_member {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: .8rem 1rem;
  align-items: start;
}

.speaker {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.committee_member {
  cursor: pointer;
  transition: transform 0.06s ease, box-shadow 0.2s ease;
}

.committee_member:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(161, 29, 43, 0.25);
  background: color-mix(in oklab, var(--panel) 70%, #fff);
}

.avatar {
  width: 64px;
  height: 64px;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.speaker h4 {
  margin: 0;
  font-weight: 800;
  color: var(--crimson-darkest);
}

/* Bigger centered avatar */
.speaker .avatar {
  width: 144px;        /* 2x the current 64px */
  height: 144px;
  margin-bottom: 0.75rem;
}

.speaker-name {
  margin: 0;
}

/* Company stays same font, centered */
.speaker-org {
  margin-top: 0.1rem;
  color: var(--muted);
}

/* Bio spacing and alignment */
.speaker-bio {
  margin-top: 1rem;
  text-align: left;    /* readable paragraphs */
  width: 100%;
}

/* Force committee to be 3 columns by allowing columns to shrink */
#committee {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

/* IMPORTANT: allow grid items to shrink inside columns */
#committee > * {
  grid-column: auto !important;
  justify-self: stretch;
  min-width: 0;
}

/* Mobile single column */
@media (max-width: 600px) {
  #committee {
    grid-template-columns: 1fr;
  }
}

/* FOOTER */
footer {
  border-top: 1px solid color-mix(in oklab, var(--crimson-darkest) 8%, #fff);
  background: color-mix(in oklab, #fff 70%, var(--panel) 30%);
  padding: 1.2rem 1rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  padding-top: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.footer-brand svg {
  width: 32px;
  height: 32px;
}

.copyright {
  color: var(--muted);
  font-size: .9rem;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.55);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 1.5rem;
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
  width: 90%;
  max-width: 520px;
}

.modal-content h3 {
  font-family: "Playfair Display", serif;
  color: var(--crimson-darkest);
  margin-top: 0;
}

.close {
  color: var(--muted);
  float: right;
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: var(--crimson);
}

/* REGISTRATION */
.registration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: start;
  margin-top: 1.5rem;
}

.registration-column {
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--soft-shadow);
  border: 1px solid color-mix(in oklab, var(--crimson-darkest) 8%, #fff);
}

/* TOPICS LIST */
.topics-list {
  columns: 4;
  column-gap: 2rem;
  list-style-type: disc;
  padding-left: 1.5rem;
  font-size: 1rem;
  margin-top: 1rem;
}

.topics-list li {
  margin-bottom: .4rem;
  break-inside: avoid;
  color: var(--text);
}

.topics-list li::marker {
  color: var(--crimson);
}

@media (max-width: 900px) {
  .topics-list {
    columns: 2;
  }
}

@media (max-width: 600px) {
  .topics-list {
    columns: 1;
  }
}

/* Parent wrapper: two stacked rows */
.logo-wrapper {
  display: grid;
  /*row-gap: 1.5rem;*/
  margin-top: 1.5rem;
  justify-items: center;  /* centers both rows */
  padding: 0 1rem;        /* prevents overflow on mobile */
}

/* Row 1: the wide logo centered */
.logo-wide {
  display: flex;
  justify-content: center;
  width: 100%;
  min-width: 0;
}
.logo-wide a {
  display: inline-flex;        /* shrink-wrap anchor */
  width: max-content;          /* do NOT stretch */
  max-width: 100%;             /* responsive */
  min-width: 0;
}
.logo-wide img {
  height: 60px;
  width: auto;
  min-width: 0;
  max-width: 100%;             /* allows scaling on small screens */
  object-fit: contain;
  opacity: .85;
  transition: opacity .2s ease, filter .2s ease;
}
/* Row 2: exactly 5 logos in one row */
.logo-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
  min-width: 0;
  justify-items: center;
}

.logo-row img {
  min-width: 0;
  width: 100%;          /* allow shrink */
  max-width: 100%;      /* prevents images from forcing the grid wider */
  height: auto;
  object-fit: contain;    /* optional to control vertical size */
  opacity: .85;
  transition: opacity .2s ease, filter .2s ease;
}

.logo-row img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.logo-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

/* PROGRAM TABS */
.tabs {
  display: flex;
  gap: .5rem;
  margin-bottom: 1rem;
}

.tab-button {
  flex: 1;
  padding: .75rem 1rem;
  font-weight: 700;
  border: 1px solid color-mix(in oklab, var(--crimson-darkest) 15%, #fff);
  border-radius: .5rem .5rem 0 0;
  background: var(--panel);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.tab-button:hover {
  background: color-mix(in oklab, var(--panel) 60%, #fff);
}

.tab-button.active {
  background: linear-gradient(90deg, var(--crimson-dark), var(--crimson-lightest));
  color: #fff;
  border-bottom: 1px solid transparent;
}

.tab-content {
  display: none;
  background: #fff;
  border: 1px solid color-mix(in oklab, var(--crimson-darkest) 10%, #fff);
  border-radius: 0 0 .5rem .5rem;
  padding: 1.25rem;
  box-shadow: var(--soft-shadow);
}

.tab-content.active {
  display: block;
}

.tab-content ul {
  list-style: none;
  padding: 0;
}

.tab-content li {
  margin: .5rem 0;
  color: var(--muted);
}

.tab-content b {
  color: var(--crimson-darkest);
}

.tab-sub {
  display: block;
  white-space: nowrap;
}

/* VENUE LAYOUT */
.venue-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.venue-photo {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--soft-shadow);
  object-fit: cover;
}

.venue-text p {
  margin-bottom: 1rem;
  color: #fff;
}
.venue-jump a {
  padding: .35rem .75rem;
  border-radius: .5rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: #fff;                       /* high contrast */
  background: rgba(255,255,255,0.12);/* faint pill so it looks clickable */
  transition: background .2s ease, color .2s ease;
}

.venue-jump a:hover {
  background: rgba(255,255,255,0.25);/* stronger hover signal */
  color: #fff;
}


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

  .venue-photo {
    max-height: 320px;
  }
}

/* CONFERENCE STRUCTURE (SCIENCE · MEDIA · ART) */
.structure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.structure-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.2rem 1.2rem .95rem;
  border: 1px solid color-mix(in oklab, var(--crimson-darkest) 10%, #fff);
  box-shadow: var(--soft-shadow);
}

.structure-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(90deg, var(--crimson-dark), var(--crimson-lightest));
  padding: .25rem .55rem;
  border-radius: .5rem;
  margin-bottom: .5rem;
}

.structure-card h3 {
  margin: .3rem 0 .5rem;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--crimson-darkest);
}

.structure-desc {
  margin-bottom: .75rem;
  color: var(--muted);
  font-size: .95rem;
}

.structure-topics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .4rem 2rem;
  list-style: none;
  padding-left: 0;
  margin: .5rem 0 0;
}

.structure-topics li {
  break-inside: avoid;
  margin-bottom: .4rem;
  font-size: .95rem;
  color: var(--text);
  position: relative;
  padding-left: 1rem;
}

.structure-topics li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55rem;
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: var(--crimson-dark);
}

/* Anchor scroll offset under sticky nav */
section {
  scroll-margin-top: 80px;
}

.nav-dropdown {
  display: flex;
  align-items: center;
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  color: var(--crimson-dark);
  padding: .5rem .75rem;
  border-radius: .625rem;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .25rem;

  /* key fix */
  position: relative;
}

.dropdown-toggle:hover {
  background: color-mix(in oklab, var(--panel) 60%, #fff);
}

.dropdown-toggle::after {
  content: "▾";
  font-size: .7rem;
  margin-left: .15rem;
}

.dropdown-menu {
  position: absolute;
  left: 0;                 /* now anchors to the toggle */
  top: calc(100% + 4px);   /* right below the toggle */
  background: #fff;
  border: 1px solid color-mix(in oklab, var(--crimson-darkest) 10%, #fff);
  box-shadow: var(--soft-shadow);
  border-radius: .5rem;
  padding: .5rem 0;
  display: none;
  min-width: 180px;
  z-index: 999;
}

.dropdown-menu a {
  display: block;
  padding: .5rem 1rem;
  color: var(--crimson-dark);
}

.dropdown-menu a:hover {
  background: color-mix(in oklab, var(--panel) 60%, #fff);
}

/* mobile fixes */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    border: none;
    box-shadow: none;
    padding-left: 1rem;
  }

  .dropdown-toggle {
    width: 100%;
    justify-content: flex-start;
  }
  .nav-dropdown {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .structure-topics {
    grid-template-columns: repeat(2, 1fr);
  }
}

.section ul:not(.topics-list):not(.structure-topics) {
  padding-left: 1.2rem;
  margin-left: 0;
}

/* Global link styling */
a {
  color: #3D7AB8;
}

a:hover {
  color: var(--crimson-dark);
}

.institution-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 100px;
  gap: .8rem;
  align-items: center;
  padding: 1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid color-mix(in oklab, var(--crimson-darkest) 10%, #fff);
  box-shadow: var(--soft-shadow);
  cursor: pointer;
  transition: transform .06s ease, box-shadow .2s ease;
}

.institution-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(161, 29, 43, 0.25);
}

.institution-card h4 {
  margin: 0;
  font-weight: 800;
  color: var(--crimson-darkest);
}

.institution-logo {
  width: 100%;
  height: 100px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
}
.institution-full {
  background: #fff;
  border: 1px solid color-mix(in oklab, var(--crimson-darkest) 10%, #fff);
  box-shadow: var(--soft-shadow);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.5rem;
}

.institution-full h3 {
  font-family: "Playfair Display", serif;
  color: var(--crimson-darkest);
  margin: 1rem 0 .75rem;
}

.institution-full p {
  color: var(--text);
  margin: 0 0 1rem;
  line-height: 1.6;
}

.institution-logo {
  width: 100%;
  height: 110px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

#key-topics {
  text-align: center;
}

@media (max-width: 480px) {
  .logo-row img {
    max-height: 40px;
  }
}
@media (max-width: 600px) {
  #partners.section {
    padding-left: 0;
    padding-right: 0;
  }
}

.submission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.col-block {
  background: #fff;
  border: 1px solid color-mix(in oklab, var(--crimson-darkest) 10%, #fff);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  box-shadow: var(--soft-shadow);
}

@media (min-width: 850px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.getting-here-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 1.5rem;
}

.gh-map img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--soft-shadow);
}

@media (max-width: 800px) {
  .getting-here-layout {
    grid-template-columns: 1fr;
  }
}
.building-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 1.5rem;
}

.building-photo img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--soft-shadow);
}

@media (max-width: 800px) {
  .building-layout {
    grid-template-columns: 1fr;
  }
}
/* Vertically center text next to images on desktop */
.venue-layout,
.building-layout,
.getting-here-layout {
  align-items: center;
}

@media (max-width: 800px) {
  /* Mobile should stack and not vertically center */
  .venue-layout,
  .building-layout,
  .getting-here-layout {
    align-items: start;
  }
}
.institution-multi-logos .institution-logo {
  height: 110px;      /* match original */
  width: auto;        /* let width scale naturally */
  flex: 0 0 auto;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.footer-contact {
  text-align: center;
  color: var(--muted);
  font-size: .95rem;
}

.footer-contact a {
  color: var(--crimson-dark);
  font-weight: 700;
}

.footer-contact a:hover {
  color: var(--crimson);
}
/* Fix venue jump buttons on mobile */
@media (max-width: 600px) {
  .venue-jump {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
  }

  .venue-jump a {
    display: block;
    width: 100%;
    max-width: 260px;
    text-align: center;
    white-space: nowrap;
    padding: .5rem 1rem;
    border-radius: .75rem;
  }
}
/* Slight spacing tuning for venue tabs */
.how-tabs {
  margin-bottom: 1rem;
}
/* Fix weird indentation after lists inside tabs */
.tab-content p {
  margin-left: 0;
  padding-left: 0;
}

.hero > div:first-child {
  text-align: center;
  justify-self: center;
}
.hero > div:first-child .cta-row {
  justify-content: center;
}
.contact-email {
  color: #fff !important;               /* fully visible on the crimson gradient */
  font-weight: 700;
  text-decoration: underline;
}

.contact-email:hover {
  color: #ffe2e2 !important;            /* bright, clear hover color */
}

.footer-social {
  display: flex;
  gap: 0.9rem;
  margin: 0.9rem 0;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--crimson-darkest) 10%, #fff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--crimson-darkest);
  font-size: 1.1rem;
  transition: background 0.15s ease, transform 0.06s ease;
}

.footer-social a:hover {
  background: var(--crimson-darkest);
  color: #fff;
  transform: translateY(-1px);
}

.price-eur {
  margin-left: .5rem;
  font-weight: 700;
  color: var(--crimson);
  white-space: nowrap;
}
