/* ============================================================
   REVIVE — styles.css
   Design system: warm off-whites + electric blue accent
   Fonts: Halyard Bold (headlines) + IBM Plex Mono (body)
============================================================ */

/* ── RESET & ROOT ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:        #2f2b2b;
  --surface:   #3a3535;
  --border:    #5c5656;
  --copy:      #cdc8b6;
  --black:     #cdc8b6;
  --body:      #cdc8b6;
  --muted:     #cdc8b6;
  --accent:    #1a6cf0;

  --font-serif: 'Halyard Display', 'Halyard Text', 'Inter', system-ui, sans-serif;
  --font-sans:  'IBM Plex Mono', 'Inter', system-ui, sans-serif;

  --max-w: 900px;
  --nav-offset: 3.2rem;
  --nav-shell-height: 8.42rem;
  --nav-shell-height-compact: 5.05rem;
  --section-pad: 5.5rem 3rem;
  --radius: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── LAYOUT HELPERS ───────────────────────────────────────── */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0;
}

/* Override: sections that follow another section without top padding */
.section-flush {
  padding-top: 0;
}

.section {
  padding: var(--section-pad);
}

/* ── TYPOGRAPHY HELPERS ───────────────────────────────────── */
.section-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.section-h {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 1.25rem;
}

.section-h em {
  font-style: italic;
}

.section-p {
  font-size: 1.07rem;
  color: var(--body);
  font-weight: 300;
  line-height: 1.78;
  max-width: 500px;
  margin-bottom: 3rem;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-primary {
  background: var(--accent);
  color: var(--copy);
  border: none;
  padding: 0.82rem 1.65rem;
  border-radius: 5px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}

.btn-primary:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--copy);
  border: 1px solid var(--border);
  padding: 0.82rem 1.65rem;
  border-radius: 5px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
  border-color: #bbb;
  color: var(--copy);
}

.btn-light {
  background: var(--surface);
  color: var(--copy);
  border: none;
  padding: 0.9rem 1.75rem;
  border-radius: 5px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.15s;
}

.btn-light:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* ── NAV ──────────────────────────────────────────────────── */
#nav {
  padding: var(--nav-offset) 0 0;
  position: sticky;
  top: 0;
  z-index: 99;
  transition: padding 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

#nav.scrolled {
  box-shadow: none;
}

#nav.nav-open {
  overflow: visible;
}

.nav-inner {
  position: relative;
  max-width: min(calc(var(--max-w) + 90px), calc(100% - 1rem));
  margin: 0 auto;
  min-height: var(--nav-shell-height);
  padding: 1.1rem 1.55rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(47, 43, 43, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--copy);
  border-radius: 6px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition:
    padding 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.logo {
  position: relative;
  width: min(37rem, 58vw);
  height: 5.9rem;
  cursor: pointer;
  flex: 0 0 auto;
}

.logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.logo-full {
  opacity: 1;
  transform: scale(1);
}

.logo-short {
  opacity: 0;
  transform: scale(0.92);
}

.nav-consult {
  height: 3.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 0;
  padding: 0;
  margin-left: auto;
  margin-right: 0;
  background: #99b06d;
  color: var(--bg);
  border: 0 solid var(--copy);
  border-radius: 999px;
  box-shadow: inset 0 0 0 0 var(--bg);
  font-family: var(--font-sans);
  font-size: 0;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  overflow: hidden;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    max-width 0.25s ease,
    height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.25s ease,
    margin 0.25s ease,
    background 0.2s,
    border-color 0.2s,
    border-width 0.2s,
    box-shadow 0.2s,
    font-size 0.2s ease;
}

.nav-consult.is-visible {
  max-width: 12rem;
  padding: 0 1.15rem;
  margin-right: 0.65rem;
  border-width: 1px;
  box-shadow: inset 0 0 0 0.26rem var(--bg);
  font-size: 0.82rem;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-consult:hover,
.nav-consult:focus-visible {
  background: #a7bc7c;
  border-color: var(--copy);
  outline: none;
}

.nav-toggle {
  width: 3.35rem;
  height: 3.35rem;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.32rem;
  background: #99b06d;
  border: 1px solid var(--copy);
  border-radius: 999px;
  box-shadow: inset 0 0 0 0.26rem var(--bg);
  cursor: pointer;
  transition:
    width 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    gap 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}

.nav-toggle span {
  width: 1.15rem;
  height: 1px;
  background: var(--bg);
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.2s ease, opacity 0.2s ease;
}

#nav.scrolled .nav-inner {
  min-height: var(--nav-shell-height-compact);
  padding: 0.75rem 1.35rem;
}

#nav.scrolled .nav-consult {
  height: 2.35rem;
  padding: 0 0.95rem;
  margin-right: 0.5rem;
  font-size: 0.74rem;
}

#nav.scrolled .logo {
  width: min(14rem, 28vw);
  height: 3.15rem;
}

#nav.scrolled .logo-full {
  opacity: 0;
  transform: scale(0.94);
}

#nav.scrolled .logo-short {
  opacity: 1;
  transform: scale(1);
}

#nav.scrolled .nav-toggle {
  width: 2.35rem;
  height: 2.35rem;
  gap: 0.22rem;
}

#nav.scrolled .nav-toggle span {
  width: 0.82rem;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: #a7bc7c;
  border-color: var(--copy);
  outline: none;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(0.38rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-0.38rem) rotate(-45deg);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 0.9rem);
  right: 0;
  min-width: 220px;
  padding: 1rem 1.1rem;
  background: rgba(58, 53, 53, 0.98);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  list-style: none;
}

.nav-links a {
  color: var(--copy);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #99ac76;
}

.section-stack {
  position: fixed;
  top: calc(var(--nav-offset) + var(--nav-shell-height-compact) + 0.6rem);
  left: 50%;
  width: min(calc(var(--max-w) + 90px), calc(100% - 1rem));
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  z-index: 98;
  pointer-events: none;
}

.section-stack-item {
  min-height: calc(var(--nav-shell-height-compact) * 0.5);
  padding: 0.375rem 2.15rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(47, 43, 43, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--copy);
  border-radius: 6px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  color: var(--copy);
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 1.45vw, 1.25rem);
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  transform: translateY(-8px);
  animation: stackFadeIn 0.32s ease forwards;
}

.section-stack-dot {
  width: 0.9em;
  height: 0.9em;
  flex: 0 0 auto;
  border-radius: 999px;
  transform: scale(0.25);
  opacity: 0;
  animation: stackDotIn 0.35s 0.08s ease forwards;
}

.section-stack-label {
  min-width: 0;
}

.section-stack-dot.is-red {
  background: #d77272;
}

.section-stack-dot.is-green {
  background: #99b06d;
}

.section-stack-dot.is-blue {
  background: #71afbb;
}

.section-stack-dot.is-violet {
  background: #a37ba4;
}

@keyframes stackFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stackDotIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: calc(100svh - var(--nav-offset) - var(--nav-shell-height));
  padding: 1.8rem 3rem 2.4rem;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  transform: translateY(-1.25rem);
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copy);
  margin-bottom: 2rem;
}

.hero-h1 {
  font-family: 'Halyard Micro', sans-serif;
  font-size: clamp(4.32rem, 8.73vw, 6.84rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 1rem;
}

.hero-headline {
  display: block;
}

.hero-line {
  display: block;
}

.hero-headline-mobile {
  display: none;
}

.hero-h1 em {
  font-style: normal;
  color: var(--black);
  font-weight: inherit;
}

.hero-sub {
  font-size: clamp(0.86rem, 1.42vw, 1.05rem);
  color: var(--body);
  font-weight: 300;
  line-height: 1.78;
  max-width: 800px;
  margin-bottom: 2.35rem;
}

.hero-actions {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-lead-form {
  display: grid;
  grid-template-columns: minmax(320px, 1.35fr) minmax(220px, 1fr);
  gap: 0.75rem;
  align-items: end;
  flex: 1 1 700px;
}

.hero-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.hero-field input,
.hero-field textarea {
  width: 100%;
  background: transparent;
  color: var(--copy);
  border: 1px solid var(--copy);
  border-radius: 999px;
  padding: 0.82rem 1.1rem;
  font: inherit;
  resize: none;
}

.hero-field input::placeholder,
.hero-field textarea::placeholder {
  color: rgba(205, 200, 182, 0.58);
}

.hero-field input:focus,
.hero-field textarea:focus {
  outline: none;
  border-color: #99ac76;
  box-shadow: 0 0 0 3px rgba(153, 172, 118, 0.16);
}

.hero-field textarea.hero-field-flash {
  border-color: #99ac76;
  box-shadow: 0 0 0 3px rgba(153, 172, 118, 0.22);
}

.hero-field textarea {
  min-height: 48px;
}

.hero-submit,
.meeting-submit {
  min-height: 48px;
}

.hero-field-arrow {
  position: relative;
}

.hero-field-arrow input {
  padding-right: 4.25rem;
}

.hero-submit {
  position: absolute;
  top: 50%;
  right: 0.45rem;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  min-width: 2.35rem;
  min-height: 2.35rem;
  padding: 0;
  border: 1px solid #99b06d;
  border-radius: 999px;
  background: #99b06d;
  color: var(--bg);
  cursor: pointer;
}

.hero-toggle-arrow {
  position: relative;
  width: 0.95rem;
  height: 0.95rem;
  display: inline-block;
  transition: transform 0.2s ease;
}

.hero-toggle-arrow::before,
.hero-toggle-arrow::after {
  content: '';
  position: absolute;
  background: currentColor;
}

.hero-toggle-arrow::before {
  width: 1px;
  height: 0.72rem;
  top: 0.05rem;
  left: 50%;
  transform: translateX(-50%);
}

.hero-toggle-arrow::after {
  width: 0.42rem;
  height: 0.42rem;
  left: 50%;
  bottom: 0.06rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  background: transparent;
  transform: translateX(-50%) rotate(45deg);
}

.hero-submit[aria-expanded="true"] .hero-toggle-arrow {
  transform: rotate(180deg);
}

.hero-submit:hover,
.hero-submit:focus-visible {
  background: #a7bc7c;
  outline: none;
}

.meeting-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease, margin-top 0.25s ease;
}

.meeting-panel.is-open {
  max-height: 200px;
  opacity: 1;
  margin-top: 0.85rem;
}

.meeting-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr)) auto;
  gap: 0.75rem;
  align-items: end;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.meeting-confirmation {
  margin-top: 0.85rem;
  font-size: 0.88rem;
  color: #99ac76;
}

/* ── TRUST STRIP ──────────────────────────────────────────── */
.launch-module {
  margin-top: 1.35rem;
  padding: 1.5rem 1.65rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.launch-kicker {
  flex: 0 0 auto;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #99ac76;
  padding-top: 0.25rem;
}

.launch-copy {
  max-width: 560px;
}

.launch-copy h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 0.55rem;
}

.launch-copy p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--body);
}

.module-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 3.4rem;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  height: 0;
  transition:
    opacity 0.25s ease,
    height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    top 0.35s ease,
    left 0.35s ease;
}

.module-progress.is-ready {
  opacity: 1;
}

.module-progress-track {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0.22rem;
  border: 1px solid var(--copy);
  border-radius: 999px;
  background: transparent;
}

.module-progress-fill {
  position: absolute;
  top: 0.22rem;
  left: 0.22rem;
  right: 0.22rem;
  height: 0;
  border-radius: 999px;
  background: linear-gradient(
    to bottom,
    #d77272 0%,
    #d69572 18%,
    #cabd73 36%,
    #99b06d 56%,
    #71afbb 78%,
    #a37ba4 100%
  );
}

.module-progress-ball {
  position: absolute;
  left: 50%;
  top: 0.22rem;
  width: calc(100% - 0.44rem);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--copy);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 1px rgba(47, 43, 43, 0.18);
}

.module-layout,
.process-layout {
  position: relative;
  width: 100%;
  max-width: 100%;
  display: block;
}

.module-visual,
.process-visual {
  display: none;
  pointer-events: none;
}

.module-visual img,
.process-visual img {
  width: 100%;
  max-width: 150px;
  height: auto;
  display: block;
}

.module-content,
.process-content {
  width: 100%;
  max-width: 100%;
  padding-left: 0;
}

.module-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
}

#process .section-inner,
#how-we-work .section-inner,
#who .section-inner,
#services .section-inner,
#why-arc-creative .section-inner,
#contact .section-inner {
  max-width: min(calc(var(--max-w) + 90px), calc(100% - 1rem));
}

.image-break {
  position: relative;
  min-height: 18.75rem;
  margin: 3.4rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(205, 200, 182, 0.22);
  border-bottom: 1px solid rgba(205, 200, 182, 0.22);
  background-color: rgba(205, 200, 182, 0.04);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.image-break::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(47, 43, 43, 0.18) 0%, rgba(47, 43, 43, 0.32) 100%),
    linear-gradient(90deg, rgba(47, 43, 43, 0.12) 0%, rgba(47, 43, 43, 0) 40%, rgba(47, 43, 43, 0.16) 100%);
}

.image-break-zero {
  background-image:
    url('assets/ar-speaker.png');
}

.image-break-one {
  background-image:
    radial-gradient(circle at 22% 28%, rgba(215, 114, 114, 0.72) 0 12%, transparent 13%),
    linear-gradient(135deg, rgba(215, 114, 114, 0.9) 0%, rgba(202, 189, 115, 0.72) 42%, rgba(113, 175, 187, 0.7) 76%, rgba(163, 123, 164, 0.65) 100%);
}

.image-break-two {
  background-image:
    radial-gradient(circle at 78% 34%, rgba(113, 175, 187, 0.58) 0 15%, transparent 16%),
    linear-gradient(125deg, rgba(47, 43, 43, 0.24) 0%, rgba(153, 176, 109, 0.72) 32%, rgba(113, 175, 187, 0.78) 68%, rgba(163, 123, 164, 0.7) 100%);
}

.image-break-three {
  background-image:
    radial-gradient(circle at 32% 62%, rgba(214, 149, 114, 0.6) 0 16%, transparent 17%),
    linear-gradient(140deg, rgba(202, 189, 115, 0.72) 0%, rgba(153, 176, 109, 0.7) 45%, rgba(113, 175, 187, 0.76) 72%, rgba(47, 43, 43, 0.18) 100%);
}

.image-break-four {
  background-image:
    radial-gradient(circle at 72% 42%, rgba(163, 123, 164, 0.56) 0 14%, transparent 15%),
    linear-gradient(130deg, rgba(215, 114, 114, 0.82) 0%, rgba(214, 149, 114, 0.7) 30%, rgba(202, 189, 115, 0.64) 52%, rgba(153, 176, 109, 0.74) 74%, rgba(113, 175, 187, 0.78) 100%);
}

/* ── MODULE 1 ─────────────────────────────────────────────── */
.module-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--copy);
  border-radius: 6px;
  overflow: hidden;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--copy);
  border-radius: 6px;
  overflow: hidden;
}

.process-step {
  background: var(--bg);
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  padding: 0;
  border-bottom: 1px solid var(--copy);
  transition: background 0.2s;
}

.process-step:last-child {
  border-bottom: none;
}

.process-step:hover {
  background: rgba(205, 200, 182, 0.04);
}

.step-n {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.7rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copy);
  border-right: 1px solid var(--copy);
}

.process-step-copy {
  padding: 1.15rem 1.15rem 1.15rem 1.05rem;
}

.process-step h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.07rem;
  color: var(--copy);
  margin-bottom: 0.35rem;
}

.process-step p {
  font-size: 1.07rem;
  color: var(--copy);
  line-height: 1.51;
  font-weight: 300;
}

.module-item {
  background: var(--bg);
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  padding: 0;
  border-bottom: 1px solid var(--copy);
  transition: background 0.2s;
}

.module-item:last-child {
  border-bottom: none;
}

.module-item:hover {
  background: rgba(205, 200, 182, 0.04);
}

.module-index {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.7rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copy);
  border-right: 1px solid var(--copy);
}

.module-item-copy {
  padding: 1.15rem 1.15rem 1.15rem 1.05rem;
}

.module-item h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.07rem;
  color: var(--copy);
  margin-bottom: 0.35rem;
}

.module-item p {
  font-size: 1.07rem;
  color: var(--copy);
  line-height: 1.51;
  font-weight: 300;
}

.module-two-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--copy);
  border-radius: 6px;
  overflow: hidden;
}

.module-two-list-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.module-two-item {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
  border-right: 1px solid var(--copy);
  transition: background 0.2s;
}

.module-two-item:last-child {
  border-right: none;
}

.module-two-item:hover {
  background: rgba(205, 200, 182, 0.04);
}

.module-two-index {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 0.9rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copy);
  border-bottom: 1px solid var(--copy);
}

.module-two-item-copy {
  padding: 1rem 1.1rem 1.15rem;
}

.module-two-item h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.07rem;
  color: var(--copy);
  margin-bottom: 0.35rem;
}

.module-two-item p {
  font-size: 1.07rem;
  color: var(--copy);
  line-height: 1.51;
  font-weight: 300;
}

/* ── PROCESS ──────────────────────────────────────────────── */

/* ── PAIN POINTS ──────────────────────────────────────────── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--copy);
  border-radius: 6px;
  overflow: hidden;
}

.pain-card {
  background: var(--bg);
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--copy);
  transition: background 0.18s;
}

.pain-card:last-child {
  border-right: none;
}

.pain-card:hover {
  background: rgba(205, 200, 182, 0.04);
}

.pain-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 15px;
  color: var(--copy);
  font-weight: 500;
  font-family: var(--font-serif);
}

.pain-card h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--black);
  margin-bottom: 0.55rem;
}

.pain-card p {
  font-size: 0.8rem;
  color: var(--body);
  line-height: 1.75;
  font-weight: 300;
}

/* ── WHO WE SERVE ─────────────────────────────────────────── */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--copy);
  border-radius: 6px;
  overflow: hidden;
}

.serve-card {
  background: var(--bg);
  padding: 1.75rem 1.25rem;
  border-right: 1px solid var(--copy);
  transition: background 0.18s;
  text-align: center;
}

.serve-card:last-child {
  border-right: none;
}

.serve-card:hover {
  background: rgba(205, 200, 182, 0.04);
}

.serve-icon {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.85rem;
}

.serve-card h5 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--black);
  line-height: 1.45;
}

/* ── SERVICES ─────────────────────────────────────────────── */
.services-list {
  border: 1px solid var(--copy);
  border-radius: 6px;
  overflow: hidden;
}

.svc-row {
  display: grid;
  grid-template-columns: 1.6fr 2.8fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.75rem 2rem;
  border-bottom: 1px solid var(--copy);
  background: var(--bg);
  transition: background 0.18s;
}

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

.svc-row:hover {
  background: rgba(205, 200, 182, 0.04);
}

.svc-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--black);
  letter-spacing: -0.01em;
}

.svc-desc {
  font-size: 0.8rem;
  color: var(--body);
  font-weight: 300;
  line-height: 1.65;
}

.svc-price {
  font-size: 0.8rem;
  color: var(--copy);
  font-weight: 500;
  white-space: nowrap;
  text-align: right;
}

.services-footnote {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 1.1rem;
  font-weight: 300;
}

/* ── CTA BLOCK ────────────────────────────────────────────── */
.cta-outer {
  padding: 0 0 5.5rem;
}

.cta-inner {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
}

.cta-inner h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--copy);
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 760px;
}

.cta-inner h2 em {
  font-style: italic;
  color: var(--copy);
}

.btn-consult {
  background: #99b06d;
  color: var(--bg);
  border: 1px solid var(--copy);
  border-radius: 999px;
  box-shadow: inset 0 0 0 0.26rem var(--bg);
  padding: 0.9rem 1.45rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.btn-consult:hover,
.btn-consult:focus-visible {
  background: #a7bc7c;
  border-color: var(--copy);
  outline: none;
  transform: translateY(-1px);
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}

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

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
}

footer p {
  font-size: 0.73rem;
  color: var(--muted);
  font-weight: 300;
}

/* ── SCROLL ANIMATIONS ────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1200px) {
  :root {
    --nav-offset: 2.4rem;
    --nav-shell-height: 7.2rem;
    --nav-shell-height-compact: 5rem;
  }

  .logo {
    width: min(31rem, 54vw);
    height: 5.1rem;
  }

  .hero {
    padding: 1.35rem 3rem 2rem;
  }

  .hero-inner {
    transform: translateY(-0.85rem);
  }

  .hero-h1 {
    font-size: clamp(3.78rem, 7.38vw, 5.76rem);
    line-height: 1;
  }

  .hero-sub {
    max-width: 700px;
  }

  .process-visual {
    width: 120px;
  }

  .process-visual img {
    max-width: 120px;
  }

  .process-content {
    padding-left: 150px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-offset: 1.9rem;
    --nav-shell-height: 5.6rem;
    --nav-shell-height-compact: 4.2rem;
    --section-pad: 4rem 1rem;
  }

  #nav {
    padding: var(--nav-offset) 0 0;
  }

  .nav-inner {
    min-height: var(--nav-shell-height);
    padding: 0.7rem 1.5rem;
  }

  .nav-consult {
    height: 2.9rem;
  }

  .logo {
    width: min(14rem, 54vw);
    height: 2.85rem;
  }

  #nav.scrolled .nav-consult {
    height: 2.35rem;
  }

  #nav.scrolled .logo {
    width: min(14rem, 28vw);
    height: 3.15rem;
  }

  #nav.scrolled .nav-toggle {
    width: 2.35rem;
    height: 2.35rem;
    gap: 0.22rem;
  }

  #nav.scrolled .nav-toggle span {
    width: 0.82rem;
  }

  .nav-menu {
    right: 0;
  }

  .section-stack {
    top: calc(var(--nav-offset) + var(--nav-shell-height-compact) + 1.65rem);
    width: calc(100% - 0.5rem);
  }

  .section-stack-item {
    min-height: calc(var(--nav-shell-height-compact) * 0.5);
    padding: 0.375rem 1.5rem;
    font-size: clamp(0.82rem, 3.8vw, 1rem);
  }

  .hero {
    min-height: calc(100svh - var(--nav-offset) - var(--nav-shell-height));
    padding: 0.9rem 1rem 1.25rem;
  }

  .hero-inner {
    transform: none;
  }

  .hero-h1 {
    font-size: clamp(3rem, 11.8vw, 4.4rem);
    line-height: 0.98;
    margin-bottom: 0.8rem;
  }

  .hero-headline-desktop {
    display: none;
  }

  .hero-headline-mobile {
    display: block;
  }

  .hero-headline-mobile .hero-line {
    white-space: nowrap;
  }

  .hero-sub {
    font-size: 0.98rem;
    line-height: 1.6;
    max-width: none;
    margin-bottom: 1.35rem;
  }

  .hero-form-h {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .hero-actions {
    gap: 0.75rem;
  }

  .hero-lead-form,
  .meeting-form {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .hero-field input,
  .hero-field textarea {
    padding: 0.72rem 1rem;
  }

  .hero-field textarea {
    min-height: 44px;
  }

  .hero-submit,
  .meeting-submit {
    min-height: 44px;
  }

  .hero-submit {
    width: 2.15rem;
    min-width: 2.15rem;
    min-height: 2.15rem;
  }

  .meeting-submit {
    width: 100%;
    justify-content: center;
  }

  .launch-module {
    flex-direction: column;
    gap: 0.75rem;
  }

  .module-progress {
    width: 1.1rem;
  }

  .image-break {
    min-height: 13.75rem;
    margin: 2.5rem 0;
    background-attachment: scroll;
  }

  .module-progress-track {
    padding: 0.14rem;
  }

  .module-progress-fill {
    top: 0.14rem;
    left: 0.14rem;
    right: 0.14rem;
  }

  .module-progress-ball {
    width: calc(100% - 0.28rem);
    top: 0.14rem;
  }

  .module-layout,
  .process-layout {
    width: 100%;
    max-width: 100%;
  }

  .module-visual,
  .process-visual {
    display: none;
  }

  .module-visual img,
  .process-visual img {
    max-width: 72px;
  }

  .module-content,
  .process-content {
    padding-left: 0;
    min-width: 0;
  }

  .module-item {
    grid-template-columns: 62px minmax(0, 1fr);
    border-bottom: 1px solid var(--copy);
  }

  .module-item:last-child {
    border-bottom: none;
  }

  .module-index {
    font-size: 0.88rem;
    padding: 1rem 0.6rem;
  }

  .module-item-copy {
    padding: 1rem 1rem;
  }

  .module-two-list {
    grid-template-columns: 1fr;
  }

  .module-two-item {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    border-right: none;
    border-bottom: 1px solid var(--copy);
  }

  .module-two-item:last-child {
    border-bottom: none;
  }

  .module-two-index {
    min-height: auto;
    font-size: 0.88rem;
    padding: 1rem 0.6rem;
    border-bottom: none;
    border-right: 1px solid var(--copy);
  }

  .module-two-item-copy {
    padding: 1rem 1rem;
  }

  .process-step {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .step-n {
    font-size: 0.88rem;
    padding: 1rem 0.6rem;
  }

  .process-step-copy {
    padding: 1rem 1rem;
  }

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

  .pain-card {
    border-right: none;
    border-bottom: 1px solid var(--copy);
  }

  .pain-card:last-child {
    border-bottom: none;
  }

  .serve-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .serve-card {
    border-bottom: 1px solid var(--copy);
  }

  .serve-grid .serve-card:last-child {
    grid-column: 1 / -1;
  }

  .serve-grid .serve-card:nth-child(even) {
    border-right: none;
  }

  .serve-grid .serve-card:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .svc-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .svc-price {
    text-align: left;
  }

  .cta-inner {
    padding: 2.5rem 2rem;
  }

  .btn-light {
    width: 100%;
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

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

  .serve-card {
    border-right: none;
  }

  .serve-grid .serve-card:last-child {
    border-bottom: none;
  }

  .serve-grid .serve-card:last-child {
    grid-column: auto;
  }
}
