/* Grand Ash Cigar Lounge — Luxury Theme */

/* Fonts: Playfair Display (headings), Inter (body) */
:root {
  --bg: #0b0b0d;
  --bg-2: #0f0f13;
  --panel: #121217;
  --text: #f1ede6;
  --muted: #c7c0b4;
  --gold: #c9a646;
  --gold-2: #8c6b3d;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 10px 30px rgba(0,0,0,.5);
  --radius: 14px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 80% -10%, rgba(201,166,70,0.15), transparent 60%),
              radial-gradient(1000px 500px at -10% 10%, rgba(140,107,61,0.2), transparent 50%),
              linear-gradient(180deg, var(--bg), var(--bg-2));
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

.container {
  width: min(1120px, calc(100% - 3rem));
  margin-inline: auto;
}

.announcement {
  text-align: center;
  padding: .5rem 1rem;
  background: linear-gradient(90deg, rgba(201,166,70,.15), rgba(140,107,61,.2));
  color: var(--text);
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  letter-spacing: .08em;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(13,13,16,.6);
  backdrop-filter: blur(10px) saturate(120%);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: .8rem 0;
}
.brand { display: inline-flex; align-items: center; gap: .75rem; color: inherit; text-decoration: none; }
.brand-mark { width: 40px; height: 40px; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(0,0,0,.4)); }
.brand-name { font-family: 'Playfair Display', serif; font-weight: 600; letter-spacing: .02em; }

.nav { display: flex; gap: 1rem; }
.nav a {
  color: var(--text); text-decoration: none; padding: .5rem .75rem; border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.nav a:hover { background: rgba(255,255,255,.06); }
.nav a.active { color: var(--gold); background: rgba(201,166,70,.1); }

.nav-toggle { display: none; background: transparent; color: var(--text); border: 1px solid var(--border); border-radius: 10px; padding: .4rem .6rem; }

/* Hero */
.hero {
  position: relative; isolation: isolate;
  min-height: 72vh; display: grid; align-items: center;
  background-position: center; background-size: cover; background-repeat: no-repeat;
}
.hero-inner { padding: 6rem 0 4rem; position: relative; z-index: 2; }
.hero-content { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: clamp(1rem, 4vw, 3rem); }
.hero-logo img { width: clamp(160px, 22vw, 300px); height: auto; filter: drop-shadow(0 8px 24px rgba(0,0,0,.55)); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(1200px 600px at 70% -20%, rgba(201,166,70,.18), transparent 60%),
              radial-gradient(1000px 500px at 0% 10%, rgba(140,107,61,.25), transparent 50%),
              linear-gradient(180deg, rgba(10,10,12,.7), rgba(10,10,12,.9));
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0 2px, transparent 2px 6px);
  mix-blend-mode: soft-light; opacity: .7;
}
.kicker { color: var(--muted); text-transform: uppercase; letter-spacing: .14em; font-size: .9rem; margin: 0 0 .6rem; }
.display { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 8vw, 4.5rem); line-height: 1.05; margin: 0 0 .6rem; }
.subhead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: #e7e1d7; margin: 0 0 1.25rem; }

.cta-row { display: flex; gap: .75rem; flex-wrap: wrap; }
.btn { display: inline-block; padding: .7rem 1rem; border-radius: 12px; text-decoration: none; font-weight: 600; border: 1px solid var(--border); transition: transform .15s ease, background .15s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(180deg, rgba(201,166,70,.18), rgba(201,166,70,.08)); color: var(--text); border-color: rgba(201,166,70,.35); }
.btn-primary:hover { background: linear-gradient(180deg, rgba(201,166,70,.25), rgba(201,166,70,.12)); }
.btn-ghost { background: transparent; color: var(--text); }

/* Sections */
.section { padding: 3.5rem 0; }
.section.flyer { padding-top: 1.5rem; }
.flyer-panel { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.flyer-panel img { width: 100%; height: auto; display: block; }
.narrow { width: min(780px, 100%); }
.lead { font-size: 1.125rem; color: #efe9df; }

.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.panel {
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent), var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}
.panel h2 { font-family: 'Playfair Display', serif; margin-top: 0; }

.hours { list-style: none; padding: 0; margin: .5rem 0 0; }
.hours li { display: flex; justify-content: space-between; padding: .4rem 0; border-bottom: 1px dashed rgba(255,255,255,.06); }
.hours li:last-child { border-bottom: 0; }
.hours .closed { color: #f0c8c8; }

.badge { display: inline-block; padding: .4rem .6rem; border-radius: 999px; background: rgba(201,166,70,.15); color: var(--gold); border: 1px solid rgba(201,166,70,.35); font-weight: 600; }

.banner { display: inline-block; padding: .45rem .7rem; border: 1px solid var(--border); border-radius: 10px; background: rgba(255,255,255,.02); }
.center { text-align: center; }
.small { font-size: .9rem; }
.muted { color: var(--muted); }

/* Tiles & Cards */
.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; align-items: stretch; }
.tile, .card { background: linear-gradient(180deg, rgba(255,255,255,.02), transparent), var(--panel); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.tile-media { aspect-ratio: 16/9; background-color: #0e0e12; border-bottom: 1px solid var(--border); background-position: center; background-size: cover; }
.tile-body { padding: 1rem 1.25rem 1.25rem; }

.card { display: flex; flex-direction: column; }
.card-head { padding: 1rem 1.25rem 0; }
.card .price { font-size: 1.35rem; font-weight: 700; color: var(--gold); }
.card .unit { font-weight: 600; color: var(--muted); font-size: .95rem; }
.card .benefits { padding: 0 1.25rem 1.25rem; margin: 1rem 0 0; list-style: none; }
.card .benefits li { padding: .35rem 0; border-bottom: 1px dashed rgba(255,255,255,.06); }
.card .benefits li:last-child { border-bottom: 0; }
.card.featured { border-color: rgba(201,166,70,.4); box-shadow: 0 15px 40px rgba(201,166,70,.15); }

.checklist { list-style: none; padding: 0; margin: .5rem 0 0; }
.checklist li { padding: .35rem 0 .35rem 1.6rem; position: relative; }
.checklist li::before { content: "✔"; position: absolute; left: 0; color: var(--gold); opacity: .85; }

/* Page hero */
.page-hero { padding: 4.5rem 0 1.5rem; border-bottom: 1px solid var(--border); background: linear-gradient(180deg, rgba(201,166,70,.08), transparent); }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 1.25rem 0; background: rgba(12,12,15,.6); backdrop-filter: blur(8px) saturate(120%); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.footer-brand { display: flex; gap: .75rem; align-items: center; }
.footer-brand img { width: 36px; height: 36px; object-fit: contain; filter: drop-shadow(0 1px 6px rgba(0,0,0,.4)); }

/* Links */
.link { color: var(--gold); text-decoration: none; border-bottom: 1px dotted rgba(201,166,70,.5); padding-bottom: 2px; }
.link:hover { color: #e0c37a; border-bottom-style: solid; }

/* Responsive */
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 780px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-logo { justify-self: center; }
  .nav-toggle { display: inline-block; }
  .nav { position: absolute; right: 1.5rem; top: 64px; background: var(--panel); border: 1px solid var(--border); border-radius: 14px; padding: .4rem; display: none; flex-direction: column; box-shadow: var(--shadow); }
  .nav.open { display: flex; }
}
