* { box-sizing: border-box; }

:root {
  --ink: #07110a;
  --deep: #102217;
  --green: #1f5c35;
  --green2: #6aa044;
  --fairway: #eef8dd;
  --cream: #fff7df;
  --white: #ffffff;
  --gold: #d7a84d;
  --gold2: #ffda7a;
  --muted: #53624f;
  --shadow: 0 30px 80px rgba(9, 39, 18, .18);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fff8df 0%, #eff8dd 28%, #ffffff 100%);
}

.announcement {
  display: flex;
  gap: 26px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 12px 18px;
  background: linear-gradient(90deg, #0c1a0f, #214c2a, #0c1a0f);
  color: var(--gold2);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 900;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(215,168,77,.35);
  box-shadow: 0 14px 42px rgba(22, 61, 25, .08);
}

.header-inner {
  max-width: 1240px;
  margin: auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand img {
  width: 172px;
  max-width: 34vw;
  display: block;
}

nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

nav a {
  color: #172a16;
  text-decoration: none;
  font-weight: 900;
  font-size: .92rem;
}

.header-btn,
.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 900;
  border: 1px solid rgba(215,168,77,.7);
  transition: transform .2s ease, box-shadow .2s ease;
}

.header-btn,
.btn.gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #141006;
  box-shadow: 0 14px 30px rgba(215,168,77,.28);
}

.btn.glass {
  color: #ffffff;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.35);
}

.btn.dark {
  background: #102217;
  color: var(--gold2);
  border-color: #102217;
}

.btn:hover,
.header-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(9,39,18,.18);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  padding: 90px 24px;
  background-image:
    linear-gradient(120deg, rgba(5,12,7,.75), rgba(15,45,20,.52), rgba(255,255,255,.10)),
    url('https://images.unsplash.com/photo-1535131749006-b7f58c99034b?auto=format&fit=crop&w=2200&q=90');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, #fff8df);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1040px, 100%);
  text-align: center;
  color: #ffffff;
}

.hero-logo {
  width: min(285px, 80vw);
  margin: 0 auto 18px;
  display: block;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,.35));
}

.eyebrow,
.section-kicker {
  color: var(--gold2);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .8rem;
  font-weight: 900;
}

.section-kicker {
  color: #9d6d08;
  text-align: center;
}

h1 {
  font-size: clamp(3.4rem, 8vw, 7.8rem);
  line-height: .88;
  margin: 16px auto;
  letter-spacing: -.06em;
  max-width: 1000px;
  text-shadow: 0 16px 50px rgba(0,0,0,.35);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  line-height: .96;
  margin: 12px auto 22px;
  letter-spacing: -.05em;
  max-width: 980px;
}

h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
  max-width: 820px;
  margin: 0 auto;
  color: rgba(255,255,255,.9);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 42px auto 0;
  max-width: 920px;
}

.stats div {
  padding: 20px 14px;
  border-radius: 24px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(12px);
}

.stats strong {
  display: block;
  color: var(--gold2);
  font-size: 2rem;
}

.stats span {
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
}

.luxury-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: #0c1a0f;
  color: var(--gold2);
  border-block: 1px solid rgba(215,168,77,.35);
}

.luxury-strip div {
  text-align: center;
  padding: 18px 8px;
  font-weight: 900;
  letter-spacing: .12em;
  border-right: 1px solid rgba(215,168,77,.18);
}

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 90px 24px;
}

.intro {
  text-align: center;
}

.intro p,
.center-copy {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.12rem;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 24px;
}

.editorial-card {
  min-height: 330px;
  border-radius: 34px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  background-image: linear-gradient(180deg, transparent, rgba(0,0,0,.72)), var(--img);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  color: #fff;
}

.editorial-card.large {
  grid-row: span 2;
  min-height: 684px;
}

.editorial-card span {
  color: var(--gold2);
  font-weight: 900;
  letter-spacing: .12em;
}

.editorial-card p {
  color: rgba(255,255,255,.86);
  line-height: 1.6;
}

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: center;
}

.image-frame {
  padding: 12px;
  border-radius: 38px;
  background: linear-gradient(135deg, var(--gold), #ffffff, var(--green2));
  box-shadow: var(--shadow);
}

.image-frame img,
.gallery-grid img {
  width: 100%;
  display: block;
  border-radius: 28px;
  object-fit: cover;
}

.image-frame img {
  aspect-ratio: 4 / 5;
}

.feature-split p,
.feature-split li {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.08rem;
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  margin: 12px 0;
  padding-left: 34px;
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0c1a0f;
  background: var(--gold2);
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.gallery {
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.gallery-grid img {
  aspect-ratio: 1 / 1.12;
  box-shadow: 0 24px 60px rgba(9,39,18,.14);
}

.sponsor-section {
  text-align: center;
}

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

.price-card,
.ticket-grid article {
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(215,168,77,.35);
  border-radius: 34px;
  padding: 30px;
  box-shadow: 0 24px 64px rgba(9,39,18,.10);
  text-align: left;
}

.price-card.featured,
.ticket-grid .featured {
  background: linear-gradient(180deg, #102217, #1f5c35);
  color: #ffffff;
  transform: translateY(-12px);
}

.price-card.featured p,
.price-card.featured li,
.ticket-grid .featured p {
  color: rgba(255,255,255,.84);
}

.tier {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(215,168,77,.18);
  color: #9d6d08;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 900;
}

.featured .tier {
  color: #111;
  background: var(--gold2);
}

.price {
  color: #a56d00;
  font-size: 2.35rem;
  font-weight: 900;
  margin: 10px 0;
}

.featured .price {
  color: var(--gold2);
}

.price-card ul {
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.75;
}

.sponsor-wall {
  text-align: center;
}

.logo-wall {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.logo-wall div {
  min-height: 112px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(255,255,255,.96);
  border: 1px dashed rgba(215,168,77,.65);
  color: #5b6b57;
  font-weight: 900;
}

.logo-wall img {
  width: 100%;
  max-width: 140px;
  height: auto;
  object-fit: contain;
}

.tickets {
  text-align: center;
  background: linear-gradient(135deg, rgba(255,250,230,.65), rgba(238,248,221,.8));
  border-radius: 46px;
  margin-bottom: 40px;
}

.faq details {
  max-width: 880px;
  margin: 14px auto;
  padding: 20px 24px;
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(215,168,77,.32);
  box-shadow: 0 16px 42px rgba(9,39,18,.08);
}

.faq summary {
  font-weight: 900;
  cursor: pointer;
  font-size: 1.1rem;
}

.faq p {
  color: var(--muted);
  line-height: 1.7;
}

.contact-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: start;
  padding: 42px;
  border-radius: 42px;
  background:
    linear-gradient(90deg, rgba(16,34,23,.92), rgba(31,92,53,.84)),
    url('https://images.unsplash.com/photo-1500932334442-8761ee4810a7?auto=format&fit=crop&w=1600&q=85');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  color: #ffffff;
}

.contact-card p {
  color: rgba(255,255,255,.84);
  line-height: 1.75;
}

form {
  display: grid;
  gap: 14px;
  background: rgba(255,255,255,.88);
  border-radius: 30px;
  padding: 24px;
}

label {
  display: grid;
  gap: 8px;
  color: #172a16;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(31,92,53,.25);
  padding: 14px 16px;
  font: inherit;
  background: #ffffff;
  color: #172a16;
}

footer {
  text-align: center;
  padding: 52px 24px;
  background: #0c1a0f;
  color: rgba(255,255,255,.78);
}

footer img {
  width: 150px;
  max-width: 45vw;
  margin-bottom: 14px;
}

@media (max-width: 980px) {
  .header-inner {
    flex-direction: column;
    text-align: center;
  }

  nav {
    justify-content: center;
  }

  .stats,
  .luxury-strip,
  .editorial-grid,
  .feature-split,
  .gallery-grid,
  .pricing-grid,
  .ticket-grid,
  .logo-wall,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .editorial-card.large {
    min-height: 420px;
  }

  .price-card.featured,
  .ticket-grid .featured {
    transform: none;
  }

  .brand img {
    width: 220px;
    max-width: 80vw;
  }
}


/* ===== V13 COMPLETE LUXURY ENHANCEMENTS ===== */

.luxury-complete {
  background:
    radial-gradient(circle at 15% 5%, rgba(255, 218, 122, .20), transparent 22%),
    linear-gradient(180deg, #fff8df 0%, #eef8dd 34%, #ffffff 100%);
}

.luxury-fade {
  animation: luxuryFadeUp 1.25s ease both;
}

@keyframes luxuryFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}




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




  50% {
    box-shadow: 0 22px 48px rgba(9,39,18,.18), 0 0 0 14px rgba(255,218,122,0);
  }
}

.hero {
  background-attachment: fixed;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, transparent 0 42%, rgba(255,218,122,.20) 48%, transparent 56%),
    radial-gradient(circle at 50% 20%, rgba(255,255,255,.18), transparent 28%);
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-content {
  animation-delay: .1s;
}

.luxury-strip div {
  transition: background .25s ease, color .25s ease;
}

.luxury-strip div:hover {
  background: rgba(255, 218, 122, .12);
  color: #ffffff;
}

.editorial-card,
.gallery-grid img,
.price-card,
.ticket-grid article,
.logo-wall div,
.faq details {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.editorial-card:hover,
.gallery-grid img:hover,
.price-card:hover,
.ticket-grid article:hover,
.logo-wall div:hover,
.faq details:hover {
  transform: translateY(-7px);
  box-shadow: 0 32px 80px rgba(9,39,18,.18);
  border-color: rgba(215,168,77,.65);
}

.premium-touchpoints {
  text-align: center;
}

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

.premium-grid article {
  text-align: left;
  padding: 30px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.74)),
    radial-gradient(circle at top right, rgba(255,218,122,.26), transparent 38%);
  border: 1px solid rgba(215,168,77,.34);
  box-shadow: 0 24px 64px rgba(9,39,18,.10);
}

.premium-grid span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #111;
  font-weight: 900;
  margin-bottom: 14px;
}

.premium-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.floating-reserve {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  padding: 14px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #111;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(9,39,18,.22), 0 0 22px rgba(255,218,122,.42);
  border: 1px solid rgba(255,255,255,.5);
}

.floating-reserve:hover {
  transform: translateY(-3px);
}

.contact-card {
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,218,122,.18), transparent);
  transform: translateX(-100%);
  animation: shineSweep 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shineSweep {
  0%, 65% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@media (max-width: 980px) {
  .hero {
    background-attachment: scroll;
  }

  .premium-grid {
    grid-template-columns: 1fr;
  }

  .floating-reserve {
    left: 18px;
    right: 18px;
    text-align: center;
  }
}


/* V17 — force clean logo, no shimmer/glow/line treatment */
.hero-logo,
.clean-hero-logo,
.brand img,
footer img {
  filter: none !important;
  box-shadow: none !important;
  animation: none !important;
  transform: none !important;
  background: transparent !important;
}

.hero-logo,
.clean-hero-logo {
  width: min(285px, 80vw);
  height: auto;
  display: block;
  margin: 0 auto 18px;
  object-fit: contain;
}


/* V18 — use untouched original logo to remove transparent-cutout damage */
.brand img,
.hero-logo,
.original-hero-logo,
footer img {
  filter: none !important;
  box-shadow: none !important;
  animation: none !important;
  background: #ffffff !important;
  border-radius: 18px !important;
  padding: 8px !important;
  object-fit: contain !important;
}

.hero-logo,
.original-hero-logo {
  width: min(315px, 82vw) !important;
  height: auto !important;
  display: block !important;
  margin: 0 auto 18px !important;
}

.brand img {
  width: 160px !important;
  height: auto !important;
}

footer img {
  width: 150px !important;
  height: auto !important;
}


/* V19 — final transparent logo applied cleanly */
.brand img,
.hero-logo,
footer img {
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: none !important;
}


/* V20 — repaired logo applied cleanly everywhere */
.brand img,
.hero-logo,
footer img {
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  image-rendering: auto;
}


/* V21 Black golfer feature */

.golfer-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:38px;
  align-items:center;
}

.golfer-image img {
  width:100%;
  display:block;
  border-radius:34px;
  object-fit:cover;
  aspect-ratio:4/5;
  box-shadow:0 30px 80px rgba(9,39,18,.18);
}

.golfer-copy p {
  color:var(--muted);
  line-height:1.8;
}

.golfer-points {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin:26px 0;
}

.golfer-points div {
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(215,168,77,.28);
  font-weight:800;
}

@media (max-width:980px){
  .golfer-grid,
  .golfer-points{
    grid-template-columns:1fr;
  }
}


/* Website4 custom luxury image section */

.custom-luxury-image {
  padding-top: 40px;
}

.custom-image-wrapper {
  max-width: 1180px;
  margin: 0 auto;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.18);
  border: 1px solid rgba(215,168,77,.25);
}

.custom-image-wrapper img {
  width: 100%;
  display: block;
  height: auto;
}


/* V23 clean logo styling */
.brand img,
.hero-logo,
footer img {
  filter: none !important;
  box-shadow: none !important;
  animation: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
}


/* Requested final changes */

.centered-banner{
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
margin:0 auto;
}

.logo-wall.no-boxes div{
background:transparent !important;
border:none !important;
box-shadow:none !important;
padding:8px;
}

.logo-wall.no-boxes img{
max-width:140px;
height:auto;
object-fit:contain;
}



/* DC image added to Premium Touchpoints card 01 */
.premium-touchpoints .honoree-photo {
  width: 100%;
  max-width: 220px;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 12px auto 18px;
  border-radius: 22px;
  border: 3px solid rgba(215,168,77,.55);
  box-shadow: 0 18px 42px rgba(9,39,18,.16);
}


/* Centered event banner title */
.event-title-centered{
  text-align:center;
  width:100%;
  margin:0 auto;
  line-height:1.7;
}


/* Venue logos */
.venue-logos{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:40px;
  flex-wrap:wrap;
  margin-top:30px;
}

.venue-logos img{
  max-width:220px;
  width:100%;
  height:auto;
  object-fit:contain;
  background:white;
  padding:14px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}


/* Equalized Sponsorship Wall of Fame Logos */
.sponsor-wall .logo-wall,
.sponsor-wall .venue-logos{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:32px;
    width:100%;
    margin:0 auto;
}

.sponsor-wall .logo-wall div,
.sponsor-wall .venue-logos div{
    display:flex;
    justify-content:center;
    align-items:center;
}

.sponsor-wall .logo-wall img,
.sponsor-wall .venue-logos img{
    width:220px;
    height:140px;
    object-fit:contain;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 auto;
    padding:14px;
    background:#ffffff;
    border-radius:18px;
    box-shadow:0 10px 24px rgba(0,0,0,.08);
}

@media(max-width:768px){
    .sponsor-wall .logo-wall img,
    .sponsor-wall .venue-logos img{
        width:160px;
        height:110px;
    }
}


/* Sponsorship Wall of Fame - centered equal logos without boxes */
.sponsor-wall .logo-wall,
.sponsor-wall .venue-logos{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:36px;
    width:100%;
    margin:0 auto;
}

.sponsor-wall .logo-wall img,
.sponsor-wall .venue-logos img{
    width:220px !important;
    height:140px !important;
    object-fit:contain;
    display:block;
    margin:0 auto;
    padding:0 !important;
    background:transparent !important;
    border:none !important;
    border-radius:0 !important;
    box-shadow:none !important;
}

@media(max-width:768px){
    .sponsor-wall .logo-wall img,
    .sponsor-wall .venue-logos img{
        width:160px !important;
        height:100px !important;
    }
}

/* Keep Netlify registration-only forms invisible even when the global form style sets display:grid */
[hidden],
.nettylify-hidden-form,
.netlify-hidden-form {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
}
