  :root {
      --bg: #F7EFE2;
      --bg-soft: #EFE3D2;
      --white: #FFFDF8;
      --brown: #3A211A;
      --brown-2: #5C3A2E;
      --terracotta: #B75A38;
      --terracotta-dark: #923F29;
      --gold: #C99A5B;
      --gold-bright: #D8A74C;
      --burgundy: #5A2428;
      --green: #173B32;
      --muted: #7D6857;
      --ink: #1A0E0B;
      --display: "Cinzel", serif;
      --serif: "Cormorant Garamond", serif;
      --body: "Inter", sans-serif;
      --section: 112px 6vw;
      --max: 1240px;
      --radius: 30px;
      --shadow: 0 28px 90px rgba(58, 33, 26, .14);
      --line: rgba(58, 33, 26, .14);
  }

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

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: var(--body);
      background: var(--bg);
      color: var(--brown);
      overflow-x: hidden;
  }

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

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

  button {
      font: inherit;
  }

  .container {
      max-width: var(--max);
      margin: 0 auto;
  }

  .section {
      padding: var(--section);
      position: relative;
      overflow: hidden;
  }

  .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 52px;
      padding: 15px 24px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: .11em;
      text-transform: uppercase;
      cursor: pointer;
      transition: transform .35s ease, background .35s ease, border-color .35s ease, color .35s ease, box-shadow .35s ease;
      white-space: nowrap;
  }

  .btn svg {
      width: 17px;
      height: 17px;
      stroke: currentColor;
      stroke-width: 1.8;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
  }

  .btn-primary {
      background: linear-gradient(135deg, var(--gold), var(--gold-bright));
      color: var(--brown);
      box-shadow: 0 20px 45px rgba(201, 154, 91, .35);
  }

  .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 28px 58px rgba(201, 154, 91, .44);
  }

  .btn-secondary {
      background: rgba(255, 253, 248, .55);
      color: var(--brown);
      border-color: rgba(58, 33, 26, .18);
      backdrop-filter: blur(12px);
  }

  .btn-secondary:hover {
      transform: translateY(-3px);
      color: var(--terracotta);
      border-color: rgba(183, 90, 56, .35);
  }

  .btn-glass {
      background: rgba(255, 253, 248, .08);
      color: var(--white);
      border-color: rgba(255, 253, 248, .24);
      backdrop-filter: blur(16px);
  }

  .btn-glass:hover {
      transform: translateY(-3px);
      background: rgba(255, 253, 248, .16);
      border-color: rgba(214, 168, 79, .55);
  }

  .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 18px;
      font-size: .72rem;
      text-transform: uppercase;
      letter-spacing: .23em;
      color: var(--terracotta);
      font-weight: 800;
  }

  .section-kicker:before {
      content: "";
      width: 44px;
      height: 1px;
      background: var(--gold);
  }

  .section-title {
      font-family: var(--serif);
      font-size: clamp(2.5rem, 5vw, 5.4rem);
      line-height: .92;
      font-weight: 500;
      letter-spacing: -.045em;
      color: var(--brown);
      margin-bottom: 22px;
  }

  .section-title span {
      color: var(--terracotta);
  }

  .section-text {
      font-size: 1.02rem;
      line-height: 1.85;
      color: var(--muted);
      max-width: 760px;
  }

  /* Header */
  .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      padding: 18px 6vw;
      transition: .35s ease;
  }

  .site-header.scrolled {
      padding: 12px 6vw;
      background: rgba(247, 239, 226, .84);
      border-bottom: 1px solid rgba(58, 33, 26, .09);
      backdrop-filter: blur(18px);
  }

  .nav-inner {
      max-width: var(--max);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
  }

  .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: max-content;
  }

  .brand-mark {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: rgba(255, 253, 248, .72);
      border: 1px solid rgba(201, 154, 91, .35);
      display: grid;
      place-items: center;
      overflow: hidden;
  }

  .brand-mark img {
      width: 43px;
      height: 43px;
      object-fit: contain;
  }

  /* Normal hero state - lighter on dark hero */
  .brand-text strong {
      display: block;
      font-family: var(--display);
      font-size: 1.05rem;
      color: rgba(255, 253, 248, 0.92);
      line-height: 1;
      letter-spacing: .04em;
      transition: color .3s ease;
  }

  .brand-text span {
      display: block;
      margin-top: 4px;
      font-size: .67rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: rgba(255, 253, 248, 0.62);
      transition: color .3s ease;
  }

  /* Scrolled state - darker on light navbar */
  .site-header.scrolled .brand-text strong {
      color: var(--brown);
  }

  .site-header.scrolled .brand-text span {
      color: var(--muted);
  }

  .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
  }

  /* Normal hero state - lighter for dark hero background */
  .nav-links a {
      font-size: .71rem;
      text-transform: uppercase;
      letter-spacing: .12em;
      font-weight: 800;
      color: rgba(255, 253, 248, 0.82);
      opacity: 1;
      transition: color .3s ease, opacity .3s ease;
  }

  .nav-links a:hover {
      color: var(--gold-bright);
  }

  /* Scrolled state - darker because navbar background becomes light */
  .site-header.scrolled .nav-links a {
      color: var(--brown);
      opacity: .76;
  }

  .site-header.scrolled .nav-links a:hover {
      color: var(--terracotta);
      opacity: 1;
  }

  .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
  }

  .mobile-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: 1px solid rgba(58, 33, 26, .22);
      background: rgba(255, 253, 248, .48);
      cursor: pointer;
  }

  .mobile-toggle span {
      display: block;
      width: 19px;
      height: 2px;
      background: var(--brown);
      margin: 4px auto;
      transition: .3s ease;
  }

  /* Premium hero */
  .hero {
      min-height: 100vh;
      padding: 142px 6vw 74px;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      color: var(--white);
      background: var(--ink);
  }

  .hero-bg-layer {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(26, 14, 11, .94) 0%, rgba(58, 33, 26, .78) 45%, rgba(58, 33, 26, .38) 100%), url("../images/city-skyline-under-cloudy-blue-sky-and-flag-2026-03-09-02-59-21-utc.jpeg") center/cover no-repeat;
      transform: scaleX(-1);
      animation: heroZoom 18s ease-in-out infinite alternate;
  }

  .hero-pattern {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255, 253, 248, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 253, 248, .055) 1px, transparent 1px);
      background-size: 84px 84px;
      mask-image: linear-gradient(90deg, #000, transparent 88%);
      opacity: .62;
  }

  .hero-orb {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(4px);
  }

  .hero-orb.one {
      width: 430px;
      height: 430px;
      right: 8%;
      top: 12%;
      background: radial-gradient(circle, rgba(214, 168, 79, .22), transparent 68%);
      animation: floatOrb 9s ease-in-out infinite;
  }

  .hero-orb.two {
      width: 320px;
      height: 320px;
      left: -120px;
      bottom: 6%;
      background: radial-gradient(circle, rgba(183, 90, 56, .28), transparent 68%);
      animation: floatOrb 12s ease-in-out infinite reverse;
  }

  .hero-grid {
      max-width: var(--max);
      margin: 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      align-items: center;
      gap: 72px;
      position: relative;
      z-index: 3;
  }

  .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 9px 15px;
      margin-bottom: 26px;
      border-radius: 999px;
      border: 1px solid rgba(214, 168, 79, .33);
      background: rgba(255, 253, 248, .08);
      color: var(--gold-bright);
      font-size: .71rem;
      font-weight: 800;
      letter-spacing: .15em;
      text-transform: uppercase;
      backdrop-filter: blur(14px);
  }

  .hero-kicker:before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 22px rgba(214, 168, 79, .8);
  }

  .hero-title {
      font-family: var(--serif);
      font-size: clamp(4.6rem, 9.6vw, 10rem);
      line-height: .8;
      letter-spacing: -.075em;
      color: var(--white);
      font-weight: 500;
      text-shadow: 0 30px 80px rgba(0, 0, 0, .34);
  }

  .hero-title span {
      color: var(--gold-bright);
  }

  .hero-subtitle {
      font-family: var(--display);
      font-size: clamp(1.05rem, 2vw, 1.45rem);
      color: var(--gold);
      letter-spacing: .09em;
      text-transform: uppercase;
      margin: 20px 0;
  }

  .hero-desc {
      max-width: 650px;
      color: rgba(255, 253, 248, .76);
      line-height: 1.9;
      font-size: 1.02rem;
      margin-bottom: 32px;
  }

  .hero-meta {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-bottom: 34px;
      max-width: 760px;
  }

  .meta-card {
      padding: 18px;
      border-radius: 20px;
      border: 1px solid rgba(255, 253, 248, .14);
      background: rgba(255, 253, 248, .08);
      backdrop-filter: blur(18px);
  }

  .meta-card span {
      display: block;
      font-size: .67rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 800;
      margin-bottom: 8px;
  }

  .meta-card strong {
      display: block;
      font-family: var(--serif);
      font-size: 1.35rem;
      line-height: 1.1;
      color: var(--white);
      font-weight: 600;
  }

  .hero-buttons {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
  }

  .hero-visual {
      position: relative;
  }

  .logo-stage {
      min-height: 585px;
      border-radius: 44px;
      position: relative;
      display: grid;
      place-items: center;
      overflow: hidden;
      border: 1px solid rgba(255, 253, 248, .28);
      background: #ffff;
      box-shadow: 0 42px 110px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .55);
  }

  .logo-stage:before {
      content: "";
      position: absolute;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      border: 2px solid rgba(201, 154, 91, .46);
      border-left-color: transparent;
      border-bottom-color: transparent;
      transform: rotate(-24deg);
      animation: slowRotate 24s linear infinite;
  }

  .logo-stage:after {
      content: "";
      position: absolute;
      inset: 22px;
      border-radius: 34px;
      border: 1px solid rgba(58, 33, 26, .08);
      pointer-events: none;
  }

  .logo-placeholder {
      position: relative;
      z-index: 2;
      width: min(86%, 490px);
      display: grid;
      place-items: center;
  }

  .logo-placeholder img {
      width: 100%;
      object-fit: contain;
      filter: drop-shadow(0 25px 34px rgba(58, 33, 26, .18));
      animation: logoFloat 6s ease-in-out infinite;
  }

  .countdown {
      position: absolute;
      z-index: 4;
      left: 26px;
      right: 26px;
      bottom: 26px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
  }

  .count-item {
      padding: 12px 8px;
      text-align: center;
      border-radius: 16px;
      border: 1px solid rgba(58, 33, 26, .1);
      background: rgba(255, 253, 248, .82);
      backdrop-filter: blur(10px);
  }

  .count-item strong {
      display: block;
      font-family: var(--display);
      font-size: 1.35rem;
      color: var(--brown);
  }

  .count-item span {
      font-size: .62rem;
      text-transform: uppercase;
      letter-spacing: .16em;
      color: var(--muted);
      font-weight: 800;
  }

  /* General premium blocks */
  .about {
      background: var(--white);
  }

  .about-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 70px;
      align-items: center;
  }

  .about-card {
      padding: 46px;
      border-radius: var(--radius);
      background: linear-gradient(145deg, var(--bg), #fffaf1);
      border: 1px solid rgba(58, 33, 26, .1);
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
  }

  .about-card:after {
      content: "";
      position: absolute;
      width: 230px;
      height: 230px;
      border-radius: 50%;
      right: -70px;
      bottom: -70px;
      border: 1px solid rgba(201, 154, 91, .45);
  }

  .about-card h3 {
      font-family: var(--serif);
      font-size: 2.9rem;
      line-height: 1;
      font-weight: 500;
      margin-bottom: 18px;
  }

  .about-card p {
      color: var(--muted);
      line-height: 1.9;
      position: relative;
      z-index: 2;
  }

  .stats-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
      margin-top: 34px;
  }

  .stat {
      padding: 24px;
      border-radius: 22px;
      border: 1px solid rgba(58, 33, 26, .12);
      background: rgba(255, 253, 248, .74);
  }

  .stat strong {
      display: block;
      font-family: var(--display);
      font-size: 2rem;
      color: var(--terracotta);
      margin-bottom: 6px;
  }

  .stat span {
      color: var(--muted);
      font-size: .84rem;
      line-height: 1.5;
  }

  .image-band {
      position: relative;
      min-height: 540px;
      padding: 112px 6vw;
      display: flex;
      align-items: center;
      overflow: hidden;
      color: var(--white);
  }

  .image-band:before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(58, 33, 26, .94), rgba(58, 33, 26, .62), rgba(58, 33, 26, .22)), var(--band-image) center/cover no-repeat;
      transform: scale(1.04);
  }

  .image-band:after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 78% 30%, rgba(214, 168, 79, .24), transparent 34%);
  }

  .image-band-content {
      position: relative;
      z-index: 2;
      max-width: 760px;
  }

  .image-band .section-title,
  .image-band .section-text {
      color: var(--white);
  }

  .image-band .section-text {
      color: rgba(255, 253, 248, .77);
  }

  .why {
      background: linear-gradient(180deg, var(--white), var(--bg));
  }

  .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 52px;
  }

  .feature-card {
      min-height: 290px;
      padding: 34px;
      border-radius: var(--radius);
      background: linear-gradient(145deg, rgba(255, 253, 248, .92), rgba(255, 253, 248, .58));
      border: 1px solid rgba(58, 33, 26, .1);
      position: relative;
      overflow: hidden;
      transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
      backdrop-filter: blur(16px);
  }

  .feature-card:before {
      content: attr(data-number);
      position: absolute;
      top: 23px;
      right: 26px;
      font-family: var(--display);
      font-size: 3rem;
      color: rgba(201, 154, 91, .18);
  }

  .feature-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow);
      border-color: rgba(183, 90, 56, .28);
  }

  .feature-icon {
      width: 62px;
      height: 62px;
      border-radius: 20px;
      background: rgba(201, 154, 91, .13);
      border: 1px solid rgba(201, 154, 91, .28);
      display: grid;
      place-items: center;
      margin-bottom: 26px;
  }

  .feature-icon svg {
      width: 33px;
      height: 33px;
      stroke: var(--terracotta);
      stroke-width: 1.7;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: .35s ease;
  }

  .feature-card:hover .feature-icon svg {
      stroke: var(--burgundy);
  }

  .feature-card h3 {
      font-family: var(--serif);
      font-size: 2rem;
      line-height: 1;
      font-weight: 600;
      margin-bottom: 14px;
  }

  .feature-card p {
      color: var(--muted);
      line-height: 1.75;
      font-size: .95rem;
  }

  .schedule {
      background: var(--brown);
      color: var(--white);
  }

  .schedule:before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: .12;
      background: url("../images/jomax1\ 8.svg") 92% 10%/820px auto no-repeat;
  }

  .schedule .container {
      position: relative;
      z-index: 2;
  }

  .schedule .section-title,
  .schedule .section-text {
      color: var(--white);
  }

  .schedule .section-text {
      opacity: .78;
  }

  .schedule .section-kicker {
      color: var(--gold);
  }

  .tabs {
      margin-top: 50px;
  }

  .tab-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 22px;
  }

  .tab-btn {
      border: 1px solid rgba(255, 253, 248, .16);
      background: rgba(255, 253, 248, .06);
      color: var(--white);
      padding: 14px 22px;
      border-radius: 999px;
      cursor: pointer;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      font-size: .75rem;
      transition: .3s ease;
  }

  .tab-btn.active,
  .tab-btn:hover {
      background: var(--gold);
      color: var(--brown);
      border-color: var(--gold);
  }

  .tab-panel {
      display: none;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid rgba(255, 253, 248, .14);
      background: rgba(255, 253, 248, .055);
      backdrop-filter: blur(16px);
  }

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

  .schedule-row {
      display: grid;
      grid-template-columns: 180px 1fr 170px;
      gap: 22px;
      padding: 24px;
      border-bottom: 1px solid rgba(255, 253, 248, .1);
      align-items: center;
  }

  .schedule-row:last-child {
      border-bottom: 0;
  }

  .schedule-time {
      font-family: var(--display);
      color: var(--gold);
      font-weight: 700;
      letter-spacing: .06em;
  }

  .schedule-info h4 {
      font-family: var(--serif);
      font-size: 1.65rem;
      line-height: 1;
      color: var(--white);
      margin-bottom: 8px;
  }

  .schedule-info p {
      color: rgba(255, 253, 248, .7);
      line-height: 1.6;
      font-size: .92rem;
  }

  .schedule-tag {
      justify-self: end;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(201, 154, 91, .16);
      color: var(--gold);
      font-size: .68rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      font-weight: 800;
      white-space: nowrap;
  }

  .schedule-footer {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 28px;
  }

  .speakers {
      background: var(--bg);
  }

  .speakers-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 52px;
  }

  .speaker-card {
      border-radius: var(--radius);
      background: var(--white);
      border: 1px solid rgba(58, 33, 26, .1);
      overflow: hidden;
      box-shadow: 0 18px 45px rgba(58, 33, 26, .06);
      transition: .35s ease;
  }

  .speaker-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow);
  }

  /* Better speaker image display */
  .speaker-photo {
      height: 340px;
      background: linear-gradient(135deg,
              rgba(58, 33, 26, 0.08),
              rgba(201, 154, 91, 0.14)),
          var(--bg-soft);
      position: relative;
      overflow: hidden;
  }

  /* Remove the fake “Photo” text when image exists */
  .speaker-photo:after {
      display: none;
  }

  /* Keep the soft decorative circle behind the image */
  .speaker-photo:before {
      content: "";
      position: absolute;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: rgba(201, 154, 91, 0.18);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
  }

  /* Main image behavior */
  .speaker-photo img {
      position: relative;
      z-index: 2;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      transition: transform 0.55s ease, filter 0.55s ease;
  }

  /* Premium hover */
  .speaker-card:hover .speaker-photo img {
      transform: scale(1.06);
      filter: contrast(1.04) saturate(1.04);
  }

  .speaker-content {
      padding: 24px;
  }

  .speaker-country {
      display: inline-block;
      font-size: .68rem;
      text-transform: uppercase;
      letter-spacing: .15em;
      color: var(--terracotta);
      font-weight: 800;
      margin-bottom: 18px;
  }

  .speaker-content h3 {
      font-family: var(--serif);
      font-size: 1.8rem;
      line-height: 1;
      font-weight: 600;
      margin-bottom: 8px;
  }

  .speaker-content p {
      color: var(--muted);
      font-size: .9rem;
      line-height: 1.55;
      margin-bottom: 14px;
  }

  .speaker-btn {
      border: 0;
      background: transparent;
      color: var(--brown);
      font-size: .72rem;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      cursor: pointer;
  }

  .speaker-btn:hover {
      color: var(--terracotta);
  }

  .workshops {
      background: var(--white);
  }

  .workshop-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 52px;
  }

  .workshop-card {
      padding: 30px;
      border-radius: var(--radius);
      background: linear-gradient(145deg, var(--bg), #fffaf1);
      border: 1px solid rgba(58, 33, 26, .1);
      transition: .35s ease;
  }

  .workshop-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow);
  }

  .workshop-number {
      display: inline-flex;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      align-items: center;
      justify-content: center;
      background: var(--brown);
      color: var(--white);
      font-family: var(--display);
      margin-bottom: 24px;
  }

  .workshop-card h3 {
      font-family: var(--serif);
      font-size: 2rem;
      line-height: 1;
      margin-bottom: 12px;
  }

  .workshop-card p {
      color: var(--muted);
      line-height: 1.7;
      font-size: .93rem;
      margin-bottom: 20px;
  }

  .workshop-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
  }

  .pill {
      padding: 8px 11px;
      border-radius: 999px;
      background: rgba(201, 154, 91, .18);
      color: var(--brown);
      font-size: .68rem;
      text-transform: uppercase;
      letter-spacing: .1em;
      font-weight: 800;
  }

  .abstracts {
      background: linear-gradient(rgba(90, 36, 40, 0.526), rgba(58, 33, 26, .94)), url("../images/logo-site-back.jpg") center/cover no-repeat;
      color: var(--white);
  }

  .abstracts .section-title,
  .abstracts .section-text {
      color: var(--white);
  }

  .abstract-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 42px;
      align-items: start;
  }

  .abstract-box {
      padding: 34px;
      border-radius: var(--radius);
      background: rgba(255, 253, 248, .08);
      border: 1px solid rgba(255, 253, 248, .14);
      backdrop-filter: blur(14px);
  }

  .date-list {
      display: grid;
      gap: 14px;
      margin-bottom: 30px;
  }

  .date-item {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding: 18px 0;
      border-bottom: 1px solid rgba(255, 253, 248, .14);
  }

  .date-item span {
      color: rgba(255, 253, 248, .72);
  }

  .date-item strong {
      color: var(--gold);
      text-align: right;
  }

  .topics {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 24px;
  }

  .topic {
      padding: 10px 13px;
      border-radius: 999px;
      background: rgba(255, 253, 248, .1);
      border: 1px solid rgba(255, 253, 248, .12);
      font-size: .78rem;
      font-weight: 700;
      color: rgba(255, 253, 248, .86);
  }

  .pricing {
      background: var(--bg);
  }

  .pricing-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 52px;
  }

  .price-card {
      border-radius: var(--radius);
      background: var(--white);
      border: 1px solid rgba(58, 33, 26, .1);
      padding: 30px;
      transition: .35s ease;
      overflow: hidden;
  }

  .price-card.featured {
      background: var(--brown);
      color: var(--white);
      transform: translateY(-12px);
  }

  .price-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow);
  }

  .price-card.featured:hover {
      transform: translateY(-18px);
  }

  .price-label {
      font-size: .72rem;
      text-transform: uppercase;
      letter-spacing: .16em;
      color: var(--terracotta);
      font-weight: 800;
      margin-bottom: 18px;
  }

  .price-card.featured .price-label {
      color: var(--gold);
  }

  .price-card h3 {
      font-family: var(--serif);
      font-size: 2rem;
      line-height: 1;
      margin-bottom: 18px;
  }

  .price {
      margin-bottom: 18px;
  }

  .price strong {
      font-family: var(--display);
      font-size: 2.1rem;
      color: var(--brown);
  }

  .price-card.featured .price strong {
      color: var(--gold);
  }

  .price span {
      display: block;
      color: var(--muted);
      font-size: .82rem;
      margin-top: 4px;
  }

  .price-card.featured .price span {
      color: rgba(255, 253, 248, .68);
  }

  .price-card ul {
      list-style: none;
      display: grid;
      gap: 12px;
      margin: 24px 0;
  }

  .price-card li {
      color: var(--muted);
      font-size: .9rem;
      line-height: 1.5;
      padding-left: 22px;
      position: relative;
  }

  .price-card.featured li {
      color: rgba(255, 253, 248, .78);
  }

  .price-card li:before {
      content: "•";
      position: absolute;
      left: 0;
      color: var(--gold);
      font-weight: 900;
  }


  .accommodation {
      background:
          radial-gradient(circle at 12% 16%, rgba(201, 154, 91, .14), transparent 30%),
          linear-gradient(180deg, var(--bg), var(--white));
      overflow: hidden;
  }

  .accommodation::before {
      content: "";
      position: absolute;
      width: 620px;
      height: 620px;
      border-radius: 50%;
      border: 1px solid rgba(201, 154, 91, .24);
      right: -260px;
      top: 80px;
      pointer-events: none;
  }

  .accommodation::after {
      content: "";
      position: absolute;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      border: 1px solid rgba(183, 90, 56, .12);
      left: -180px;
      bottom: 70px;
      pointer-events: none;
  }

  .accommodation-head {
      display: grid;
      grid-template-columns: 1fr .72fr;
      gap: 44px;
      align-items: end;
      margin-bottom: 52px;
      position: relative;
      z-index: 2;
  }

  .accommodation-note {
      padding: 28px;
      border-radius: 24px;
      background: rgba(255, 253, 248, .72);
      border: 1px solid rgba(58, 33, 26, .1);
      color: var(--muted);
      line-height: 1.75;
      box-shadow: 0 18px 50px rgba(58, 33, 26, .06);
  }

  /* ONE FEATURED HOTEL LAYOUT */
  .accommodation-grid {
      display: grid;
      grid-template-columns: 1fr;
      position: relative;
      z-index: 2;
  }

  .accommodation-card {
      position: relative;
      min-height: 560px;
      border-radius: 38px;
      overflow: hidden;
      background: var(--brown);
      box-shadow: var(--shadow);
      border: 1px solid rgba(58, 33, 26, .1);
      transition: transform .4s ease, box-shadow .4s ease;
      display: grid;
      grid-template-columns: 1.15fr .85fr;
  }

  .accommodation-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 34px 95px rgba(58, 33, 26, .2);
  }

  .accommodation-image {
      position: relative;
      min-height: 560px;
      background: var(--hotel-bg) center/cover no-repeat;
      transform: scale(1.01);
      transition: transform .75s ease;
  }

  .accommodation-card:hover .accommodation-image {
      transform: scale(1.06);
  }

  .accommodation-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
          radial-gradient(circle at 62% 24%, rgba(201, 154, 91, .18), transparent 30%),
          linear-gradient(90deg, rgba(36, 19, 15, .08), rgba(36, 19, 15, .22) 48%, rgba(36, 19, 15, .72) 100%);
  }

  .accommodation-content {
      position: relative;
      inset: auto;
      padding: 52px;
      color: var(--white);
      z-index: 2;
      background:
          radial-gradient(circle at 85% 12%, rgba(201, 154, 91, .16), transparent 32%),
          linear-gradient(145deg, rgba(58, 33, 26, .98), rgba(36, 19, 15, .96));
      display: flex;
      flex-direction: column;
      justify-content: center;
  }

  .accommodation-content::before {
      content: "";
      position: absolute;
      width: 360px;
      height: 360px;
      right: -150px;
      bottom: -150px;
      border-radius: 50%;
      border: 1px solid rgba(201, 154, 91, .22);
      pointer-events: none;
  }

  .accommodation-content>* {
      position: relative;
      z-index: 2;
  }

  .accommodation-badge {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      gap: 8px;
      padding: 9px 14px;
      border-radius: 999px;
      background: rgba(255, 253, 248, .1);
      border: 1px solid rgba(255, 253, 248, .18);
      backdrop-filter: blur(14px);
      color: var(--gold);
      font-size: .68rem;
      text-transform: uppercase;
      letter-spacing: .12em;
      font-weight: 800;
      margin-bottom: 22px;
  }

  .accommodation-content h3 {
      font-family: var(--serif);
      font-size: clamp(2.8rem, 4.8vw, 5rem);
      line-height: .9;
      font-weight: 600;
      margin-bottom: 18px;
  }

  .accommodation-content p {
      color: rgba(255, 253, 248, .76);
      line-height: 1.8;
      font-size: 1rem;
      margin-bottom: 26px;
      max-width: 540px;
  }

  .accommodation-details {
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
      margin: 8px 0 30px;
  }

  .accommodation-detail {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255, 253, 248, .13);
      font-size: .86rem;
      color: rgba(255, 253, 248, .72);
  }

  .accommodation-detail span {
      text-transform: uppercase;
      letter-spacing: .08em;
      font-size: .68rem;
      font-weight: 800;
  }

  .accommodation-detail strong {
      color: var(--gold);
      text-align: right;
      font-weight: 800;
  }

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

  .btn-mini {
      min-height: 46px;
      padding: 12px 18px;
      font-size: .68rem;
  }

  /* SUPPORT STRIP UNDER ONE HOTEL CARD */
  .accommodation-strip {
      margin-top: 28px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      position: relative;
      z-index: 2;
  }

  .accommodation-strip-item {
      padding: 22px;
      border-radius: 22px;
      background: rgba(255, 253, 248, .72);
      border: 1px solid rgba(58, 33, 26, .1);
      box-shadow: 0 18px 45px rgba(58, 33, 26, .045);
  }

  .accommodation-strip-item strong {
      display: block;
      font-family: var(--display);
      color: var(--terracotta);
      margin-bottom: 6px;
      letter-spacing: .04em;
  }

  .accommodation-strip-item span {
      color: var(--muted);
      font-size: .86rem;
      line-height: 1.55;
  }

  .venue {
      background: var(--white);
  }

  .venue-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 28px;
      margin-top: 52px;
  }

  .venue-info {
      padding: 40px;
      border-radius: var(--radius);
      background: var(--bg);
      border: 1px solid rgba(58, 33, 26, .1);
  }

  .venue-info h3 {
      font-family: var(--serif);
      font-size: 3rem;
      line-height: 1;
      margin-bottom: 18px;
  }

  .venue-info p {
      line-height: 1.8;
      color: var(--muted);
      margin-bottom: 28px;
  }

  .hotel-list {
      list-style: none;
      display: grid;
      gap: 14px;
  }

  .hotel-list li {
      padding: 18px;
      border-radius: 18px;
      background: rgba(255, 253, 248, .76);
      border: 1px solid rgba(58, 33, 26, .08);
  }

  .hotel-list strong {
      display: block;
      margin-bottom: 4px;
  }

  .hotel-list span {
      color: var(--muted);
      font-size: .88rem;
  }

  .map-box {
      min-height: 480px;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid rgba(58, 33, 26, .1);
      background: var(--bg-soft);
  }

  .map-box iframe {
      width: 100%;
      height: 100%;
      min-height: 480px;
      border: 0;
      filter: sepia(18%) saturate(90%);
  }

  .sponsors {
      background: var(--brown);
      color: var(--white);
      text-align: center;
  }

  .sponsors .section-title,
  .sponsors .section-text {
      color: var(--white);
      margin-left: auto;
      margin-right: auto;
  }

  .sponsor-logos {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 14px;
      margin: 50px 0 40px;
  }

  .sponsor-logo {
      min-height: 110px;
      border-radius: 20px;
      border: 1px solid rgba(255, 253, 248, .12);
      background: rgba(255, 253, 248, .06);
      display: grid;
      place-items: center;
      color: rgba(255, 253, 248, .55);
      font-family: var(--display);
      letter-spacing: .08em;
  }

  .footer {
      padding: 60px 6vw 34px;
      background: #24130F;
      color: var(--white);
  }

  .footer-grid {
      max-width: var(--max);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      gap: 40px;
      padding-bottom: 42px;
      border-bottom: 1px solid rgba(255, 253, 248, .12);
  }

  .footer h3 {
      font-family: var(--display);
      font-size: 1.4rem;
      letter-spacing: .06em;
      margin-bottom: 16px;
  }

  .footer p,
  .footer a {
      color: rgba(255, 253, 248, .72);
      line-height: 1.8;
      font-size: .92rem;
  }

  .footer-links {
      display: grid;
      gap: 8px;
  }

  .footer a:hover {
      color: var(--gold);
  }

  .footer-bottom {
      max-width: var(--max);
      margin: 24px auto 0;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      color: rgba(255, 253, 248, .48);
      font-size: .82rem;
  }

  .modal {
      position: fixed;
      inset: 0;
      background: rgba(36, 19, 15, .74);
      z-index: 2000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
  }

  .modal.active {
      display: flex;
  }

  .modal-card {
      max-width: 720px;
      width: 100%;
      max-height: 86vh;
      overflow-y: auto;
      background: var(--white);
      border-radius: 30px;
      padding: 38px;
      position: relative;
      box-shadow: 0 40px 120px rgba(0, 0, 0, .25);
  }

  .modal-close {
      position: absolute;
      top: 18px;
      right: 18px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(58, 33, 26, .15);
      background: transparent;
      cursor: pointer;
      font-size: 1.2rem;
      color: var(--brown);
  }

  .modal-card h3 {
      font-family: var(--serif);
      font-size: 2.7rem;
      line-height: 1;
      margin-bottom: 10px;
  }

  .modal-role {
      color: var(--terracotta);
      font-weight: 800;
      text-transform: uppercase;
      font-size: .78rem;
      letter-spacing: .12em;
      margin-bottom: 22px;
  }

  .modal-card p {
      color: var(--muted);
      line-height: 1.85;
  }

  .reveal-up,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .feature-card,
  .workshop-card,
  .speaker-card,
  .price-card {
      opacity: 0;
      transition: opacity .85s ease, transform .85s cubic-bezier(.2, .8, .2, 1), box-shadow .35s ease, border-color .35s ease;
  }

  .reveal-up,
  .feature-card,
  .workshop-card,
  .speaker-card,
  .price-card {
      transform: translateY(34px);
  }

  .reveal-left {
      transform: translateX(-42px);
  }

  .reveal-right {
      transform: translateX(42px);
  }

  .reveal-scale {
      transform: scale(.94);
  }

  .reveal-visible {
      opacity: 1 !important;
      transform: translate(0, 0) scale(1) !important;
  }

  @keyframes heroZoom {
      from {
          transform: scale(1.08);
      }

      to {
          transform: scale(1.14);
      }
  }

  @keyframes logoFloat {

      0%,
      100% {
          transform: translateY(0);
      }

      50% {
          transform: translateY(-14px);
      }
  }

  @keyframes floatOrb {

      0%,
      100% {
          transform: translate(0, 0);
      }

      50% {
          transform: translate(18px, -26px);
      }
  }

  @keyframes slowRotate {
      from {
          transform: rotate(-24deg);
      }

      to {
          transform: rotate(336deg);
      }
  }

  @media (max-width: 1120px) {
      .nav-links {
          display: none;
      }

      .mobile-toggle {
          display: block;
      }

      .nav-links.mobile-active {
          display: flex;
          position: fixed;
          inset: 78px 18px auto 18px;
          flex-direction: column;
          align-items: stretch;
          padding: 24px;
          border-radius: 24px;
          background: rgba(255, 253, 248, .96);
          backdrop-filter: blur(18px);
          border: 1px solid rgba(58, 33, 26, .12);
          box-shadow: var(--shadow);
      }

      .hero-grid,
      .about-grid,
      .abstract-layout,
      .venue-grid,
      .accommodation-head {
          grid-template-columns: 1fr;
      }

      .hero-visual {
          order: -1;
      }

      .logo-stage {
          min-height: 500px;
      }

      .speakers-grid,
      .pricing-grid,
      .cards-grid,
      .workshop-grid,
      .accommodation-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .sponsor-logos {
          grid-template-columns: repeat(3, 1fr);
      }
  }

  @media (max-width: 760px) {
      :root {
          --section: 82px 5vw;
      }

      .site-header {
          padding: 12px 5vw;
      }

      .brand-text span {
          display: none;
      }

      .nav-actions .btn {
          display: none;
      }

      .hero {
          padding: 120px 5vw 60px;
      }

      .hero-meta,
      .cards-grid,
      .workshop-grid,
      .speakers-grid,
      .pricing-grid,
      .stats-grid,
      .sponsor-logos,
      .footer-grid,
      .accommodation-grid,
      .accommodation-strip {
          grid-template-columns: 1fr;
      }

      .hero-buttons {
          align-items: stretch;
      }

      .hero-buttons .btn {
          width: 100%;
      }

      .logo-stage {
          min-height: 430px;
          border-radius: 30px;
      }

      .countdown {
          grid-template-columns: repeat(2, 1fr);
      }

      .schedule-row {
          grid-template-columns: 1fr;
          gap: 10px;
      }

      .schedule-tag {
          justify-self: start;
      }

      .price-card.featured {
          transform: none;
      }

      .footer-bottom {
          flex-direction: column;
      }
  }

  @media (max-width: 1120px) {
      .accommodation-head {
          grid-template-columns: 1fr;
      }

      .accommodation-card {
          grid-template-columns: 1fr;
      }

      .accommodation-image {
          min-height: 430px;
      }

      .accommodation-content {
          padding: 42px;
      }

      .accommodation-strip {
          grid-template-columns: repeat(2, 1fr);
      }
  }

  @media (max-width: 760px) {
      .accommodation-card {
          border-radius: 30px;
      }

      .accommodation-image {
          min-height: 330px;
      }

      .accommodation-content {
          padding: 32px 24px;
      }

      .accommodation-content h3 {
          font-size: 2.7rem;
      }

      .accommodation-detail {
          flex-direction: column;
          gap: 6px;
      }

      .accommodation-detail strong {
          text-align: left;
      }

      .accommodation-actions .btn {
          width: 100%;
      }

      .accommodation-strip {
          grid-template-columns: 1fr;
      }
  }

  .pricing-grid-two {
      max-width: 900px;
      margin: 3rem auto;
      grid-template-columns: repeat(2, 1fr);
      justify-content: center;
  }

  @media (max-width: 768px) {
      .pricing-grid-two {
          grid-template-columns: 1fr;
      }
  }

  /* President Welcome + Organizing Committee */
  .president-message {
      background:
          radial-gradient(circle at 12% 10%, rgba(201, 154, 91, .16), transparent 31%),
          linear-gradient(180deg, var(--white), var(--bg));
  }

  .president-message::before {
      content: "";
      position: absolute;
      width: 640px;
      height: 640px;
      right: -300px;
      top: 80px;
      border-radius: 50%;
      border: 1px solid rgba(201, 154, 91, .24);
      pointer-events: none;
  }

  .president-grid {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 34px;
      align-items: stretch;
      position: relative;
      z-index: 2;
  }

  .president-text-card {
      position: relative;
      padding: 42px;
      border-radius: 34px;
      background: rgba(255, 253, 248, .78);
      border: 1px solid rgba(58, 33, 26, .1);
      box-shadow: var(--shadow);
      overflow: hidden;
  }

  .president-text-card::after {
      content: "";
      position: absolute;
      width: 260px;
      height: 260px;
      right: -95px;
      bottom: -95px;
      border-radius: 50%;
      border: 1px solid rgba(201, 154, 91, .28);
      pointer-events: none;
  }

  .quote-mark {
      position: absolute;
      top: 18px;
      right: 34px;
      font-family: var(--serif);
      font-size: 7rem;
      line-height: 1;
      color: rgba(201, 154, 91, .22);
      pointer-events: none;
  }

  .president-text-card p {
      position: relative;
      z-index: 2;
      color: var(--muted);
      line-height: 1.9;
      margin-bottom: 18px;
      font-size: .98rem;
  }

  .president-text-card p:first-of-type {
      font-family: var(--serif);
      color: var(--brown);
      font-size: 1.6rem;
      line-height: 1.25;
      margin-bottom: 24px;
  }

  .welcome-signature-card {
      position: sticky;
      top: 120px;
      align-self: start;
      padding: 38px;
      border-radius: 34px;
      color: var(--white);
      background:
          radial-gradient(circle at 74% 12%, rgba(201, 154, 91, .18), transparent 33%),
          linear-gradient(145deg, var(--brown), #170c09);
      border: 1px solid rgba(58, 33, 26, .12);
      box-shadow: var(--shadow);
      overflow: hidden;
  }

  .welcome-signature-card::before {
      content: "";
      position: absolute;
      width: 320px;
      height: 320px;
      right: -150px;
      bottom: -150px;
      border-radius: 50%;
      border: 1px solid rgba(201, 154, 91, .22);
      pointer-events: none;
  }

  .welcome-signature-card>* {
      position: relative;
      z-index: 2;
  }

  .president-photo,
  .committee-photo {
      position: relative;
      overflow: hidden;
      background:
          radial-gradient(circle at 50% 36%, rgba(201, 154, 91, .22), transparent 42%),
          linear-gradient(145deg, rgba(255, 253, 248, .16), rgba(255, 253, 248, .06));
      border: 1px solid rgba(201, 154, 91, .28);
      display: grid;
      place-items: center;
  }

  .president-photo::after,
  .committee-photo::after {
      content: attr(data-initials);
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      font-family: var(--display);
      color: rgba(201, 154, 91, .7);
      letter-spacing: .08em;
  }

  .president-photo img,
  .committee-photo img {
      position: relative;
      z-index: 2;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
  }

  .president-photo {
      width: 168px;
      height: 168px;
      border-radius: 34px;
      margin-bottom: 26px;
  }

  .president-photo::after {
      font-size: 3.6rem;
  }

  .signature-label {
      display: inline-block;
      color: var(--gold);
      font-size: .68rem;
      text-transform: uppercase;
      letter-spacing: .16em;
      font-weight: 800;
      margin-bottom: 14px;
  }

  .welcome-signature-card h3 {
      font-family: var(--serif);
      font-size: clamp(2.2rem, 3vw, 3.35rem);
      line-height: .95;
      font-weight: 600;
      margin-bottom: 16px;
  }

  .welcome-signature-card p {
      color: rgba(255, 253, 248, .72);
      line-height: 1.8;
      margin-bottom: 28px;
  }

  .committee {
      background: var(--white);
  }

  .committee::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
          radial-gradient(circle at 8% 20%, rgba(183, 90, 56, .08), transparent 28%),
          radial-gradient(circle at 92% 12%, rgba(201, 154, 91, .12), transparent 30%);
      pointer-events: none;
  }

  .committee .container {
      position: relative;
      z-index: 2;
  }

  .committee-leads {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
      margin-top: 52px;
  }

  .committee-lead-card {
      display: grid;
      grid-template-columns: 220px 1fr;
      gap: 26px;
      align-items: stretch;
      border-radius: var(--radius);
      background: linear-gradient(145deg, var(--bg), #fffaf1);
      border: 1px solid rgba(58, 33, 26, .1);
      box-shadow: 0 18px 45px rgba(58, 33, 26, .06);
      overflow: hidden;
      transition: transform .35s ease, box-shadow .35s ease;
  }

  .committee-lead-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow);
  }

  .committee-lead-card .committee-photo {
      min-height: 290px;
      border-radius: 0;
      border-width: 0 1px 0 0;
      border-color: rgba(58, 33, 26, .1);
  }

  .committee-lead-card .committee-photo::after {
      font-size: 3.2rem;
  }

  .committee-content {
      padding: 30px 30px 30px 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
  }

  .committee-role {
      display: inline-block;
      width: fit-content;
      color: var(--terracotta);
      font-size: .68rem;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      margin-bottom: 16px;
  }

  .committee-content h3 {
      font-family: var(--serif);
      font-size: 2.15rem;
      line-height: 1;
      font-weight: 600;
      margin-bottom: 10px;
  }

  .committee-content p {
      color: var(--muted);
      line-height: 1.65;
      font-size: .92rem;
      margin-bottom: 18px;
  }

  .committee-mini-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 22px;
  }

  .committee-mini-card {
      position: relative;
      min-height: 170px;
      padding: 28px;
      border-radius: 26px;
      background: var(--brown);
      color: var(--white);
      border: 1px solid rgba(58, 33, 26, .1);
      overflow: hidden;
      transition: transform .35s ease, box-shadow .35s ease;
  }

  .committee-mini-card::before {
      content: "";
      position: absolute;
      width: 180px;
      height: 180px;
      right: -82px;
      bottom: -82px;
      border-radius: 50%;
      border: 1px solid rgba(201, 154, 91, .24);
  }

  .committee-mini-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow);
  }

  .committee-mini-card span {
      position: relative;
      z-index: 2;
      display: inline-block;
      color: var(--gold);
      font-size: .68rem;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      margin-bottom: 18px;
  }

  .committee-mini-card h3 {
      position: relative;
      z-index: 2;
      font-family: var(--serif);
      font-size: 2.15rem;
      line-height: 1;
      font-weight: 600;
  }

  @media (max-width: 1120px) {

      .president-grid,
      .committee-leads {
          grid-template-columns: 1fr;
      }

      .welcome-signature-card {
          position: relative;
          top: auto;
      }

      .committee-mini-grid {
          grid-template-columns: repeat(3, 1fr);
      }
  }

  @media (max-width: 760px) {

      .president-text-card,
      .welcome-signature-card {
          padding: 30px 22px;
          border-radius: 28px;
      }

      .committee-lead-card {
          grid-template-columns: 1fr;
      }

      .committee-lead-card .committee-photo {
          min-height: 340px;
          border-width: 0 0 1px 0;
      }

      .committee-content {
          padding: 28px 22px;
      }

      .committee-mini-grid {
          grid-template-columns: 1fr;
      }
  }

  .modal-card p {
      white-space: pre-line;
  }