/* Truthful Foods — Coming Soon */

:root {
  --bg-cream: #fff8ef;
  --gold: #be9a43;
  --top-bar-height: 6px;
  --font: "Switzer", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  background-color: var(--bg-cream);
  color: var(--gold);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Top gold strip */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--top-bar-height);
  background-color: var(--gold);
  z-index: 100;
  height: 40px;
}

/* Page layout */
.page-wrapper {
  padding-top: var(--top-bar-height);
  height: 100vh;
  height: 100dvh;
}

/* Logo */
.logo-section {
  flex-shrink: 0;
  padding: clamp(1.75rem, 5vh, 3.25rem) 1rem 0;
}



/* Main content */
.main-content {
  padding: clamp(1.5rem, 6vh, 4rem) 1rem;
}

.tagline {
  font-family: var(--font);
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  font-weight: 200;
  color: var(--gold);
  letter-spacing: 0.01em;
  max-width: 22rem;
}

/* Desktop — COMING SOON */
.coming-soon--desktop {
  font-family: var(--font);
  font-size: clamp(2.5rem, 6.5vw, 4.25rem);
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.22em;
  line-height: 1.05;
  margin-right: -0.22em;
  text-transform: uppercase;
}

/* Mobile — Coming / Soon stacked */
.coming-soon--mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05em;
  font-family: var(--font);
  font-weight: 300;
  color: var(--gold);
  line-height: 0.95;
}

.coming-soon--mobile span {
  display: block;
  font-size: clamp(2.75rem, 14vw, 3.5rem);
  letter-spacing: 0.02em;
}

/* Footer */
.site-footer {
  flex-shrink: 0;
  margin-top: auto;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.footer-brand,
.footer-copy {
  font-family: var(--font);
  text-transform: uppercase;
  color: var(--gold);
}

.footer-brand {
  font-size: clamp(0.6rem, 1.5vw, 0.7rem);
  font-weight: 500;
  letter-spacing: 0.22em;
}

.footer-copy {
  font-size: clamp(0.55rem, 1.3vw, 0.65rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

/* Desktop */
@media (min-width: 768px) {
  .page-wrapper {
    display: grid;
    grid-template-rows: auto 1fr auto;
  }

  .logo-section {
    padding-top: clamp(2.5rem, 7vh, 4.5rem);
  }

  .main-content {
    padding-top: 0;
    padding-bottom: clamp(1rem, 4vh, 3rem);
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    text-align: left;
  }

  .footer-copy--desktop {
    text-align: right;
    letter-spacing: 0.08em;
  }
}

@media (min-width: 1200px) {
  .coming-soon--desktop {
    font-size: 4.5rem;
  }
}
