/* ============================================
   STOCKMAN STUDIO — Nothing is Stock.
   v3 — White background rebrand
   Palette: walnut, maple gold, steel, white
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:    #FFFFFF;
  --offwhite: #F9F6F3;
  --border:   #E8DDD4;
  --grain:    #C4A882;
  --walnut:   #3D2314;
  --maple:    #D4A96A;
  --steel:    #8A9BA8;
  --smoke:    #6B5E52;
  --bark:     #3D2314;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;
  --max-w: 1200px;
  --radius: 3px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--walnut);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }

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

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 2.4rem;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--walnut);
  color: var(--white);
}
.btn-primary:hover { background: #2a1509; }

.btn-secondary {
  background: transparent;
  color: var(--walnut);
  border: 1.5px solid var(--walnut);
}
.btn-secondary:hover { background: var(--walnut); color: var(--white); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2.5rem;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--smoke);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--walnut); }

.nav-cta {
  background: var(--walnut);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius);
}
.nav-cta:hover { background: #2a1509 !important; }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--walnut);
}

/* ── SECTION SHARED ── */
.section-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--maple);
  margin-bottom: 0.75rem;
  display: block;
}

section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--walnut);
  margin-bottom: 1.5rem;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 8vh;
}

.hero-image-wrap { position: absolute; inset: 0; }

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(61,35,20,0.05) 0%,
    rgba(61,35,20,0.0) 35%,
    rgba(61,35,20,0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 3.5rem;
  max-width: 680px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--maple);
  margin-bottom: 1rem;
  display: block;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 2.5rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--maple);
}

/* ── SOLID HERO ── */
.hero--solid {
  background: var(--walnut);
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 3.5rem;
  position: relative;
}

.hero--solid::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--maple);
  opacity: 0.3;
}

.hero--solid .hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero--solid .hero-eyebrow { color: var(--maple); }

.hero--solid .hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 2.5rem;
}

.hero--solid .hero-headline em {
  font-style: italic;
  color: var(--maple);
  display: block;
}

/* ── PROCESS ── */
.process {
  padding: 7rem 0;
  background: var(--walnut);
}

.process h2 { color: var(--offwhite); }
.process .section-eyebrow { color: var(--maple); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.step-mark {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--maple);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 1rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--offwhite);
  margin-bottom: 0.75rem;
}

.step p {
  font-size: 0.88rem;
  color: var(--grain);
  line-height: 1.7;
}

/* ── CTA BANNER ── */
.cta-banner {
  padding: 7rem 0;
  background: var(--offwhite);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-banner h2 { margin-bottom: 1rem; }

.cta-banner p {
  color: var(--smoke);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}

/* ── FOOTER ── */
.footer {
  background: var(--walnut);
  padding: 3.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  text-align: center;
}

.footer-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  background: var(--white);
  border-radius: 3px;
  padding: 4px 8px;
}

.footer-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--maple);
  margin-top: 0.4rem;
}

.footer-nav {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grain);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }

.footer-divider {
  width: 40px;
  height: 1px;
  background: var(--maple);
  opacity: 0.4;
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--smoke);
  letter-spacing: 0.05em;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .nav { padding: 0.75rem 1.25rem; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 1.5rem;
  }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: block; }
  .hero-content { padding: 0 1.5rem; }
  .process-steps { grid-template-columns: 1fr; }
  .container { padding: 0 1.25rem; }
}

/* ── HERO LOGO ── */
.hero-logo {
  margin-bottom: 2.5rem;
}

.hero-logo img {
  height: 160px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 4px;
}
