/* ============================================================
   Bread & Breath — Nav & Hero
   ============================================================ */

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}

.nav.scrolled {
  background: rgba(245, 240, 232, 0.94);
  backdrop-filter: blur(12px);
  padding: 0.9rem 0;
  box-shadow: 0 1px 0 var(--linen-dark);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}

.nav-brand:hover { opacity: 0.82; }

.nav-logo {
  height: 44px;
  width: auto;
  display: block;
  border-radius: 3px;
  transition: opacity 0.4s;
}

/* On dark hero, give the logo a soft cream background pill so it reads clearly */
.nav:not(.scrolled) .nav-logo {
  background: rgba(245, 240, 232, 0.88);
  padding: 4px 10px;
  border-radius: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--clay); }

.nav-fb {
  background: var(--clay);
  color: var(--cream) !important;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  transition: background 0.2s !important;
}

.nav-fb:hover { background: var(--accent-h) !important; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 1; }

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform-origin: center;
  transition: filter 1.2s ease;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(45, 34, 24, 0.72) 0%,
    rgba(45, 34, 24, 0.45) 50%,
    rgba(139, 106, 79, 0.3) 100%
  );
}

.hero-content {
  position: relative; z-index: 10;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
  width: 100%;
}

.hero-logo-wrap {
  margin-bottom: 2rem;
  display: inline-block;
}

.hero-logo {
  height: 160px;
  width: auto;
  display: block;
}

.hero-eyebrow {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay-light);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(4.5rem, 10vw, 9rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--clay-light);
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(245, 240, 232, 0.82);
  max-width: 500px;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex; flex-direction: column; align-items: center;
  gap: 0.5rem; opacity: 0.6;
}

.hero-scroll-hint span {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
}

.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--cream), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.6; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* Quote Band */
.quote-band {
  background: var(--cream);
  padding: clamp(4rem, 6vw, 7rem) 0;
}

.quote-band blockquote {
  max-width: 760px; margin: 0 auto;
  text-align: center; padding: 0 2rem;
}

.quote-band blockquote p {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--umber-mid);
  position: relative;
}

.quote-band blockquote p::before,
.quote-band blockquote p::after {
  content: '';
  display: block;
  width: 48px; height: 1px;
  background: var(--clay-light);
  margin: 1.5rem auto;
}
