/* ============================================
   SAME DAY WEBSITES — Design System
   A bold, editorial approach. Not your typical
   agency template.
   ============================================ */

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

:root {
  /* Warm, confident palette — no generic tech-blue */
  --ink: #1a1a18;
  --paper: #f6f3ed;
  --cream: #eae5db;
  --warm-gray: #b5b0a6;
  --accent: #d94f30;
  --accent-dark: #b83d22;
  --accent-light: #f4a261;
  --sage: #7a8b6f;
  --slate: #4a4a48;

  /* Typography scale — intentionally tight */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, Helvetica Neue, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Consolas, monospace;

  --fs-giant: clamp(3.2rem, 8vw, 7.5rem);
  --fs-h1: clamp(2.4rem, 5vw, 4.5rem);
  --fs-h2: clamp(1.8rem, 3.5vw, 3rem);
  --fs-h3: clamp(1.3rem, 2vw, 1.75rem);
  --fs-body: clamp(1rem, 1.1vw, 1.125rem);
  --fs-small: 0.875rem;
  --fs-micro: 0.75rem;

  --leading-tight: 1.05;
  --leading-snug: 1.25;
  --leading-body: 1.7;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
  --space-2xl: 12rem;

  --max-w: 1320px;
  --radius: 3px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--leading-body);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Utility --- */
.container {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: -0.02em;
}

.label {
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.label--accent {
  color: var(--accent);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-sm) 0;
  transition: var(--transition);
  background: transparent;
}

.nav.scrolled {
  background: rgba(246, 243, 237, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(26, 26, 24, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav__logo-mark {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.nav__logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
}

.nav__links a {
  font-size: var(--fs-small);
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__cta {
  font-size: var(--fs-small) !important;
  font-weight: 600 !important;
  background: var(--ink);
  color: var(--paper) !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.nav__cta::after { display: none !important; }

.nav__cta:hover {
  background: var(--accent);
}

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: var(--transition);
}

/* --- Hero Sections --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-2xl) 0 var(--space-xl);
  position: relative;
}

.hero__headline {
  font-size: var(--fs-giant);
  line-height: 0.95;
  margin-bottom: var(--space-md);
}

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

.hero__sub {
  max-width: 520px;
  font-size: var(--fs-body);
  color: var(--slate);
  margin-bottom: var(--space-lg);
}

/* --- Section spacing --- */
.section {
  padding: var(--space-xl) 0;
}

.section--lg {
  padding: var(--space-2xl) 0;
}

.section--dark {
  background: var(--ink);
  color: var(--paper);
}

.section--cream {
  background: var(--cream);
}

.section__header {
  margin-bottom: var(--space-lg);
}

.section__header .label {
  margin-bottom: var(--space-sm);
  display: block;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--fs-small);
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--accent);
  color: var(--paper);
}

.btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn--outline {
  border: 1.5px solid var(--ink);
  color: var(--ink);
}

.btn--outline:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn--dark {
  background: var(--ink);
  color: var(--paper);
}

.btn--dark:hover {
  background: var(--slate);
  transform: translateY(-1px);
}

.btn--white {
  background: var(--paper);
  color: var(--ink);
}

.btn--white:hover {
  background: var(--cream);
}

.btn__arrow {
  transition: transform var(--transition);
  font-size: 1.1em;
}

.btn:hover .btn__arrow {
  transform: translateX(3px);
}

/* --- Asymmetric Grid Layouts --- */
.grid-asymmetric {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.grid-asymmetric--reverse {
  direction: rtl;
}

.grid-asymmetric--reverse > * {
  direction: ltr;
}

.grid-thirds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.grid-halves {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

/* --- Cards --- */
.card {
  background: var(--paper);
  border: 1px solid rgba(26, 26, 24, 0.08);
  padding: var(--space-md);
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}

.card:hover {
  border-color: rgba(26, 26, 24, 0.16);
  transform: translateY(-2px);
}

.card__number {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  color: var(--cream);
  font-weight: 700;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.card__title {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  margin-bottom: var(--space-sm);
}

.card__text {
  color: var(--slate);
  font-size: var(--fs-small);
  line-height: var(--leading-body);
}

/* --- Stat blocks --- */
.stat {
  text-align: left;
}

.stat__number {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
}

.stat__label {
  font-size: var(--fs-small);
  color: var(--slate);
  margin-top: 0.25rem;
}

/* --- Marquee / Ticker --- */
.ticker {
  overflow: hidden;
  white-space: nowrap;
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(26, 26, 24, 0.08);
  border-bottom: 1px solid rgba(26, 26, 24, 0.08);
}

.ticker__inner {
  display: inline-flex;
  animation: ticker 25s linear infinite;
}

.ticker__item {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 700;
  padding: 0 var(--space-lg);
  color: var(--ink);
  opacity: 0.15;
}

.ticker__item span {
  color: var(--accent);
  opacity: 1;
}

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

/* --- Horizontal rule with label --- */
.divider {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(26, 26, 24, 0.1);
}

/* --- Testimonial --- */
.testimonial {
  position: relative;
  padding-left: var(--space-md);
  border-left: 3px solid var(--accent);
}

.testimonial__quote {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-style: italic;
  line-height: var(--leading-snug);
  margin-bottom: var(--space-sm);
}

.testimonial__author {
  font-size: var(--fs-small);
  color: var(--slate);
}

.testimonial__author strong {
  color: var(--ink);
}

/* --- Process / Timeline --- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 1px;
  background: var(--cream);
  z-index: 0;
}

.process__step {
  position: relative;
  z-index: 1;
}

.process__marker {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: var(--space-sm);
  transition: all var(--transition);
}

.process__step:hover .process__marker {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--paper);
}

.process__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.process__desc {
  font-size: var(--fs-small);
  color: var(--slate);
  line-height: 1.6;
}

/* --- Portfolio Grid --- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-md);
}

.work-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream);
  cursor: pointer;
}

.work-item--wide {
  grid-column: span 7;
}

.work-item--narrow {
  grid-column: span 5;
}

.work-item--full {
  grid-column: span 12;
}

.work-item__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.work-item:hover .work-item__img {
  transform: scale(1.03);
}

.work-item__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  background: linear-gradient(to top, rgba(26, 26, 24, 0.85), transparent);
  color: var(--paper);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.work-item:hover .work-item__overlay {
  transform: translateY(0);
  opacity: 1;
}

.work-item__category {
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.25rem;
}

.work-item__title {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
}

/* Mock browser window for portfolio */
.browser-mock {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(26, 26, 24, 0.12), 0 8px 24px rgba(26, 26, 24, 0.08);
}

.browser-mock__bar {
  background: #e8e5de;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.browser-mock__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1cdc4;
}

.browser-mock__dot:first-child { background: #e87461; }
.browser-mock__dot:nth-child(2) { background: #e8c861; }
.browser-mock__dot:nth-child(3) { background: #7ec87e; }

.browser-mock__url {
  flex: 1;
  background: rgba(26,26,24,0.04);
  border-radius: 4px;
  padding: 4px 12px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--warm-gray);
  margin-left: 8px;
}

.browser-mock__body {
  background: var(--paper);
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

/* --- Pricing table --- */
.pricing-card {
  background: var(--paper);
  border: 1px solid rgba(26,26,24,0.08);
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--radius);
  position: relative;
  transition: all var(--transition);
}

.pricing-card:hover {
  border-color: var(--accent);
}

.pricing-card--featured {
  border-color: var(--accent);
  box-shadow: 0 16px 48px rgba(217, 79, 48, 0.1);
}

.pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: var(--space-md);
  background: var(--accent);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius);
}

.pricing-card__name {
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: var(--space-sm);
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-card__term {
  font-size: var(--fs-small);
  color: var(--warm-gray);
  margin-bottom: var(--space-md);
}

.pricing-card__features {
  list-style: none;
  margin-bottom: var(--space-md);
}

.pricing-card__features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(26,26,24,0.05);
  font-size: var(--fs-small);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-card__features li::before {
  content: '✓';
  color: var(--sage);
  font-weight: 700;
}

/* --- Form elements --- */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--cream);
  border-radius: var(--radius);
  transition: border-color var(--transition);
  outline: none;
}

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

.form-textarea {
  min-height: 160px;
  resize: vertical;
}

/* --- Footer --- */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.footer__desc {
  font-size: var(--fs-small);
  color: rgba(246, 243, 237, 0.5);
  line-height: 1.7;
  max-width: 320px;
}

.footer__heading {
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(246,243,237,0.35);
  margin-bottom: var(--space-sm);
}

.footer__list {
  list-style: none;
}

.footer__list li {
  margin-bottom: 0.6rem;
}

.footer__list a {
  font-size: var(--fs-small);
  color: rgba(246,243,237,0.65);
  transition: color var(--transition);
}

.footer__list a:hover {
  color: var(--paper);
}

.footer__bottom {
  border-top: 1px solid rgba(246,243,237,0.08);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-micro);
  color: rgba(246,243,237,0.3);
}

/* --- Scroll-triggered animations --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* --- Decorative elements --- */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(217, 79, 48, 0.12);
  pointer-events: none;
}

.deco-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.3;
  pointer-events: none;
}

/* --- Page header (inner pages) --- */
.page-header {
  padding: calc(var(--space-2xl) - var(--space-md)) 0 var(--space-lg);
  position: relative;
}

.page-header__eyebrow {
  margin-bottom: var(--space-sm);
}

.page-header__title {
  font-size: var(--fs-h1);
  max-width: 700px;
}

.page-header__intro {
  max-width: 560px;
  color: var(--slate);
  margin-top: var(--space-md);
}

/* --- Specific component: Feature row --- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-xl) 0;
  border-bottom: 1px solid rgba(26,26,24,0.06);
}

.feature-row:last-child { border-bottom: none; }

.feature-row__number {
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.feature-row__title {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-sm);
}

.feature-row__text {
  color: var(--slate);
  max-width: 480px;
}

/* Feature visual placeholder */
.feature-visual {
  background: var(--cream);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* --- FAQ Accordion --- */
.faq-item {
  border-bottom: 1px solid rgba(26,26,24,0.08);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--space-md) 0;
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--ink);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--warm-gray);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: var(--space-md);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: var(--space-md);
}

.faq-answer p {
  color: var(--slate);
  max-width: 640px;
  line-height: var(--leading-body);
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--ink);
  color: var(--paper);
  padding: var(--space-xl);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  position: relative;
  overflow: hidden;
}

.cta-banner__title {
  font-size: var(--fs-h2);
  max-width: 500px;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 40px solid rgba(217, 79, 48, 0.15);
  pointer-events: none;
}

/* --- Team / About components --- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.value-item {
  padding: var(--space-md);
  border: 1px solid rgba(26,26,24,0.06);
  border-radius: var(--radius);
}

.value-item__icon {
  font-size: 1.75rem;
  margin-bottom: var(--space-sm);
}

.value-item__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.value-item__text {
  font-size: var(--fs-small);
  color: var(--slate);
}

/* --- Big quote component --- */
.big-quote {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-style: italic;
  line-height: var(--leading-snug);
  max-width: 800px;
  position: relative;
  padding-left: var(--space-md);
}

.big-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
}

/* --- Contact page specific --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.contact-info__item {
  margin-bottom: var(--space-md);
}

.contact-info__label {
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 0.25rem;
}

.contact-info__value {
  font-size: var(--fs-h3);
  font-family: var(--font-display);
}

.contact-info__value a {
  transition: color var(--transition);
}

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

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .grid-asymmetric,
  .feature-row {
    gap: var(--space-md);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }

  .nav__logo-mark {
    width: 60px;
    height: 60px;
  }

  .nav__logo {
    font-size: 1.1rem;
  }

  /* Mobile menu */
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: var(--space-md) 5%;
    border-bottom: 1px solid rgba(26,26,24,0.08);
    box-shadow: 0 16px 32px rgba(26,26,24,0.06);
  }

  .hero {
    min-height: 85vh;
    padding: var(--space-xl) 0 var(--space-lg);
  }

  .hero__headline {
    word-break: break-word;
  }

  .grid-asymmetric,
  .grid-halves,
  .contact-grid,
  .feature-row {
    grid-template-columns: 1fr;
  }

  .grid-asymmetric--reverse { direction: ltr; }

  .grid-thirds {
    grid-template-columns: 1fr;
  }

  .process {
    grid-template-columns: 1fr 1fr;
  }

  .process::before { display: none; }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-item--wide,
  .work-item--narrow,
  .work-item--full {
    grid-column: span 1;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: var(--space-lg) var(--space-md);
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  /* Stats grid to 2x2 on mobile */
  .stats-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .deco-circle,
  .deco-dot {
    display: none;
  }

  .feature-visual {
    aspect-ratio: 16/10;
  }

  .feature-row [style*="order: -1"] {
    order: 0 !important;
  }
}

@media (max-width: 480px) {
  .process {
    grid-template-columns: 1fr;
  }
}
