:root {
  /* === Gastro Abu Dhabi 2026 brand palette (from key visual) === */
  --brand-cyan: #189AD6;          /* primary  */
  --brand-cyan-dark: #127BAE;     /* hover    */
  --brand-cyan-light: #4CAEDE;
  --brand-navy: #16478A;          /* secondary */
  --brand-navy-dark: #0E2F5C;
  --brand-ice: #EDF7FB;           /* tint bg  */
  --brand-ice-2: #CBE7F5;
  --brand-eyebrow: #0099CC;   /* hero eyebrow */
  --brand-band: #008AD8;      /* CTA band */
  --brand-deep: #003E60;      /* CTA button */

  /* Legacy aliases remapped to brand palette */
  --primary-teal: var(--brand-cyan);
  --primary-dark-blue: var(--brand-navy);
  --secondary-blue: var(--brand-cyan-light);
  --light-bg: var(--brand-ice);
  --light-gray: #5A6B7B;
  --dark-text: #10233D;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

p {
  margin: unset !important;
  margin-bottom: unset !important;
}

i {
  line-height: unset !important;
}
a {
    color: var(--color-gray-light);
    text-decoration: none;
}
ul li {
    list-style: none;
}
/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-text);
}

.text-teal {
  color: var(--primary-teal) !important;
}

.text-gray {
  color: var(--light-gray) !important;
}

.cal-date {
  background-color: var(--primary-teal) !important;
  padding: 1px 8px 1px 11px;
  color: #ffff;
  font-weight: 600;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.show-for-large {
  display: block;
}

.text-primary-blue {
  color: var(--primary-dark-blue) !important;
}

.text-dark {
  color: var(--dark-text) !important;
}

.text-muted {
  color: #000000 !important;
}

.timer_gutter {
  margin: 0px 0px 0 50px;
}

/* Navigation */
.navbar-brand {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
}

.navbar-brand sup {
  font-size: 0.7em;
}

.nav-link {
  color: #16478A !important;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-teal) !important;
}

.btn-teal {
  background-color: var(--primary-teal);
  border-color: var(--primary-teal);
  color: white;
  font-weight: 600;
  padding: 8px 24px;
  font-size: 14px;
}

.btn-teal:hover {
  background-color: #127BAE;
  border-color: #127BAE;
  color: white;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 8px;
}

.dropdown-item:hover {
  background-color: #EDF7FB;
  color: var(--primary-teal);
}

/* Hero Section */

/* Countdown Section */
.countdown {
  display: flex;
  justify-content: start;
  gap: 25px;
}

.countdown-group {
  display: flex;
  gap: 4px;
}

.countdown-item {
  background: linear-gradient(135deg, #16478A, #189AD6);
  color: #fff;
  border-radius: 8px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 58px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#event-happening {
  display: none;
}

#event-happening.show {
  background: linear-gradient(135deg, #16478A, #189AD6);
  color: #fff;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  display: none;
  border-radius: 8px;
}

.happening-now-text {
  color: #fff;
  text-align: center;
}

.countdown-label {
  font-size: 18px;
  text-transform: uppercase;
  margin-top: 8px;
  letter-spacing: 1px;
  font-weight: 700;
  color: #189AD6;
}

.countdown-sep {
  position: relative;
  width: 10px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
}

.countdown-sep::before,
.countdown-sep::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: #0d5a8f;
  border-radius: 2px;
}

.countdown-sep::before {
  top: 22px;
  /* upper square */
}

.countdown-sep::after {
  bottom: 0;
  /* lower square */
}

/* Added CME badge styling */
.cme-badge {
  display: flex;
  align-items: center;
}

.cme-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd700 0%, #4CAEDE 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #333;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* Welcome Section */
.welcome-section {
  background-color: #fff;
  padding: 60px 0;
}

.section_title {
  font-size: 34px;
  font-weight: 700;
}

.welcome-section h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--primary-dark-blue);
  font-weight: 600;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-dark-blue) 100%);
  padding: 60px 0;
  color: white;
}

.stats-section h2 {
  color: var(--primary-teal);
  font-size: 48px;
  font-weight: 700;
}

.stats-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Why Attend Section */
.why-attend-section {
  background-color: #fff;
  padding: 60px 0;
}

.why-attend-section .list-unstyled li {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

.why-attend-section svg {
  color: var(--primary-teal);
}

/* Who Should Attend Section */
.who-attend-section {
  background-color: var(--light-bg);
  padding: 50px 0 120px 0;
     padding-bottom: 50px;
}

.who-attend-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-teal);
  margin-bottom: 5px;
}

.attendee-circle svg {
  stroke: white;
}

.who-attend-section h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-text);
  margin-top: 10px;
   
}

/* Need More Info Section */
.need-info-section {
  background: var(--brand-band);
  padding: 60px 0;
}

.need-info-section h1,
.need-info-section h2 {
  color: white;
  font-size: 38px;
  font-weight: 700;
}

.btn-navy {
  background-color: var(--primary-dark-blue);
  border-color: var(--primary-dark-blue);
  color: white;
  font-weight: 700;
  font-size: 20px;
  padding: 21px 40px;
  letter-spacing: 0.5px;
  border-radius: 40px !important;
}

/* Venue Section */
.venue-section {
  background-color: #fff;
  padding: 60px 0;
}

.venue-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.venue-section h4 {
  font-size: 20px;
  font-weight: 700;
}

/* Discover Al Ain Section */
.discover-section {
  background-color: var(--light-bg);
  padding: 60px 0;
}

/* Footer */
.footer-section {
  color: #000000;
}

.footer-section .text-white {
  color: white;
}

.footer-section h5 {
  color: white;
  font-weight: 700;
  font-size: 16px;
}

.footer-section p {
  font-size: 14px;
  color: #999;
  margin-bottom: 5px;
  padding-top: 15px;
}

.footer-section strong {
  color: #000;
}

.footer-section hr {
  opacity: 0.2;
}

.footer-section sup {
  font-size: 0.7em;
}

.footer-section i {
  font-size: 12px;
}

.footer-section iframe {
  width: 55vh;
  height: 150px;
  border: none;
  /* optional: removes default border */
  display: block;
  /* ensures no inline spacing issues */
}

#welcome img {
  width: 180px;
}

.js .fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.cme-logo {
  width: 100%;
  max-width: 135px;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 16px rgba(212, 160, 23, .30));
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), filter .3s ease;
}
.cme-logo:hover {
  transform: rotate(-6deg) scale(1.06);
  filter: drop-shadow(0 10px 24px rgba(212, 160, 23, .45));
}

.h-hide {
  display: none !important;
}

.h-show {
  display: block !important;
}

/* comitter css */
.team-card {
  text-align: center;
  border: none;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  font-size: 13px;
 
}

#comittee-team .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

}

#comittee-team #row-2 .card-body,
#comittee-team #row-3 .card-body {
  height: 244px;
}

#comittee-team #row-4 .card-body {
  height: 350px;
}

.card_cotent {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.team-card img {
  width: 230px;
  height: 230px;
  object-fit: cover;
  border-radius: 50%;
 /* margin-bottom: 15px;*/
}

.team-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary-dark-blue);
}

.team-title,
.team-member,
.team-assignment {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 10px;
}

.btn-profile {
  font-size: 0.85rem;
  padding: 6px 16px;
}

#comittee-team a {
  background-color: var(--primary-dark-blue);
  color: #EDF7FB;
  font-size: 14px;
}

#comittee-team a:hover {
  background-color: #EDF7FB;
  color: var(--primary-dark-blue);
}

#PartnerLogo{
	padding: 40px 0;
}
#PartnerLogo h2{
	color:var(--secondary-blue);
	margin-bottom: 10px;
	font-weight: bold;
}

  .logo-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px; /* Adjust space between logos */
      padding: 10px 20px 30px;
    }
    .logo-box {
      width: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #eee;
      padding: 10px;
      background-color: #fff;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      border-radius: 6px;
    }

    .logo-box img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }
/*Contact Us*/
.ContactUs{
	
}
.ContactUs .container{
	max-width: 1100px;
}
.ContactUs ul{
	margin: 20px 0;
	padding: 0;
}
.ContactUs ul li{
	margin: 10px 0;
	padding: 0;
}
.login-form {
    background: #fff;
	padding: 2em 1em;
}
.login-form h2 {
    font-size: 2em;
    text-transform: capitalize;
	    color: var(--color-gary-dark);;
}
.login-form p {
    font-size: .95em;
	color: var(--color-gary-light);;
    line-height: 2em;
}
.login-form span {
    width: 75%;
    height: 1px;
    display: block;
    background: var(--color-primary-dark);
    margin: 1em 0;
}
.login-form h4 {
	font-family: "Exo", sans-serif;
    font-size: 16px;
    text-transform: capitalize;
    margin-bottom: .2em;
	    color: var(--color-gary-dark);
}
.login-form input[type="text"] {
    padding: .8em 4em .8em 1em;
    width: 100%;
    margin-bottom: 1em;
    border: 1px solid#CECCCC;
	outline: none;
	color: #555;
}
.login-form input[type="email"] {
    padding: .8em 4em .8em 1em;
    width: 100%;
    margin-bottom: 1em;
    border: 1px solid#CECCCC;
    outline: none;
    color: #555;
}

.login-form input[type="text"]:hover {
    border: 1px solid #4CAEDE;
}
.login-form  textarea {
    width: 100%;
    height: 120px;
    outline: none;
	resize: none;
	margin-bottom: 1em;
	border: 1px solid #CECCCC;
	padding: .8em 4em .8em 1em;
	font-size: 1em;
	color: #555;
}
::-webkit-input-placeholder{
color:#C3C3C3 !important;
    font-family: 'Josefin Sans', sans-serif;
}
.login-form textarea:hover {
    border: 1px solid #4CAEDE;
}
.login-form input[type="submit"] {
    font-size: 1em;
    padding: .8em 1em;
    border: none;
    text-transform: capitalize;
    outline: none;
    background: #189AD6;
    color: #fff;
    cursor: pointer;   
	width: 56%;
	font-family: 'Josefin Sans', sans-serif;
	    border-bottom: 2px solid var(--color-primary-dark);
}
.login-form input[type="submit"]:hover {
    background: var(--color-primary-dark);
	border-bottom: 2px solid var(--color-primary);
}
.input-group {
  position: relative;
  margin-bottom: 15px;
}
/*Agenda Page*/
.agenda-img {
    width: 100%;
    max-width: 1500px;
    cursor: pointer;
    padding: 5px;
    margin: 5px auto; /* Center the image */
    object-fit: cover;
    display: block;
 }
        #popup {
            display: none;
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0,0,0,0.8);
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }
        #popup img {
            max-width: 90%;
            max-height: 90%;
            box-shadow: 0 0 10px #fff;
        }

.agenda-container .item h2 {
    font-family: "Exo", Sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background: #127BAE;
    padding: 4px 0;
}
    .tabs { display: flex; gap: 10px; margin-bottom: 25px; justify-content: center; padding-left: 0rem; }
    .tab-button { padding: 10px 20px; background: #e0e0e0; border-radius: 30px; cursor: pointer; font-weight: 600; color: #444; transition: .3s; user-select: none; }
    .tab-button.active { background: var(--color-primary-dark); color: #fff; box-shadow: 0 0 10px rgba(0,0,0,0.4); }
    .tab-content2 { display: none; }
    .tab-content2.active { display: block; }
    .agenda-container { background: #fff; border-radius: 15px; box-shadow: 0 0 10px #ddd; padding: 15px; margin-bottom: 20px; }
    .session-item { display: flex; border: 1px solid #ddd; border-bottom-right-radius: 15px; border-bottom-left-radius: 15px; overflow: hidden; margin-bottom: 15px; background: #fff; }
    .time-block { background: #EDF7FB; padding: 20px 15px; width: 100px; text-align: center; font-weight: 600; color: #555; border-right: 1px solid #ddd; display: flex; flex-direction: column; justify-content: center; font-size: 14px; }
    .time-block span { display: block; margin-bottom: 8px; }
    .time-block .line { height: 2px; width: 30px; background: #189AD6; margin: 0 auto 8px; border-radius: 2px; }
    .session-details { flex: 1; /*padding: 15px 20px;*/ display: flex; flex-direction: column; gap: 10px; }
	.session-details h3{
		    background-image: radial-gradient(at center center, var(--color-primary) 0%, #127BAE 100%);
    width: 100%;
    display: block;
    padding: 6px;
    text-align: center;
    color: #fff;
    font-size: 28px;
	text-transform: uppercase;
	}
    .session-details .row { display: flex; flex-wrap: wrap; gap: 20px; }
	.session-details .item h3{font-size: 24px; font-weight: bold}
    .session-details .item { min-width: 140px; font-size: 14px; font-weight: 600; color: #222; }
    .session-details .label { font-weight: 700; color: #999; margin-right: 6px; text-transform: uppercase; font-size: 11px; }
    .speaker-inline { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
    .speaker-thumb { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; cursor: pointer; border: 2px solid #ccc; }
    .speaker-info { color: #444; line-height: 1.2; color: var(--color-primary-dark) }
	.speaker-info small{color:var(--color-primary)}
    .details-btn { background: #189AD6; color: white; padding: 10px 25px; font-weight: 700; border-radius: 30px; border: none; cursor: pointer; align-self: flex-start; transition: .3s; font-size: 14px; margin-top: 10px; }
    .details-btn:hover { background: #e6398d; }
    .summary { margin: 10px 0; font-style: italic; color: #555; }
	.topic {background: #EDF7FB; width: 100%; padding: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; border: 1px solid #ddd; border-bottom: 0;}
	a.DwnFA{background-color: var(--color-primary-dark); border-color: #127BAE}
	.summary {
    margin: 10px 0;
    font-style: italic;
    /* color: #555; */
    font-size: 18px;
    font-weight: 600;
    padding: 10px;
    text-align: center;
}

    /* Modal */
    #speakerModal { display: none; position: fixed; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.7); justify-content: center; align-items: center; z-index:9999; }
    #speakerModal .modal-content { background:#fff; padding:20px; max-width:400px; border-radius:10px; text-align:center; position: relative; }
    #speakerModal .modal-content span { position:absolute; top:10px; right:15px; cursor:pointer; font-size:20px; }
    #speakerModal img { width:120px; height:auto; border-radius:8px; margin-bottom:15px; }

    @media (max-width:600px) {
      .session-item { flex-direction: column; }
      .time-block { width:100%; border-right:none; border-bottom:1px solid #ddd; }
      .speaker-inline { flex-direction: column; align-items: flex-start; }
    }
/*Abstracts*/
button.accordion-button {
    background: var(--color-primary-dark) !important;
    color: #fff !important;
    font-size: 18px;
    font-weight: 700;
}
a.btn.btn-primary.my-3 {
    background: var(--color-secondary);
    font-family: "Exo", sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 28px;
    margin-top: 30px !important;
    color: #fff;
    border-radius: 50px;
    border: 1px solid var(--color-secondary);
}
a.btn.btn-primary.my-3:hover {
	background: var(--color-primary-dark);
}
.accordion-body ul li{
        list-style: revert-layer;
}
a.btn.btn-outline-dark:hover {
    background: var(--color-primary);
}
.input-group i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}

.input-group input,
.input-group textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
 /* Style for disabled submit button */
  #submitBtn:disabled {
    background-color: #ccc;      /* light gray background */
    color: #666;                 /* darker gray text */
    cursor: not-allowed;         /* show not-allowed cursor */
    opacity: 0.6;                /* slightly transparent */
  }

  #submitBtn:not(:disabled):hover {
    background-color: #218838; /* darker green on hover */
  }
/*Venue*/
#testMap{
	height: 350px !important;
	border: 3px dashed var(--color-primary) !important;
    box-shadow: 4px 4px 13px 0px rgba(0, 0, 0, 0.15);
	border-radius: 6px;
	position: relative;
}
.Venue .VenueImg{
	border-radius: 5% 50% 5% 50%;
	overflow: hidden;
	border: 3px dashed var(--color-primary) !important;
}
.ratio::before{display: none;}
.Venue .VenueImg img{
	width: 100%;
	height: 100%;
}

.DwnFA {
    background: linear-gradient(135deg, #189AD6 0%, #189AD6 100%);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgb(255 255 255 / 30%);
    transition: all 0.3s;
    margin-top: 20px;
    text-decoration: none;
    display: block; /* Changed from inline-block */
    color: #fffff !important;
    text-align: center;
    margin-left: auto; /* Added for centering */
    margin-right: auto; /* Added for centering */
    width: fit-content; /* Added for proper centering */
}

.DwnFA:hover {
    background: #16478A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
    color: white !important;
    text-decoration: none;
}

/* ============================================================
   BRAND LAYER — Gastro Abu Dhabi 2026
   ============================================================ */
.text-cyan        { color: var(--brand-cyan) !important; }
.text-navy        { color: var(--brand-navy) !important; }
.text-muted       { color: #5A6B7B !important; }
.bg-ice           { background: var(--brand-ice) !important; }
.bg-brand-gradient{ background: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-navy) 100%) !important; }

.welcome-section  { background: linear-gradient(180deg, #FFFFFF 0%, var(--brand-ice) 100%); }
.who-attend-section { background: var(--brand-ice); }

/* Primary CTA — high contrast, obvious affordance */
.btn-teal {
  background: var(--brand-cyan);
  border: 2px solid var(--brand-cyan);
  color: #fff !important;
  font-weight: 600;
  letter-spacing: .3px;
  border-radius: 999px;
  padding: .75rem 2rem;
  box-shadow: 0 6px 18px rgba(24,154,214,.35);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn-teal:hover {
  background: var(--brand-navy);
  border-color: var(--brand-navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(22,71,138,.38);
}
.btn-teal:focus-visible {
  outline: 3px solid var(--brand-cyan-light);
  outline-offset: 3px;
}

/* Countdown / CME */
.timer_gutter .time-box, .countdown-box {
  background: var(--brand-cyan);
  color: #fff;
  border-radius: 12px;
}
.cal-date { background-color: var(--brand-cyan) !important; }

/* Who-should-attend icon circles */
.attendee-circle {
  width: 118px; height: 118px;
  margin-inline: auto;
  display: flex; align-items: center; justify-content: center;
  border-radius: 30px;
  background: var(--brand-cyan);
  box-shadow: 0 6px 16px rgba(24,154,214,.30);
  transition: transform .2s ease;
}
.attendee-circle i {
  font-size: 2.5rem;
  color: #fff;
  line-height: 1;
}
.attendee-circle:hover { transform: translateY(-4px) scale(1.04); }
.attendee-item h5 {
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.3;
  margin-top: .35rem;
  /* Reserve enough lines that every label block is the same height */
  min-height: calc(2 * 1.3em);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  text-wrap: balance;
}

/* Cards */
.team-card, .card {
  border: 1px solid var(--brand-ice-2);
  border-radius: 16px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 14px 34px rgba(22,71,138,.14); }

/* Nav */
.navbar .nav-link { color: var(--brand-navy) !important; font-weight: 500; }
.navbar .nav-link:hover,
.navbar .nav-item.active > .nav-link { color: var(--brand-cyan) !important; }

.footer-section    { background: #fff; color: var(--dark-text); }
@media (prefers-reduced-motion: reduce) {
  .attendee-circle, .team-card, .btn-navy { transition: none; }
}

/* Soft brand glow behind the cut-out */

/* Tablet: reduce the bleed */
@media (max-width: 991.98px) {
  
  
}

/* Mobile: no bleed — center it, keep it from causing x-overflow */
@media (max-width: 575.98px) {
  
  
  
}

/* ============================================================
   HERO — key visual bleeds bottom-left, copy + cyan pills right
   ============================================================ */
body { overflow-x: clip; }

.hero-section {
  padding-top: 2rem;
  overflow-x: clip;
}

.hero-box {
  position: relative;
  overflow: hidden;                 /* crops the visual at the box edge */
  border-radius: 28px;
  /* keep the crop glued to the rounded shape in every engine */
  -webkit-mask-image: -webkit-radial-gradient(#fff, #000);
  transform: translateZ(0);
  padding: 0;
  background:
    radial-gradient(120% 90% at 85% 15%, #FFFFFF 0%, var(--brand-ice) 45%, var(--brand-ice-2) 100%);
  box-shadow: 0 18px 50px rgba(22, 71, 138, .12);
  isolation: isolate;
}

/* Faint outline motif, echoing the poster's background linework */
.hero-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 88% 22%, transparent 118px, rgba(255,255,255,.55) 119px, transparent 122px),
    radial-gradient(circle at 70% 88%, transparent 150px, rgba(255,255,255,.45) 151px, transparent 154px);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
  grid-template-areas: "visual copy";
  align-items: center;
  column-gap: 1rem;
}

/* ---------- Visual: overflow bottom + left, cropped by hero-box ---------- */
.hero-visual-col {
  grid-area: visual;
  align-self: end;
  min-width: 0;
}
.hero-visual {
  display: block;
  line-height: 0;
  margin-left: clamp(-4.6rem, -3.2vw, -1.1rem);   /* move the GI artwork a bit to the right */
  margin-bottom: clamp(-5rem, -4vw, -1.5rem); /* push past the bottom edge */
  margin-top: clamp(-3rem, -2.5vw, -1rem);
  transform: translate(14px, -22px); /* move the GI artwork slightly right and a bit higher */
}
.hero-visual-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Copy ---------- */
.hero-copy-col {
  grid-area: copy;
  min-width: 0;
  padding: clamp(2rem, 3.5vw, 3.25rem) clamp(1rem, 2vw, 1.75rem)
           clamp(1.5rem, 2.5vw, 2.25rem) 0;
  text-align: right;
  /* nudge the whole block toward the visual */
  margin-left: clamp(-3.5rem, -2.5vw, -1rem);
  font-family: "Poppins", sans-serif;
}

.hero-eyebrow {
  font-family: "Poppins", sans-serif;
  color: var(--brand-eyebrow);
  font-weight: 600;
  font-size: clamp(1.1rem, 1.75vw, 1.6rem);
  margin-bottom: .35rem;
}
.hero-title {
  font-family: "Poppins", sans-serif;
  margin-bottom: .85rem;
  line-height: 1.05;
  letter-spacing: -.5px;
  overflow-wrap: break-word;
}
.hero-title span { display: block; letter-spacing: normal; transform: none; }
.hero-title-lg {
  color: var(--brand-cyan);
  font-weight: 800;
  font-size: clamp(2.45rem, 5.1vw, 4.5rem);
}
.hero-title-sm {
  color: var(--brand-navy);
  font-weight: 500;
  font-size: clamp(2.25rem, 4.6vw, 4rem);
}
.hero-tagline {
  font-family: "Poppins", sans-serif;
  color: var(--brand-cyan);
  font-weight: 600;
  font-size: clamp(1rem, 1.45vw, 1.3rem);
  line-height: 1.5;
  margin-bottom: 1.9rem !important;
}

/* ---------- Solid cyan info pills ---------- */
.hero-pills {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  /* bleed past the copy column's right padding and the box edge */
  margin: 0 clamp(-4.5rem, -3.2vw, -1.5rem) 0 0;
}
.hero-pill {
  display: flex;
  align-items: center;
  gap: .9rem;
  width: 100%;
  max-width: 460px;
  background: var(--brand-cyan);
  color: #fff;
  border-radius: 16px 0 0 16px;
  padding: 1.2rem 2.4rem 1.2rem 1.6rem;
  text-align: left;
  box-shadow: 0 6px 18px rgba(24, 154, 214, .28);
}
.hero-pill i { font-size: 2rem; flex: 0 0 auto; }
.hero-pill span { font-family: "Poppins", sans-serif; font-size: 1.15rem; line-height: 1.3; }
.hero-pill strong { font-weight: 700; }

@media (max-width: 575.98px) {
  }

/* ---------- Tablet ---------- */
@media (max-width: 991.98px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual";
    row-gap: 0;
  }
  .hero-copy-col { text-align: center; padding: 2.25rem 1.5rem 1.5rem; margin-left: 0; }
  .hero-pills { align-items: center; margin-right: 0; }
  .hero-pill { border-radius: 16px; padding: 1.2rem 1.6rem; max-width: 430px; }
  .hero-visual { margin: 0 auto; max-width: 560px; transform: translate(10px, -14px); }
  }

/* ---------- Mobile ---------- */
@media (max-width: 575.98px) {
  .hero-box { border-radius: 20px; }
  .hero-visual { max-width: 92%; transform: translate(8px, -12px); }
  .hero-pill { width: 100%; }
  }

@media (prefers-reduced-motion: reduce) {
  .hero-visual-img { transition: none; }
}

@media (max-width: 991.98px) {
  }
@media (max-width: 575.98px) {
  }

/* ---------- Footer organisers ---------- */
.footer-orgs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 3rem 1rem 1rem;
}
.footer-org { text-align: center; }
.footer-org-label {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 700;
  font-size: .85rem;
  color: var(--brand-cyan);
  margin-bottom: 1rem;
}
.footer-org-logo {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  margin-inline: auto;
}
.footer-org a {
  display: block;
  width: 100%;
}
.footer-org-logo--mco {
  width: 100%;
  max-width: 190px;     /* wide lockup, sits smaller than the NMC logo */
  height: auto;
}

.footer-copy {
  font-family: "Poppins", sans-serif;
  color: var(--brand-cyan);
  font-size: .9rem;
}
.footer-copy sup { font-size: .65em; }

.need-info-section h2 { color: #fff; }

@media (max-width: 575.98px) {
  .footer-orgs { gap: 2rem; padding-top: 2.25rem; }
  .footer-org-logo { max-width: 70vw; }
  .footer-org-logo--mco { max-width: 55vw; }
  .footer-copy { font-size: .8rem; }
}

/* ---------- Navbar brand: NMC flower mark + conference name ---------- */
.navbar-brand {
  display: inline-flex;
  align-items: center;
  padding-block: .35rem;
  text-decoration: none;
}
.brand-mark {
  width: 190px;
  max-width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 575.98px) {
  .navbar-brand { gap: .55rem; }
  .brand-mark { width: 38px; }
  }

/* ============================================================
   WELCOME NOTE — chair's letter
   ============================================================ */
.welcome-section { padding: clamp(3rem, 6vw, 5.5rem) 0; }

.welcome-header { text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem); max-width: 68rem; margin-inline: auto; }

.welcome-kicker {
  position: relative;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 700;
  font-size: clamp(.82rem, 1.2vw, 1rem);
  color: var(--dark-text);
  padding-bottom: .85rem;
  margin-bottom: .9rem;
}
.welcome-kicker::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 46px;
  height: 3px;
  border-radius: 3px;
  background: var(--brand-cyan);
}
.welcome-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.9vw, 2.6rem);
  line-height: 1.25;
  color: var(--brand-eyebrow);
  margin: 0 auto;
  max-width: 40ch;
  text-wrap: balance;
}
.welcome-title sup { font-size: .55em; top: -.5em; }

/* Letter surface */
.welcome-letter {
  position: relative;
  max-width: 72rem;
  margin-inline: auto;
  background: #fff;
  border: 1px solid var(--brand-ice-2);
  border-radius: 20px;
  padding: clamp(1.75rem, 4vw, 3.5rem);
  box-shadow: 0 14px 44px rgba(22, 71, 138, .08);
}
/* Cyan accent rule along the top edge */
.welcome-letter::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(180px, 40%);
  height: 4px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand-navy));
}

.welcome-copy {
  max-width: none;
}
.welcome-salutation {
  font-weight: 700;
  font-size: 1.08rem !important;
  color: var(--brand-navy);
  margin-bottom: 1.5rem !important;
}

.welcome-letter p {
  font-family: "Poppins", sans-serif;
  color: #3D4B5C;
  font-size: clamp(.95rem, 1.05vw, 1.05rem);
  line-height: 1.95;
  text-align: justify;
  hyphens: auto;
  word-spacing: -.01em;
  text-align-last: left;
  margin-bottom: 1.25rem !important;
}
.welcome-letter p:last-of-type { margin-bottom: 0 !important; }
.welcome-letter sup { font-size: .6em; }

/* ---------- Signature ---------- */
.chair-signature {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  margin: clamp(2.25rem, 4vw, 3.25rem) 0 0;
  padding-top: 2rem;
  border-top: 1px solid var(--brand-ice-2);
  text-align: left;
}
.chair-photo {
  flex: 0 0 112px;          /* explicit basis — stops the flex squeeze */
  width: 112px;
  height: 112px;
  min-width: 112px;         /* belt and braces */
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 50%;
  border: 4px solid #fff;
  outline: 2px solid var(--brand-ice-2);
  box-shadow: 0 8px 24px rgba(22, 71, 138, .18);
  background: var(--brand-ice);
}
.chair-details p { margin: 0 !important; font-family: "Poppins", sans-serif; }
.chair-name {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--brand-eyebrow);
  line-height: 1.3;
  margin-bottom: .15rem !important;
}
.chair-role::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 34px; height: 2px;
  background: var(--brand-ice-2);
}
.chair-role {
  position: relative;
  font-weight: 500;
  font-size: 1rem;
  color: var(--dark-text);
  line-height: 1.4;
  padding-bottom: .5rem;
  margin-bottom: .5rem !important;
}
.chair-meta {
  font-size: .82rem;
  color: var(--light-gray);
  line-height: 1.45;
}

@media (max-width: 575.98px) {
  .welcome-letter p { text-align: left; hyphens: manual; }
  .chair-signature { flex-direction: column; align-items: center; text-align: center; gap: 1rem; }
  .chair-photo { flex: 0 0 96px; width: 96px; height: 96px; min-width: 96px; }
  .chair-role::after { left: 50%; transform: translateX(-50%); }
}

/* CTA band button — deep navy pill with a white border */
.btn-navy {
  background: var(--brand-deep);
  border: 2px solid #fff;
  color: #fff !important;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  border-radius: 999px;
  padding: .8rem 2.25rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn-navy:hover,
.btn-navy:focus {
  background: #002B44;
  border-color: #fff;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .26);
}
.btn-navy:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .7);
  outline-offset: 3px;
}
.need-info-section h2 { color: #fff; margin: 0; }

@media (prefers-reduced-motion: reduce) { .btn-navy { transition: none; } }

@media (max-width: 767.98px) {
  .need-info-section .d-flex { flex-direction: column; gap: 1.25rem; }
  .need-info-section h2 { font-size: 1.5rem; }
  .btn-navy { width: 100%; max-width: 320px; }
}

/* Long justified lines: relax slightly on mid widths */
@media (max-width: 991.98px) {
  .welcome-letter p { line-height: 1.85; }
}

/* ============================================================
   CONTACT — Get In Touch
   ============================================================ */
.contact-section { padding: clamp(3rem, 6vw, 5.5rem) 0; background: #fff; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.contact-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  color: var(--dark-text);
  margin-bottom: .5rem;
}
.contact-lede {
  font-family: "Poppins", sans-serif;
  color: var(--light-gray);
  margin-bottom: 2.25rem !important;
}

/* ---------- Fields ---------- */
.field { position: relative; margin-bottom: 1.25rem; }

.field-input {
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: var(--dark-text);
  background: #fff;
  border: 1.5px solid var(--brand-ice-2);
  border-radius: 12px;
  padding: 1rem 3rem 1rem 1.15rem;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field-input::placeholder { color: #9AA7B4; }
.field-input:hover { border-color: var(--brand-cyan-light); }
.field-input:focus {
  outline: none;
  border-color: var(--brand-cyan);
  box-shadow: 0 0 0 4px rgba(24, 154, 214, .14);
}
.field-textarea { resize: vertical; min-height: 150px; }

.field-icon {
  position: absolute;
  right: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9AA7B4;
  pointer-events: none;
  transition: color .18s ease;
}
.field-icon--top { top: 1.35rem; transform: none; }
.field-input:focus ~ .field-icon { color: var(--brand-cyan); }

/* Validation */
.field-error {
  display: none;
  font-size: .82rem;
  color: #C0392B;
  margin: .4rem 0 0 !important;
}
.field.is-invalid .field-input { border-color: #C0392B; }
.field.is-invalid .field-error { display: block; }

/* ---------- Submit ---------- */


.btn-send {
  position: relative;
  width: 100%;
  max-width: 340px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  background: var(--brand-cyan);
  border: 2px solid var(--brand-cyan);
  border-radius: 999px;
  padding: .95rem 2rem;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(24, 154, 214, .30);
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn-send:hover:not(:disabled) {
  background: var(--brand-navy);
  border-color: var(--brand-navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(22, 71, 138, .34);
}
.btn-send:focus-visible { outline: 3px solid var(--brand-cyan-light); outline-offset: 3px; }
.btn-send:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.btn-send-spinner { display: none; }
.btn-send.is-loading .btn-send-label { visibility: hidden; }
.btn-send.is-loading .btn-send-spinner {
  display: block;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin .7s linear infinite;
}
@keyframes btn-spin { to { transform: rotate(360deg); } }

.form-status { margin-top: 1rem !important; font-size: .92rem; }
.form-status.is-ok  { color: #1E7B4F; }
.form-status.is-err { color: #C0392B; }

.contact-footnote {
  margin-top: 1.75rem !important;
  font-family: "Poppins", sans-serif;
  color: var(--light-gray);
}
.contact-footnote a { color: var(--brand-cyan); text-decoration: none; font-weight: 600; }
.contact-footnote a:hover { text-decoration: underline; }

/* ---------- Aside cards ---------- */
.contact-cards { display: grid; gap: 1rem; margin: 0; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--brand-ice);
  border: 1px solid var(--brand-ice-2);
  border-radius: 16px;
  padding: 1.25rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(22,71,138,.10); }
.contact-card-icon {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: var(--brand-cyan);
  color: #fff;
  font-size: 1.1rem;
}
.contact-card-label {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--brand-navy);
  margin: 0 0 .2rem !important;
}
.contact-card a, .contact-card-value {
  font-family: "Poppins", sans-serif;
  color: var(--light-gray);
  text-decoration: none;
  margin: 0 !important;
  line-height: 1.5;
}
.contact-card a:hover { color: var(--brand-cyan); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

@media (max-width: 991.98px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 575.98px) {
  .btn-send { max-width: none; }
}
@media (prefers-reduced-motion: reduce) {
  .btn-send, .contact-card, .field-input { transition: none; }
  .btn-send.is-loading .btn-send-spinner { animation: none; }
}

/* ---------- Interior page hero + stub notice ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-navy) 100%);
  color: #fff;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  text-align: center;
}
.page-hero-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  color: #fff;
  margin-bottom: .35rem;
}
.page-hero-sub { color: rgba(255,255,255,.85); font-family: "Poppins", sans-serif; }
.page-hero-sub sup { font-size: .6em; }

/* Dropdown */
.dropdown-menu { border: 1px solid var(--brand-ice-2); border-radius: 12px; padding: .4rem; }
.dropdown-item { border-radius: 8px; font-family: "Poppins", sans-serif; font-size: .94rem; padding: .55rem .9rem; }
.dropdown-item:hover, .dropdown-item.active { background: var(--brand-ice); color: var(--brand-cyan); }

/* ---------- TBA pages ---------- */
.tba-section { padding: clamp(3rem, 7vw, 6rem) 0; background: #fff; }

.tba-card {
  max-width: 44rem;
  margin-inline: auto;
  text-align: center;
  background: var(--brand-ice);
  border: 1px solid var(--brand-ice-2);
  border-radius: 22px;
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: 0 14px 44px rgba(22, 71, 138, .07);
}
.tba-badge {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: 2px;
  color: #fff;
  background: var(--brand-cyan);
  border-radius: 999px;
  padding: .45rem 1.15rem;
  margin-bottom: 1.25rem;
}
.tba-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  color: var(--brand-navy);
  margin-bottom: .75rem;
}
.tba-text {
  font-family: "Poppins", sans-serif;
  color: var(--light-gray);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 1.5rem !important;
}
.tba-meta {
  font-family: "Poppins", sans-serif;
  font-size: .92rem;
  color: var(--brand-navy);
  font-weight: 600;
  margin-bottom: 2rem !important;
}
.tba-meta i { color: var(--brand-cyan); margin-right: .45rem; }

.tba-cta {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #fff;
  background: var(--brand-cyan);
  border: 2px solid var(--brand-cyan);
  border-radius: 999px;
  padding: .85rem 2.1rem;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(24, 154, 214, .30);
  transition: background .18s ease, transform .18s ease;
}
.tba-cta:hover {
  background: var(--brand-navy);
  border-color: var(--brand-navy);
  color: #fff;
  transform: translateY(-2px);
}
.tba-cta:focus-visible { outline: 3px solid var(--brand-cyan-light); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) { .tba-cta { transition: none; } }

/* ============================================================
   VENUE PAGE
   ============================================================ */
.venue-section { padding: clamp(3rem, 6vw, 5rem) 0; background: #fff; }

.venue-intro { text-align: center; max-width: 46rem; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); }
.venue-eyebrow {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-size: .85rem;
  color: var(--brand-eyebrow);
  margin-bottom: .6rem !important;
}
.venue-name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.2;
  color: var(--brand-navy);
  margin-bottom: 1rem;
}
.venue-name span { font-weight: 500; font-size: .72em; color: var(--brand-cyan); }
.venue-lede {
  font-family: "Poppins", sans-serif;
  color: var(--light-gray);
  line-height: 1.75;
  margin: 0 !important;
}

/* Fact cards */
.venue-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.venue-fact {
  text-align: center;
  background: var(--brand-ice);
  border: 1px solid var(--brand-ice-2);
  border-radius: 18px;
  padding: 1.75rem 1.25rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.venue-fact:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(22,71,138,.10); }
.venue-fact-icon {
  display: grid; place-items: center;
  width: 56px; height: 56px;
  margin: 0 auto 1rem;
  border-radius: 16px;
  background: var(--brand-cyan);
  color: #fff;
  font-size: 1.3rem;
}
.venue-fact-label {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: .8px;
  font-weight: 700;
  font-size: .74rem;
  color: var(--brand-navy);
  margin-bottom: .4rem !important;
}
.venue-fact-value {
  font-family: "Poppins", sans-serif;
  color: var(--light-gray);
  font-size: .95rem;
  line-height: 1.55;
  margin: 0 !important;
}
.venue-fact-value a { color: var(--brand-cyan); text-decoration: none; font-weight: 600; }
.venue-fact-value a:hover { text-decoration: underline; }

/* Map */
.venue-map {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--brand-ice-2);
  box-shadow: 0 14px 44px rgba(22, 71, 138, .10);
  line-height: 0;
}
.venue-map iframe { width: 100%; height: clamp(320px, 45vh, 460px); border: 0; display: block; }

/* Actions */
.venue-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.25rem;
}
.venue-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  padding: .85rem 2rem;
  background: var(--brand-cyan);
  border: 2px solid var(--brand-cyan);
  color: #fff;
  box-shadow: 0 6px 18px rgba(24,154,214,.30);
  transition: background .18s ease, transform .18s ease, color .18s ease;
}
.venue-btn:hover { background: var(--brand-navy); border-color: var(--brand-navy); color: #fff; transform: translateY(-2px); }
.venue-btn--ghost { background: transparent; color: var(--brand-navy); box-shadow: none; border-color: var(--brand-ice-2); }
.venue-btn--ghost:hover { background: var(--brand-ice); border-color: var(--brand-cyan); color: var(--brand-navy); }
.venue-btn:focus-visible { outline: 3px solid var(--brand-cyan-light); outline-offset: 3px; }

@media (max-width: 575.98px) {
  .venue-btn { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .venue-fact, .venue-btn { transition: none; }
}

/* Contact page map */
.contact-map {
  margin-top: 1rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--brand-ice-2);
  line-height: 0;
}
.contact-map iframe { width: 100%; height: 260px; border: 0; display: block; }

/* Without the .js flag on <html>, nothing is ever hidden.
   .active is what the IntersectionObserver adds to reveal. */

@media (prefers-reduced-motion: reduce) {
  .js .fade-in-up { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   ANIMATION LAYER — entrance + hover
   ============================================================ */

@keyframes fadeInUp   { from { opacity:0; transform: translateY(24px); } to { opacity:1; transform:none; } }
@keyframes popIn      { from { opacity:0; transform: scale(.86); }        to { opacity:1; transform:none; } }

/* Reveal driven by .fade-in-up.active (IntersectionObserver) */
.fade-in-up.active { animation: fadeInUp .7s cubic-bezier(.22,.61,.36,1) both; }

/* Hero pills lift on hover */
.hero-pill {
  transition: transform .22s cubic-bezier(.22,.61,.36,1), box-shadow .22s ease, filter .22s ease;
}
.hero-pill:hover {
  transform: translateX(-6px);
  filter: brightness(1.05);
  box-shadow: 0 12px 28px rgba(24,154,214,.42);
}

/* ---------- Countdown ---------- */
.countdown-item {
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease;
}
.countdown-item:hover { transform: translateY(-5px) scale(1.06); box-shadow: 0 10px 22px rgba(24,154,214,.35); }

/* ---------- Welcome letter ---------- */
.welcome-letter { transition: transform .3s ease, box-shadow .3s ease; }
.welcome-letter:hover { box-shadow: 0 22px 60px rgba(22,71,138,.13); }

.chair-photo { transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease; }
.chair-photo:hover { transform: scale(1.06) rotate(-2deg); box-shadow: 0 12px 30px rgba(22,71,138,.28); }

/* ---------- Who Should Attend: staggered pop-in ---------- */
.js .who-attend-section.is-visible .attendee-item {
  opacity: 0;
  animation: popIn .55s cubic-bezier(.34,1.56,.64,1) both;
}
.js .who-attend-section.is-visible .attendee-item:nth-child(1)  { animation-delay: .04s; }
.js .who-attend-section.is-visible .attendee-item:nth-child(2)  { animation-delay: .08s; }
.js .who-attend-section.is-visible .attendee-item:nth-child(3)  { animation-delay: .12s; }
.js .who-attend-section.is-visible .attendee-item:nth-child(4)  { animation-delay: .16s; }
.js .who-attend-section.is-visible .attendee-item:nth-child(5)  { animation-delay: .20s; }
.js .who-attend-section.is-visible .attendee-item:nth-child(6)  { animation-delay: .24s; }
.js .who-attend-section.is-visible .attendee-item:nth-child(7)  { animation-delay: .28s; }
.js .who-attend-section.is-visible .attendee-item:nth-child(8)  { animation-delay: .32s; }
.js .who-attend-section.is-visible .attendee-item:nth-child(9)  { animation-delay: .36s; }
.js .who-attend-section.is-visible .attendee-item:nth-child(10) { animation-delay: .40s; }
.js .who-attend-section.is-visible .attendee-item:nth-child(11) { animation-delay: .44s; }

.attendee-item {
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.attendee-circle { transition: transform .28s cubic-bezier(.34,1.56,.64,1), box-shadow .28s ease, background .28s ease; }
.attendee-item:hover .attendee-circle {
  transform: translateY(-8px) scale(1.06);
  background: var(--brand-navy);
  box-shadow: 0 14px 30px rgba(22,71,138,.34);
}
.attendee-circle i { transition: transform .28s cubic-bezier(.34,1.56,.64,1); }
.attendee-item:hover .attendee-circle i { transform: scale(1.12); }
.attendee-item h5 { transition: color .22s ease; }
.attendee-item:hover h5 { color: var(--brand-cyan); }

/* ---------- Footer / CTA ---------- */
.footer-org-logo { transition: transform .3s ease, filter .3s ease; }
.footer-org:hover .footer-org-logo { transform: scale(1.04); }

.navbar-brand .brand-mark { transition: transform .3s cubic-bezier(.34,1.56,.64,1); }
.navbar-brand:hover .brand-mark { transform: scale(1.03); }

.nav-link { position: relative; transition: color .2s ease; }


/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  .js .who-attend-section.is-visible .attendee-item,
  .fade-in-up.active { animation: none !important; opacity: 1 !important; transform: none !important; }
  .hero-pill, .countdown-item, .attendee-circle, .chair-photo,
  .footer-org-logo, .brand-mark, .nav-link::after { transition: none !important; }
}

/* ---------- Navbar Register button ---------- */
#navbarNav { align-items: center; }

.btn-register-nav {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  flex: 0 0 auto;
  align-self: stretch;              /* full height of the pill */
  padding: 0 2.5rem;
  margin: 0;
  min-height: 62px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  color: #fff !important;
  background: linear-gradient(100deg, var(--brand-cyan) 0%, var(--brand-band) 100%);
  border: 0;
  border-radius: 0 999px 999px 0;
  text-decoration: none;
  box-shadow: none;
  transition: background .2s ease;
}
.btn-register-nav:hover,
.btn-register-nav:focus {
  background: linear-gradient(135deg, var(--brand-band) 0%, var(--brand-navy) 100%);
  color: #fff !important;
}

.btn-register-nav:focus-visible {
  outline: 3px solid var(--brand-cyan-light);
  outline-offset: 3px;
}
/* no underline sweep from .nav-link rules */
.btn-register-nav::after { display: none; }

@media (max-width: 991.98px) {
  .btn-register-nav {
    display: flex;
    justify-content: center;
    align-self: auto;
    margin: 1rem 0 .5rem;
    padding: 1rem 2rem;
    border-radius: 999px;
    text-align: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .btn-register-nav { transition: none; }
}

/* Narrow columns wrap labels onto a third line */
@media (max-width: 767.98px) {
  .attendee-item h5 { min-height: calc(3 * 1.3em); }
}

/* ---------- Navbar layout: brand | centered links | Register ---------- */

.navbar-brand {
  flex: 0 0 auto;
  padding-block: .4rem;
  margin-right: 0;
}

@media (min-width: 992px) {
  #navbarNav { flex: 1 1 auto; }
  .navbar-nav { gap: .35rem; }
  .navbar-nav .nav-link { padding-inline: .85rem; white-space: nowrap; }
  .brand-mark { width: 150px; }
}

@media (max-width: 991.98px) {
  .brand-mark { width: 165px; }
  .navbar-nav { margin-block: .75rem; }
  .navbar-nav .nav-link { padding-inline: 0; }
}

/* ============================================================
   SECTION REVEALS (data-reveal) + BACK TO TOP
   ============================================================ */

/* Hidden only when JS is present; .is-visible is added by the observer */
.js .reveal { opacity: 0; will-change: opacity, transform; }
.js .reveal[data-reveal="up"]   { transform: translateY(38px); }
.js .reveal[data-reveal="down"] { transform: translateY(-28px); }
.js .reveal[data-reveal="left"] { transform: translateX(-40px); }
.js .reveal[data-reveal="right"]{ transform: translateX(40px); }
.js .reveal[data-reveal="zoom"] { transform: scale(.94); }

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity .8s cubic-bezier(.22,.61,.36,1),
              transform .8s cubic-bezier(.22,.61,.36,1);
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: clamp(1rem, 2.5vw, 2rem);
  bottom: clamp(1rem, 2.5vw, 2rem);
  z-index: 1030;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  background: var(--brand-band);
  box-shadow: 0 8px 22px rgba(0, 138, 216, .40);
  /* hidden until scrolled */
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(.85);
  transition: opacity .3s ease, visibility .3s ease,
              transform .3s cubic-bezier(.34,1.56,.64,1),
              background .25s ease, box-shadow .25s ease;
}
.back-to-top.is-shown { opacity: 1; visibility: visible; transform: none; }

.back-to-top:hover {
  background: var(--brand-navy);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(22, 71, 138, .45);
}
.back-to-top:active { transform: translateY(-1px) scale(.96); }
.back-to-top:focus-visible { outline: 3px solid var(--brand-cyan-light); outline-offset: 3px; }

.back-to-top > svg:first-of-type { width: 21px; height: 21px; position: relative; z-index: 1; }

/* Scroll-progress ring */
.back-to-top-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  pointer-events: none;
}
.back-to-top-ring circle {
  fill: none;
  stroke: rgba(255, 255, 255, .85);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 125.66;          /* 2πr, r = 20 */
  stroke-dashoffset: 125.66;         /* fully hidden at 0% */
  transition: stroke-dashoffset .12s linear;
}

@media (max-width: 575.98px) {
  .back-to-top { width: 44px; height: 44px; }
  .back-to-top > svg:first-of-type { width: 18px; height: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .back-to-top { transition: opacity .2s ease, visibility .2s ease; transform: none !important; }
  .back-to-top-ring circle { transition: none; }
}

@media (prefers-reduced-motion: reduce) { .cme-logo { transition: none; } }
@media (max-width: 575.98px) { .cme-logo { max-width: 96px; } }

/* ---------- Contact: math captcha + honeypot ---------- */
.hp-field {
  position: absolute !important;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.captcha-field { margin-bottom: 1.5rem; }
.captcha-label {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: .92rem;
  color: var(--brand-navy);
  margin-bottom: .55rem;
}
.captcha-label strong {
  display: inline-block;
  background: var(--brand-ice);
  border: 1px solid var(--brand-ice-2);
  border-radius: 8px;
  padding: .15rem .6rem;
  color: var(--brand-cyan);
  font-weight: 700;
  letter-spacing: .5px;
  user-select: none;
}
.captcha-row { display: flex; gap: .65rem; align-items: stretch; }
.captcha-input { flex: 1 1 auto; padding-right: 1.15rem !important; max-width: 200px; }

.captcha-refresh {
  flex: 0 0 auto;
  width: 52px;
  display: grid;
  place-items: center;
  background: var(--brand-ice);
  border: 1.5px solid var(--brand-ice-2);
  border-radius: 12px;
  color: var(--brand-cyan);
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .3s ease;
}
.captcha-refresh:hover { background: var(--brand-cyan); color: #fff; }
.captcha-refresh:hover i { transform: rotate(180deg); }
.captcha-refresh i { transition: transform .35s ease; }
.captcha-refresh:focus-visible { outline: 3px solid var(--brand-cyan-light); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  .captcha-refresh, .captcha-refresh i { transition: none; }
}

@media (max-width: 575.98px) {
  .captcha-input { max-width: none; }
}

/* Tagline: let it reflow naturally on narrow screens */
@media (max-width: 575.98px) {
  .hero-tagline { font-size: 1rem; margin-bottom: 1.5rem !important; }
  .hero-tagline br { display: none; }
}

/* ============================================================
   HERO VIDEO INSIDE THE GI-SHAPED ARTWORK
   ============================================================ */
.hero-box {
  background:
    radial-gradient(120% 90% at 85% 15%, #FFFFFF 0%, var(--brand-ice) 45%, var(--brand-ice-2) 100%);
}
.hero-box::after { display: block; }
.hero-grid { position: relative; z-index: 1; }

.hero-visual {
  position: relative;
  aspect-ratio: 3849 / 3721;
  overflow: visible;
  isolation: isolate;
}

/* Keep the GI-shaped mask locked to the blue outline. The video itself
   can then be repositioned and scaled inside the fixed frame without moving the mask. */
.hero-video-mask {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: url("../assets/images/gi-video-mask.png");
  mask-image: url("../assets/images/gi-video-mask.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.hero-visual-video,
.hero-visual-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% center;
  pointer-events: none;
  transform: translate(-3.4%, 3.5%) scale(0.95);
  transform-origin: center center;
}

.hero-visual-video {
  z-index: 1;
  display: block;
  background: url("../assets/videos/gastro-bg-poster.jpg") center / cover no-repeat;
  filter: saturate(1.08) contrast(1.04);
}

.hero-visual-poster {
  z-index: 0;
  opacity: 1;
  background: url("../assets/videos/gastro-bg-poster.jpg") center / cover no-repeat;
  transition: opacity .25s ease;
}

.hero-visual.video-is-playing .hero-visual-poster {
  opacity: 0;
}

.hero-visual-frame {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
  pointer-events: none;
}

.hero-visual-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 44px rgba(22,71,138,.24));
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual-poster { transition: none; }
}

/* ============================================================
   HEADER — floating pill nav with icon labels
   ============================================================ */
.navbar {
  background: transparent !important;
  box-shadow: none !important;
  padding-block: 1rem;
}
.navbar > .container {
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 34px rgba(10, 32, 60, .16);
  padding: 0 0 0 1.75rem;
  gap: 0;
}

/* ============================================================
   NAV ICONS — one geometry, one lift, hover == active
   ============================================================ */
.nav-ico {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 60px;
  gap: .3rem;
  padding: .5rem .75rem !important;
  font-size: .72rem !important;
  font-weight: 700 !important;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: var(--brand-navy) !important;
  white-space: nowrap;
  transition: color .2s ease;
}
.nav-ico:hover,
.nav-ico.active { color: var(--brand-cyan) !important; }

.nav-ico i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: var(--brand-cyan);
  border-radius: 50%;
  border: 3px solid transparent;
  background: transparent;
  transition: color .2s ease, background .25s ease, border-color .25s ease,
              transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease;
}
.nav-ico:hover i,
.nav-ico.active i {
  color: #fff;
  background: var(--brand-cyan);
  border-color: #fff;
  box-shadow: 0 4px 12px rgba(24,154,214,.40);
  transform: translateY(-20px);
}

.nav-ico:active { transform: scale(.96); }
.nav-ico:focus-visible {
  outline: 3px solid var(--brand-cyan-light);
  outline-offset: 2px;
  border-radius: 14px;
}

/* Mobile: inline rows, no lift */
@media (max-width: 991.98px) {
  .nav-ico {
    flex-direction: row !important;
    justify-content: flex-start;
    height: auto;
    gap: .75rem;
    font-size: .85rem !important;
    padding: .7rem .5rem !important;
  }
  .nav-ico i { width: 36px; height: 36px; }
  .nav-ico:hover i,
  .nav-ico.active i { transform: none; border-color: transparent; box-shadow: none; }
}


/* ---------- Scrolled: pill tightens ---------- */
.navbar.is-scrolled { padding-block: 1.1rem .5rem; }
.navbar.is-scrolled > .container {
  padding: 0 0 0 1.5rem;
  box-shadow: 0 6px 26px rgba(10, 32, 60, .22);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.navbar.is-scrolled .brand-mark { width: 155px; }
.navbar.is-scrolled .nav-ico { height: 54px; }
.navbar.is-scrolled .btn-register-nav { padding-inline: 2rem; font-size: .78rem; min-height: 54px; }

/* Dropdown parity */
.dropdown-item.active,
.dropdown-item:active {
  background: var(--brand-cyan);
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .navbar, .navbar > .container, .brand-mark,
  .nav-ico, .nav-ico i, .btn-register-nav { transition: none !important; }
  .nav-ico:hover i { transform: none; }
}




/* ============================================================
   HEADER ALIGNMENT REFINEMENT
   Consolidated override for consistent icon sizing and spacing.
   ============================================================ */
.navbar {
  padding-block: .85rem;
}

.navbar > .container {
  min-height: 72px;
  padding: 0 0 0 1.35rem;
  overflow: visible;
}

.navbar-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.navbar-brand .brand-mark {
  width: 160px;
  max-height: 46px;
  object-fit: contain;
}

.nav-ico {
  min-width: 76px;
  height: 72px;
  padding: .55rem .62rem .65rem !important;
  gap: .38rem;
  justify-content: center;
  line-height: 1.05;
  text-align: center;
}

.nav-ico i {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  font-size: 15px;
  line-height: 1;
  border: 0;
  background: #edf8fd;
  color: var(--brand-cyan);
  box-shadow: inset 0 0 0 1px rgba(24, 154, 214, .14);
  transform: none;
}

.nav-ico span {
  display: block;
  min-height: 1em;
}

.nav-ico:hover i,
.nav-ico.active i {
  color: #fff;
  background: var(--brand-cyan);
  border-color: transparent;
  box-shadow: 0 5px 12px rgba(24, 154, 214, .28);
  transform: translateY(-2px);
}

.nav-ico:active {
  transform: none;
}

.btn-register-nav {
  min-height: 72px;
  align-self: center;
  justify-content: center;
  padding-inline: 2rem;
}

@media (min-width: 992px) {
  .navbar > .container {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr) auto;
    align-items: center;
  }

  #navbarNav.collapse,
  #navbarNav.collapsing,
  #navbarNav.show {
    display: contents !important;
  }

  .navbar-nav {
    grid-column: 2;
    justify-self: center;
    align-items: center;
    gap: .1rem;
    margin: 0 !important;
  }

  .navbar-nav .nav-link {
    padding-inline: .62rem !important;
  }

  .navbar-nav .dropdown .nav-ico {
    min-width: 154px;
  }

  .btn-register-nav {
    grid-column: 3;
    border-radius: 0 999px 999px 0;
  }

  .navbar.is-scrolled {
    padding-block: .45rem;
  }

  .navbar.is-scrolled > .container {
    min-height: 64px;
    padding-left: 1.25rem;
  }

  .navbar.is-scrolled .brand-mark {
    width: 150px;
  }

  .navbar.is-scrolled .nav-ico,
  .navbar.is-scrolled .btn-register-nav {
    height: 64px;
    min-height: 64px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar > .container {
    grid-template-columns: 145px minmax(0, 1fr) auto;
    padding-left: 1rem;
  }

  .navbar-brand .brand-mark {
    width: 138px;
  }

  .nav-ico {
    min-width: 66px;
    padding-inline: .38rem !important;
    font-size: .64rem !important;
  }

  .navbar-nav .dropdown .nav-ico {
    min-width: 132px;
  }

  .btn-register-nav {
    padding-inline: 1.35rem;
    font-size: .72rem;
  }
}

@media (max-width: 991.98px) {
  .navbar {
    padding: .65rem .75rem;
  }

  .navbar > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    padding: .55rem .7rem .55rem 1rem;
    border-radius: 28px;
  }

  .navbar-brand .brand-mark {
    width: 150px;
    max-height: 42px;
  }

  .navbar-toggler {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #edf8fd;
    box-shadow: inset 0 0 0 1px rgba(24, 154, 214, .16);
  }

  .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(24, 154, 214, .2);
  }

  #navbarNav {
    flex-basis: 100%;
    width: 100%;
    padding: .45rem .15rem .25rem;
  }

  .navbar-nav {
    width: 100%;
    gap: .15rem;
    margin: .35rem 0 .25rem !important;
  }

  .nav-ico {
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 48px;
    padding: .45rem .55rem !important;
    gap: .7rem;
    border-radius: 14px;
    text-align: left;
  }

  .nav-ico i {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .nav-ico:hover,
  .nav-ico.active {
    background: #f3faff;
  }

  .nav-ico:hover i,
  .nav-ico.active i {
    transform: none;
    box-shadow: none;
  }

  .btn-register-nav {
    width: 100%;
    min-height: 48px;
    margin: .45rem 0 .1rem;
    padding: .85rem 1.25rem;
    border-radius: 14px;
  }

  .navbar.is-scrolled {
    padding-block: .45rem;
  }

  .navbar.is-scrolled > .container {
    min-height: 60px;
    padding: .45rem .65rem .45rem .9rem;
  }

  .navbar.is-scrolled .brand-mark {
    width: 140px;
  }
}

@media (max-width: 575.98px) {
  .navbar {
    padding-inline: .45rem;
  }

  .navbar-brand .brand-mark,
  .navbar.is-scrolled .brand-mark {
    width: 132px;
  }
}
