/*
Theme Name: Guts & Bones Launch
Theme URI: https://gutsandbones.com
Author: Liza Love / LLL Works LLC
Description: A minimal one-page launch theme for Guts & Bones.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: guts-and-bones-launch
*/

:root {
  --ink: #11100f;
  --cream: #f4efe7;
  --paper: #e9e0d4;
  --gold: #b38a42;
  --muted: #c7b9a8;
  --rust: #5c1b12;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.site-shell { min-height: 100vh; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem clamp(1.1rem, 4vw, 4rem);
  background: rgba(17,16,15,.94);
  border-bottom: 1px solid rgba(179,138,66,.35);
  backdrop-filter: blur(8px);
}
.brand {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: .03em;
  text-decoration: none;
  white-space: nowrap;
}
.nav { display: flex; gap: .9rem; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.nav a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: .86rem;
  text-decoration: none;
  color: var(--paper);
  opacity: .92;
}
.nav a:hover, .nav a:focus { color: #fff; text-decoration: underline; text-underline-offset: .2em; }

.hero-image {
  width: 100%;
  aspect-ratio: 3 / 1;
  object-fit: cover;
  object-position: center;
  background: var(--cream);
}
.hero-copy {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(2.8rem, 8vw, 7rem) clamp(1.2rem, 5vw, 2rem);
  text-align: center;
}
.kicker {
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .8rem;
  color: var(--gold);
  margin: 0 0 1.2rem;
}
.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -.035em;
}
.hero-copy .tagline {
  margin: 1.5rem auto 0;
  font-size: clamp(1.35rem, 2.8vw, 2.2rem);
  max-width: 760px;
}
.hero-copy em { color: var(--gold); font-weight: 600; }

.section {
  padding: clamp(3.2rem, 8vw, 7rem) clamp(1.2rem, 5vw, 4rem);
}
.section.light { background: var(--cream); color: var(--ink); }
.section.dark { background: var(--ink); color: var(--cream); }
.section.rust { background: var(--rust); color: var(--cream); }
.inner { max-width: 920px; margin: 0 auto; }
.inner.narrow { max-width: 780px; }
.section h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -.025em;
}
.section p { font-size: clamp(1.1rem, 1.7vw, 1.32rem); margin: 1rem 0; }
.lead { font-size: clamp(1.35rem, 2.3vw, 1.8rem) !important; }
.rule { width: 86px; height: 2px; background: var(--gold); margin: 2rem 0; }
.callout {
  margin-top: 2.2rem;
  padding-left: 1.4rem;
  border-left: 3px solid var(--gold);
  font-size: clamp(1.3rem, 2.3vw, 1.85rem) !important;
  font-weight: 700;
}

.actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: .9rem;
  margin-top: 2.2rem;
}
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: .9rem 1rem;
  border: 1px solid rgba(244,239,231,.7);
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .045em;
  text-transform: uppercase;
  transition: .18s ease;
}
.button:hover, .button:focus { background: var(--cream); color: var(--ink); transform: translateY(-1px); }
.button.gold { border-color: var(--gold); color: #f7e3b5; }
.button.gold:hover, .button.gold:focus { background: var(--gold); color: var(--ink); }

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.founder-mark {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-style: italic;
  border: 1px solid rgba(179,138,66,.5);
}

.footer {
  padding: 2.2rem clamp(1.2rem, 5vw, 4rem);
  background: #090908;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .82rem;
  text-align: center;
  border-top: 1px solid rgba(179,138,66,.25);
}
.footer strong { color: var(--cream); }
.footer a { color: var(--cream); text-underline-offset: .2em; }

@media (max-width: 760px) {
  .topbar { align-items: flex-start; }
  .nav { gap: .65rem; }
  .nav a { font-size: .76rem; }
  .hero-image { aspect-ratio: 16 / 8.5; object-position: 35% center; }
  .actions { grid-template-columns: 1fr 1fr; }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-mark { max-width: 330px; width: 85%; margin: 0 auto; }
}

@media (max-width: 480px) {
  .topbar { position: static; display: block; }
  .nav { margin-top: .55rem; justify-content: flex-start; }
  .hero-image { aspect-ratio: 4 / 3; object-position: 28% center; }
  .actions { grid-template-columns: 1fr; }
}
