
/* ============================================================
   CSS VARIABLES — Powell Brand System
============================================================ */
:root {
  --linen:       #F5F0E8;
  --linen-mid:   #EDE7D7;
  --linen-dark:  #E0D8C8;
  --ridgeline:   #2C3B2D;
  --mahogany:    #4A2018;
  --canopy:      #1E2E1E;
  --slate:       #2A3040;
  --dark:        #2C2C28;
  --ember:       #C4622D;
  --ember-light: #D4784A;
  --stone:       #8C8070;
  --stone-light: #B0A898;
  --cream:       #FDFAF4;
  --text-dark:   #1C1810;
  --text-mid:    #4A4238;
  --text-light:  #7A7068;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================================
   RESET
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--linen); color: var(--text-dark); font-family: var(--font-body); font-weight: 300; line-height: 1.7; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   PAGE SYSTEM — Single Page App with JS routing
============================================================ */
.page { display: none; }
.page.active { display: block; }

/* ============================================================
   NAVIGATION
============================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  transition: background var(--transition), backdrop-filter var(--transition);
  background: linear-gradient(to bottom, rgba(18, 14, 8, 0.55) 0%, rgba(18, 14, 8, 0.25) 70%, rgba(18, 14, 8, 0) 100%);
}

#nav.scrolled {
  background: var(--nav-scrolled-bg, rgba(28, 24, 16, 0.95));
  backdrop-filter: blur(16px);
}

#nav.light {
  background: rgba(245, 240, 232, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--linen-dark);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.nav-logo .wordmark {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--linen);
  line-height: 1;
  transition: color var(--transition);
}

.nav-logo .sub {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ember);
  margin-top: 2px;
}

/* nav logo image — constrain to nav height so it doesn't overflow hero */
.nav-logo img {
  display: block;
  height: 108px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  transition: filter var(--transition), opacity var(--transition);
}
@media (max-width: 640px) {
  .nav-logo img { height: 78px; }
}

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

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
  transition: color var(--transition);
  cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active { color: var(--linen); }

#nav.light .nav-links a { color: var(--text-mid); }
#nav.light .nav-links a:hover,
#nav.light .nav-links a.active { color: var(--text-dark); }

.nav-cta {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--linen);
  border: 1px solid var(--ember);
  padding: 11px 24px;
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}

.nav-cta:hover { background: var(--ember); }
#nav.light .nav-cta { color: var(--ember); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--linen);
  transition: all 0.3s ease;
  transform-origin: center;
}

#nav.light .hamburger span { background: var(--dark); }

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 80px 0 40px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 40px);
  font-weight: 300;
  color: var(--linen);
  letter-spacing: 0.06em;
  padding: 16px 40px;
  text-align: center;
  border-bottom: 1px solid rgba(245,240,232,0.06);
  width: 100%;
  cursor: pointer;
  transition: color var(--transition);
}

.mobile-nav a:hover { color: var(--ember); }

.mobile-cta-wrap {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.mobile-nav .mobile-cta {
  padding: 16px 48px;
  background: var(--ember);
  color: var(--linen);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}

.mobile-nav .mobile-contact {
  font-size: 13px;
  color: rgba(245,240,232,0.4);
  letter-spacing: 0.08em;
}

@media (max-width: 1024px) {
  .hamburger { display: flex; }
  .nav-cta { display: none; }
}

/* ============================================================
   SHARED COMPONENTS
============================================================ */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 16px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--ember);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.section-title em { font-style: italic; }

.diamond-rule {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 28px;
}

.diamond-rule .dr-line { flex: 0 0 40px; height: 1px; background: var(--ember); }
.diamond-rule .dr-d {
  width: 7px; height: 7px;
  background: var(--ember);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: var(--ember);
  color: var(--linen);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background var(--transition);
  cursor: pointer;
}

.btn-primary:hover { background: var(--ember-light); }

.btn-outline {
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid currentColor;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: var(--dark);
  padding: 72px 80px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(245,240,232,0.07);
  margin-bottom: 32px;
}

.footer-brand .fw { font-family: var(--font-display); font-size: 30px; font-weight: 400; color: var(--linen); letter-spacing: 0.06em; }
.footer-brand .fs { font-size: 9px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ember); margin-top: 3px; }
.footer-brand .ft { font-family: var(--font-display); font-style: italic; font-size: 14px; color: rgba(245,240,232,0.4); margin-top: 16px; line-height: 1.5; }

.footer-col h5 { font-size: 9px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ember); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 13px; color: rgba(245,240,232,0.45); transition: color var(--transition); cursor: pointer; }
.footer-col li a:hover { color: var(--linen); }
.footer-col address { font-style: normal; font-size: 13px; color: rgba(245,240,232,0.45); line-height: 1.9; }
.footer-col .fc-link { display: block; margin-top: 12px; font-size: 13px; color: rgba(245,240,232,0.45); transition: color var(--transition); }
.footer-col .fc-link:hover { color: var(--ember); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p { font-size: 11px; color: rgba(245,240,232,0.2); letter-spacing: 0.05em; }
.footer-bottom span { font-size: 11px; color: rgba(245,240,232,0.2); letter-spacing: 0.1em; }

/* ============================================================
   SCROLL ANIMATIONS
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   PAGE: HOME
============================================================ */

/* HERO */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--canopy);
}

.hero-bg { position: absolute; inset: 0; overflow: hidden; }



.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 80px 0;
  max-width: 900px;
  animation: heroFadeUp 1.2s cubic-bezier(0.22,1,0.36,1) both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: none; }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 44px;
  height: 1px;
  background: var(--ember);
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(54px, 7.5vw, 108px);
  font-weight: 300;
  line-height: 0.96;
  color: var(--linen);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.hero-h1 em { font-style: italic; color: rgba(245,240,232,0.75); }

.hero-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 30px 0;
}

.hero-divider .line { flex: 0 0 56px; height: 1px; background: var(--ember); }
.hero-divider .d { width: 8px; height: 8px; background: var(--ember); transform: rotate(45deg); }

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(17px, 2.2vw, 24px);
  font-weight: 300;
  font-style: italic;
  color: rgba(245,240,232,0.65);
  margin-bottom: 52px;
  letter-spacing: 0.01em;
}

.hero-actions { display: flex; gap: 20px; flex-wrap: wrap; }

.hero-btn-ghost {
  padding: 15px 40px;
  border: 1px solid rgba(245,240,232,0.35);
  color: var(--linen);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: border-color var(--transition), background var(--transition);
  cursor: pointer;
}

.hero-btn-ghost:hover {
  border-color: var(--linen);
  background: rgba(245,240,232,0.06);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245,240,232,0.35);
  font-size: 8.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  animation: scrollBob 2.4s ease-in-out infinite;
}

@keyframes scrollBob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

.hero-scroll svg { width: 14px; opacity: 0.4; }

/* HONESTY BAND */
#honesty-band {
  background: var(--ridgeline);
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

#honesty-band .section-eyebrow { color: var(--ember); }
#honesty-band .section-eyebrow::before { background: var(--ember); }
#honesty-band .section-title { color: var(--linen); }

#honesty-band .body-copy {
  color: rgba(245,240,232,0.62);
  font-size: 15.5px;
  line-height: 1.85;
  margin-top: 20px;
}

#honesty-band .body-copy strong {
  color: rgba(245,240,232,0.85);
  font-weight: 400;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(245,240,232,0.07);
}

.stat-box {
  background: var(--ridgeline);
  padding: 36px 28px;
  border-top: 2px solid transparent;
  transition: border-color var(--transition);
}

.stat-box:hover { border-top-color: var(--ember); }

.stat-num {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 300;
  color: var(--linen);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
  margin-top: 8px;
  line-height: 1.5;
}

/* SERVICES SECTION */
#services {
  padding: 120px 80px;
  background: var(--cream);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.services-header .intro-copy {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  padding-bottom: 4px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--linen-dark);
}

.service-card {
  background: var(--cream);
  padding: 48px 36px;
  border-top: 2px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}

.service-card:hover {
  border-top-color: var(--ember);
  background: #fff;
}

.service-icon { width: 40px; height: 40px; color: var(--ember); margin-bottom: 22px; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-card p { font-size: 14px; color: var(--text-mid); line-height: 1.78; }

/* STICKER SHOCK BAND */
#sticker-shock {
  background: var(--mahogany);
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

#sticker-shock .section-eyebrow { color: var(--ember); }
#sticker-shock .section-eyebrow::before { background: var(--ember); }
#sticker-shock .section-title { color: var(--linen); }

#sticker-shock .body-copy {
  color: rgba(245,240,232,0.62);
  font-size: 15px;
  line-height: 1.85;
  margin-top: 18px;
}

.price-bands {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-band {
  background: rgba(245,240,232,0.04);
  border-left: 2px solid transparent;
  padding: 24px 28px;
  transition: border-color var(--transition), background var(--transition);
}

.price-band:hover {
  border-left-color: var(--ember);
  background: rgba(245,240,232,0.07);
}

.price-band .tier {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 6px;
}

.price-band .range {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--linen);
  letter-spacing: -0.01em;
  line-height: 1;
}

.price-band .desc {
  font-size: 12.5px;
  color: rgba(245,240,232,0.45);
  margin-top: 6px;
}

.price-band .note {
  font-size: 11px;
  color: rgba(245,240,232,0.3);
  margin-top: 16px;
  font-style: italic;
  font-family: var(--font-display);
}

/* PROCESS PREVIEW */
#process-preview {
  padding: 120px 80px;
  background: var(--linen);
}

.process-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--linen-dark);
}

.process-step-card {
  background: var(--linen);
  padding: 44px 32px;
  border-top: 2px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}

.process-step-card:hover { border-top-color: var(--ember); background: #fff; }

.step-num {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 300;
  color: rgba(196,98,45,0.12);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.process-step-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.process-step-card p { font-size: 13.5px; color: var(--text-mid); line-height: 1.75; }

/* PORTFOLIO TEASER */
#portfolio-teaser {
  background: var(--dark);
  padding: 120px 80px;
}

#portfolio-teaser .section-eyebrow { color: var(--ember); }
#portfolio-teaser .section-eyebrow::before { background: var(--ember); }
#portfolio-teaser .section-title { color: var(--linen); }

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
}

.portfolio-link {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: gap var(--transition);
  cursor: pointer;
}

.portfolio-link:hover { gap: 16px; }

.portfolio-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 340px 260px;
  gap: 3px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  background: var(--ridgeline);
  cursor: pointer;
}

.portfolio-item:first-child { grid-row: span 2; }

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.8);
}

.portfolio-item:hover img { transform: scale(1.06); filter: brightness(1); }

.portfolio-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px 20px;
  background: linear-gradient(to top, rgba(15,18,12,0.9) 0%, transparent 100%);
  transform: translateY(6px);
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
}

.portfolio-item:hover .portfolio-caption { opacity: 1; transform: none; }
.portfolio-caption h4 { font-family: var(--font-display); font-size: 20px; font-weight: 400; color: var(--linen); }
.portfolio-caption span { font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ember); }

/* TESTIMONIALS */
#testimonials {
  background: var(--ridgeline);
  padding: 120px 80px;
}

#testimonials .section-eyebrow { color: var(--ember); }
#testimonials .section-eyebrow::before { background: var(--ember); }
#testimonials .section-title { color: var(--linen); margin-bottom: 60px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(245,240,232,0.06);
}

.testimonial-card {
  background: var(--ridgeline);
  padding: 48px 36px;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 88px;
  line-height: 0.65;
  color: var(--ember);
  opacity: 0.35;
  margin-bottom: 22px;
}

.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 18.5px;
  font-weight: 300;
  font-style: italic;
  color: rgba(245,240,232,0.82);
  line-height: 1.65;
  margin-bottom: 28px;
}

.testimonial-author strong {
  display: block;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--linen);
}

.testimonial-author span {
  font-size: 11.5px;
  color: var(--ember);
}

/* PERSONA CTA BAND */
#persona-cta {
  background: var(--slate);
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.persona-card {
  background: rgba(245,240,232,0.04);
  border: 1px solid rgba(245,240,232,0.08);
  border-top: 2px solid var(--ember);
  padding: 48px 40px;
}

.persona-card .persona-type {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 16px;
}

.persona-card h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--linen);
  line-height: 1.2;
  margin-bottom: 16px;
}

.persona-card h3 em { font-style: italic; }

.persona-card p {
  font-size: 14px;
  color: rgba(245,240,232,0.58);
  line-height: 1.8;
  margin-bottom: 32px;
}

.persona-btn {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid var(--ember);
  color: var(--linen);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background var(--transition);
  cursor: pointer;
}

.persona-btn:hover { background: var(--ember); }

/* HOME CTA BAND */
#home-cta {
  background: var(--ember);
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

#home-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--linen);
  line-height: 1.2;
}

#home-cta h2 em { font-style: italic; }
#home-cta p { color: rgba(245,240,232,0.7); font-size: 15px; margin-top: 12px; max-width: 540px; }

.btn-white {
  display: inline-block;
  padding: 18px 44px;
  background: var(--linen);
  color: var(--ember);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background var(--transition);
  cursor: pointer;
}

.btn-white:hover { background: #fff; }

/* ============================================================
   PAGE: ABOUT
============================================================ */
#page-about .page-hero {
  height: 55vh;
  min-height: 420px;
  background:
    linear-gradient(to bottom, rgba(20,30,18,0.6) 0%, rgba(15,22,12,0.88) 100%),
    url('/images/001-89f7fb6c53.jpg') center 30%/cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 0 80px 72px;
}

.page-hero-content .section-eyebrow { color: var(--ember); }
.page-hero-content .section-eyebrow::before { background: var(--ember); }

.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 300;
  color: var(--linen);
  line-height: 1.05;
}

.page-hero-content h1 em { font-style: italic; }

#page-about .about-body {
  padding: 100px 80px;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.about-story .body-copy {
  font-size: 15.5px;
  color: var(--text-mid);
  line-height: 1.88;
  margin-top: 18px;
}

.about-story .body-copy + .body-copy { margin-top: 20px; }

.about-story blockquote {
  margin-top: 36px;
  padding: 32px 36px;
  background: var(--linen);
  border-left: 2px solid var(--ember);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.5;
}

.about-story blockquote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  margin-top: 16px;
}

.about-team { display: flex; flex-direction: column; gap: 40px; }

.team-member {
  padding: 40px 36px;
  background: var(--linen);
  border-top: 2px solid var(--ember);
}

.team-member h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.team-member .role {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 16px;
}

.team-member p { font-size: 14px; color: var(--text-mid); line-height: 1.78; }

.credentials-section {
  padding: 80px;
  background: var(--ridgeline);
}

.credentials-section .section-eyebrow { color: var(--ember); }
.credentials-section .section-eyebrow::before { background: var(--ember); }
.credentials-section .section-title { color: var(--linen); margin-bottom: 52px; }

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(245,240,232,0.06);
}

.credential-box {
  background: var(--ridgeline);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.credential-box svg { width: 28px; color: var(--ember); }

.credential-box h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--linen);
  line-height: 1.3;
}

.credential-box p { font-size: 13px; color: rgba(245,240,232,0.5); line-height: 1.65; }

/* ============================================================
   PAGE: PROCESS
============================================================ */
#page-process .process-hero {
  height: 55vh;
  min-height: 420px;
  background:
    linear-gradient(to bottom, rgba(20,30,18,0.5) 0%, rgba(74,32,24,0.88) 100%),
    url('/images/002-a7b91ac560.jpg') center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 0 80px 72px;
}

#page-process .process-body {
  padding: 100px 80px;
  background: var(--cream);
}

#page-process .process-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: start;
}

#page-process .intro-copy { font-size: 15.5px; color: var(--text-mid); line-height: 1.88; margin-top: 18px; }

.process-steps-full {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.process-step-full {
  display: grid;
  grid-template-columns: 120px 1fr;
  background: var(--linen);
  border-left: 2px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}

.process-step-full:hover {
  border-left-color: var(--ember);
  background: #fff;
}

.psf-num {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 300;
  color: rgba(196,98,45,0.15);
  letter-spacing: -0.04em;
  padding: 40px 0;
}

.psf-content { padding: 40px 48px 40px 0; }

.psf-content h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.psf-content p { font-size: 15px; color: var(--text-mid); line-height: 1.8; }

.psf-content .psf-detail {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.psf-detail-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--text-mid);
}

.psf-detail-item::before {
  content: '◆';
  font-size: 5px;
  color: var(--ember);
  margin-top: 7px;
  flex-shrink: 0;
}

.remote-band {
  background: var(--slate);
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.remote-band .section-eyebrow { color: var(--ember); }
.remote-band .section-eyebrow::before { background: var(--ember); }
.remote-band .section-title { color: var(--linen); }
.remote-band .body-copy { color: rgba(245,240,232,0.6); font-size: 15px; line-height: 1.85; margin-top: 18px; }

.remote-features { display: flex; flex-direction: column; gap: 24px; }

.remote-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.remote-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(196,98,45,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.remote-feature-icon svg { width: 16px; color: var(--ember); }

.remote-feature h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--linen);
  margin-bottom: 4px;
}

.remote-feature p { font-size: 13.5px; color: rgba(245,240,232,0.5); line-height: 1.7; }

/* ============================================================
   PAGE: FAQ
============================================================ */
#page-faq .faq-hero {
  height: 50vh;
  min-height: 380px;
  background:
    linear-gradient(to bottom, rgba(20,30,18,0.55) 0%, rgba(28,46,28,0.9) 100%),
    url('/images/003-934583da56.jpg') center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 0 80px 72px;
}

.faq-body { padding: 100px 80px; background: var(--cream); }

.faq-intro {
  max-width: 680px;
  margin-bottom: 72px;
}

.faq-intro .body-copy { font-size: 16px; color: var(--text-mid); line-height: 1.85; margin-top: 18px; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--linen-dark);
  margin-bottom: 80px;
}

.faq-item {
  background: var(--cream);
  padding: 40px 36px;
  border-top: 2px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}

.faq-item:hover { border-top-color: var(--ember); background: #fff; }

.faq-item h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.35;
}

.faq-item p { font-size: 14px; color: var(--text-mid); line-height: 1.8; }

.pricing-bands {
  background: var(--dark);
  padding: 80px;
}

.pricing-bands .section-eyebrow { color: var(--ember); }
.pricing-bands .section-eyebrow::before { background: var(--ember); }
.pricing-bands .section-title { color: var(--linen); margin-bottom: 12px; }
.pricing-bands .section-note { color: rgba(245,240,232,0.5); font-size: 14px; margin-bottom: 48px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(245,240,232,0.06);
}

.pricing-tier {
  background: var(--dark);
  padding: 44px 36px;
  border-top: 2px solid transparent;
  transition: border-color var(--transition);
}

.pricing-tier:hover { border-top-color: var(--ember); }

.pricing-tier .tier-name {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 10px;
}

.pricing-tier .tier-range {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 300;
  color: var(--linen);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.pricing-tier .tier-unit {
  font-size: 11px;
  color: var(--stone-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pricing-tier p { font-size: 13.5px; color: rgba(245,240,232,0.45); line-height: 1.7; }

.pricing-disclaimer {
  margin-top: 32px;
  font-size: 12px;
  color: rgba(245,240,232,0.3);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 14px;
}

/* ============================================================
   PAGE: CONTACT
============================================================ */
#page-contact .contact-hero {
  height: 50vh;
  min-height: 380px;
  background:
    linear-gradient(to bottom, rgba(20,30,18,0.5) 0%, rgba(42,48,64,0.92) 100%),
    url('/images/004-261741087e.jpg') center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 0 80px 72px;
}

.contact-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
}

.contact-info {
  padding: 80px;
  background: var(--linen);
  border-right: 1px solid var(--linen-dark);
}

.contact-info .section-eyebrow { margin-bottom: 12px; }

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 24px;
}

.contact-info h2 em { font-style: italic; }

.contact-info .intro { font-size: 15px; color: var(--text-mid); line-height: 1.85; margin-bottom: 48px; }

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--linen-dark);
}

.contact-detail:last-child { border-bottom: none; }

.contact-detail svg { width: 18px; color: var(--ember); flex-shrink: 0; margin-top: 2px; }

.contact-detail .cd-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 4px;
}

.contact-detail .cd-value { font-size: 14px; color: var(--text-dark); }

.contact-form-wrap { padding: 80px; }

.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-form-wrap .form-intro { font-size: 14px; color: var(--text-mid); margin-bottom: 36px; line-height: 1.7; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row.full { grid-template-columns: 1fr; }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }

.form-group label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  background: var(--linen);
  border: 1px solid var(--linen-dark);
  border-bottom: 1px solid var(--stone-light);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dark);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--ember);
  background: #fff;
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-section-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  padding: 20px 0 12px;
  border-top: 1px solid var(--linen-dark);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--linen-dark);
}

.form-submit {
  margin-top: 28px;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.form-note {
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 13px;
}

/* ============================================================
   PAGE: PORTFOLIO
============================================================ */
#page-portfolio .portfolio-hero {
  height: 50vh;
  min-height: 380px;
  background:
    linear-gradient(to bottom, rgba(20,30,18,0.5) 0%, rgba(28,36,28,0.92) 100%),
    url('/images/005-b02c1bac0a.jpg') center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 0 80px 72px;
}

.portfolio-body { padding: 100px 80px; background: var(--cream); }

.portfolio-intro { max-width: 680px; margin-bottom: 72px; }
.portfolio-intro .body-copy { font-size: 15.5px; color: var(--text-mid); line-height: 1.85; margin-top: 18px; }

.portfolio-filter {
  display: flex;
  gap: 4px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 22px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  border: 1px solid var(--linen-dark);
  background: transparent;
  transition: all var(--transition);
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--ember);
  border-color: var(--ember);
  color: var(--linen);
}

.portfolio-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--linen-dark);
}

.portfolio-full-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--ridgeline);
}

.portfolio-full-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.82);
}

.portfolio-full-item:hover img { transform: scale(1.07); filter: brightness(1); }

.portfolio-full-item .pfi-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px 20px;
  background: linear-gradient(to top, rgba(15,18,12,0.92) 0%, transparent 100%);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition);
}

.portfolio-full-item:hover .pfi-caption { opacity: 1; transform: none; }
.pfi-caption h4 { font-family: var(--font-display); font-size: 18px; font-weight: 400; color: var(--linen); }
.pfi-caption span { font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ember); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  #nav { padding: 0 28px; }
  .nav-links { display: none; }

  #honesty-band,
  #sticker-shock,
  #process-preview .process-header,
  #page-about .about-body,
  #page-process .process-intro,
  .remote-band,
  #persona-cta,
  #home-cta,
  .contact-body,
  #page-faq .faq-intro { grid-template-columns: 1fr; gap: 48px; }

  .services-grid,
  .process-steps-grid { grid-template-columns: 1fr 1fr; }

  .portfolio-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .portfolio-item:first-child { grid-row: auto; }

  .testimonials-grid,
  .credentials-grid,
  .pricing-grid { grid-template-columns: 1fr; }

  .portfolio-full-grid { grid-template-columns: 1fr 1fr; }

  .faq-grid { grid-template-columns: 1fr; }

  #honesty-band, #services, #sticker-shock, #process-preview,
  #portfolio-teaser, #testimonials, #persona-cta, #home-cta,
  .credentials-section, .remote-band, .pricing-bands,
  #page-about .about-body, #page-process .process-body,
  .faq-body, .contact-info, .contact-form-wrap,
  .portfolio-body { padding: 72px 32px; }
}

@media (max-width: 640px) {
  .services-grid,
  .process-steps-grid,
  .portfolio-full-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 0 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* Cabinetry page hero */
#page-cabinetry .cab-hero {
  height: 55vh;
  min-height: 420px;
  background:
    linear-gradient(to bottom, rgba(15,18,14,0.35) 0%, rgba(28,24,18,0.85) 100%),
    url('/images/006-410aa479a6.jpg') center 40%/cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 0 80px 72px;
}

.cab-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--linen-dark);
  margin-top: 64px;
}

.cab-gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--ridgeline);
}

.cab-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.9);
}

.cab-gallery-item:hover img { transform: scale(1.05); filter: brightness(1); }

@media (max-width: 768px) {
  .cab-gallery { grid-template-columns: 1fr; }
}


/* ============================================================
   COMPREHENSIVE MOBILE RESPONSIVE — 375px to 768px
============================================================ */

@media (max-width: 768px) {

  /* NAV */
  #nav { padding: 0 20px; height: 64px; }
  .nav-logo img { height: 72px !important; }

  /* HERO */
  #hero { min-height: 100svh; }
  .hero-content { padding: 0 24px; }
  .hero-h1 { font-size: clamp(42px, 11vw, 64px); }
  .hero-tagline { font-size: 15px; margin-bottom: 32px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn-primary,
  .hero-actions .hero-btn-ghost { width: 100%; text-align: center; padding: 16px 24px; }
  .hero-eyebrow { font-size: 9px; }

  /* PAGE HEROES */
  .page-hero,
  #page-about .page-hero,
  #page-process .process-hero,
  #page-faq .faq-hero,
  #page-contact .contact-hero,
  #page-portfolio .portfolio-hero { padding: 0 24px 48px; min-height: 320px; }
  .page-hero-content h1 { font-size: clamp(32px, 9vw, 52px); }

  /* SECTION TITLES */
  .section-title { font-size: clamp(28px, 8vw, 44px); }

  /* ALL SECTION PADDING */
  #honesty-band, #services, #sticker-shock, #process-preview,
  #portfolio-teaser, #testimonials, #persona-cta, #home-cta,
  .credentials-section, .remote-band, .pricing-bands,
  #page-about .about-body, #page-process .process-body,
  .faq-body, .contact-info, .contact-form-wrap,
  .portfolio-body { padding: 56px 20px; }

  /* HONESTY BAND */
  #honesty-band { padding: 56px 20px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 40px; }

  /* SERVICES */
  .services-header { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .service-card { padding: 32px 24px; }

  /* STICKER SHOCK */
  #sticker-shock { grid-template-columns: 1fr; gap: 40px; padding: 56px 20px; }
  .price-band .range { font-size: 26px; }

  /* PROCESS PREVIEW */
  #process-preview { padding: 56px 20px; }
  .process-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .process-steps-grid { grid-template-columns: 1fr; }
  .process-step-card { padding: 32px 24px; }
  .step-num { font-size: 56px; }

  /* PORTFOLIO TEASER */
  #portfolio-teaser { padding: 56px 20px; }
  .portfolio-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .portfolio-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .portfolio-item:first-child { grid-row: auto; }
  .portfolio-item { height: 240px; }

  /* TESTIMONIALS */
  #testimonials { padding: 56px 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 32px 24px; }
  .testimonial-card blockquote { font-size: 16px; }

  /* PERSONA CTA */
  #persona-cta { grid-template-columns: 1fr; gap: 16px; padding: 56px 20px; }
  .persona-card { padding: 32px 24px; }
  .persona-card h3 { font-size: 26px; }

  /* HOME CTA */
  #home-cta { grid-template-columns: 1fr; gap: 28px; padding: 56px 20px; }
  #home-cta h2 { font-size: clamp(26px, 7vw, 40px); }
  .btn-white { width: 100%; text-align: center; padding: 18px 24px; }

  /* ABOUT PAGE */
  #page-about .about-body { grid-template-columns: 1fr; gap: 40px; padding: 56px 20px; }
  .about-story blockquote { padding: 24px; font-size: 18px; }
  .team-member { padding: 28px 24px; }
  .credentials-section { padding: 56px 20px; }
  .credentials-grid { grid-template-columns: 1fr; }
  .credential-box { padding: 28px 24px; }

  /* PROCESS PAGE */
  #page-process .process-body { padding: 56px 20px; }
  #page-process .process-intro { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .process-step-full { grid-template-columns: 1fr; }
  .psf-num { font-size: 48px; padding: 24px 24px 0; }
  .psf-content { padding: 16px 24px 32px; }
  .psf-content h3 { font-size: 22px; }
  .remote-band { grid-template-columns: 1fr; gap: 40px; padding: 56px 20px; }
  .remote-features { gap: 20px; }

  /* CABINETRY PAGE */
  #page-cabinetry section { padding: 56px 20px !important; }
  #page-cabinetry section > div:first-child { grid-template-columns: 1fr !important; gap: 40px !important; }
  .cab-gallery { grid-template-columns: 1fr; margin-top: 40px; }
  #page-cabinetry .cab-hero { padding: 0 24px 48px; }

  /* FAQ PAGE */
  .faq-body { padding: 56px 20px; }
  .faq-intro { margin-bottom: 40px; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item { padding: 28px 20px; }
  .faq-item h3 { font-size: 17px; }
  .pricing-bands { padding: 56px 20px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-tier { padding: 32px 24px; }
  .pricing-tier .tier-range { font-size: 32px; }

  /* PORTFOLIO PAGE */
  .portfolio-body { padding: 56px 20px; }
  .portfolio-filter { gap: 6px; }
  .filter-btn { padding: 9px 16px; font-size: 9px; }
  .portfolio-full-grid { grid-template-columns: 1fr; }

  /* CONTACT PAGE */
  .contact-body { grid-template-columns: 1fr; }
  .contact-info { padding: 48px 20px; border-right: none; border-bottom: 1px solid var(--linen-dark); }
  .contact-form-wrap { padding: 48px 20px; }
  .contact-form-wrap h3 { font-size: 26px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-submit { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-primary[type="submit"] { width: 100%; text-align: center; }

  /* FOOTER */
  footer { padding: 48px 20px 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand img { width: 160px !important; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* MOBILE NAV DRAWER */
  .mobile-nav a { font-size: clamp(22px, 6vw, 32px); padding: 14px 32px; }
}

/* CABINETRY CTA BAND */
@media (max-width: 768px) {
  .cab-cta-band {
    grid-template-columns: 1fr !important;
    padding: 48px 24px !important;
    gap: 28px !important;
  }
  .cab-cta-band .btn-white {
    width: 100%;
    text-align: center;
  }
}

/* SMALL PHONES */
@media (max-width: 390px) {
  .hero-h1 { font-size: 38px; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat-num { font-size: 44px; }
  .hero-eyebrow { display: none; }
}


/* ── HERO SLIDESHOW ── */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,32,20,0.45) 0%, rgba(15,22,15,0.88) 100%);
}



/* ============================================================
   RESOURCES DROPDOWN — Desktop Nav
============================================================ */
.nav-dropdown { position: relative; }

.nav-dropdown > a {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-caret {
  font-size: 0.75em;
  transition: transform 0.2s ease;
  display: inline-block;
}

.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 180px;
  background: rgba(28, 30, 25, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(196, 98, 45, 0.25);
  border-radius: 4px;
  padding: 8px 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li { list-style: none; }

.nav-dropdown-menu a {
  display: block;
  padding: 10px 22px;
  color: var(--linen);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus {
  background: rgba(196, 98, 45, 0.15);
  color: var(--ember-light);
}

/* When nav is in light mode (interior pages), match the styling */
#nav.light .nav-dropdown-menu {
  background: rgba(245, 240, 232, 0.97);
  border-color: rgba(74, 32, 24, 0.15);
}
#nav.light .nav-dropdown-menu a { color: var(--dark); }
#nav.light .nav-dropdown-menu a:hover,
#nav.light .nav-dropdown-menu a:focus {
  background: rgba(196, 98, 45, 0.12);
  color: var(--mahogany);
}

/* ============================================================
   MOBILE NAV — Resources expandable section
============================================================ */
.mobile-section {
  width: 100%;
  border-top: 1px solid rgba(245, 240, 232, 0.08);
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}

.mobile-section-toggle {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--linen);
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 18px 0;
  text-align: center;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-caret {
  font-size: 0.85em;
  transition: transform 0.2s ease;
  display: inline-block;
}

.mobile-section-toggle[aria-expanded="true"] .mobile-caret {
  transform: rotate(180deg);
}

.mobile-section-items {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.mobile-section-items.open {
  max-height: 200px;
}

.mobile-section-items a {
  display: block;
  padding: 14px 0;
  font-size: 14px;
  opacity: 0.85;
}

/* ============================================================
   BLOG INDEX PAGE
============================================================ */
.blog-hero {
  padding: 160px 80px 60px;
  background: var(--linen);
  text-align: left;
}

.blog-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.blog-hero .section-eyebrow {
  color: var(--ember);
  margin-bottom: 20px;
}

.blog-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.05;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}

.blog-hero h1 em { font-style: italic; }

.blog-hero p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--dark);
  max-width: 680px;
  opacity: 0.85;
  margin: 0;
}

.blog-grid-section {
  padding: 60px 80px 120px;
  background: var(--linen);
}

.blog-grid-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 36px;
}

/* Article card — links to article */
.article-card {
  display: block;
  background: #fff;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(74, 32, 24, 0.08);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(28, 30, 25, 0.12);
  border-color: rgba(196, 98, 45, 0.25);
}

.article-card__image {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: var(--linen-dark);
}

.article-card__body {
  padding: 28px 30px 32px;
}

.article-card__meta {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 14px;
}

.article-card__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
  margin: 0 0 14px;
  letter-spacing: -0.005em;
}

.article-card__excerpt {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--dark);
  opacity: 0.78;
  margin: 0 0 18px;
}

.article-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ember);
}

.article-card__read-more::after {
  content: "→";
  transition: transform 0.25s ease;
}

.article-card:hover .article-card__read-more::after {
  transform: translateX(4px);
}

/* "Coming soon" variant — non-interactive placeholder */
.article-card--coming {
  background: var(--linen);
  border: 1px dashed rgba(74, 32, 24, 0.25);
  cursor: default;
}

.article-card--coming:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(74, 32, 24, 0.25);
}

.article-card__coming-img {
  width: 100%;
  height: 240px;
  background: linear-gradient(135deg, var(--linen-mid) 0%, var(--linen-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--mahogany);
  opacity: 0.65;
  padding: 0 30px;
  text-align: center;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .blog-hero { padding: 120px 24px 40px; }
  .blog-grid-section { padding: 40px 24px 80px; }
  .blog-grid { grid-template-columns: 1fr; gap: 24px; }
  .article-card__body { padding: 22px 24px 26px; }
  .article-card__title { font-size: 22px; }
}


/* ============================================================
   FOOTER — Service Area readability + Resources subgroup
============================================================ */
.footer-col li span {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.45);
  display: inline-block;
}

/* Resources subgroup inside footer Navigation */
.footer-col .footer-subgroup {
  margin-top: 10px;
  padding-left: 12px;
  border-left: 1px solid rgba(245, 240, 232, 0.12);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col .footer-subgroup-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(196, 98, 45, 0.85);
  margin-top: 4px;
  margin-bottom: -2px;
}


/* ============================================================
   PORTFOLIO + CABINETRY — Masonry Layout Override
   Overrides earlier fixed aspect-ratio grid to handle mixed
   orientation photos (portrait + landscape) gracefully.
============================================================ */
.portfolio-full-grid,
.cab-gallery-full {
  display: block !important;
  column-count: 3;
  column-gap: 12px;
  background: transparent !important;
  padding: 0;
  margin-top: 48px;
}

.portfolio-full-grid .portfolio-full-item,
.cab-gallery-full .cab-gallery-full-item {
  break-inside: avoid;
  margin-bottom: 12px;
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: unset !important;
  background: var(--ridgeline);
  cursor: pointer;
}

.portfolio-full-grid .portfolio-full-item img,
.cab-gallery-full .cab-gallery-full-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: initial;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.5s ease;
  filter: brightness(0.92);
}

.portfolio-full-grid .portfolio-full-item:hover img,
.cab-gallery-full .cab-gallery-full-item:hover img {
  transform: scale(1.03);
  filter: brightness(1);
}

@media (max-width: 1024px) {
  .portfolio-full-grid,
  .cab-gallery-full {
    column-count: 2;
    column-gap: 10px;
  }
  .portfolio-full-grid .portfolio-full-item,
  .cab-gallery-full .cab-gallery-full-item {
    margin-bottom: 10px;
  }
}

@media (max-width: 600px) {
  .portfolio-full-grid,
  .cab-gallery-full {
    column-count: 1;
  }
}


/* ============================================================
   ARTICLE PAGE — Blog post layout (Week 1+)
============================================================ */
.article-page {
  background: var(--linen);
}

/* Hero section */
.article-hero {
  padding: 140px 80px 40px;
  background: var(--linen);
}

.article-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.breadcrumb {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 28px;
}

.breadcrumb a {
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover { color: var(--ember); }

.breadcrumb .bc-sep {
  margin: 0 8px;
  opacity: 0.5;
}

.article-hero .section-eyebrow {
  color: var(--ember);
  margin-bottom: 20px;
}

.article-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}

.article-dek {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: var(--text-mid);
  margin: 0 0 28px;
  font-weight: 300;
}

.article-meta {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember);
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-meta-sep { opacity: 0.5; }

/* Hero image */
.article-hero-image {
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 40px;
}

.article-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  box-shadow: 0 20px 50px rgba(28, 30, 25, 0.18);
}

/* Body */
.article-body {
  padding: 0 80px 100px;
  background: var(--linen);
}

.article-body-inner {
  max-width: 720px;
  margin: 0 auto;
}

.article-lede {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.55;
  color: var(--dark);
  margin: 0 0 32px;
  font-weight: 400;
  font-style: italic;
}

.article-body p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--dark);
  margin: 0 0 24px;
  opacity: 0.92;
}

.article-body p strong {
  font-weight: 600;
  color: var(--dark);
  opacity: 1;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin: 56px 0 22px;
}

.article-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.25;
  margin: 40px 0 16px;
}

.article-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.article-list li {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--dark);
  margin: 0 0 14px;
  padding-left: 22px;
  position: relative;
  opacity: 0.92;
}

.article-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 8px;
  background: var(--ember);
  transform: rotate(45deg);
}

.article-list li strong {
  font-weight: 600;
  opacity: 1;
}

/* Pull quote */
.pullquote {
  margin: 48px -40px;
  padding: 36px 44px;
  background: rgba(74, 32, 24, 0.04);
  border-left: 3px solid var(--ember);
}

.pullquote blockquote {
  margin: 0;
  padding: 0;
}

.pullquote blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--dark);
  margin: 0 0 20px;
  font-weight: 400;
}

.pullquote figcaption {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pullquote .pq-name {
  color: var(--ember);
  font-weight: 500;
}

.pullquote .pq-title {
  color: var(--text-mid);
  font-size: 11px;
  letter-spacing: 0.12em;
}

/* CTA */
.article-cta {
  margin: 56px 0 32px;
  padding: 44px 40px;
  background: var(--ridgeline);
  text-align: center;
  border-radius: 2px;
}

.article-cta .btn-primary {
  display: inline-block;
  padding: 16px 36px;
  background: var(--ember);
  color: var(--linen);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.article-cta .btn-primary:hover {
  background: #d96a32;
  transform: translateY(-1px);
}

.article-body .article-cta .article-cta-sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(245, 240, 232, 0.85) !important;
  margin: 22px 0 0;
  line-height: 1.6;
}

/* Footnote — override global <footer> dark background */
footer.article-footnote {
  background: transparent !important;
  padding: 24px 0 !important;
  margin: 40px 0;
  border-top: 1px solid rgba(74, 32, 24, 0.12);
  border-bottom: 1px solid rgba(74, 32, 24, 0.12);
  display: block;
}

footer.article-footnote p {
  font-size: 13px;
  color: var(--text-mid);
  margin: 0;
  text-align: center;
  font-style: italic;
}

/* Related */
.article-related {
  margin: 48px 0 0;
}

.article-related h3 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 16px;
}

.article-related ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-related li {
  margin: 0;
  border-bottom: 1px solid rgba(74, 32, 24, 0.08);
}

.article-related li:last-child {
  border-bottom: none;
}

.article-related a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-related a::after {
  content: "→";
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ember);
  transition: transform 0.2s ease;
}

.article-related a:hover {
  color: var(--mahogany);
}

.article-related a:hover::after {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .article-hero { padding: 100px 24px 32px; }
  .article-hero-image { padding: 0 16px; margin-bottom: 36px; }
  .article-body { padding: 0 24px 64px; }
  .article-body p { font-size: 16px; line-height: 1.7; }
  .article-list li { font-size: 16px; }
  .article-dek { font-size: 17px; }
  .article-lede { font-size: 19px; }
  .pullquote {
    margin: 36px -12px;
    padding: 28px 28px;
  }
  .pullquote blockquote p { font-size: 19px; }
  .article-cta { padding: 36px 24px; }
}
