/* ==========================================================================
   Local Yocal — Brand Family Landing Page
   Scoped under .ly-landing so theme styles don't bleed in.
   Design tokens:
     page bg #161210 · brands bg #1d1813 · footer bg #0f0c0a · card bg #221c16
     cream #EDE4D0 · gold #D9982F (hover #e8ad4f) · muted #b8ad97 · faint #7d745f
     borders #3a2f22 (sections) / #3a3026 (cards)
   ========================================================================== */

html {
  scroll-behavior: smooth;
}

/* Beat the block theme's global-styles body rules on this template. */
body.ly-landing-body {
  margin: 0;
  padding: 0;
  background: #161210;
}

.ly-landing,
.ly-landing * {
  box-sizing: border-box;
}

.ly-landing {
  position: relative;
  background: #161210;
  min-height: 100vh;
  font-family: 'Bitter', serif;
  color: #EDE4D0;
  overflow: hidden;
  margin: 0;
}

/* --- 0. Grain overlay ----------------------------------------------------- */
.ly-grain {
  position: fixed;
  inset: 0;
  background-image: url('data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20width=%22200%22%20height=%22200%22%3E%3Cfilter%20id=%22n%22%3E%3CfeTurbulence%20type=%22fractalNoise%22%20baseFrequency=%220.8%22%20numOctaves=%223%22%20stitchTiles=%22stitch%22/%3E%3C/filter%3E%3Crect%20width=%22100%25%22%20height=%22100%25%22%20filter=%22url(%23n)%22/%3E%3C/svg%3E');
  opacity: 0.06;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 90;
}

/* --- 1. Top ribbon --------------------------------------------------------- */
.ly-ribbon {
  border-bottom: 1px solid #3a2f22;
  text-align: center;
  padding: 11px 16px;
  font-family: 'Special Elite', monospace;
  font-size: 12px;
  letter-spacing: 0.32em;
  color: #D9982F;
}

/* --- 2. Header -------------------------------------------------------------- */
.ly-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ly-header-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ly-logo-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #EDE4D0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.ly-logo-circle img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.ly-wordmark {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.18em;
  color: #EDE4D0;
}

.ly-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.ly-nav-link {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: #b8ad97;
  text-decoration: none;
  transition: color .15s ease;
}

.ly-nav-link:hover {
  color: #D9982F;
}

.ly-nav-meta {
  font-family: 'Special Elite', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: #7d745f;
}

/* --- 3. Hero ----------------------------------------------------------------- */
.ly-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 44px 32px 64px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 52px;
  align-items: center;
}

.ly-kicker {
  font-family: 'Special Elite', monospace;
  font-size: 13px;
  letter-spacing: 0.34em;
  color: #D9982F;
  text-transform: uppercase;
}

.ly-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 0.97;
  letter-spacing: 0.01em;
  color: #EDE4D0;
  margin: 16px 0 0;
  text-transform: uppercase;
}

.ly-hero-copy {
  font-family: 'Bitter', serif;
  font-size: 19px;
  line-height: 1.62;
  color: #b8ad97;
  max-width: 500px;
  margin: 24px 0 0;
}

.ly-cta-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.ly-btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.14em;
  color: #161210;
  background: #D9982F;
  padding: 15px 30px;
  text-decoration: none;
  border: 1px solid #D9982F;
  transition: background .15s ease;
}

.ly-btn:hover {
  background: #e8ad4f;
}

.ly-cta-caption {
  font-family: 'Special Elite', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: #7d745f;
}

.ly-hero-visual {
  position: relative;
}

.ly-hero-photo {
  height: 430px;
  border: 1px solid #3a2f22;
  overflow: hidden;
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, .7);
}

.ly-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ly-hero-badge {
  position: absolute;
  left: -26px;
  bottom: -26px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #EDE4D0;
  border: 3px solid #161210;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, .6);
}

.ly-hero-badge img {
  width: 98px;
  height: 98px;
  object-fit: contain;
}

/* --- 4. Brands --------------------------------------------------------------- */
.ly-brands {
  position: relative;
  z-index: 2;
  background: #1d1813;
  border-top: 1px solid #3a2f22;
  padding: 62px 32px 74px;
}

.ly-brands-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.ly-brands-heading {
  text-align: center;
  margin-bottom: 42px;
}

.ly-brands-eyebrow {
  font-family: 'Special Elite', monospace;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: #D9982F;
}

.ly-brands-heading h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.02em;
  color: #EDE4D0;
  margin: 8px 0 0;
  text-transform: uppercase;
}

.ly-brands-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.ly-card {
  background: #221c16;
  border: 1px solid #3a3026;
  overflow: hidden;
  transition: transform .16s ease, border-color .16s ease;
}

.ly-card:hover {
  transform: translateY(-5px);
  border-color: #D9982F;
}

.ly-card-photo {
  position: relative;
  height: 184px;
  background: #161210;
}

.ly-card-photo img {
  display: block;
  width: 100%;
  height: 184px;
  object-fit: cover;
}

.ly-card-index {
  position: absolute;
  top: 14px;
  left: 16px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #D9982F;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .6);
  pointer-events: none;
}

.ly-card-link {
  display: block;
  text-decoration: none;
  padding: 0 26px 26px;
}

.ly-card-plate {
  background: #EDE4D0;
  height: 92px;
  margin-top: -34px;
  position: relative;
  border: 1px solid #3a3026;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.ly-card-plate img {
  max-height: 62px;
  max-width: 84%;
  object-fit: contain;
}

.ly-card--bbq .ly-card-plate img {
  max-height: 74px;
  max-width: 88%;
}

.ly-card--burger .ly-card-plate img {
  max-height: 78px;
  max-width: 70%;
}

.ly-card--augustus .ly-card-plate img {
  max-height: 70px;
  max-width: 84%;
}

.ly-card-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 21px;
  letter-spacing: 0.02em;
  color: #EDE4D0;
  margin-top: 18px;
  text-transform: uppercase;
}

.ly-card-tagline {
  font-family: 'Special Elite', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #D9982F;
  margin-top: 5px;
}

.ly-card-blurb {
  font-family: 'Bitter', serif;
  font-size: 14px;
  line-height: 1.5;
  color: #b8ad97;
  margin-top: 12px;
}

.ly-card-visit {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  color: #EDE4D0;
  margin-top: 16px;
}

/* --- 5. Footer ----------------------------------------------------------------- */
.ly-footer {
  position: relative;
  z-index: 2;
  background: #0f0c0a;
  padding: 40px 32px;
}

.ly-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.ly-footer-wordmark {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.18em;
  color: #EDE4D0;
}

.ly-footer-meta {
  font-family: 'Special Elite', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #7d745f;
}

/* --- Responsive (design intent per handoff) ------------------------------------ */
@media (max-width: 900px) {
  .ly-hero {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .ly-hero h1 {
    font-size: 44px;
  }

  .ly-brands-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .ly-header,
  .ly-hero,
  .ly-brands,
  .ly-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .ly-cta-row {
    flex-wrap: wrap;
  }
}
