/* ============================================================
   Construction Coordinating Corporation · Shared Stylesheet
   A Cowboy, Inc. Entity · Las Vegas, NV
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --bg:          #080807;
  --surface:     #0f0f0e;
  --surface2:    #161614;
  --surface3:    #1d1d1a;
  --gold:        #c9a055;
  --gold-light:  #e0ba72;
  --gold-dim:    #7a5f2a;
  --text:        #f0ece3;
  --text-muted:  #8a806a;
  --text-dim:    #5a5242;
  --border:      rgba(201,160,85,.15);
  --border-hard: rgba(201,160,85,.30);
  --radius:      2px;
  --nav-h:       72px;
  --max:         1180px;
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'Jost', system-ui, sans-serif;
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(8,8,7,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 900;
  display: flex;
  align-items: center;
  padding: 0 32px;
}
.nav-inner {
  width: 100%; max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-right: auto;
}
.nav-brand .b1 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .04em;
}
.nav-brand .b2 {
  font-size: .65rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 6px 14px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links .nav-active a { color: var(--gold); }

/* ── DROPDOWN ─────────────────────────────────────────────────────── */
.nav-dropdown { position: relative; }

.nav-drop-btn {
  display: inline-block;
  padding: 6px 14px;
  color: var(--text-muted);
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  user-select: none;
  transition: color .2s;
  text-align: center;
  line-height: 1.5;
}
.nav-drop-btn:hover,
.nav-drop-btn.active { color: var(--gold); }

.nav-drop-list {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: #0f0f0e;
  border: 1px solid rgba(201,160,85,.3);
  border-top: 2px solid var(--gold);
  min-width: 220px;
  list-style: none;
  padding: 0;
  z-index: 9999;
  box-shadow: 0 16px 48px rgba(0,0,0,.8);
}
.nav-dropdown.open .nav-drop-list { display: block; }

.nav-drop-list li a {
  display: block;
  padding: 14px 20px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201,160,85,.08);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-drop-list li:last-child a { border-bottom: none; }
.nav-drop-list li a:hover {
  background: rgba(201,160,85,.06);
  color: var(--gold);
}


.nav-cta {
  margin-left: 20px;
  padding: 9px 22px;
  background: transparent;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  text-decoration: none;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .2s, border-color .2s, color .2s;
  border-radius: var(--radius);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-muted);
  transition: .3s;
}
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 950;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 12px 0;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 24px; right: 28px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ── LAYOUT ───────────────────────────────────────────────── */
.page { padding-top: var(--nav-h); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.divider { height: 1px; background: var(--border); margin: 0 32px; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  padding: 120px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 70% 60% at 20% 50%, rgba(201,160,85,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 14px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 28px;
  max-width: 820px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
.eyebrow {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.14;
  color: var(--text);
  margin-bottom: 20px;
}
h2 em { font-style: italic; color: var(--gold-light); }
h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}
p {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.8;
}
.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 48px;
}
strong { color: var(--text); font-weight: 500; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  transition: .2s;
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: #000;
}
.btn-gold:hover { background: var(--gold-light); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--border-hard);
  color: var(--text-muted);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── STATS ────────────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 64px 0;
}
.stat {
  background: var(--bg);
  padding: 40px 32px;
  text-align: center;
}
.stat-val {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ── CARDS ────────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.card {
  background: var(--surface);
  padding: 40px 36px;
  position: relative;
}
.card-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: 20px;
  opacity: .5;
}
.card-icon {
  font-size: 1.6rem;
  margin-bottom: 20px;
  display: block;
}
.card h3 {
  font-size: 1.1rem;
  font-weight: 500;
  font-family: var(--sans);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 12px;
}
.card p { font-size: .88rem; line-height: 1.75; }

/* ── TWO-COL ──────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col-content { max-width: 100%; }
.two-col-aside { }

/* ── NOTICE BOX ───────────────────────────────────────────── */
.notice {
  background: var(--surface2);
  border-left: 3px solid var(--gold-dim);
  padding: 24px 28px;
  border-radius: var(--radius);
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 32px;
}
.notice strong { color: var(--gold); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; display: block; margin-bottom: 8px; }

/* ── TIER CARDS ───────────────────────────────────────────── */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.tier {
  background: var(--surface);
  padding: 48px 36px;
  position: relative;
}
.tier.featured {
  background: var(--surface2);
}
.tier.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .18em;
  padding: 4px 16px;
}
.tier-name {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.tier-price {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.tier-price span { font-size: 1.2rem; vertical-align: top; margin-top: 12px; display: inline-block; }
.tier-period { font-size: .75rem; color: var(--text-dim); margin-bottom: 32px; }
.tier-features { list-style: none; margin-bottom: 36px; }
.tier-features li {
  font-size: .88rem;
  color: var(--text-muted);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.tier-features li::before {
  content: '✓';
  color: var(--gold);
  font-size: .85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── STEP LIST ────────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.step {
  background: var(--surface);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: start;
}
.step-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold-dim);
  line-height: 1;
}
.step h3 { font-size: 1rem; font-family: var(--sans); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; }
.step p { font-size: .88rem; }

/* ── LEGAL ────────────────────────────────────────────────── */
.legal-body {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 56px 64px;
  border-radius: var(--radius);
}
.legal-body p {
  margin-bottom: 20px;
  font-size: .95rem;
  line-height: 1.85;
  color: var(--text-muted);
}
.legal-body h3 {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 40px;
  margin-bottom: 14px;
  font-family: var(--sans);
}

/* ── CONTACT FORM ─────────────────────────────────────────── */
.form-tabs {
  display: flex;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 1px;
}
.form-tab {
  flex: 1;
  padding: 16px;
  background: var(--surface);
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: .2s;
  text-align: center;
}
.form-tab.active {
  background: var(--surface2);
  color: var(--gold);
}
.form-tab:hover:not(.active) { background: var(--surface3); color: var(--text); }
.form-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 48px;
  display: none;
}
.form-panel.active { display: block; }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--sans);
  font-size: .92rem;
  padding: 12px 16px;
  border-radius: var(--radius);
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold-dim); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-note {
  font-size: .78rem;
  color: var(--text-dim);
  margin-top: 12px;
  line-height: 1.6;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .b1 {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 400;
}
.footer-brand .b2 {
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 4px;
  display: block;
}
.footer-tagline {
  font-size: .83rem;
  color: var(--text-dim);
  margin-top: 16px;
  line-height: 1.6;
  max-width: 280px;
}
.footer-col h4 {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: .83rem;
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: .72rem;
  color: var(--text-dim);
}

/* ── SECTION VARIANTS ─────────────────────────────────────── */
.section-dark { background: var(--surface); }
.section-darker { background: var(--surface2); }
.section-gold-line {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── CHECKLIST ────────────────────────────────────────────── */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .92rem;
  color: var(--text-muted);
}
.checklist li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── COMPARISON ───────────────────────────────────────────── */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.compare-col { background: var(--surface); padding: 40px 36px; }
.compare-col.col-before h3 {
  color: var(--text-dim);
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-family: var(--sans);
  margin-bottom: 24px;
}
.compare-col.col-after h3 {
  color: var(--gold);
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-family: var(--sans);
  margin-bottom: 24px;
}
.compare-col.col-after { background: var(--surface2); }
.compare-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
  color: var(--text-muted);
}
.compare-item:last-child { border-bottom: none; }
.compare-icon { flex-shrink: 0; margin-top: 1px; }
.col-before .compare-icon { color: var(--text-dim); }
.col-after .compare-icon { color: var(--gold); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 960px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .tier-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links, .nav-dropdown, .nav-cta { display: none !important; }
  .nav-toggle { display: flex; }
  .card-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero { padding: 80px 0 64px; }
  .section { padding: 64px 0; }
  .legal-body { padding: 32px 24px; }
  .form-panel { padding: 28px; }
}
@media (max-width: 460px) {
  .stats { grid-template-columns: 1fr; }
  .form-tabs { flex-direction: column; }
}

/* ── TESTIMONIALS ─────────────────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}
.testimonial {
  background: var(--surface);
  padding: 36px 32px;
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold-dim);
  opacity: .5;
  position: absolute;
  top: 16px;
  left: 24px;
}
.testimonial-text {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  padding-top: 28px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.testimonial-name {
  font-size: .82rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: .04em;
}
.testimonial-role {
  font-size: .72rem;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.testimonial-location {
  font-size: .72rem;
  color: var(--text-dim);
}

/* Single large testimonial pull-quote */
.testimonial-pull {
  background: var(--surface2);
  border-left: 3px solid var(--gold);
  padding: 36px 40px;
  margin: 48px 0;
  position: relative;
}
.testimonial-pull::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 5rem;
  line-height: .8;
  color: var(--gold-dim);
  opacity:.4;
  position: absolute;
  top: 20px;
  left: 28px;
}
.testimonial-pull p {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  padding-left: 20px;
  margin-bottom: 20px;
}
.testimonial-pull cite {
  font-size: .72rem;
  font-style: normal;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  padding-left: 20px;
}

/* ═══════════════════════════════════════════════════════════════════
   WOW FACTOR — VISUAL UPGRADE LAYER
   ═══════════════════════════════════════════════════════════════════ */

/* ── PHOTO HERO — full bleed with gradient overlay ──────────────── */
.hero-photo {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
.hero-photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  transform: scale(1.05);
  transition: transform 8s ease;
  z-index: 0;
}
.hero-photo:hover .hero-photo-bg { transform: scale(1); }
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    rgba(8,8,7,.93) 0%,
    rgba(8,8,7,.78) 55%,
    rgba(8,8,7,.35) 100%);
  z-index: 1;
}
.hero-photo-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 80px) 32px 80px;
  width: 100%;
}
.hero-photo h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  max-width: 780px;
  margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(0,0,0,.5);
}
.hero-photo .hero-sub {
  max-width: 560px;
  font-size: 1.1rem;
}

/* ── PHOTO SECTION BREAK — full-width image with dark overlay ────── */
.photo-break {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-break img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .45;
  transform: scale(1.04);
  transition: transform 6s ease;
}
.photo-break:hover img { transform: scale(1); }
.photo-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,8,7,.7) 0%, rgba(8,8,7,.3) 50%, rgba(8,8,7,.7) 100%);
}
.photo-break-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 32px;
}
.photo-break-content h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  color: var(--text);
  text-shadow: 0 2px 40px rgba(0,0,0,.8);
}
.photo-break-content p {
  font-size: 1.05rem;
  color: rgba(240,236,227,.75);
  max-width: 600px;
  margin: 16px auto 0;
  text-shadow: 0 1px 20px rgba(0,0,0,.8);
}

/* ── ICON FEATURE CARDS — large icon, title, text ────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  padding: 40px 32px;
  text-align: center;
  transition: border-top-color .25s, transform .25s, background .25s;
  border-radius: 2px;
}
.feature-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-6px);
  background: var(--surface2);
}
.feature-card-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 12px rgba(201,160,85,.3));
}
.feature-card h3 {
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.feature-card p { font-size: .9rem; line-height: 1.75; }

/* ── BIG STAT ROW — animated counters ────────────────────────────── */
.big-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  background: var(--gold);
  padding: 0;
}
.big-stat {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,.12);
  position: relative;
}
.big-stat:last-child { border-right: none; }
.big-stat-val {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  color: #080807;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.big-stat-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(8,8,7,.65);
}

/* ── PROCESS VISUAL — numbered steps with icon accents ───────────── */
.process-visual {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  counter-reset: process-step;
  position: relative;
}
.process-visual::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  z-index: 0;
}
.process-step-v {
  padding: 0 24px 40px;
  text-align: center;
  position: relative;
  z-index: 1;
  counter-increment: process-step;
}
.process-step-v-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  box-shadow: 0 0 24px rgba(201,160,85,.15);
}
.process-step-v h4 {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
  font-family: var(--sans);
}
.process-step-v p { font-size: .85rem; color: var(--text-muted); line-height: 1.7; }

/* ── QUOTE HERO — large pull quote with gold accent ─────────────── */
.quote-section {
  background: var(--surface2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 18rem;
  line-height: .7;
  color: var(--gold);
  opacity: .06;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}
.quote-section blockquote {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
}
.quote-section blockquote p {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 28px;
}
.quote-section blockquote cite {
  font-style: normal;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── BEFORE / AFTER VISUAL ───────────────────────────────────────── */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}
.ba-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.ba-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.ba-item:hover img { transform: scale(1.05); }
.ba-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(8,8,7,.8);
  border: 1px solid var(--border-hard);
  padding: 6px 14px;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  backdrop-filter: blur(8px);
}

/* ── SCROLLING LOGO / TRUST BAR ─────────────────────────────────── */
.trust-bar {
  background: var(--surface2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}
.trust-bar-inner {
  display: flex;
  gap: 0;
  animation: trustScroll 28s linear infinite;
  white-space: nowrap;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-dim);
  flex-shrink: 0;
}
.trust-item span.dot { color: var(--gold); font-size: .5rem; }
@keyframes trustScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── FULL-WIDTH IMAGE CALLOUT ────────────────────────────────────── */
.img-callout {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.img-callout img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .55;
  transition: opacity .4s, transform .6s;
}
.img-callout:hover img { opacity: .65; transform: scale(1.02); }
.img-callout-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 0 32px;
}
.img-callout-text h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text);
  text-shadow: 0 2px 30px rgba(0,0,0,.9);
  margin-bottom: 12px;
}
.img-callout-text p {
  font-size: .9rem;
  color: rgba(240,236,227,.75);
  max-width: 500px;
  text-shadow: 0 1px 20px rgba(0,0,0,.9);
}

/* ── SCROLL ANIMATION ────────────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE OVERRIDES ────────────────────────────────────────── */
@media (max-width: 960px) {
  .process-visual { grid-template-columns: repeat(2,1fr); }
  .process-visual::before { display: none; }
  .ba-grid { grid-template-columns: 1fr; }
  .big-stats { grid-template-columns: repeat(2,1fr); }
  .big-stat { border-right: none; border-bottom: 1px solid rgba(0,0,0,.12); }
}
@media (max-width: 560px) {
  .hero-photo { min-height: 80vh; }
  .photo-break { height: 280px; }
  .process-visual { grid-template-columns: 1fr; }
  .big-stats { grid-template-columns: 1fr 1fr; }
}
