/* ============================================
   SUKHUMVIT 33 — THE GRILL
   s33.css — soi-specific stylesheet
   ============================================ */

/* NAV */
.site-header {
  border-bottom: 1px solid rgba(240,168,48,.16);
  position: relative;
  z-index: 10;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 18px 28px;
  gap: 18px;
  flex-wrap: wrap;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: -.01em;
  color: #f3ece2;
  text-decoration: none;
}
.nav-logo strong { color: #f0a830; font-weight: 900; }
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  font-size: .8rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  flex-wrap: wrap;
}
.nav-links a { color: #a79f97; text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: #f0a830; }

/* HERO */
.hero {
  padding: 80px 0 56px;
  position: relative;
  z-index: 2;
}
.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}
.hero-breadcrumb {
  font-size: .76rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #f0a830;
  margin-bottom: 22px;
}
.hero-breadcrumb a { color: #f0a830; text-decoration: none; }
.hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  max-width: 20ch;
  margin-bottom: 22px;
  color: #f3ece2;
}
.hero-lede {
  font-size: 1.16rem;
  color: #a79f97;
  max-width: 60ch;
}

/* SECTIONS */
.section-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px 56px;
  position: relative;
  z-index: 2;
}
.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  font-size: .76rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #6f6860;
}
.section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(240,168,48,.16);
}
.street-desc {
  font-size: 1.08rem;
  color: #a79f97;
  max-width: 72ch;
  line-height: 1.75;
}

/* VENUE CARDS */
.venue-card {
  background: linear-gradient(180deg, #1b1720, #15121a);
  border: 1px solid rgba(240,168,48,.16);
  border-radius: 14px;
  padding: 26px 24px;
  color: #f3ece2;
  margin-bottom: 18px;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), border-color .3s;
}
.venue-card:hover {
  transform: translateY(-3px);
  border-color: rgba(240,168,48,.45);
}
.venue-badge {
  display: inline-block;
  font-size: .66rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #f0a830;
  border: 1px solid rgba(240,168,48,.3);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 14px;
}
.venue-badge-gold {
  color: #a79f97;
  border-color: rgba(167,159,151,.3);
}
.venue-name {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -.01em;
  margin-bottom: 6px;
}
.venue-platinum .venue-name { font-size: 2rem; }
.venue-name a { color: #f3ece2; text-decoration: none; }
.venue-name a:hover { color: #f0a830; }
.venue-type {
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #6f6860;
  margin-bottom: 12px;
}
.venue-desc {
  font-size: .98rem;
  color: #a79f97;
  max-width: 62ch;
}

/* GOLD GRID — listed venues */
.gold-grid {
  display: grid;
  gap: 12px;
}
.venue-gold {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 10px;
}
.venue-gold .venue-name { font-size: 1.1rem; margin-bottom: 3px; }
.venue-gold .venue-desc { font-size: .92rem; }

/* FOOTER */
footer {
  border-top: 1px solid rgba(240,168,48,.16);
  padding: 32px 28px;
  text-align: center;
  font-size: .8rem;
  color: #6f6860;
  position: relative;
  z-index: 2;
}
footer a { color: #f0a830; text-decoration: none; }
