/* Import Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@200;300;400&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Special+Gothic+Expanded+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&family=Special+Gothic+Expanded+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html,
body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  padding-top: 80px;
  font-family: "Poppins", sans-serif;
  background: radial-gradient(circle, rgba(10, 10, 10, 1) 40%, rgba(5, 5, 5, 1) 100%);
}

:root {
  --pro-bg: rgba(10, 10, 10, .38);
  --pro-bg-solid: rgba(8, 8, 8, .92);
  --pro-border: rgba(255, 255, 255, .08);
  --pro-text: #ececec;
  --pro-accent: #e8aa56;
  --pro-grad: linear-gradient(90deg, #f3e3c3, #eec063);
  --pro-shadow: 0 10px 40px rgba(0, 0, 0, .5);
}

/* ===== NAV (desktop) ===== */
.pro-nav {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1200;
  /* Glassy Effect from Digital Aesthetics */
  background:
    radial-gradient(circle at top left, rgba(0, 0, 0, 0.08), transparent) 0 0 / 200% 200% no-repeat,
    rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.pro-nav.is-solid {
  /* Keep solid state if needed, or let the glassy style persist */
  background: rgba(8, 8, 8, 0.96);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, .12);
}

.pro-nav__inner {
  width: 90%;
  margin: 0 auto;
  height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.pro-underline {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 171, 86, 0.26), transparent);
}

.pro-nav__brand {
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 1px;
  font-size: clamp(18px, 2.1vw, 22px);
  text-shadow: 0 0 20px rgba(232, 170, 86, .15);
  flex-shrink: 0;
}

.pro-nav__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}

.pro-nav__link {
  position: relative;
  color: var(--pro-text);
  text-decoration: none;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: .2px;
  padding: 6px 2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .18s ease, transform .18s ease;
}

.pro-nav__link:hover,
.pro-nav__link:focus-visible {
  color: #fff;
  transform: translateY(-1px);
}

.pro-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0;
  border-radius: 2px;
  background: var(--pro-grad);
  transition: width .2s ease;
}

.pro-nav__link:hover::after,
.pro-nav__link.is-active::after,
.pro-nav__btn[aria-expanded="true"]::after {
  width: 100%;
}

.pro-has-dd {
  position: relative;
}

.pro-caret {
  transition: transform .2s ease;
}

.pro-nav__btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--pro-text);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: .2px;
}

.pro-nav__btn:focus-visible {
  outline: 2px solid rgba(232, 170, 86, .6);
  outline-offset: 4px;
}

.pro-dd {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  background: #0b0b0b;
  border: 1px solid var(--pro-border);
  border-radius: 12px;
  padding: 10px;
  min-width: 240px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 1300;
  transform-origin: top center;
}

.pro-has-dd:hover .pro-dd,
.pro-has-dd:focus-within .pro-dd,
.pro-nav__btn[aria-expanded="true"]+.pro-dd {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(2px);
}

.pro-has-dd:hover .pro-caret,
.pro-has-dd:focus-within .pro-caret,
.pro-nav__btn[aria-expanded="true"] .pro-caret {
  transform: rotate(180deg);
  color: var(--pro-accent);
}

.pro-dd__link {
  display: block;
  padding: 11px 12px;
  border-radius: 8px;
  color: #d6d5d5;
  text-decoration: none;
  font-size: 15px;
  transition: background .15s ease, color .15s ease, transform .12s ease;
}

.pro-dd__link:hover,
.pro-dd__link:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, .06);
  transform: translateX(2px);
}

.pro-nav__logo {
  height: 50px;
  width: auto;
  display: block;
}

.pro-nav__logoWrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Hamburger */
.pro-hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  position: relative;
  cursor: pointer;
  justify-self: end;
}

.pro-hamburger span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease, top .25s ease;
}

.pro-hamburger span:nth-child(1) {
  top: 12px;
}

.pro-hamburger span:nth-child(2) {
  top: 19px;
}

.pro-hamburger span:nth-child(3) {
  top: 26px;
}

.pro-hamburger[aria-expanded="true"] span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}

.pro-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.pro-hamburger[aria-expanded="true"] span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}

.pro-hamburger:focus-visible {
  outline: 2px solid rgba(232, 170, 86, .6);
  border-radius: 10px;
}

@media (max-width:1024px) {
  .pro-nav__menu {
    display: none !important;
  }

  /* Mobile: Align Brand + Logo left, Hamburger right */
  .pro-nav__inner {
    justify-content: flex-start;
  }

  .pro-hamburger {
    display: flex;
    /* Changed from block to flex to support centering content if needed, though block is fine. Using flex to match previous style potentially */
    margin-left: auto;
    /* Pushes hamburger to the far right */
  }

  .pro-nav__logo {
    height: 46px;
  }
}

/* ===== OVERLAY (above nav) ===== */
.pro-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .65);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 5000;
}

.pro-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.pro-overlay[hidden] {
  display: none !important;
}

/* ===== BOTTOM SHEET (top of stack) ===== */
.pro-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: auto;
  height: 100dvh;
  max-height: 100svh;
  transform: translateY(100%);
  transition: transform .32s ease;
  background: rgba(10, 10, 10, 0.78);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  backdrop-filter: blur(14px) saturate(130%);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  z-index: 5001;
  /* above overlay */
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  padding-bottom: env(safe-area-inset-bottom);
  contain: layout style paint;
}

.pro-sheet.is-open {
  transform: translateY(0);
}

@media (min-width:1025px) {
  .pro-sheet {
    display: none;
  }
}

.pro-sheet__handle {
  height: 5px;
  width: 52px;
  margin: 8px auto 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .25);
}

.pro-sheet__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 14px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.pro-sheet__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.pro-sheet__logo {
  height: 30px;
  width: auto;
}

.pro-sheet__title {
  color: #fff;
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pro-sheet__close {
  inline-size: 44px;
  block-size: 44px;
  display: grid;
  place-items: center;
  background: none;
  border: 0;
  color: #fff;
  font-size: 22px;
  border-radius: 10px;
}

.pro-sheet__close:active {
  transform: scale(.98);
}

.pro-sheet__body {
  padding: 14px 14px 16px;
  display: grid;
  gap: 10px;
  align-content: start;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.pro-sheet__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #fff;
  padding: 16px 14px;
  font-size: 18px;
  font-weight: 800;
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25) inset, 0 2px 8px rgba(0, 0, 0, .25);
}

.pro-sheet__item:active {
  transform: translateY(1px);
}

.pro-sheet__item:focus-visible {
  outline: 2px solid rgba(232, 170, 86, .6);
  outline-offset: 3px;
}

.pro-sheet__acc {
  margin: 0;
}

.pro-sheet__acc>summary {
  list-style: none;
  cursor: pointer;
}

.pro-sheet__acc>summary::-webkit-details-marker {
  display: none;
}

.pro-sheet__acc[open]>summary {
  background: rgba(255, 255, 255, .1);
}

.pro-sheet__panel {
  display: grid;
  gap: 8px;
  padding: 10px 6px 2px 8px;
}

.pro-sheet__sub {
  display: block;
  color: #e8e8e8;
  text-decoration: none;
  padding: 12px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  font-weight: 700;
}

.pro-sheet__sub:active {
  transform: translateY(1px);
}

.pro-sheet__sub:focus-visible {
  outline: 2px solid rgba(232, 170, 86, .6);
  outline-offset: 3px;
}

/* Bottom contact section */
.pro-sheet__footer {
  margin-top: auto;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
  padding: 18px 16px calc(12px + env(safe-area-inset-bottom));
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pro-sheet__footer .footer-link {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
}

.pro-sheet__footer .footer-link:hover {
  color: var(--pro-accent);
}

.pro-sheet__footer .footer-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
}

.pro-sheet__footer .footer-links a {
  color: #bdbdbd !important;
  text-decoration: none;
}

.pro-sheet__footer .footer-links a {
  color: #e0e0e0;
  text-decoration: none;
}

.pro-sheet__footer .footer-links a:hover {
  color: #fff;
}

.pro-sheet__footer .dot {
  opacity: .6;
  margin: 0 .4ch;
}

/* ===== Utilities ===== */
html.has-sheet-open,
body.has-sheet-open {
  overflow: hidden !important;
  height: 100% !important;
}

html.has-sheet-open .pro-nav {
  pointer-events: none;
}

/* navbar ignores clicks while sheet open */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

/* Separator */

/* contact & social */
.footer-contact h4 {
  margin: 0 0 6px 0;
  color: #fff;
  font-size: 0.95rem;
}

.footer-address,
.footer-contact p {
  color: #bdbdbd;
  font-size: 0.95rem;
  margin: 6px 0 10px 0;
}

.footer-email {
  color: #d2d2d2;
  font-weight: 600;
  text-decoration: none;
}

.footer-email:hover,
.footer-email:focus {
  color: #fff;
  text-decoration: underline;
}

.footer-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-link:visited,
.footer-link:active,
.footer-link:hover,
.footer-link:focus {
  color: #fff;
  text-decoration: none;
}

.social-media {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-link {
  display: inline-block;
  width: 36px;
  height: 36px;
}

.social-icon {
  width: 36px;
  height: 36px;
  display: block;
  object-fit: contain;
  opacity: 0.92;
  filter: grayscale(12%);
  transition: transform 200ms ease, filter 200ms ease, opacity 200ms ease;
}

.social-link:hover .social-icon,
.social-link:focus .social-icon {
  transform: translateY(-4px) scale(1.04);
  filter: none;
  opacity: 1;
}

/* bottom bar */
.footer-bottom {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.88rem;
  color: #a9a9a9;
}

.footer-bottom .highlight {
  color: #e8aa56;
  font-weight: 700;
}

/* back-to-top */
.back-to-top {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e8aa56;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 180ms ease, transform 160ms ease, border-color 160ms ease;
}

.back-to-top:hover {
  background: rgba(232, 170, 86, 0.10);
  border-color: rgba(232, 170, 86, 0.35);
  transform: translateY(-2px);
}

/* collapse quick links state (driven by JS w/ ARIA) */
#quick-links-list[aria-hidden="true"] {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

#quick-links-list[aria-hidden="false"] {
  max-height: 520px;
  /* generous */
  opacity: 1;
}

/* responsive */
@media (max-width: 880px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-about,
  .footer-links,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .links-toggle {
    display: inline-block;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
}

@media (max-width: 420px) {
  .logofooter {
    height: 56px;
  }

  .footer-inner {
    padding: 0 10px;
  }

  .social-icon {
    width: 30px;
    height: 30px;
  }
}

/* reveal on view */
.footer-container.revealed {
  animation: footerEntrance 600ms cubic-bezier(.2, .9, .25, 1) both;
}

@keyframes footerEntrance {
  from {
    transform: translateY(10px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* keyboard focus helper */
a:focus,
button:focus {
  outline: 3px solid rgba(232, 170, 86, 0.18);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Separator */
/* ============================
   Improved Footer Styles (Global) - 1:1 MATCH Digital Aesthetics
   ============================ */

/* Utility needed for footer */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ===== GLASS FOOTER ===== */
.footer-container {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9)),
    rgba(0, 0, 0, 0.85) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: auto;
  padding: 48px 0 26px;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
}

.footer-container * {
  box-sizing: border-box;
}

.footer-inner {
  width: 90%;
  max-width: 95%;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-col h4 {
  color: #ffffff;
  margin-bottom: 16px;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ensure QUICK LINKS (main footer) line is clean and aligned */
.footer-grid .footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.footer-links h4 {
  width: 100%;
  display: block;
  padding: 0;
  margin: 0;
}

/* About text */
.footer-about-text {
  line-height: 1.7;
  font-size: 0.94rem;
  color: #d2d2d2;
  /* slightly offwhite */
}

.logofooter {
  height: 38px;
  margin-bottom: 14px;
}

/* quick links */
.links-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.links-toggle {
  display: none;
  font-size: 1.1rem;
  border: none;
  background: none;
  color: #e2e2e2;
  cursor: pointer;
}

.quick-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 0;
  padding: 0;
}

.quick-links a {
  color: #e2e2e2;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.16s ease;
  text-decoration: none;
}

.quick-links a:hover {
  color: #ffffff;
}

/* contact */
.footer-address,
.footer-email {
  font-style: normal;
  line-height: 1.6;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #d2d2d2;
}

.footer-email {
  color: #e2e2e2;
  text-decoration: none;
}

.social-media {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}

.social-icon {
  width: 26px;
  height: 26px;
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-icon:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* bottom line */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.5);
  color: #e2e2e2;
  font-size: 0.86rem;
  gap: 12px;
}

.footer-bottom .highlight {
  color: #ffffff;
  font-weight: 600;
}

.footer-bottom p {
  margin: 0;
}

.back-to-top {
  background: radial-gradient(circle at top, rgba(63, 60, 60, 0.16), transparent),
    rgba(0, 0, 0, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #ffffff;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.back-to-top:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.95);
}

/* ===== RESPONSIVE ===== */
/* links */
.links-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.links-head h4 {
  margin: 0 0 8px 0;
  font-size: 0.95rem;
  color: #fff;
  letter-spacing: 1px;
}

.links-toggle {
  display: none;
  /* shown on small screens via media query */
  background: transparent;
  border: none;
  color: #e8aa56;
  font-size: 18px;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
}

/* quick links */
.quick-links {
  list-style: none;
  padding: 0;
  margin: 6px 0 0 0;
}

.quick-links li {
  margin: 8px 0;
}

.quick-links a {
  color: #d2d2d2;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 180ms ease, transform 160ms ease;
}

.quick-links a:hover,
.quick-links a:focus {
  color: #ffffff;
  transform: translateX(4px);
  outline: none;
}

/* contact */
.footer-contact h4 {
  margin: 0 0 6px 0;
  color: #fff;
  font-size: 0.95rem;
}

.footer-address,
.footer-right p {
  color: #bdbdbd;
  font-size: 0.95rem;
  margin: 6px 0 10px 0;
}

.footer-email {
  color: #d2d2d2;
  font-weight: 600;
  text-decoration: none;
}

.footer-email:hover,
.footer-email:focus {
  color: #fff;
  text-decoration: underline;
}

/* social icons */
.social-media {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-link {
  display: inline-block;
  width: 36px;
  height: 36px;
}

.social-icon {
  width: 36px;
  height: 36px;
  display: block;
  object-fit: contain;
  opacity: 0.95;
  filter: grayscale(10%);
  transition: transform 200ms ease, filter 200ms ease, opacity 200ms ease;
}

.social-link:hover .social-icon,
.social-link:focus .social-icon {
  transform: translateY(-4px) scale(1.04);
  filter: none;
  opacity: 1;
}

/* footer bottom */


/* reveal animation when footer enters view (subtle) */

/* NUCLEAR FIX: Force hide desktop menu on mobile */
@media screen and (max-width: 1024px) {
  body .pro-nav__inner .pro-nav__menu {
    display: none !important;
  }
}

.footer-container.revealed {
  animation: footerEntrance 700ms cubic-bezier(.2, .9, .25, 1) both;
}

@keyframes footerEntrance {
  from {
    transform: translateY(12px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* small focus states for accessibility */
a:focus,
button:focus {
  outline: 3px solid rgba(232, 170, 86, 0.18);
  outline-offset: 3px;
  border-radius: 6px;
}



.coming-title {
  font-family: var(--font);
  color: var(--text);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.coming-title::after {
  content: "";
  display: block;
  width: 120px;
  height: 5px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--amber));
  box-shadow: 0 0 0 6px var(--ring);
}

.coming-subtitle {
  font-family: var(--font);
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 40ch;
  margin: 0.5rem auto 0;
}

.terms-link {
  color: #fff;
  /* default white */
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.terms-link:hover {
  color: #e8aa56;
  /* bright yellow hover */
}