@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Manrope:wght@200..800&display=swap");

:root {
  --bg: #fbf8f3;
  --card-bg: #f4eee0;
  --text-dark: #1c1a17;
  --text-gray: #6f6a62;
  --gold: #ab8a44;
  --gold-light: #ddc07f;
  --gold-dark: #96742c;
  --border-light: #e6ddc9;
  --badge-bg: #17130f;
}

* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  color: var(--text-gray);
  background-color: var(--bg);
}

h1,
h2,
h3,
h4,
.brand-font {
  font-family: "Fraunces", serif;
  font-weight: 500;
  color: var(--text-dark);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

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

.italic-gold {
  font-style: italic;
  color: var(--gold);
}

.gold-gradient-text {
  -webkit-text-fill-color: transparent;
  color: #0000;
  background: linear-gradient(135deg, #deb868 0%, #e8c97a 25%, #c9a24b 55%, #a87f32 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 20px;
  background-color: var(--badge-bg);
  border: 1px solid rgba(171, 138, 68, .6);
  border-radius: 30px;
  color: #f3e7cf;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.badge-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--gold-light);
  display: inline-block;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  border: 0;
  color: var(--text-dark);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: .85rem;
  padding: 14px 20px;
  border-radius: 30px;
  box-shadow: 0 12px 24px rgba(171, 138, 68, .28);
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(171, 138, 68, .38);
  color: var(--text-dark);
}

.nav-register {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-register:hover {
  color: var(--gold-dark);
}

#header {
  background-color: var(--bg);
}

#header .navbar-brand img {
  max-width: 90px;
}

.hairline-gold {
  height: 1px;
  background: linear-gradient(90deg, #0000 0%, #c9a24b80 20%, #c9a24bb3 50%, #c9a24b80 80%, #0000 100%);
}

.hero {
  position: relative;
  padding: 90px 0 70px;
  background: radial-gradient(ellipse 900px 500px at 18% 30%, rgba(221, 192, 127, .16), transparent 60%);
}

.hero-heading {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 100px;
  line-height: 1.08;
  margin-bottom: 18px;
}

.hero-subheading {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.08;
  margin-bottom: 18px;
}

.hero-heading .line {
  display: block;
}

.hero-sub {
  font-size: clamp(1.75rem, 2.4vw, 1.6rem);
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 18px;
}

.divider-short {
  width: 140px;
  margin: 0 0 20px;
}

.hero-tagline {
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 18px;
}

.hero-location {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 34px;
  display: block;
}

.info-strip .info-col {
  padding: 24px 20px;
  border-right: 1px solid var(--border-light);
}

.info-strip .info-col:first-child {
  padding-left: 0;
}

.info-strip .info-col:last-child {
  border-right: 0;
}

.info-strip .value {
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1.25;
}

.info-strip .label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-top: 6px;
  display: block;
}

.register-card {
  background-color: var(--card-bg);
  border: 1px solid rgba(171, 138, 68, .35);
  border-radius: 16px;
  padding: 44px 40px;
  box-shadow: 0 30px 60px rgba(28, 26, 23, .08);
}

.register-card h2 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
  margin: 18px 0 0;
}

.register-card .divider-short {
  margin-top: 18px;
}

.register-card .sub {
  font-size: .92rem;
  margin-bottom: 26px;
}

.register-card .form-group {
  margin-bottom: 20px;
}

.register-card label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-gray);
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.register-card .form-control {
  border: 0;
  border-bottom: 1px solid var(--border-light);
  border-radius: 0;
  padding: 6px 2px;
  background-color: transparent;
  font-size: .95rem;
  color: var(--text-dark);
}

.register-card .form-control:focus {
  box-shadow: none;
  border-color: var(--gold);
}

.register-card .form-check {
  margin-bottom: 22px;
}

.register-card .form-check-label {
  font-size: .78rem;
  color: var(--text-gray);
}

.register-card .form-check-label a {
  color: var(--gold);
  text-decoration: underline;
}

.register-card .btn-gold {
  width: 100%;
}

.register-card .disclaimer {
  font-size: .72rem;
  color: var(--text-gray);
  margin-top: 16px;
  margin-bottom: 0;
}

.overview-section {
  padding: 90px 0;
}

.section-eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-gray);
  display: block;
  margin-bottom: 18px;
}

.overview-heading {
  font-size: 3rem;
  line-height: 1.2;
  max-width: 780px;
  margin-bottom: 28px;
}

.overview-text {
  font-size: 1.02rem;
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 50px;
}

.overview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 0;
}

.overview-stats .stat-col {
  padding: 0 30px;
  border-right: 1px solid var(--border-light);
}

.overview-stats .stat-col:nth-child(3n) {
  border-right: 0;
}

.overview-stats .stat-col:nth-child(3n + 1) {
  padding-left: 0;
}

.overview-stats .value {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--gold);
  line-height: 1.25;
}

.overview-stats .label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-top: 8px;
  display: block;
}

.location-section {
  padding: 90px 0;
  background-color: var(--card-bg);
}

.location-heading {
  font-size: 2.6rem;
  line-height: 1.25;
  max-width: 820px;
  margin-bottom: 28px;
}

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

.location-category {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 16px;
}

.location-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-dark);
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.location-item .time {
  color: var(--gold);
  white-space: nowrap;
}

.location-map {
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
}

.location-map iframe {
  width: 100%;
  height: 360px;
  display: block;
}

.location-caption {
  margin: 18px 0 0;
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.site-footer {
  background-color: var(--badge-bg);
  color: #a8a094;
}

.site-footer .footer-container {
  padding: 50px 0 40px;
}

.site-footer .footer-logo {
  max-width: 160px;
  margin-bottom: 18px;
}

.site-footer p {
  font-size: .92rem;
  line-height: 1.7;
}

.site-footer .company-name {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: #f3e7cf;
}

.site-footer .footer-title {
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.site-footer p a {
  color: #fff;
}

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

.site-footer .footer-disclaimer {
  margin-top: 40px;
}

.site-footer .copyright-divider {
  margin: 30px 0 18px;
  opacity: .8;
  background: #fff;
}

.site-footer hr {
  border-color: rgba(255, 255, 255, .1);
  margin: 40px 0 18px;
  opacity: 1;
}

.site-footer .copyright {
  font-size: .8rem;
  color: #fff;
}

.tick-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8c97a 0%, #deb868 30%, #c9a24b 65%, #a87f32 100%);
  box-shadow: rgba(201, 162, 75, .6) 0 10px 30px -10px;
}

.tick-icon>svg {
  width: 40px;
}

@media (max-width:991px) {
  .hero {
    padding: 60px 0 50px
  }

  .hero-heading {
    font-size: 56px
  }

  .register-card h2 {
    font-size: 1.5rem;
    margin: 0
  }

  .overview-heading {
    font-size: 2.2rem
  }

  .location-heading {
    font-size: 2rem
  }

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

  .location-map {
    margin-top: 40px
  }

  .hero .row {
    text-align: center
  }

  .hero-tagline {
    margin-left: auto;
    margin-right: auto
  }

  .divider-short {
    margin-left: auto;
    margin-right: auto
  }

  .info-strip {
    text-align: center
  }

  .info-strip .info-col {
    padding: 16px 0
  }

  .info-strip .info-col:last-child {
    border-bottom: 0
  }

  .register-card {
    margin-top: 50px;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto
  }

  .site-footer {
    text-align: center
  }

  .site-footer p {
    font-size: .8rem !important
  }

  .site-footer .col-lg-6:last-child {
    text-align: center !important;
    margin-top: 30px
  }
}

@media (max-width:767px) {
  .overview-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px
  }

  .overview-stats .stat-col {
    border-right: 0;
    padding: 0 0 20px;
    border-bottom: 1px solid var(--border-light)
  }
}

@media (max-width:575px) {
  .hero {
    padding: 40px 0 40px
  }

  .hero-heading {
    font-size: 42px
  }

  .info-strip .info-col {
    border-right: 0;
    border-bottom: 1px solid var(--border-light)
  }

  .register-card {
    padding: 30px 22px
  }

  .overview-section {
    padding: 60px 0;
    text-align: center
  }

  .overview-heading,
  .overview-text,
  .divider-short {
    margin-left: auto;
    margin-right: auto
  }

  .overview-stats {
    grid-template-columns: 1fr
  }

  .location-section {
    padding: 60px 0;
    text-align: center
  }

  .location-heading {
    margin-left: auto;
    margin-right: auto
  }

  .location-grid {
    grid-template-columns: 1fr
  }

  .location-item {
    text-align: left
  }
}