/* Premium refinement pass — intentionally loaded after site.css and the page hero styles. */

/* HERO: tighter, more cinematic, less wasted vertical space */
.hero {
  min-height: 0;
}

.hero-grid {
  min-height: 620px;
  padding: 48px 0 72px;
  align-items: center;
}

.hero-grid > div:first-child {
  align-self: center;
  transform: translateY(-8px);
}

.hero-copy {
  max-width: 650px;
}

.hero-logo-wrap {
  min-height: 445px;
  transform: translateY(0);
  background: radial-gradient(circle at 50% 48%, rgba(255,255,255,.14), rgba(230,201,119,.06) 38%, transparent 68%);
}

/* Turn the existing pseudo-element into a masked light sweep across the actual logo. */
.hero-logo-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  width: auto;
  height: auto;
  aspect-ratio: auto;
  border-radius: 0;
  background: linear-gradient(
    112deg,
    transparent 22%,
    rgba(255,255,255,0) 37%,
    rgba(255,239,185,.10) 43%,
    rgba(255,248,214,.74) 49%,
    rgba(255,220,120,.28) 53%,
    rgba(255,255,255,0) 61%,
    transparent 76%
  );
  background-size: 260% 100%;
  background-position: 180% 0;
  -webkit-mask: url('https://assets.cdn.filesafe.space/4KFOBFkfdlS57euDPsLQ/media/6ab29b59372453112fc912dc.png') center / contain no-repeat;
  mask: url('https://assets.cdn.filesafe.space/4KFOBFkfdlS57euDPsLQ/media/6ab29b59372453112fc912dc.png') center / contain no-repeat;
  filter: none;
  opacity: 0;
  pointer-events: none;
  animation: premiumLogoShimmer 7.2s ease-in-out infinite;
}

.hero-logo {
  filter:
    drop-shadow(0 22px 34px rgba(0,0,0,.46))
    drop-shadow(0 0 14px rgba(199,155,66,.11));
}

@keyframes premiumLogoShimmer {
  0%, 10% {
    background-position: 180% 0;
    opacity: 0;
  }
  15% { opacity: .24; }
  22% { opacity: .88; }
  31% {
    background-position: -85% 0;
    opacity: .26;
  }
  37%, 100% {
    background-position: -85% 0;
    opacity: 0;
  }
}

/* Slightly richer premium cards and event section */
.secondary {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(199,155,66,.09), transparent 27%),
    radial-gradient(circle at 92% 80%, rgba(199,155,66,.07), transparent 31%),
    linear-gradient(180deg, #fff 0%, #fbf8f1 100%);
}

.secondary::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 190px;
  right: -170px;
  top: 68px;
  border: 1px solid rgba(199,155,66,.14);
  border-radius: 50%;
  transform: rotate(-13deg);
  pointer-events: none;
}

.secondary .section-head {
  position: relative;
  z-index: 1;
}

.secondary-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 38px 40px;
  border: 1px solid rgba(143,103,30,.13);
  background:
    linear-gradient(145deg, rgba(255,255,255,.86), rgba(246,240,228,.95));
  box-shadow: 0 18px 48px rgba(47,35,16,.075);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.secondary-card:first-child {
  border-radius: 28px 68px 28px 28px;
}

.secondary-card:last-child {
  border-radius: 68px 28px 28px 28px;
  transform: translateY(18px);
}

.secondary-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 88px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-deep));
}

.secondary-card::after {
  content: "";
  position: absolute;
  width: 132px;
  height: 132px;
  right: -72px;
  bottom: -74px;
  border: 1px solid rgba(199,155,66,.16);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(199,155,66,.028);
}

.secondary-card:hover {
  transform: translateY(-4px);
  border-color: rgba(199,155,66,.27);
  box-shadow: 0 24px 58px rgba(47,35,16,.11);
}

.secondary-card:last-child:hover {
  transform: translateY(12px);
}

.secondary-card h3 {
  font-size: clamp(1.65rem, 2.3vw, 2.15rem);
}

.secondary-card p {
  max-width: 580px;
  font-size: 1.02rem;
}

/* Shorter hero on smaller laptop screens */
@media (max-width: 1250px) {
  .hero-grid {
    min-height: 570px;
    padding: 38px 0 62px;
  }

  .hero-logo-wrap {
    min-height: 405px;
  }

  .hero h1 {
    font-size: clamp(3rem, 5.8vw, 5.65rem);
  }
}

/* TABLET / MOBILE */
@media (max-width: 980px) {
  .topbar .container {
    min-height: 30px;
  }

  .topbar {
    font-size: .66rem;
    letter-spacing: .075em;
  }

  .hero-grid {
    min-height: auto;
    padding: 26px 0 36px;
    gap: 4px;
    align-items: start;
  }

  .hero-grid > div:first-child {
    align-self: start;
    transform: none;
  }

  .hero-grid > div:first-child::before {
    top: -13px;
  }

  .hero-copy {
    margin-top: 20px;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero-note {
    margin-top: 18px;
  }

  .hero-logo-wrap {
    min-height: 260px;
    margin-top: -4px;
  }

  .hero-logo {
    width: min(380px, 78vw);
  }

  .trust-strip {
    margin-top: -18px;
  }

  .secondary-card:last-child {
    transform: none;
  }

  .secondary-card:last-child:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 640px) {
  /* Remove the narrow announcement bar on phones so the brand/hero starts immediately. */
  .topbar {
    display: none;
  }

  .nav-wrap {
    min-height: 62px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-text {
    font-size: .92rem;
  }

  .brand-text small {
    font-size: .5rem;
    letter-spacing: .145em;
  }

  .site-nav {
    top: 62px;
  }

  .hero-grid {
    padding: 20px 0 26px;
    gap: 0;
  }

  .hero-grid > div:first-child::before {
    width: 58px;
    top: -9px;
  }

  .hero .eyebrow {
    margin-bottom: 9px;
    font-size: .66rem;
    letter-spacing: .16em;
  }

  .hero h1 {
    font-size: clamp(2.42rem, 11.7vw, 3.78rem);
    line-height: .94;
    letter-spacing: -.05em;
  }

  .hero-copy {
    margin-top: 17px;
    font-size: .96rem;
    line-height: 1.58;
  }

  .hero-actions {
    margin-top: 22px;
    gap: 9px;
  }

  .hero-actions .btn {
    min-height: 47px;
  }

  .hero-note {
    margin-top: 14px;
    padding: 7px 11px;
    font-size: .72rem;
    line-height: 1.35;
  }

  .hero-logo-wrap {
    min-height: 205px;
    margin-top: -8px;
  }

  .hero-logo {
    width: min(294px, 72vw);
  }

  .hero-logo-wrap::after {
    width: min(275px, 68vw);
  }

  .trust-strip {
    margin-top: -11px;
  }

  .trust-grid {
    border-radius: 20px;
    gap: 8px;
  }

  .trust-item {
    min-width: 188px;
    padding: 14px 12px;
  }

  section {
    padding: 60px 0;
  }

  .section-title {
    font-size: clamp(2.15rem, 10vw, 3.35rem);
  }

  .secondary .section-head {
    margin-bottom: 30px;
  }

  .secondary-card {
    min-height: auto;
    padding: 30px 26px;
    border-radius: 24px 44px 24px 24px !important;
  }

  .secondary-card h3 {
    font-size: 1.65rem;
  }

  .secondary-card p {
    font-size: .96rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo-wrap::before {
    animation: none;
    opacity: 0;
  }
}
