/* ============================================
   RED ANVIL — Shared Stylesheet
   ============================================ */

:root {
  --bone: #f4f2ed;
  --bone-2: #ebe8e1;
  --bone-3: #e2ded5;
  --stone: #a8a39a;
  --slate: #4a4844;
  --ink: #1c1b19;
  --coral: #e05c4a;
  --coral-deep: #b8412f;
  --coral-soft: rgba(224, 92, 74, 0.08);
  --coral-line: rgba(224, 92, 74, 0.3);
  --line: rgba(28, 27, 25, 0.12);
  --line-strong: rgba(28, 27, 25, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Fraunces', Georgia, serif;
  background: var(--bone);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

.mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
}

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.18 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
  position: relative;
  z-index: 2;
}

.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 2.5rem;
  position: relative;
  z-index: 2;
}

/* ============ NAV ============ */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(244, 242, 237, 0.85);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.9rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  line-height: 1.15;
}

.brand-name {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.brand-tagline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 400;
  max-width: 16rem;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--slate);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover { color: var(--coral); }

.nav-links a.active { color: var(--ink); }

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--coral);
}

.nav-cta {
  background: var(--ink);
  color: var(--bone);
  padding: 0.65rem 1.3rem;
  border: none;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover { background: var(--coral); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--ink);
}

.nav-toggle svg { width: 24px; height: 24px; }

/* ============ TYPOGRAPHY ============ */
h1 {
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.035em;
}

h1 em, h2 em, h3 em, h4 em {
  font-style: italic;
  font-weight: 300;
  color: var(--coral-deep);
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h4 {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

p { color: var(--slate); }
p.dark { color: var(--ink); }

/* ============ BUTTONS ============ */
.btn-primary {
  background: var(--ink);
  color: var(--bone);
  padding: 1rem 1.8rem;
  border: none;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
}

.btn-primary:hover { background: var(--coral); }

.btn-coral {
  background: var(--coral);
  color: var(--bone);
  padding: 1rem 1.8rem;
  border: none;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
}

.btn-coral:hover { background: var(--coral-deep); }

.btn-ghost {
  color: var(--ink);
  text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 0.5rem;
  border-bottom: 1px solid var(--ink);
  display: inline-block;
}

.btn-outline {
  color: var(--ink);
  background: transparent;
  padding: 1rem 1.8rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
}

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

/* ============ HERO (HOMEPAGE) ============ */
.hero {
  padding: 10rem 0 6rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--slate);
  margin-bottom: 2rem;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--coral);
}

.hero h1 { margin-bottom: 2rem; }

.hero p.lede {
  font-size: 1.2rem;
  color: var(--slate);
  max-width: 34rem;
  margin-bottom: 2.5rem;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-anvil {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}

/* ============ PAGE HERO ============ */
.page-hero {
  padding: 10rem 0 5rem;
  border-bottom: 1px solid var(--line);
}

.page-hero .mono {
  color: var(--coral-deep);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  margin-bottom: 1.5rem;
  max-width: 16ch;
}

.page-hero p {
  font-size: 1.2rem;
  max-width: 38rem;
  line-height: 1.55;
}

/* ============ STATS BAR ============ */
.stats-bar {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--line);
}

.stat:last-child { border-right: none; }

.stat-num {
  font-size: 2.6rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.stat-label {
  color: var(--slate);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============ SECTIONS ============ */
section { padding: 7rem 0; position: relative; }
section.tight { padding: 5rem 0; }

.section-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: end;
}

.section-header .mono { color: var(--coral-deep); }

/* Full-width title under eyebrow (avoids narrow 2-col headline) */
.section-header--stack {
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
}

.section-header--stack h2 {
  line-height: 1.12;
}

/* ============ SERVICES ============ */
.services-bg {
  background: var(--bone-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card {
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr;
  gap: 3rem;
  padding: 3.5rem 0;
  border-top: 1px solid var(--line);
  align-items: start;
  transition: background 0.3s;
}

.service-card:last-child { border-bottom: 1px solid var(--line); }
.service-card:hover { background: var(--coral-soft); }

.service-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--coral);
  padding-top: 0.6rem;
}

.service-body { color: var(--slate); }
.service-body p { margin-bottom: 1.2rem; }

.service-body ul {
  list-style: none;
  padding: 0;
}

.service-body li {
  padding: 0.6rem 0;
  border-top: 1px dashed var(--line);
  display: flex;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

.service-body li::before {
  content: '◆';
  color: var(--coral);
  font-size: 0.6rem;
  margin-right: 0.8rem;
}

/* ============ PROCESS GRID ============ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.process-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--bone);
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: var(--coral);
}

.process-step {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--coral);
  margin-bottom: 2rem;
}

.process-card h4 {
  margin-bottom: 1rem;
  line-height: 1.15;
}

.process-card p { font-size: 0.98rem; }

/* ============ DARK SECTION ============ */
.dark-section {
  background: var(--ink);
  color: var(--bone);
}

.dark-section h2 { color: var(--bone); }
.dark-section h2 em { color: var(--coral); }
.dark-section .mono { color: var(--coral); }
.dark-section p { color: rgba(244, 242, 237, 0.7); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.why-item {
  padding: 2.5rem 2rem 2.5rem 0;
  border-top: 1px solid rgba(244, 242, 237, 0.15);
}

.why-item:nth-child(odd) { padding-right: 3rem; }
.why-item:nth-child(even) {
  padding-left: 3rem;
  border-left: 1px solid rgba(244, 242, 237, 0.15);
}

.why-item h4 {
  margin-bottom: 0.8rem;
  color: var(--bone);
}

.why-item p { font-size: 0.98rem; }

/* Single-column timeline (e.g. one-week deep dive, 3 steps) */
.why-grid--timeline {
  grid-template-columns: 1fr;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  gap: 0;
}

.why-grid--timeline .why-item {
  padding: 2rem 0 2rem 0;
  border-left: none;
}

.why-grid--timeline .why-item:nth-child(odd),
.why-grid--timeline .why-item:nth-child(even) {
  padding-left: 0;
  padding-right: 0;
}

/* ============ CTA ============ */
.cta {
  text-align: center;
  padding: 9rem 0;
}

.cta h2 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  max-width: 18ch;
  margin: 0 auto 2rem;
}

.cta p {
  font-size: 1.2rem;
  max-width: 32rem;
  margin: 0 auto 3rem;
}

/* ============ DETAIL SECTIONS ============ */
.detail-section {
  padding: 6rem 0;
  border-bottom: 1px solid var(--line);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.detail-grid .mono {
  color: var(--coral);
  margin-bottom: 1rem;
  display: inline-block;
}

.detail-grid h2 { margin-bottom: 1.5rem; }

.detail-grid p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.feature-list {
  list-style: none;
  margin-top: 2rem;
}

.feature-list li {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
}

.feature-list li:last-child { border-bottom: 1px solid var(--line); }

.feature-list .feat-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--coral);
  letter-spacing: 0.1em;
  padding-top: 0.4rem;
}

.feature-list h4 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.feature-list p {
  font-size: 0.98rem;
  margin-bottom: 0;
}

/* ============ PRICING ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.price-card {
  padding: 3rem 2.5rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bone);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s;
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--ink);
}

.price-card.featured {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
  position: relative;
}

.price-card.featured h3,
.price-card.featured .price-amount { color: var(--bone); }
.price-card.featured p,
.price-card.featured .price-period { color: rgba(244, 242, 237, 0.65); }
.price-card.featured ul li {
  color: rgba(244, 242, 237, 0.85);
  border-color: rgba(244, 242, 237, 0.15);
}
.price-card.featured ul li::before { color: var(--coral); }

.price-card.featured .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: var(--bone);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 999px;
}

.price-tier {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
}

.price-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}

.price-period {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--slate);
  margin-bottom: 1.5rem;
  display: block;
  margin-top: 0.4rem;
}

.price-card > p {
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.price-card ul {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}

.price-card ul li {
  padding: 0.7rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--slate);
  display: flex;
  align-items: flex-start;
}

.price-card ul li::before {
  content: '✓';
  color: var(--coral);
  margin-right: 0.7rem;
  font-weight: 500;
}

/* ============ ABOUT ============ */
.about-intro { padding: 6rem 0; }

.about-intro p {
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--ink);
  max-width: 38rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.about-intro p:last-child { color: var(--slate); }

.about-location {
  padding: 3rem 0 6rem;
  border-top: 1px solid var(--line);
}

.about-location .mono { margin-bottom: 1rem; }

.about-location-lede {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--slate);
  max-width: 38rem;
  margin-bottom: 2rem;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 38rem;
}

.about-list li {
  padding: 1rem 0;
  border-top: 1px dashed var(--line);
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--slate);
}

.about-list li:first-of-type {
  border-top: none;
  padding-top: 0;
}

.about-list li strong {
  color: var(--ink);
  font-weight: 600;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.value {
  padding: 3rem 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value:nth-child(3n) { border-right: none; }

.value-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--coral);
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
}

.value h4 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.value p { font-size: 0.95rem; }

/* ============ CONTACT FORM ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  padding: 6rem 0;
}

.contact-info h2 { margin-bottom: 2rem; }
.contact-info p { margin-bottom: 2rem; font-size: 1.05rem; }

.contact-meta {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}

.contact-meta-item { margin-bottom: 1.5rem; }

.contact-meta-item .mono {
  color: var(--coral-deep);
  display: block;
  margin-bottom: 0.4rem;
}

.contact-meta-item a {
  color: var(--ink);
  text-decoration: none;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.2s;
}

.contact-meta-item a:hover { border-color: var(--coral); }

.contact-meta-item .contact-meta-detail {
  display: block;
  color: var(--ink);
  font-size: 1.1rem;
}

.form {
  background: var(--bone-2);
  padding: 3rem;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }

.field label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.6rem;
}

.field input,
.field textarea,
.field select {
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.9rem 1rem;
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.2s;
  width: 100%;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--coral);
}

.field textarea {
  resize: vertical;
  min-height: 130px;
  font-family: 'Fraunces', serif;
}

.form button {
  margin-top: 0.5rem;
  width: 100%;
  cursor: pointer;
  border: none;
  font-family: 'JetBrains Mono', monospace;
}

.form-success {
  display: none;
  padding: 1rem;
  background: var(--coral-soft);
  border: 1px solid var(--coral);
  border-radius: 4px;
  color: var(--ink);
  margin-top: 1rem;
  font-size: 0.95rem;
}

.form-success.show { display: block; }

/* ============ FAQ ============ */
.faq { max-width: 780px; margin: 0 auto; }

.faq-item {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
  cursor: pointer;
}

.faq-item:last-child { border-bottom: 1px solid var(--line); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.faq-toggle {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.4rem;
  color: var(--coral);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding-top 0.4s ease;
  color: var(--slate);
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding-top: 1rem;
}

/* ============ FOOTER ============ */
footer.site-footer {
  border-top: 1px solid var(--line);
  padding: 5rem 0 2rem;
  background: var(--bone-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .brand {
  margin-bottom: 1rem;
  align-items: flex-start;
}

.footer-brand .brand-mark {
  margin-top: 0.15rem;
}
.footer-brand p { font-size: 0.95rem; max-width: 22rem; }

.footer-col h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.footer-col ul { list-style: none; }
.footer-col li {
  margin-bottom: 0.7rem;
  color: var(--ink);
  font-size: 0.95rem;
}

.footer-col a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom .mono { color: var(--slate); }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .container, .container-narrow { padding: 0 1.5rem; }
  .nav-inner { padding: 0.8rem 1.5rem; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bone);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }

  .hero { padding: 8rem 0 4rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; }
  .hero-anvil { max-width: 320px; }
  .page-hero { padding: 8rem 0 4rem; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }

  .section-header { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; }
  .service-card { grid-template-columns: 1fr; gap: 1.5rem; padding: 2.5rem 0; }
  .process-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-item:nth-child(odd), .why-item:nth-child(even) {
    padding: 2rem 0;
    border-left: none;
  }

  .detail-grid { grid-template-columns: 1fr; gap: 2rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .value { border-right: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 0; }
  .form { padding: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }

  section { padding: 5rem 0; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }
  .brand-mark { width: 36px; height: 36px; }
}

/* ============ ANIMATIONS ============ */
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float-subtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.rise { animation: rise 0.9s ease-out both; }
.rise-1 { animation: rise 0.9s ease-out 0.1s both; }
.rise-2 { animation: rise 0.9s ease-out 0.2s both; }
.rise-3 { animation: rise 0.9s ease-out 0.3s both; }
.rise-4 { animation: rise 0.9s ease-out 0.4s both; }

.hero-anvil { animation: float-subtle 6s ease-in-out infinite; }
