/* ============================================
   THE INTERRUPT — Shared Styles
   ============================================ */

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

:root {
  --night: #131313;
  --charcoal: #1A1A1A;
  --stone: #F5F0E8;
  --sand: #E8E0D4;
  --warm: #C4A089;
  --red: #C0392B;
  --red-dark: #962D22;
  --red-light: #E8D4D0;
  --text-light: #F5F0E8;
  --text-muted: #A89888;
  --text-dark: #2C2420;
  --text-body: #5C5048;
  --serif: 'Libre Baskerville', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--night);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 2rem; }

/* ---- NAVIGATION ---- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(19, 19, 19, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.site-nav .nav-brand {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--warm);
}
.site-nav .nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.site-nav .nav-links a {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.site-nav .nav-links a:hover,
.site-nav .nav-links a.active {
  color: var(--text-light);
}
.site-nav .nav-cta {
  background: var(--red);
  color: var(--text-light) !important;
  padding: 8px 20px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: background 0.3s;
}
.site-nav .nav-cta:hover { background: var(--red-dark); }
.nav-mobile-toggle {
  display: none;
  font-size: 24px;
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
}

/* ---- PAGE HERO ---- */
.page-hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem 2rem 6rem;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(192,57,43,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero--center { text-align: center; align-items: center; }
.page-hero--center .container { display: flex; flex-direction: column; align-items: center; }
.page-hero--full { min-height: 100vh; }

/* ---- HERO TYPOGRAPHY ---- */
.hero-overline {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--warm);
  margin-bottom: 2rem;
  font-weight: 500;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero-title span { color: var(--red); }
.hero-divider {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 1.5rem 0;
}
.page-hero--center .hero-divider { margin: 1.5rem auto; }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--warm);
  font-family: var(--serif);
  font-style: italic;
  margin-bottom: 1.5rem;
  max-width: 600px;
}
.hero-desc {
  max-width: 560px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 3rem;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.page-hero--center .hero-buttons { justify-content: center; }

/* ---- SECTION BASE ---- */
section { padding: 6rem 0; }
.section--alt { background: var(--charcoal); }
.section-overline {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--red);
  margin-bottom: 1rem;
  font-weight: 500;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.section-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 3rem;
}
.section-centered {
  text-align: center;
}
.section-centered .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn--primary {
  background: var(--red);
  color: var(--text-light);
}
.btn--primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}
.btn--secondary {
  border: 1px solid var(--warm);
  color: var(--warm);
  background: transparent;
}
.btn--secondary:hover {
  background: rgba(196, 160, 137, 0.1);
}
.btn--small {
  padding: 10px 24px;
  font-size: 12px;
}

/* ---- STATS ---- */
.stats-row {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--red);
}
.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  margin-top: 4px;
}

/* ---- CARDS ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s;
}
.card:hover { border-color: rgba(192, 57, 43, 0.3); }
.card--active {
  border-color: var(--red);
  background: rgba(192, 57, 43, 0.04);
}
.card-overline {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.card-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}
.card-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 700;
  color: rgba(192, 57, 43, 0.15);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

/* ---- LAYER CARDS ---- */
.layer-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.layer-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 2rem;
  position: relative;
  transition: border-color 0.3s;
}
.layer-card:hover { border-color: rgba(192, 57, 43, 0.3); }
.layer-card.active {
  border-color: var(--red);
  background: rgba(192, 57, 43, 0.04);
}
.layer-card.active .layer-tag { color: var(--text-light); }
.layer-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 700;
  color: rgba(192, 57, 43, 0.15);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}
.layer-tag {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.layer-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.layer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ---- TEAM ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}
.team-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 2.5rem;
  transition: border-color 0.3s;
}
.team-card:hover { border-color: rgba(192, 57, 43, 0.3); }
.team-role {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.team-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.team-perspective {
  font-size: 14px;
  color: var(--warm);
  font-style: italic;
  margin-bottom: 1rem;
}
.team-bio {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
}
.together-block {
  border: 1px solid rgba(192, 57, 43, 0.3);
  border-radius: 4px;
  padding: 3rem;
  margin-top: 3rem;
  position: relative;
}
.together-block::before {
  content: '+';
  font-family: var(--serif);
  font-size: 80px;
  color: rgba(192, 57, 43, 0.1);
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}
.together-text {
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  line-height: 1.8;
  color: var(--warm);
  position: relative;
  z-index: 1;
  max-width: 700px;
}

/* ---- TIER CARDS (Services) ---- */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.tier-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s;
}
.tier-card:hover {
  border-color: rgba(192, 57, 43, 0.3);
  transform: translateY(-2px);
}
.tier-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.tier-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.tier-audience {
  font-size: 13px;
  color: var(--warm);
  font-style: italic;
  margin-bottom: 1rem;
}
.tier-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.tier-features {
  list-style: none;
  padding: 0;
}
.tier-features li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding-left: 1.25rem;
  position: relative;
}
.tier-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* ---- BLOG ---- */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.post-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 2rem;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  border-color: rgba(192, 57, 43, 0.3);
  transform: translateY(-2px);
}
.post-tag {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.post-date {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}
.post-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.post-excerpt {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  flex: 1;
}
.post-link {
  font-size: 13px;
  color: var(--red);
  letter-spacing: 0.5px;
  margin-top: 1.25rem;
  font-weight: 500;
  transition: color 0.3s;
}
.post-link:hover { color: var(--warm); }

/* Blog article */
.post-content { max-width: 700px; }
.post-content h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  line-height: 1.3;
}
.post-content h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
}
.post-content p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.post-content blockquote {
  border-left: 3px solid var(--red);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: rgba(192, 57, 43, 0.04);
  border-radius: 0 4px 4px 0;
}
.post-content blockquote p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--warm);
  margin-bottom: 0;
}
.post-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.post-meta span { margin-right: 1.5rem; }
.post-back {
  font-size: 13px;
  color: var(--warm);
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
  display: inline-block;
  transition: color 0.3s;
}
.post-back:hover { color: var(--text-light); }

/* ---- QUOTE BLOCK ---- */
.quote-block {
  border: 1px solid rgba(192, 57, 43, 0.3);
  border-radius: 4px;
  padding: 3rem;
  position: relative;
  margin: 3rem 0;
}
.quote-block::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 120px;
  color: rgba(192, 57, 43, 0.1);
  position: absolute;
  top: -20px;
  left: 20px;
  line-height: 1;
}
.quote-text {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.8;
  color: var(--warm);
  position: relative;
  z-index: 1;
}
.quote-source {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 1.5rem;
  font-style: normal;
  font-family: var(--sans);
}

/* ---- PROOF POINTS ---- */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.proof-item {
  padding: 1.5rem;
  border-left: 3px solid var(--red);
}
.proof-stat {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.proof-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- NEWSLETTER ---- */
.newsletter {
  text-align: center;
  padding: 5rem 0;
  background: var(--charcoal);
}
.newsletter-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  gap: 0.75rem;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 16px;
  background: var(--night);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  color: var(--text-light);
  font-family: var(--sans);
  font-size: 14px;
  transition: border-color 0.3s;
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--red);
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form button {
  padding: 14px 28px;
  background: var(--red);
  color: var(--text-light);
  border: none;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--red-dark); }
.newsletter-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info-block { margin-bottom: 2rem; }
.contact-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.contact-value {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-value a {
  color: var(--warm);
  transition: color 0.3s;
}
.contact-value a:hover { color: var(--text-light); }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  color: var(--text-light);
  font-family: var(--sans);
  font-size: 14px;
  margin-bottom: 1rem;
  transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form button {
  width: 100%;
  padding: 14px;
  background: var(--red);
  color: var(--text-light);
  border: none;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-form button:hover { background: var(--red-dark); }
.social-links {
  display: flex;
  gap: 1.25rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.social-link {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.3s;
  letter-spacing: 0.5px;
}
.social-link:hover { color: var(--text-light); }

/* ---- TEXT CONTENT ---- */
.text-content { max-width: 700px; }
.text-content h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 3rem 0 1rem;
  line-height: 1.3;
}
.text-content h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
}
.text-content p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.text-content ul, .text-content ol {
  margin: 1rem 0 1.5rem 1.25rem;
}
.text-content li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--charcoal);
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--warm);
}
.footer-tagline {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 4px;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 12px;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--text-light); }
.footer-copy {
  font-size: 11px;
  color: rgba(168, 152, 136, 0.5);
  width: 100%;
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .site-nav .nav-links { display: none; }
  .site-nav .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(19, 19, 19, 0.98);
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav-mobile-toggle { display: block; }
  .page-hero { min-height: 60vh; padding: 8rem 2rem 4rem; }
  .hero-title { font-size: clamp(1.75rem, 5vw, 3.5rem); }
  .team-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .stats-row { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .page-hero { padding: 7rem 1.25rem 3rem; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .btn { text-align: center; }
}

/* ---- ANIMATIONS ---- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
