/* ============================================================
   1800 Vine St. -- Guide Detail Page Styles
   ============================================================ */

html, body {
  background: #fff;
  margin: 0;
  padding: 0;
}

/* ============================================================
   GUIDE NAV (replaces site-nav on detail pages)
   ============================================================ */
.guide-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 28px 40px;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: padding 0.3s ease;
}

.guide-nav-back {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  transition: color 0.15s;
}

.guide-nav-back:hover {
  color: #555;
}

.guide-back-icon {
  width: 16px;
  height: 16px;
  transform: rotate(180deg);
  opacity: 0.7;
}

.guide-nav .nav-logo-link {
  justify-self: center;
}

.guide-nav-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-self: end;
}

.guide-nav-hamburger img {
  height: 48px;
  width: auto;
}

/* ============================================================
   GUIDE MAIN CONTENT
   ============================================================ */
.guide-main {
  padding-top: 100px;
  min-height: calc(100vh - 72px);
  background: #fff;
}

.guide-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 64px 80px;
}

.guide-eyebrow {
  font-family: 'Inter Tight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #000;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.guide-headline {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  color: #000;
  margin: 0 0 56px;
  line-height: 1;
  letter-spacing: -0.01em;
}

.guide-body {
  width: 100%;
}

.guide-body p {
  font-family: 'Inter Tight', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #111;
  line-height: 1.7;
  margin: 0 0 24px;
}

.guide-body h2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  margin: 48px 0 16px;
  letter-spacing: 0.01em;
}

.guide-body ul,
.guide-body ol {
  margin: 0 0 24px;
  padding-left: 24px;
}

.guide-body ul li,
.guide-body ol li {
  font-family: 'Inter Tight', sans-serif;
  font-size: 17px;
  color: #111;
  line-height: 1.7;
  margin-bottom: 8px;
}

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 640px) {
  .guide-nav {
    padding: 14px 20px;
  }
  .guide-nav-hamburger img {
    height: 30px;
  }

  .guide-nav-spacer {
    width: 60px;
  }

  .guide-inner {
    padding: 48px 24px 64px;
  }

  .guide-body {
    max-width: 100%;
  }
}
