/* ============================================================
   HENZER BT. — Heritage Modern / Editorial Authority
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:       #f5f0e8;
  --cream-dark:  #ede6d6;
  --graphite:    #1e1e1e;
  --graphite-mid:#3a3a3a;
  --graphite-lt: #5a5a5a;
  --forest:      #2d4a2d;
  --forest-lt:   #3a5e3a;
  --rust:        #8b3a1a;
  --rust-lt:     #b04a22;
  --brown-dark:  #2e1f0e;
  --border:      #c8bfae;
  --border-lt:   #ddd5c4;

  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body:    'Helvetica Neue', Arial, sans-serif;

  --max-w: 1160px;
  --gap:   2rem;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--cream);
  color: var(--graphite);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; max-width: 100%; }

/* ---- Utility ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  background: var(--graphite);
  color: var(--cream);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--rust);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--cream);
  white-space: nowrap;
}
.site-logo span {
  color: var(--rust-lt);
}

.site-nav { display: flex; align-items: center; gap: 0.15rem; }

.site-nav a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c8bfae;
  padding: 0.45rem 0.7rem;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--cream);
  background: rgba(255,255,255,0.07);
  text-decoration: none;
}

.header-cta {
  background: var(--rust);
  color: var(--cream) !important;
  padding: 0.5rem 1.1rem !important;
  border: 2px solid var(--rust) !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s !important;
}
.header-cta:hover {
  background: var(--rust-lt) !important;
  border-color: var(--rust-lt) !important;
  text-decoration: none !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--graphite);
  color: var(--cream);
  padding: 0;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero-text {
  padding: 5rem 3rem 5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust-lt);
  border-left: 3px solid var(--rust);
  padding-left: 0.75rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  line-height: 1.18;
  font-weight: 700;
}

.hero-sub {
  font-size: 1.05rem;
  color: #c0b8a8;
  max-width: 480px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.btn-primary {
  display: inline-block;
  background: var(--rust);
  color: var(--cream);
  padding: 0.75rem 1.6rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 2px solid var(--rust);
  transition: background 0.2s, border-color 0.2s;
}
.btn-primary:hover {
  background: var(--rust-lt);
  border-color: var(--rust-lt);
  text-decoration: none;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--cream);
  padding: 0.75rem 1.6rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 2px solid #6a6050;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover {
  border-color: var(--cream);
  text-decoration: none;
}

.btn-outline-dark {
  display: inline-block;
  background: transparent;
  color: var(--graphite);
  padding: 0.75rem 1.6rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 2px solid var(--graphite);
  transition: background 0.2s, color 0.2s;
}
.btn-outline-dark:hover {
  background: var(--graphite);
  color: var(--cream);
  text-decoration: none;
}

.hero-microcopy {
  font-size: 0.78rem;
  color: #7a7060;
  letter-spacing: 0.05em;
}

.hero-image {
  background: #2a2a2a;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: #252525;
  border-left: 1px solid #3a3a3a;
  padding: 2rem;
  text-align: center;
}

.img-placeholder .ph-icon {
  font-size: 2.5rem;
  opacity: 0.35;
}

.img-placeholder p {
  font-size: 0.82rem;
  color: #7a7060;
  font-style: italic;
  max-width: 240px;
  line-height: 1.5;
}

/* Sub-page hero */
.hero-sub-page {
  background: var(--graphite);
  color: var(--cream);
  padding: 4rem 1.5rem 3.5rem;
  border-bottom: 3px solid var(--rust);
}

.hero-sub-page .container { max-width: var(--max-w); }

.hero-sub-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-sub-page p {
  font-size: 1.05rem;
  color: #c0b8a8;
  max-width: 640px;
  margin-bottom: 1.5rem;
}

/* ============================================================
   SECTIONS — General
   ============================================================ */
.section { padding: 5rem 1.5rem; }
.section-sm { padding: 3.5rem 1.5rem; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  line-height: 1.22;
  color: var(--graphite);
  margin-bottom: 1.2rem;
}

.section-title-light {
  color: var(--cream);
}

.section-lead {
  font-size: 1.05rem;
  color: var(--graphite-lt);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ============================================================
   TIMELINE (Trust section)
   ============================================================ */
.trust-section {
  background: var(--cream-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3rem;
  border: 1px solid var(--border);
}

.timeline-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  position: relative;
}
.timeline-item:last-child { border-right: none; }

.timeline-year {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--rust);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--graphite-mid);
  margin-bottom: 0.5rem;
}

.timeline-text {
  font-size: 0.92rem;
  color: var(--graphite-lt);
  line-height: 1.6;
}

/* ============================================================
   SERVICE BLOCKS (Editorial alternating)
   ============================================================ */
.services-section { background: var(--cream); }

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.service-block:nth-child(even) .service-content { order: 2; }
.service-block:nth-child(even) .service-visual  { order: 1; }

.service-content {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.service-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
}

.service-content h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.2;
  color: var(--graphite);
}

.service-content p {
  font-size: 0.95rem;
  color: var(--graphite-lt);
  line-height: 1.7;
}

.service-link {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--rust);
  border-bottom: 1px solid var(--rust);
  display: inline-block;
  padding-bottom: 1px;
  transition: color 0.2s;
}
.service-link:hover { color: var(--rust-lt); text-decoration: none; }

.service-visual {
  background: var(--cream-dark);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--border);
}
.service-block:nth-child(even) .service-visual {
  border-left: none;
  border-right: 1px solid var(--border);
}

/* ============================================================
   BRAND TAG WALL
   ============================================================ */
.brands-section {
  background: var(--forest);
  color: var(--cream);
  padding: 5rem 1.5rem;
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.brand-tag {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--cream);
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
  transition: background 0.2s, border-color 0.2s;
}
.brand-tag:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-section { background: var(--cream-dark); }

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

.process-step {
  padding: 2.5rem 1.75rem;
  border-right: 1px solid var(--border);
  position: relative;
}
.process-step:last-child { border-right: none; }

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--rust);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.92rem;
  color: var(--graphite-lt);
  line-height: 1.6;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-section { background: var(--cream); }

.faq-list { margin-top: 2.5rem; border-top: 1px solid var(--border); }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--graphite);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--rust); }

.faq-icon {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--rust);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--graphite-lt);
  line-height: 1.7;
  max-width: 680px;
}

/* ============================================================
   FINAL CTA PANEL
   ============================================================ */
.cta-panel {
  background: var(--brown-dark);
  color: var(--cream);
  padding: 5rem 1.5rem;
  text-align: center;
  border-top: 3px solid var(--rust);
}

.cta-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-panel p {
  font-size: 1rem;
  color: #b0a898;
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn-cta-phone {
  display: inline-block;
  background: var(--rust);
  color: var(--cream);
  padding: 0.85rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid var(--rust);
  transition: background 0.2s, border-color 0.2s;
}
.btn-cta-phone:hover {
  background: var(--rust-lt);
  border-color: var(--rust-lt);
  text-decoration: none;
}

.btn-cta-email {
  display: inline-block;
  background: transparent;
  color: var(--cream);
  padding: 0.85rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid #5a5040;
  transition: border-color 0.2s;
}
.btn-cta-email:hover {
  border-color: var(--cream);
  text-decoration: none;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.contact-card {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--graphite);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--rust);
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--graphite-lt);
}

.contact-value {
  font-size: 1rem;
  color: var(--graphite);
  font-weight: 600;
}

.contact-value a {
  color: var(--rust);
  transition: color 0.2s;
}
.contact-value a:hover { color: var(--rust-lt); text-decoration: none; }

/* ============================================================
   INNER PAGE SECTIONS
   ============================================================ */
.info-section { background: var(--cream); }
.info-section-alt { background: var(--cream-dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
}

.info-list li {
  font-size: 0.95rem;
  color: var(--graphite-lt);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.55;
}
.info-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--rust);
  font-weight: 700;
}

.type-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.type-tag {
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--border);
  color: var(--graphite-mid);
  background: var(--cream);
  letter-spacing: 0.04em;
}

.dark-panel {
  background: var(--forest);
  color: var(--cream);
  padding: 4rem 1.5rem;
}

.dark-panel .section-title { color: var(--cream); }
.dark-panel .section-lead { color: #a8c0a8; }

.highlight-box {
  background: var(--graphite);
  color: var(--cream);
  padding: 2.5rem 2rem;
  border-left: 4px solid var(--rust);
  margin-top: 2rem;
}

.highlight-box p {
  font-size: 0.95rem;
  color: #b0a898;
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--graphite);
  color: #7a7060;
  padding: 2.5rem 1.5rem;
  border-top: 3px solid var(--rust);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
}
.footer-logo span { color: var(--rust-lt); }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.footer-nav a {
  font-size: 0.78rem;
  color: #7a7060;
  padding: 0.2rem 0.5rem;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--cream); text-decoration: none; }

.footer-copy {
  font-size: 0.78rem;
  width: 100%;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #2e2e2e;
  margin-top: 1rem;
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--rust);
  color: var(--cream);
  text-align: center;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-top: 2px solid var(--rust-lt);
}
.sticky-call:hover { background: var(--rust-lt); text-decoration: none; }

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-text { padding: 3.5rem 1.5rem; }

  .timeline { grid-template-columns: 1fr; }
  .timeline-item { border-right: none; border-bottom: 1px solid var(--border); }
  .timeline-item:last-child { border-bottom: none; }

  .service-block { grid-template-columns: 1fr; }
  .service-block:nth-child(even) .service-content { order: 1; }
  .service-block:nth-child(even) .service-visual  { order: 2; }
  .service-visual { min-height: 160px; border-left: none !important; border-right: none !important; border-top: 1px solid var(--border); }

  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step { border-bottom: 1px solid var(--border); }
  .process-step:nth-child(2n) { border-right: none; }
  .process-step:nth-last-child(-n+2) { border-bottom: none; }

  .contact-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 700px) {
  .site-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--graphite);
    border-top: 1px solid #333;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }
  .site-nav.open { display: flex; }
  .site-nav a { font-size: 0.9rem; padding: 0.6rem 0.5rem; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header { position: sticky; }

  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; }
  .process-step:last-child { border-bottom: none; }

  .sticky-call { display: block; }
  body { padding-bottom: 60px; }

  .brand-tag { font-size: 1rem; }
}

@media (max-width: 480px) {
  .hero-text { padding: 2.5rem 1.25rem; }
  .section { padding: 3.5rem 1.25rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
