/* ============================================
   Jeremiah Gutierrez — Editorial / Brutalist
   Light airy base, sage green accent, massive
   serif typography, asymmetric layouts, calm authority
   ============================================ */

/* -------------------------------------------
   Variables
   ------------------------------------------- */
:root {
  /* WHY: Sage green conveys calm, trust, and natural authority — light and airy without aggression */
  --accent: #6B9080;
  --accent-light: #8FB8A0;
  --ink: #2D3436;
  --ink-light: #4a5859;
  --cream: #F8F7F4;
  --cream-dark: #ECE9E3;
  --white: #FFFEFA;
  --muted: #8A9190;

  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', 'Courier New', monospace;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

/* WHY: Show default cursor on touch devices and form elements */
@media (pointer: coarse) {
  body { cursor: auto; }
  .cursor { display: none !important; }
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
em { font-family: var(--serif); font-style: italic; }

::selection {
  background: var(--accent);
  color: var(--white);
}

/* -------------------------------------------
   Custom Cursor
   ------------------------------------------- */
.cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transition: width 0.2s, height 0.2s, border-color 0.2s, transform 0.05s;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.cursor.hovering {
  width: 50px;
  height: 50px;
  border-color: var(--accent-light);
  background: rgba(232, 68, 58, 0.08);
}

/* -------------------------------------------
   Labels (section markers)
   ------------------------------------------- */
.label {
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  display: block;
  margin-bottom: 40px;
}

/* -------------------------------------------
   Navigation
   ------------------------------------------- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 40px;
  mix-blend-mode: difference;
}

.logo {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.3;
  color: var(--white);
}

/* WHY: Visible nav links on desktop so users don't have to open the hamburger for basic navigation */
.nav-inline {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-inline a {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
}

.nav-inline a:hover {
  opacity: 1;
  color: var(--accent-light);
}

.nav-inline a.nav-inline-active {
  opacity: 1;
  color: var(--accent-light);
}

.menu-btn {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 200;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--white);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.3s;
}

.menu-btn.active span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-btn.active span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Full-screen overlay nav */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 150;
  display: flex;
  align-items: center;
  clip-path: circle(0% at calc(100% - 56px) 44px);
  transition: clip-path 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}

.nav-overlay.open {
  clip-path: circle(150% at calc(100% - 56px) 44px);
}

.nav-overlay-content {
  width: 100%;
  padding: 120px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.nav-links-big {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-link-big {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  position: relative;
  display: inline-block;
  width: fit-content;
  transition: color 0.3s;
  padding-left: 0;
}

.nav-link-big::before {
  content: attr(data-num);
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--accent);
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  letter-spacing: 0.1em;
}

.nav-link-big:hover {
  color: var(--accent);
}

.nav-overlay-footer {
  display: flex;
  gap: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-footer-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}

.nav-footer-col a,
.nav-footer-col span {
  font-size: 0.85rem;
  color: var(--cream-dark);
  display: block;
}

.nav-footer-col a:hover { color: var(--accent); }

.nav-social {
  display: flex;
  gap: 16px;
}

.nav-social a {
  font-size: 0.85rem;
  color: var(--cream-dark);
}

/* -------------------------------------------
   Hero
   ------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 40px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  /* WHY: Oversized serif letter as subtle background texture — creates editorial feel without images */
  top: -15%;
  right: -5%;
  font-family: var(--serif);
  font-size: 80vw;
  font-weight: 900;
  color: var(--cream-dark);
  line-height: 1;
  pointer-events: none;
  content: 'J';
  opacity: 0.3;
  transform: translateY(var(--parallax, 0));
}

.hero-inner {
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 40px;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 10vw, 9rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 60px;
  max-width: 90%;
}

.hero-headline em {
  color: var(--accent);
}

.hero-headline .period {
  color: var(--accent);
}

/* WHY: Line-by-line wrapper enables staggered slide-up animation on load */
.line {
  display: block;
  overflow: hidden;
}

.line-inner {
  display: block;
  transform: translateY(110%);
  animation: slideUp 1s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.line:nth-child(2) .line-inner { animation-delay: 0.1s; }
.line:nth-child(3) .line-inner { animation-delay: 0.2s; }

@keyframes slideUp {
  to { transform: translateY(0); }
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(26, 26, 26, 0.15);
}

.hero-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.hero-scroll-indicator span {
  font-family: var(--mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

.hero-intro {
  max-width: 420px;
  font-size: 1rem;
  color: var(--ink-light);
  line-height: 1.7;
}

.hero-cta {
  font-family: var(--mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  flex-shrink: 0;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
  transition: letter-spacing 0.3s;
}

.hero-cta:hover {
  letter-spacing: 0.25em;
}

/* -------------------------------------------
   Ticker
   ------------------------------------------- */
.ticker {
  padding: 20px 0;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
  overflow: hidden;
  background: var(--ink);
}

.ticker-track { overflow: hidden; }

.ticker-content {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: ticker 25s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.ticker-content span {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.ticker-sep {
  color: var(--accent) !important;
  font-weight: 700;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* -------------------------------------------
   About — Split section
   ------------------------------------------- */
.about {
  padding: 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.split-left {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 60px;
  display: flex;
  align-items: center;
  position: relative;
}

.sticky-block {
  position: sticky;
  top: 120px;
}

.split-heading {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.split-heading em {
  color: var(--accent);
}

.split-right {
  padding: 120px 60px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.big-text {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
}

.text-block p {
  font-size: 1.05rem;
  color: var(--ink-light);
  line-height: 1.8;
}

.stat-row {
  display: flex;
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(26, 26, 26, 0.15);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  line-height: 1.5;
}

/* -------------------------------------------
   Services — Horizontal scroll
   ------------------------------------------- */
.services {
  padding: 120px 0 0;
}

.services-header {
  padding: 0 40px;
  margin-bottom: 60px;
}

.section-mega-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.section-mega-title em {
  color: var(--accent);
}

.services-sub {
  font-size: 1.1rem;
  color: var(--ink-light);
  max-width: 480px;
}

.hscroll-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  /* WHY: Hide scrollbar for cleaner look — scroll still works via touch/mousewheel */
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 40px 120px;
}

.hscroll-wrapper::-webkit-scrollbar { display: none; }

.hscroll-track {
  display: flex;
  gap: 24px;
  width: max-content;
}

.panel {
  width: min(480px, 85vw);
  padding: 48px 40px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  position: relative;
}

.panel-dark {
  background: var(--ink);
  color: var(--cream);
}

.panel-accent {
  background: var(--accent);
  color: var(--white);
}

.panel-num {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  opacity: 0.5;
  margin-bottom: 32px;
}

.panel-title {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.panel-subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  opacity: 0.8;
  margin-bottom: 20px;
}

.panel-body {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 24px;
}

.panel-list {
  margin-bottom: 32px;
}

.panel-list li {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
}

.panel-accent .panel-list li {
  border-bottom-color: rgba(255, 255, 255, 0.25);
}

.panel-cta {
  font-family: var(--mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: auto;
  opacity: 0.7;
  transition: opacity 0.3s, letter-spacing 0.3s;
}

.panel-cta:hover {
  opacity: 1;
  letter-spacing: 0.15em;
}

/* -------------------------------------------
   Philosophy — Manifesto
   ------------------------------------------- */
.philosophy {
  background: var(--white);
  padding: 120px 0;
}

.philosophy-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.manifesto {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.manifesto p {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--muted);
}

.strike {
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 3px;
}

.philosophy-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 64px;
  letter-spacing: -0.02em;
}

.philosophy-title em {
  color: var(--accent);
}

.beliefs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
}

.belief {
  position: relative;
  padding-top: 20px;
}

.belief-num {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 16px;
}

.belief h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.belief p {
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.7;
}

/* -------------------------------------------
   Credentials
   ------------------------------------------- */
.credentials {
  background: var(--ink);
  color: var(--cream);
  padding: 120px 0;
}

.credentials-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.credentials .label {
  color: var(--muted);
}

.credentials .section-mega-title {
  color: var(--cream);
  margin-bottom: 64px;
}

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
}

.credential {
  position: relative;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.credential-icon {
  color: var(--accent);
  font-size: 0.8rem;
  display: block;
  margin-bottom: 16px;
}

.credential h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--cream);
}

.credential p {
  font-size: 0.95rem;
  color: var(--cream-dark);
  line-height: 1.7;
  opacity: 0.85;
}

/* -------------------------------------------
   Proof / Testimonials
   ------------------------------------------- */
.proof {
  padding: 120px 0;
  background: var(--cream);
}

.proof-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 60px 0;
}

.testimonial {
  padding: 48px 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.testimonial:first-child {
  border-top: 1px solid rgba(26, 26, 26, 0.1);
}

.testimonial-text {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--ink);
}

.testimonial footer {
  display: flex;
  gap: 16px;
  align-items: center;
}

.testimonial footer strong {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
}

.testimonial footer span {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.testimonial footer strong::after {
  content: ' — ';
  font-weight: 400;
  color: var(--muted);
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 48px;
  background: var(--ink);
}

.proof-stat {
  text-align: center;
}

.proof-stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}

.proof-stat-desc {
  font-size: 0.85rem;
  color: var(--cream-dark);
  line-height: 1.5;
  opacity: 0.8;
}

/* -------------------------------------------
   Big CTA
   ------------------------------------------- */
.big-cta {
  background: var(--accent);
  padding: 120px 40px;
  text-align: center;
}

.big-cta h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 40px;
  letter-spacing: -0.03em;
}

.big-cta em {
  font-style: italic;
}

.cta-button {
  font-family: var(--mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 18px 48px;
  display: inline-block;
  transition: all 0.3s;
}

.cta-button:hover {
  background: var(--white);
  color: var(--accent);
}

/* -------------------------------------------
   Contact
   ------------------------------------------- */
.contact {
  background: var(--ink);
  color: var(--cream);
  padding: 120px 0;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-heading {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

.contact-heading em { color: var(--accent); }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.contact-link {
  font-size: 1rem;
  color: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  display: inline-block;
  width: fit-content;
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

.contact-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.contact-location {
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-socials {
  display: flex;
  gap: 24px;
}

.contact-socials a {
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  transition: color 0.3s;
}

.contact-socials a:hover { color: var(--accent); }

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 0;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--cream);
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--accent);
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238a8275' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 24px;
}

.field select option {
  background: var(--ink);
  color: var(--cream);
}

.field textarea {
  resize: vertical;
  min-height: 80px;
}

.submit-btn {
  font-family: var(--mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink);
  background: var(--cream);
  border: none;
  padding: 18px 40px;
  cursor: pointer;
  transition: all 0.3s;
  align-self: flex-start;
}

.submit-btn:hover {
  background: var(--accent);
  color: var(--white);
}

.submit-btn.success {
  background: #22c55e;
  color: var(--white);
}

/* -------------------------------------------
   Footer
   ------------------------------------------- */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 40px;
}

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

.footer-name {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.footer-copy {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--muted);
}

.footer-top {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  transition: color 0.3s;
}

.footer-top:hover { color: var(--accent); }

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--accent); }

/* -------------------------------------------
   Reveal Animations
   ------------------------------------------- */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------------------
   Responsive
   ------------------------------------------- */
@media (max-width: 1024px) {
  .split {
    grid-template-columns: 1fr;
  }

  .split-left {
    padding: 80px 40px;
    min-height: auto;
  }

  .sticky-block {
    position: static;
  }

  .split-right {
    padding: 80px 40px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .beliefs-grid,
  .credentials-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .proof-stats {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px;
  }
}

@media (max-width: 768px) {
  /* WHY: Hide inline nav on mobile — hamburger overlay handles navigation at this size */
  .nav-inline {
    display: none;
  }

  #navbar {
    padding: 20px 24px;
  }

  .hero {
    padding: 0 24px 40px;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .split-left,
  .split-right {
    padding: 60px 24px;
  }

  .stat-row {
    flex-direction: column;
    gap: 32px;
  }

  .services-header {
    padding: 0 24px;
  }

  .hscroll-wrapper {
    padding: 0 24px 80px;
  }

  .panel {
    width: min(400px, 85vw);
    padding: 36px 28px;
  }

  .philosophy-inner,
  .proof-inner {
    padding: 0 24px;
  }

  .big-cta {
    padding: 80px 24px;
  }

  .contact-inner {
    padding: 0 24px;
  }

  .footer {
    padding: 20px 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .nav-overlay-content {
    padding: 100px 24px 40px;
  }

  .nav-link-big {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .nav-link-big::before {
    display: none;
  }

  .nav-overlay-footer {
    flex-direction: column;
    gap: 24px;
  }
}
