/*
Theme Name: TJH Enterprises
Theme URI: https://tjhenterprises.com
Author: TJH Enterprises
Description: A dark, cinematic one-page WordPress theme for TJH Enterprises.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: tjh-enterprises
*/

/* ══════════════════════════════════════════════════════
   RESET & ROOT VARIABLES
══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:    #0a0a0a;
  --mid:     #141414;
  --accent:  #c8a96e;
  --accent2: #d4b87a;
  --white:   #ffffff;
  --border:  rgba(255,255,255,0.10);
  /* Lightbox panel used behind text on dark/photo backgrounds */
  --glass-dark:  rgba(8, 8, 8, 0.72);
  --glass-mid:   rgba(15, 15, 15, 0.80);
  --glass-light: rgba(255,255,255,0.06);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Figtree', sans-serif;
  background: var(--dark);
  color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* WordPress core resets */
.wp-site-blocks { padding: 0 !important; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ══════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════ */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 60px;
  transition: background 0.4s, padding 0.4s;
}

#site-nav.scrolled {
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 60px;
  border-bottom: 1px solid var(--border);
}

.site-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
}

.site-logo .logo-sep { color: var(--accent); }

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

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1.5px solid var(--accent);
  color: var(--accent) !important;
  opacity: 1 !important;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--accent);
  color: var(--dark) !important;
}

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  padding: 0 0 80px 0; /* leave room for stats bar */
}

.hero-photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center center;
  z-index: 0;
  animation: slowZoom 18s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.12); }
}

/* Strong darkening overlay so white text always reads */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.60) 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.45) 60%,
    rgba(0,0,0,0.85) 100%
  );
}

.hero-grain {
  position: absolute; inset: 0; z-index: 2;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* Hero text — floated on a dark lightbox pill */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: left;
  padding: 52px 60px;
  max-width: 580px;
  width: 100%;
  background: rgba(0,0,0,0.62);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.10);
  /* Pin to right side, leaving left open for the silhouette */
  margin-left: auto;
  margin-right: 6%;
  margin-bottom: 40px; /* nudge up from stats bar */
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  animation: fadeUp 0.9s ease 0.3s both;
}

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

.hero-eyebrow::after { display: none; }

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7.5vw, 100px);
  font-weight: 300;
  line-height: 1.0;
  color: #ffffff;
  margin-bottom: 16px;
  animation: fadeUp 1s ease 0.5s both;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
  display: block;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(16px, 2.2vw, 24px);
  font-weight: 300;
  color: rgba(255,255,255,0.90);
  margin-bottom: 36px;
  letter-spacing: 0.03em;
  animation: fadeUp 0.9s ease 0.65s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  animation: fadeUp 0.8s ease 0.8s both;
}

.btn-outline {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 34px;
  border: 1.5px solid rgba(255,255,255,0.60);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-filled {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 34px;
  background: var(--accent);
  color: var(--dark);
  text-decoration: none;
  transition: background 0.3s;
}

.btn-filled:hover { background: var(--accent2); }

/* Scroll indicator */
.scroll-down {
  position: absolute;
  bottom: 110px; left: 50%;
  transform: translateX(-50%);
  display: none; /* hidden when content is right-aligned — clashes visually */
  z-index: 10;
  text-align: center;
  text-decoration: none;
  animation: fadeUp 0.8s ease 1s both;
}

.scroll-text {
  display: block;
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
  margin-bottom: 10px;
}

.scroll-mouse {
  display: block;
  width: 22px; height: 34px;
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 11px;
  margin: 0 auto;
  position: relative;
}

.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 7px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollBob 2s ease-in-out infinite;
}

@keyframes scrollBob {
  0%,100% { top: 6px; opacity: 1; }
  80%      { top: 16px; opacity: 0; }
}

/* Hero stats bar */
.hero-bottom-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hbb-item {
  padding: 20px 28px;
  border-right: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hbb-item:last-child { border-right: none; }

.hbb-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.hbb-label {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.90);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════
   INTRO STRIP
══════════════════════════════════════════════════════ */
.intro-strip {
  background: var(--accent);
  padding: 16px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.intro-strip span {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1a1200;
  white-space: nowrap;
}

.intro-strip .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(0,0,0,0.35);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════
   SHARED SECTION UTILITIES
══════════════════════════════════════════════════════ */
.section-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 22px; height: 1.5px;
  background: var(--accent);
}

.section-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.8vw, 50px);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.section-h2 em { font-style: italic; color: var(--accent); }

/* ══════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════ */
.about {
  background: var(--dark);
  padding: 120px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 72px;
  align-items: start;
}

/* Portrait */
.about-portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #1a1a1a;
  background-size: cover;
  background-position: center top;
  position: relative;
  margin-bottom: 16px;
}

.about-portrait::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid rgba(200,169,110,0.25);
}

.about-portrait-caption {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em;
  text-align: right;
}

/* About text — white box on dark background for max legibility */
.about-text-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 48px;
}

.about-text-panel p {
  font-size: 15.5px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-text-panel p strong {
  color: #ffffff;
  font-weight: 600;
}

.about-divider {
  width: 44px; height: 1.5px;
  background: var(--accent);
  margin: 32px 0;
}

/* Meta grid */
.about-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 32px;
}

.meta-item {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  border-right: 1px solid rgba(255,255,255,0.08);
}

.meta-item:nth-child(2n)     { border-right: none; }
.meta-item:nth-last-child(-n+2) { border-bottom: none; }

.meta-key {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.meta-val {
  font-size: 13.5px;
  font-weight: 500;
  color: #ffffff;
}

/* Skill pills */
.skills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-pill {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1.5px solid rgba(200,169,110,0.45);
  color: rgba(255,255,255,0.90);
  transition: all 0.2s;
}

.skill-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(200,169,110,0.08);
}

/* ══════════════════════════════════════════════════════
   VENTURES
══════════════════════════════════════════════════════ */
.ventures {
  background: #0f0f0f;
  padding: 120px 0;
}

.ventures-header {
  margin-bottom: 64px;
}

.ventures-list {
  display: flex;
  flex-direction: column;
}

.venture-item {
  display: grid;
  grid-template-columns: 72px 1fr 180px;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  position: relative;
  transition: background 0.2s;
}

/* Hover highlight */
.venture-item::before {
  content: '';
  position: absolute;
  left: -60px; right: -60px; top: 0; bottom: 0;
  background: rgba(255,255,255,0.02);
  opacity: 0;
  transition: opacity 0.3s;
}

.venture-item:hover::before { opacity: 1; }
.venture-item:hover .vi-name { color: var(--accent); }
.venture-item:hover .vi-arrow { opacity: 1; transform: translateX(0); }

.vi-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  padding-top: 4px;
}

.vi-name {
  font-size: 21px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  transition: color 0.25s;
}

.vi-desc {
  font-size: 14.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  max-width: 560px;
}

.vi-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.vi-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  background: rgba(200,169,110,0.12);
  color: var(--accent);
  border: 1px solid rgba(200,169,110,0.25);
}

.vi-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  padding-top: 6px;
}

.vi-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4ade80;
}

.vi-status::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.2);
}

.vi-arrow {
  font-size: 20px;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s;
}

/* ══════════════════════════════════════════════════════
   QUOTE BANNER
══════════════════════════════════════════════════════ */
.quote-section {
  position: relative;
  padding: 120px 60px;
  overflow: hidden;
  text-align: center;
}

.quote-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 60%;
  filter: brightness(0.20) saturate(0.4);
  z-index: 0;
}

/* Extra dark overlay so quote text is crystal clear */
.quote-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(0,0,0,0.65);
}

.quote-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  margin: 0 auto;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(200,169,110,0.20);
  padding: 52px 64px;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  color: var(--accent);
  line-height: 0.6;
  opacity: 0.6;
  display: block;
  margin-bottom: 20px;
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.38;
  margin-bottom: 24px;
}

.quote-attr {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ══════════════════════════════════════════════════════
   APPROACH
══════════════════════════════════════════════════════ */
.approach {
  background: var(--dark);
  padding: 120px 0;
}

.approach-header { margin-bottom: 64px; }

.approach-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.approach-photo-wrap { position: relative; }

.approach-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
}

.approach-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(0,0,0,0.80) 100%);
}

.approach-photo-label {
  position: absolute;
  bottom: 28px; left: 28px;
  z-index: 2;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  font-weight: 300;
  color: #ffffff;
  max-width: 220px;
  line-height: 1.45;
  text-shadow: 0 1px 12px rgba(0,0,0,0.8);
}

/* Principles — each on its own panel */
.principles { display: flex; flex-direction: column; gap: 0; }

.principle {
  padding: 28px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  transition: background 0.2s;
}

.principle:last-child { border-bottom: none; }
.principle:hover { background: rgba(255,255,255,0.07); }

.principle-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}

.principle-title {
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.principle-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  line-height: 1.72;
}

/* ══════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════ */
.contact {
  background: #0d0d0d;
  padding: 120px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Contact info panel */
.contact-left {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 48px;
}

.contact-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

.contact-headline em { font-style: italic; color: var(--accent); }

.contact-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-info { display: flex; flex-direction: column; }

.contact-info-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.contact-info-icon {
  font-size: 15px;
  color: var(--accent);
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.contact-info-text {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.90);
}

/* Contact form panel */
.contact-form-panel {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form-panel input,
.contact-form-panel textarea {
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.15);
  color: #ffffff;
  outline: none;
  width: 100%;
  transition: border-color 0.25s, background 0.25s;
  letter-spacing: 0.02em;
}

.contact-form-panel input::placeholder,
.contact-form-panel textarea::placeholder {
  color: rgba(255,255,255,0.45);
}

.contact-form-panel input:focus,
.contact-form-panel textarea:focus {
  border-color: rgba(200,169,110,0.60);
  background: rgba(255,255,255,0.08);
}

.contact-form-panel textarea {
  resize: none;
  min-height: 130px;
}

.form-submit {
  font-family: 'Figtree', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px 34px;
  background: var(--accent);
  color: var(--dark);
  border: none;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.25s;
}

.form-submit:hover { background: var(--accent2); }

#form-status {
  font-size: 13px;
  padding: 10px 0;
  display: none;
}

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
#site-footer {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 32px 60px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

.footer-socials {
  display: flex;
  gap: 28px;
  justify-content: flex-end;
}

.footer-socials span {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
}

/* ══════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid           { grid-template-columns: 1fr; gap: 40px; }
  .about-portrait       { max-width: 320px; }
  .approach-inner       { grid-template-columns: 1fr; }
  .contact-grid         { grid-template-columns: 1fr; }
  .hero-bottom-bar      { grid-template-columns: 1fr 1fr; }
  .hbb-item:nth-child(2){ border-right: none; }
}

@media (max-width: 768px) {
  #site-nav, #site-nav.scrolled { padding: 16px 24px; }
  .nav-links            { gap: 18px; }
  .nav-links a          { font-size: 10px; letter-spacing: 0.10em; }
  .section-wrap         { padding: 0 24px; }
  .intro-strip          { gap: 16px; padding: 14px 24px; }
  .venture-item         { grid-template-columns: 48px 1fr; }
  .vi-right             { display: none; }
  /* Re-center hero on mobile */
  .hero                 { justify-content: center; padding: 0 0 80px 0; }
  .hero-content         { text-align: center; padding: 32px 24px; margin: 0 16px; max-width: 100%; }
  .hero-eyebrow         { justify-content: center; }
  .hero-eyebrow::before { display: none; }
  .hero-actions         { justify-content: center; }
  .about-text-panel     { padding: 32px; }
  .contact-left, .contact-form-panel { padding: 32px; }
  #site-footer          { grid-template-columns: 1fr; text-align: center; }
  .footer-socials       { justify-content: center; }
  .form-row             { grid-template-columns: 1fr; }
  .quote-content        { padding: 36px 32px; }
}

@media (max-width: 480px) {
  .hero h1              { font-size: 44px; }
  .hero-actions         { flex-direction: column; align-items: center; }
  .hero-bottom-bar      { grid-template-columns: 1fr 1fr; }
}
