/* ============================================================
   Butter & Batch — Launch Landing Page
   White-page palette with butter-yellow accents.
   Single-page, scroll-only. No build step.
   ============================================================ */

:root {
  --butter:        #FFE497;
  --butter-soft:   #FFF3D1;
  --butter-tint:   #FFFAEC;
  --cream:         #FFFBF0;
  --white:         #FFFFFF;
  --navy:          #193764;
  --navy-deep:     #12284A;
  --navy-soft:     #4A6391;
  --charcoal:      #2A2A2A;
  --muted:         #7c7665;
  --hairline:      #EFE4C6;
  --max-w:         1100px;
  --shadow-card:   0 12px 32px -16px rgba(20, 43, 69, .22);
  --shadow-sm:     0 4px 14px -6px rgba(20, 43, 69, .15);
  --radius-lg:     20px;
  --radius-md:     12px;
  --radius-sm:     8px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid rgba(25, 55, 100, .25);
  transition: border-color .15s ease;
}
a:hover { border-bottom-color: var(--navy); }

img, svg { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 .5em;
}

/* ============================================================
   Buttons
   ============================================================ */

.primary-btn,
.ghost-btn {
  display: inline-block;
  padding: 14px 26px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: transform .12s ease, background .15s ease, color .15s ease, border-color .15s ease;
  text-decoration: none;
}
.primary-btn {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.primary-btn:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  transform: translateY(-1px);
}
.ghost-btn {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.ghost-btn:hover {
  background: var(--butter);
  border-color: var(--navy);
  transform: translateY(-1px);
}
.ghost-btn.sm { padding: 10px 18px; font-size: 14px; }

a.primary-btn, a.ghost-btn { border-bottom: 2px solid; }
a.primary-btn { border-bottom-color: var(--navy); }
a.primary-btn:hover { border-bottom-color: var(--navy-deep); }
a.ghost-btn { border-bottom-color: var(--navy); }
a.ghost-btn:hover { border-bottom-color: var(--navy); }

/* ============================================================
   Utility bar
   ============================================================ */

.utility-bar {
  background: var(--butter);
  color: var(--navy);
  text-align: center;
  font-size: 14px;
  padding: 9px 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.utility-bar strong { font-weight: 700; }

/* ============================================================
   Section eyebrows + shared
   ============================================================ */

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy-soft);
  margin: 0 0 14px;
}
.section-h {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: .6em;
}
.section-lede {
  font-size: 18px;
  color: var(--charcoal);
  max-width: 640px;
  margin: 0 0 1.4em;
}
.section-lede.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.muted { color: var(--muted); }
.micro {
  font-size: 13px;
  color: var(--muted);
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  padding: 70px 0 80px;
  background:
    radial-gradient(ellipse at top, var(--butter-tint) 0%, transparent 60%),
    var(--white);
  text-align: center;
}
.hero-inner {
  max-width: 760px;
}
.hero-badge {
  width: 200px;
  height: 200px;
  margin: 0 auto 28px;
  border-radius: 50%;
  box-shadow: var(--shadow-card);
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy-soft);
  margin: 0 0 16px;
}
.hero-tagline {
  font-size: clamp(34px, 5.5vw, 56px);
  line-height: 1.08;
  margin: 0 0 22px;
  font-weight: 700;
}
.hero-lede {
  font-size: 19px;
  max-width: 560px;
  margin: 0 auto 32px;
  color: var(--charcoal);
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.hero-micro {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.hero-micro strong { color: var(--navy); font-weight: 600; }

/* ============================================================
   About the rebrand
   ============================================================ */

.about {
  padding: 70px 0;
  background: var(--white);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  text-align: center;
}
.about-inner {
  max-width: 760px;
}
.about .section-lede {
  margin-left: auto;
  margin-right: auto;
  font-size: 19px;
}

/* ============================================================
   Pillars
   ============================================================ */

.pillars {
  padding: 80px 0;
  background: var(--white);
  text-align: center;
}
.pillars .section-h { text-align: center; }
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  text-align: left;
}
.pillar-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.pillar-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.pillar-card.pillar-power {
  background: var(--butter-tint);
  border-color: var(--butter);
}
.pillar-art {
  aspect-ratio: 4 / 3;
  background: var(--butter-soft);
  border-bottom: 1px solid var(--hairline);
}
.pillar-card.pillar-power .pillar-art {
  background: var(--butter);
}
.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  border: 2px dashed rgba(25, 55, 100, .25);
  border-radius: var(--radius-md);
  margin: 14px;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  background: transparent;
}
.photo-label {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  color: var(--navy);
  font-size: 15px;
  letter-spacing: 0.02em;
}
.photo-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  font-style: italic;
}
.pillar-body {
  padding: 22px 24px 26px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.pillar-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy-soft);
  margin: 0 0 8px;
}
.pillar-h {
  font-size: 22px;
  margin: 0 0 8px;
  line-height: 1.2;
}
.pillar-tag {
  color: var(--charcoal);
  font-size: 15px;
  margin: 0 0 14px;
}
.pillar-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}
.pillar-list li {
  padding: 7px 0;
  border-bottom: 1px dashed var(--hairline);
  font-size: 15px;
  color: var(--charcoal);
}
.pillar-list li:last-child { border-bottom: 0; }
.pillar-foot {
  font-size: 13px;
  color: var(--navy-soft);
  font-style: italic;
  margin: 12px 0 0;
}

/* ============================================================
   Future tabs (coming-with-shop teaser)
   ============================================================ */

.future-tabs {
  padding: 60px 0;
  background: var(--butter-tint);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  text-align: center;
}
.future-list {
  list-style: none;
  padding: 0;
  margin: 22px auto 0;
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  text-align: left;
}
.future-list li {
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  font-size: 15px;
}
.future-list strong { color: var(--navy); font-weight: 600; }

/* ============================================================
   Visit / Contact
   ============================================================ */

.visit {
  padding: 80px 0;
  background: var(--white);
}
.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.visit-col .section-h {
  font-size: 26px;
  margin-bottom: 14px;
}
.visit-address {
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 18px;
}
.hours-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 15px;
}
.hours-list li:last-child { border-bottom: 0; }
.contact-line {
  font-size: 16px;
  line-height: 1.9;
  margin: 0 0 14px;
}

/* ============================================================
   Notify / Newsletter
   ============================================================ */

.notify {
  padding: 80px 0;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}
.notify .section-h { color: var(--butter); }
.notify .section-eyebrow { color: var(--butter); }
.notify .section-lede {
  color: #D9E1EA;
  margin-left: auto;
  margin-right: auto;
}
.notify-inner { max-width: 600px; }
.signup {
  display: flex;
  gap: 10px;
  margin: 24px auto 12px;
  max-width: 480px;
  flex-wrap: wrap;
}
.signup input {
  flex: 1 1 240px;
  padding: 13px 18px;
  font-family: inherit;
  font-size: 15px;
  border-radius: 999px;
  border: 2px solid var(--butter);
  background: var(--white);
  color: var(--navy);
}
.signup input::placeholder { color: var(--muted); }
.signup input:focus {
  outline: none;
  border-color: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 228, 151, .35);
}
.signup .primary-btn {
  background: var(--butter);
  color: var(--navy);
  border-color: var(--butter);
}
.signup .primary-btn:hover {
  background: var(--white);
  border-color: var(--white);
}
.notify .micro { color: #B8C3D1; }

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  padding: 48px 0 32px;
  background: var(--white);
  border-top: 1px solid var(--hairline);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}
.footer-logo {
  width: 200px;
  height: auto;
  margin: 0 0 10px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.footer-meta {
  text-align: right;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.footer-meta p { margin: 0; }
.footer-meta a { color: var(--navy); border-bottom: 1px solid rgba(25, 55, 100, .25); }
.footer-meta a:hover { border-bottom-color: var(--navy); }
.footer-meta .dot { margin: 0 6px; color: var(--hairline); }
.copyright { margin-top: 6px !important; color: var(--muted); }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 900px) {
  .pillar-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .future-list { grid-template-columns: 1fr; }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
  }
  .footer-meta { text-align: center; }
}

@media (max-width: 600px) {
  .hero { padding: 50px 0 60px; }
  .hero-badge { width: 160px; height: 160px; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero-actions .primary-btn,
  .hero-actions .ghost-btn { width: 100%; }
  .about, .pillars, .visit, .notify, .future-tabs { padding: 50px 0; }
  .container { padding: 0 20px; }
}

/* ============================================================
   Signature Collection (Showcase Grid)
   ============================================================ */

.sc1 { text-align: center; }
.sc1-hero { border-radius: var(--radius-lg); overflow: hidden; margin: 30px 0 40px; box-shadow: var(--shadow-card); }
.sc1-hero img { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; }
.sc1-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; text-align: left; }
.sc1-card { background: var(--white); border: 1px solid var(--hairline); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .15s ease; display: flex; flex-direction: column; }
.sc1-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.sc1-photo { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--butter-soft); }
.sc1-photo img { width: 100%; height: 100%; object-fit: cover; }
.sc1-badge { position: absolute; top: 12px; left: 12px; background: var(--butter); color: var(--navy);
  font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; }
.sc1-body { padding: 16px 18px 20px; }
.sc1-name { font-size: 18px; margin: 0 0 6px; }
.sc1-desc { font-size: 13.5px; line-height: 1.5; color: var(--charcoal); margin: 0; }
.sc1-pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 44px; text-align: left; }
.sc1-price-card { background: var(--cream); border: 1px solid var(--hairline); border-radius: var(--radius-lg); padding: 26px 30px; }
.sc1-price-card--bites { background: var(--butter-tint); border-color: var(--butter); }
.sc1-price-eyebrow { text-transform: uppercase; letter-spacing: .2em; font-size: 12px; font-weight: 700; color: var(--navy-soft); margin: 0 0 4px; }
.sc1-price-sub { font-size: 13px; color: var(--muted); margin: 0 0 12px; }
.sc1-price-list { list-style: none; padding: 0; margin: 10px 0 0; }
.sc1-price-list li { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px dashed var(--hairline); font-size: 16px; }
.sc1-price-list li:last-child { border-bottom: 0; }
.sc1-price { font-weight: 700; color: var(--navy); font-family: 'Playfair Display', serif; }

@media (max-width: 900px) {
  .sc1-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .sc1-pricing { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .sc1-grid { grid-template-columns: 1fr 1fr; }
  .sc1-hero img { aspect-ratio: 4 / 3; }
}
