@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  --bg: #0a0a0a;
  --bg-card: #111111;
  --gold: #c9a84c;
  --gold-light: #f0d080;
  --gold-dark: #9a7a2a;
  --gold-gradient: linear-gradient(135deg, #9a7a2a, #c9a84c, #f0d080, #c9a84c, #9a7a2a);
  --white: #ffffff;
  --gray: #888888;
  --light-gray: #cccccc;
  --border: rgba(201, 168, 76, 0.2);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ─── TOP ACCENT LINE ─────────────────────────────── */
body::before {
  content: '';
  display: block;
  height: 2px;
  background: var(--gold-gradient);
}

/* ─── HEADER ──────────────────────────────────────── */
header {
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.4);
}

header a {
  display: inline-block;
}

header img {
  height: 90px;
  width: auto;
}

/* ─── HERO ────────────────────────────────────────── */
.hero {
  text-align: center;
  padding: 7rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.hero-sub {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray);
}

.divider {
  width: 50px;
  height: 1px;
  background: var(--gold-gradient);
  margin: 1.75rem auto;
}

/* ─── SECTION SHARED ──────────────────────────────── */
.section-label {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  text-align: center;
}

/* ─── FEATURED CARD (#1) ──────────────────────────── */
.top-pick {
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem 2rem 4rem;
}

.featured-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
}

.featured-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-gradient);
}

.featured-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 100% 0%, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.rank-badge {
  position: absolute;
  top: -1px;
  right: 2.5rem;
  background: var(--gold-gradient);
  color: #0a0a0a;
  font-family: 'Lato', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  z-index: 1;
}

.featured-card-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3.5rem;
  padding: 3.5rem;
  align-items: start;
}

.featured-card-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.restaurant-logo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: block;
}

.restaurant-name {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
  line-height: 1.1;
}

.stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.restaurant-desc {
  font-size: 0.95rem;
  color: var(--light-gray);
  line-height: 1.9;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
  margin-bottom: 2.5rem;
}

.info-item {
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}

.info-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.info-value {
  font-size: 0.875rem;
  color: var(--white);
  line-height: 1.6;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: var(--gold-gradient);
  color: #0a0a0a;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  transition: opacity 0.2s ease;
}

.btn-primary:hover {
  opacity: 0.82;
}

.btn-secondary {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  transition: background 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(201, 168, 76, 0.08);
}

/* ─── OTHER PICKS ─────────────────────────────────── */
.other-picks {
  max-width: 960px;
  margin: 0 auto;
  padding: 3rem 2rem 7rem;
}

.picks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.pick-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.25rem 2rem;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.pick-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold-gradient);
  opacity: 0.4;
}

.pick-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
}

.pick-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  margin-bottom: 1rem;
}

.pick-rank {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.08);
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  line-height: 1;
  pointer-events: none;
}

.pick-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.pick-stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  opacity: 0.65;
}

.pick-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.pick-address {
  font-size: 0.75rem;
  color: rgba(201, 168, 76, 0.5);
  letter-spacing: 0.05em;
}

/* ─── INTRO ───────────────────────────────────────── */
.intro-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.intro-inner {
  border-left: 2px solid var(--gold);
  padding-left: 2rem;
}

.intro-inner p {
  font-size: 1.05rem;
  color: var(--light-gray);
  line-height: 1.9;
  font-style: italic;
}

/* ─── WHY SECTION ─────────────────────────────────── */
.why-section {
  background: rgba(201, 168, 76, 0.03);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
}

.why-inner {
  max-width: 960px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.why-item {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.why-icon {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.2em;
}

.why-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.why-item p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.75;
}

/* ─── MENU SECTION ────────────────────────────────── */
.menu-section {
  padding: 5rem 2rem;
}

.menu-inner {
  max-width: 960px;
  margin: 0 auto;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.menu-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}

.menu-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold-gradient);
  opacity: 0.4;
}

.menu-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.menu-item p {
  font-size: 0.83rem;
  color: var(--gray);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .why-grid,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .intro-inner {
    padding-left: 1.25rem;
  }
}

/* ─── FAQ ─────────────────────────────────────────── */
.faq-section {
  background: rgba(201, 168, 76, 0.03);
  border-top: 1px solid var(--border);
  padding: 5rem 2rem;
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.faq-answer {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
}

.faq-answer strong {
  color: var(--white);
}

.faq-answer a {
  color: var(--gold);
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* ─── FOOTER ──────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 4rem 2rem;
  text-align: center;
  background: rgba(0,0,0,0.3);
}

.footer-logo {
  height: 55px;
  width: auto;
  opacity: 0.55;
  margin-bottom: 2rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.footer-text {
  font-size: 0.72rem;
  color: var(--gray);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 768px) {
  .featured-card-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 2rem;
  }

  .restaurant-logo {
    width: 140px;
    height: 140px;
  }

  .restaurant-name {
    font-size: 1.8rem;
  }

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

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

  .hero h1 {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
}

@media (max-width: 480px) {
  .btn-group {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    text-align: center;
  }
}
