/* ==========================================================================
   Jimmy Clepper — Site Stylesheet
   ========================================================================== */

@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-latin-600-normal.woff2') format('woff2');
  font-weight: 600;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-latin-700-normal.woff2') format('woff2');
  font-weight: 700;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-latin-900-normal.woff2') format('woff2');
  font-weight: 900;
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  src: url('../fonts/fraunces-latin-500-italic.woff2') format('woff2');
  font-weight: 500;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin-400-normal.woff2') format('woff2');
  font-weight: 400;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin-500-normal.woff2') format('woff2');
  font-weight: 500;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin-600-normal.woff2') format('woff2');
  font-weight: 600;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin-700-normal.woff2') format('woff2');
  font-weight: 700;
}

:root {
  --color-bg: #15110d;
  --color-bg-alt: #1c1712;
  --color-surface: #221b15;
  --color-border: #34291e;

  --color-text: #f5ede1;
  --color-text-muted: #b3a493;

  --color-rust: #c1642f;
  --color-gold: #d9a441;
  --color-rust-bright: #e0763f;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 0.4em;
  color: var(--color-text);
}

p { margin: 0 0 1em; color: var(--color-text-muted); }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 14px;
  font-family: var(--font-body);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-solid {
  background: linear-gradient(90deg, var(--color-rust) 0%, var(--color-gold) 100%);
  color: #1a1208;
}
.btn-solid:hover { box-shadow: 0 10px 26px rgba(193, 100, 47, 0.35); }

.btn-outline {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-text);
}
.btn-outline:hover { border-color: var(--color-gold); color: var(--color-gold); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(21, 17, 13, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-text);
}

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

.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.15s ease;
}
.nav a:hover { color: var(--color-gold); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  margin: 5px 0;
}

@media (max-width: 760px) {
  .nav {
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    background: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 16px;
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 10px 0; width: 100%; }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 30%;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21,17,13,0.35) 0%, rgba(21,17,13,0.25) 35%, rgba(21,17,13,0.92) 88%, #15110d 100%),
    linear-gradient(90deg, rgba(21,17,13,0.75) 0%, rgba(21,17,13,0.1) 55%);
}

.hero-content {
  position: relative;
  padding-top: 120px;
  padding-bottom: 90px;
}

.hero h1 {
  font-size: clamp(3rem, 9vw, 6.5rem);
  margin-bottom: 0.15em;
}

.hero-sub {
  max-width: 560px;
  font-size: 1.1rem;
  color: var(--color-text);
  opacity: 0.88;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(245, 237, 225, 0.5);
  border-radius: 14px;
}
.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollcue 1.8s ease infinite;
}
@keyframes scrollcue {
  0% { opacity: 1; top: 8px; }
  70% { opacity: 0; top: 20px; }
  100% { opacity: 0; top: 20px; }
}

/* ---------- Story ---------- */

.story { padding: 110px 0; background: var(--color-bg); }

.story-inner { max-width: 720px; }

.story h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-style: italic;
  font-weight: 500;
}

.story p { font-size: 1.05rem; color: var(--color-text-muted); }
.story strong { color: var(--color-text); }

/* ---------- Listen ---------- */

.listen { padding: 100px 0; background: var(--color-bg); }

.listen h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 48px; }

/* ---------- Watch ---------- */

.watch { padding: 100px 0; background: var(--color-bg-alt); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }

.watch h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 48px; }

.watch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 860px) {
  .watch-grid { grid-template-columns: 1fr; }
}

.watch-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.watch-card-head h3 {
  font-size: 1.25rem;
  margin: 0;
}

.subscribe-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-rust-bright);
  font-family: var(--font-body);
}
.subscribe-link:hover { color: var(--color-gold); }

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Follow ---------- */

.follow { padding: 100px 0; background: var(--color-bg); }

.follow h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 48px; }

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

@media (max-width: 860px) {
  .link-grid { grid-template-columns: 1fr; }
}

.link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.link-card:hover {
  border-color: var(--color-rust);
  transform: translateY(-3px);
}

.link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-rust) 0%, var(--color-gold) 100%);
  color: #1a1208;
}

.link-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.link-body strong { font-size: 1rem; color: var(--color-text); }
.link-body span { font-size: 0.88rem; color: var(--color-text-muted); }

.link-arrow {
  font-size: 1.2rem;
  color: var(--color-text-muted);
}
.link-card:hover .link-arrow { color: var(--color-gold); }

/* ---------- Footer ---------- */

.site-footer { background: var(--color-bg-alt); border-top: 1px solid var(--color-border); padding: 100px 0 32px; }

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 56px;
}

.footer-booking { max-width: 520px; }
.footer-booking h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }
.footer-booking .btn { margin-top: 20px; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 18px 0 8px;
  font-size: 0.95rem;
  color: var(--color-text);
}
.footer-contact a { color: var(--color-rust-bright); }
.footer-contact a:hover { color: var(--color-gold); }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}
.footer-brand img { height: 24px; width: auto; }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  font-size: 0.8rem;
  color: var(--color-text-muted);
}
