/* ============================================================
   OEM CONTRACTING — ARCHETYPE 02: CINEMATIC PREMIUM
   Rustic Modern Luxury — Titan AI — April 2026
   Palette: Cream #D8D1B3 · Stone #B3B3B3 · Bronze #7F6522
            Navy #253B47 · Near-Black #111921
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,600;0,700;1,300;1,700&family=Outfit:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

:root {
  /* Backgrounds — warmer near-black base */
  --bg-primary:      #0C1014;
  --bg-section:      #0F1318;
  --bg-section-alt:  #0A0E12;
  --bg-card:         #141A1F;

  /* Accent — dark bronze/gold replaces bright blue */
  --accent:          #8B6E1A;
  --accent-light:    #A88828;
  --accent-dim:      #5C4812;
  --accent-glow:     rgba(139, 110, 26, 0.15);

  /* Client navy — kept as structural tint */
  --navy:            #253B47;
  --navy-light:      #2D4859;
  --navy-glow:       rgba(37, 59, 71, 0.22);

  /* Palette tones */
  --cream:           #D8D1B3;
  --stone:           #B3B3B3;

  /* Text */
  --text-primary:    #EDE8E0;
  --text-muted:      #857B6E;

  /* Borders & glass */
  --border:          rgba(255,255,255,0.07);
  --glass-bg:        rgba(37, 59, 71, 0.08);
  --glass-border:    rgba(37, 59, 71, 0.25);

  --font-display:    'Cormorant Garamond', Georgia, serif;
  --font-body:       'Outfit', sans-serif;
  --font-mono:       'DM Mono', monospace;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }


/* ORNAMENTAL RULE */
.gold-rule {
  width: 56px;
  height: 0.5px;
  background: linear-gradient(to right, var(--accent), var(--accent-light) 60%, transparent);
  margin-bottom: 2rem;
}
.gold-rule--center {
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(90deg, transparent, var(--accent) 30%, var(--accent-light) 50%, var(--accent) 70%, transparent);
}

/* EYEBROW LABEL */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-light);
  display: block;
  margin-bottom: 1.25rem;
  opacity: 0.8;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.5s ease, backdrop-filter 0.5s ease, padding 0.4s ease;
  padding: 1.75rem 0;
}
.nav.scrolled {
  background: rgba(12,16,20,0.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  padding: 1.1rem 0;
  border-bottom: 0.5px solid rgba(37,59,71,0.35);
}
.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--text-primary);
}
.nav-logo-trade {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-weight: 400;
  color: rgba(133,123,110,0.65);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 0.28rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.75rem;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(237,232,224,0.5);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 0.5px;
  background: var(--accent-light);
  transition: width 0.35s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text-primary); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta {
  border: 0.5px solid rgba(139,110,26,0.5) !important;
  color: rgba(237,232,224,0.85) !important;
  padding: 0.6rem 1.6rem !important;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: var(--cream) !important;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 0.5px;
  background: var(--text-primary);
  transition: 0.3s;
}
.nav-mobile {
  display: none;
  background: rgba(12,16,20,0.98);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-top: 0.5px solid var(--glass-border);
  padding: 3rem 2.5rem;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 2rem; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text-primary);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { object-fit: cover; width: 100%; height: 100%; }
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.32);
  transform-origin: 33% 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 110% 110%, rgba(12,16,20,1.0) 0%, rgba(12,16,20,0.92) 14%, rgba(12,16,20,0.55) 26%, transparent 42%),
    linear-gradient(to right, rgba(12,16,20,0.82) 0%, rgba(12,16,20,0.28) 60%, transparent 100%),
    linear-gradient(to bottom,
      rgba(12,16,20,0.18) 0%,
      rgba(12,16,20,0.38) 45%,
      rgba(12,16,20,0.90) 100%),
    radial-gradient(ellipse at 70% 45%, rgba(180,90,30,0.28) 0%, rgba(140,60,10,0.12) 45%, transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 5rem 4rem 9rem;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(237,232,224,0.42);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.3s;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
}
.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 0.5px;
  background: rgba(237,232,224,0.15);
  flex-shrink: 0;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 11rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.05em;
}
.headline-row {
  display: flex;
  gap: 0.22em;
}
.hero-headline .word {
  opacity: 0;
  transform: translateY(45px);
  animation: wordReveal 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-headline .italic { color: var(--accent-light); }
.hero-headline .light { font-weight: 300; color: rgba(237,232,224,0.82); }
.headline-row:nth-child(1) .word:nth-child(1) { animation-delay: 0.45s; }
.headline-row:nth-child(1) .word:nth-child(2) { animation-delay: 0.60s; }
.headline-row:nth-child(1) .word:nth-child(3) { animation-delay: 0.75s; }
.headline-row:nth-child(2) .word:nth-child(1) { animation-delay: 0.92s; }
.headline-row:nth-child(2) .word:nth-child(2) { animation-delay: 1.07s; }
.headline-row:nth-child(2) .word:nth-child(3) { animation-delay: 1.22s; }
.hero-sub {
  font-size: 0.93rem;
  font-weight: 300;
  color: rgba(237,232,224,0.48);
  max-width: 490px;
  margin: 0 0 3rem;
  letter-spacing: 0.025em;
  line-height: 1.95;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 1.65s;
}
.hero-actions {
  display: flex;
  gap: 1.75rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 1.9s;
}



/* Hero Stats Bar */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: rgba(12,16,20,0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 0.5px solid rgba(37,59,71,0.35);
  display: flex;
  align-items: stretch;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 2.15s;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.85rem 3.75rem;
  transition: background 0.35s ease;
}
.stat-item:hover { background: rgba(37,59,71,0.12); }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.45rem;
  opacity: 0.7;
}
.stat-divider {
  width: 0.5px;
  background: rgba(255,255,255,0.05);
  align-self: stretch;
  margin: 1.5rem 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  position: relative;
  isolation: isolate;
  border: 0.5px solid var(--accent);
  color: var(--text-primary);
  background: transparent;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.05rem 2.6rem;
  overflow: hidden;
  transition: color 0.35s ease, border-color 0.35s ease;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.btn-primary:hover { border-color: var(--accent-light); }
.btn-primary:hover::before { transform: translateX(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(237,232,224,0.42);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s, gap 0.25s;
}
.btn-secondary::after {
  content: '→';
  font-size: 0.85em;
  transition: transform 0.3s ease;
  display: inline-block;
}
.btn-secondary:hover { color: var(--text-primary); }
.btn-secondary:hover::after { transform: translateX(5px); }

/* ============================================================
   MARQUEE BAND
   ============================================================ */
.marquee-band {
  background: var(--bg-section);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 1.1rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 36s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(133,123,110,0.5);
}
.marquee-dot {
  width: 3px;
  height: 3px;
  background: var(--accent-light);
  transform: rotate(45deg);
  flex-shrink: 0;
  opacity: 0.5;
}

/* ============================================================
   PHILOSOPHY
   ============================================================ */
.philosophy {
  padding: 11rem 2rem;
  background: var(--bg-section);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.philosophy::before {
  content: '\201C';
  position: absolute;
  top: -4rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(18rem, 32vw, 32rem);
  font-style: italic;
  color: rgba(139,110,26,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.philosophy-inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.philosophy-quote {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.8rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  color: var(--text-primary);
  margin-bottom: 2.25rem;
  letter-spacing: 0.01em;
}
.philosophy-cite {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-light);
  opacity: 0.6;
}

/* ── SECTION GHOST TEXT (mixed typographic scale) ─────────── */
.section-ghost {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 14rem);
  font-weight: 700;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 0.5px rgba(139, 110, 26, 0.12);
  letter-spacing: -0.03em;
  line-height: 0.85;
  pointer-events: none;
  user-select: none;
  margin-bottom: -1.5rem;
}


/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--bg-primary); position: relative; }
.services-header {
  text-align: center;
  padding: 9.5rem 2rem 5.5rem;
  max-width: 720px;
  margin: 0 auto;
}
.services-header h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.01em;
  margin-bottom: 1.25rem;
  line-height: 1.08;
}
.section-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2;
}
.service-split {
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 580px;
  border-top: 0.5px solid var(--border);
}
.service-split--reverse { grid-template-columns: 42% 58%; }
.service-split--reverse .service-image--right { order: 2; }
.service-split--reverse .service-content { order: 1; }
.service-image {
  overflow: hidden;
  position: relative;
}
.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 65%, rgba(12,16,20,0.5) 100%);
  pointer-events: none;
}
.service-split--reverse .service-image::after {
  background: linear-gradient(to left, transparent 65%, rgba(12,16,20,0.5) 100%);
}
.service-image img {
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
}
.service-split:hover .service-image img { transform: scale(1.04); }
.service-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 5.5rem;
  background: var(--bg-section-alt);
  position: relative;
  overflow: hidden;
}
.service-bg-num {
  font-family: var(--font-display);
  font-size: 9rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(139,110,26,0.07);
  line-height: 1;
  position: absolute;
  bottom: 1.5rem;
  right: 2.5rem;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.05em;
}
.service-number {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
  opacity: 0.75;
  text-transform: uppercase;
}
.service-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 2.6vw, 2.6rem);
  font-weight: 700;
  font-style: italic;
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
.service-content p {
  font-size: 0.88rem;
  color: rgba(133,123,110,0.85);
  line-height: 1.95;
  margin-bottom: 1.5rem;
  max-width: 400px;
}
.service-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.service-checklist li {
  font-size: 0.82rem;
  color: rgba(237,232,224,0.45);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  letter-spacing: 0.02em;
}
.service-checklist li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--accent);
  transform: rotate(45deg);
  flex-shrink: 0;
  opacity: 0.7;
}

/* ============================================================
   PROJECTS PREVIEW
   ============================================================ */
.projects-preview {
  padding: 9.5rem 2rem;
  background: var(--bg-section);
  position: relative;
}
.projects-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 5.5rem;
}
.projects-header h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.01em;
  margin-bottom: 1.25rem;
  line-height: 1.08;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  max-width: 1300px;
  margin: 0 auto 4rem;
}
.project-card {
  overflow: hidden;
  background: var(--bg-section);
  display: flex;
  flex-direction: column;
}
.project-img-wrap {
  position: relative;
  height: 440px;
  overflow: hidden;
}
.project-img-wrap img {
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
}
.project-card:hover .project-img-wrap img { transform: scale(1.06); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,16,20,0.97) 0%, rgba(12,16,20,0.3) 50%, transparent 80%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
}
.project-overlay h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 0.5rem;
  transform: translateY(8px);
  transition: transform 0.45s ease;
  line-height: 1.2;
}
.project-overlay p {
  font-size: 0.78rem;
  color: rgba(237,232,224,0.55);
  margin-bottom: 1.75rem;
  line-height: 1.65;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;
}
.project-card:hover .project-overlay h4 { transform: translateY(0); }
.project-card:hover .project-overlay p { opacity: 1; transform: translateY(0); }
.project-meta {
  padding: 1.4rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 0.5px solid var(--border);
}
.project-tag {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(133,123,110,0.6);
}
.project-arrow {
  font-size: 0.8rem;
  color: rgba(133,123,110,0.45);
  transition: color 0.25s, transform 0.25s;
}
.project-card:hover .project-arrow {
  color: var(--accent-light);
  transform: translateX(5px);
}
.projects-cta { text-align: center; padding-top: 5.5rem; }

/* Project case-study info panel */
.project-card {
  overflow: hidden;
  background: var(--bg-section);
  display: flex;
  flex-direction: column;
}
.project-info {
  padding: 2rem 1.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  border-top: 0.5px solid var(--border);
  flex: 1;
}
.project-info-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.project-location {
  font-family: var(--font-mono);
  font-size: 0.54rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(133,123,110,0.5);
}
.project-specs {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(237,232,224,0.35);
}
.spec-dot { color: var(--accent-dim); opacity: 0.6; }
.project-services-line {
  font-size: 0.78rem;
  color: rgba(133,123,110,0.65);
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.project-outcome {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(237,232,224,0.55);
  line-height: 1.6;
  border-top: 0.5px solid var(--border);
  padding-top: 0.9rem;
  margin-top: 0.2rem;
}
.project-link {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(237,232,224,0.32);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.25rem;
  transition: color 0.25s;
}
.project-link span { transition: transform 0.3s ease; }
.project-link:hover { color: var(--accent-light); }
.project-link:hover span { transform: translateX(5px); }

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  padding: 9.5rem 2rem;
  background: var(--bg-primary);
  position: relative;
}
.process-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 6.5rem;
}
.process-header h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.01em;
  margin-bottom: 1.25rem;
  line-height: 1.08;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1240px;
  margin: 0 auto;
  border: 0.5px solid var(--border);
}
.process-step {
  display: flex;
  flex-direction: column;
  padding: 3.75rem 2.75rem;
  border-right: 0.5px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 0.35s ease;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: rgba(37,59,71,0.05); }
.process-bg-num {
  font-family: var(--font-display);
  font-size: 9rem;
  font-weight: 700;
  color: rgba(139,110,26,0.06);
  line-height: 1;
  position: absolute;
  bottom: -1rem;
  right: 1.5rem;
  pointer-events: none;
  user-select: none;
  font-style: italic;
}
.process-num {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: var(--accent-light);
  margin-bottom: 2.25rem;
  opacity: 0.75;
}
.process-line { display: none; }
.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.process-step p {
  font-size: 0.83rem;
  color: rgba(133,123,110,0.8);
  line-height: 1.85;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 9.5rem 2rem;
  background: var(--bg-section);
  position: relative;
}
.testimonials-inner {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}
.testimonials-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.01em;
  margin-bottom: 5.5rem;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 0.5px solid var(--border);
}
.testimonial-card {
  padding: 3.75rem 3rem;
  text-align: left;
  position: relative;
  border-right: 0.5px solid var(--border);
  transition: background 0.4s ease;
}
.testimonial-card:last-child { border-right: none; }
.testimonial-card:hover { background: rgba(37,59,71,0.04); }
.quote-mark {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--accent-light);
  opacity: 0.14;
  font-style: italic;
  display: block;
  margin-bottom: 1.5rem;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(237,232,224,0.82);
  margin-bottom: 2.75rem;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 1.75rem;
  border-top: 0.5px solid var(--border);
}
.author-name {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(133,123,110,0.7);
}
.stars {
  color: var(--accent-light);
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  opacity: 0.6;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  padding: 12rem 2rem;
  background: var(--bg-section-alt);
  text-align: center;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(37,59,71,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.5vw, 6rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.01em;
  line-height: 1.08;
  margin-bottom: 1.75rem;
  color: var(--text-primary);
}
.cta-headline em {
  font-style: italic;
  color: var(--accent-light);
}
.cta-sub {
  font-size: 0.88rem;
  color: rgba(237,232,224,0.42);
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.03em;
  max-width: 520px;
  margin: 0 auto 3.75rem;
}
.cta-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2.75rem;
}
.cta-phone {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: rgba(133,123,110,0.55);
  text-transform: uppercase;
  transition: color 0.25s;
}
.cta-phone:hover { color: var(--accent-light); }
.cta-divider {
  width: 0.5px;
  height: 18px;
  background: var(--border);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-primary);
  border-top: 0.5px solid var(--border);
  padding: 6.5rem 2rem 2.75rem;
}
.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 5.5rem;
  padding-bottom: 4.5rem;
  border-bottom: 0.5px solid var(--border);
  margin-bottom: 2.75rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-style: italic;
  font-weight: 700;
  margin-bottom: 1.1rem;
  letter-spacing: 0.01em;
}
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(133,123,110,0.65);
  line-height: 1.85;
  margin-bottom: 2.25rem;
  max-width: 320px;
}
.footer-social {
  display: flex;
  gap: 0.65rem;
}
.footer-social a {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  color: rgba(133,123,110,0.6);
  border: 0.5px solid rgba(255,255,255,0.07);
  padding: 0.5rem 0.9rem;
  transition: color 0.25s, border-color 0.25s;
}
.footer-social a:hover {
  color: var(--accent-light);
  border-color: rgba(139,110,26,0.35);
}
.footer-links h5,
.footer-contact h5 {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(133,123,110,0.45);
  margin-bottom: 2.25rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 1.1rem; }
.footer-links a {
  font-size: 0.83rem;
  color: rgba(237,232,224,0.38);
  transition: color 0.22s;
  letter-spacing: 0.01em;
}
.footer-links a:hover { color: rgba(237,232,224,0.82); }
.footer-contact p {
  font-size: 0.83rem;
  color: rgba(237,232,224,0.38);
  margin-bottom: 0.8rem;
  line-height: 1.7;
}
.footer-contact a { transition: color 0.22s; }
.footer-contact a:hover { color: var(--accent-light); }
.footer-domain { margin-top: 1rem; }
.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  color: rgba(133,123,110,0.35);
}
.footer-bottom a {
  color: rgba(133,123,110,0.5);
  transition: color 0.22s;
}
.footer-bottom a:hover { color: var(--accent-light); }

/* ============================================================
   WHY OEM
   ============================================================ */
.why-oem {
  background: var(--bg-section);
  padding: 9.5rem 2rem;
  position: relative;
}
.why-oem-inner { max-width: 1300px; margin: 0 auto; }
.why-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 6rem;
}
.why-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.01em;
  margin-bottom: 1.25rem;
  line-height: 1.08;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}
.why-card {
  background: var(--bg-section);
  padding: 4rem 3.75rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
}
.why-card:hover { background: rgba(20,26,31,0.98); }
.why-num {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  color: var(--accent-light);
  opacity: 0.65;
  display: block;
  margin-bottom: 1.5rem;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}
.why-card h3 em {
  font-style: italic;
  color: var(--accent-light);
}
.why-card p {
  font-size: 0.88rem;
  color: rgba(133,123,110,0.82);
  line-height: 1.95;
  max-width: 460px;
}

/* ============================================================
   MID CTA BAND
   ============================================================ */
.mid-cta {
  background: var(--bg-section-alt);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 7rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mid-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(139,110,26,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.mid-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.mid-cta-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-light);
  opacity: 0.65;
  margin-bottom: 1.25rem;
}
.mid-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}
.mid-cta-sub {
  font-size: 0.88rem;
  color: rgba(237,232,224,0.38);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 2.75rem;
}

/* ============================================================
   BEST FOR
   ============================================================ */
.best-for {
  background: var(--bg-section-alt);
  padding: 9.5rem 2rem;
  position: relative;
  border-top: 0.5px solid var(--border);
}
.best-for-inner { max-width: 1240px; margin: 0 auto; }
.best-for-header {
  max-width: 600px;
  margin-bottom: 5.5rem;
}
.best-for-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.01em;
  margin-bottom: 1.25rem;
  line-height: 1.08;
}
.best-for-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 6rem;
  align-items: start;
}
.best-for-yes h3,
.best-for-no h3 {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-light);
  opacity: 0.7;
  margin-bottom: 2rem;
}
.best-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.best-list li {
  font-size: 0.9rem;
  color: rgba(237,232,224,0.62);
  line-height: 1.85;
  padding-left: 1.5rem;
  position: relative;
}
.best-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  opacity: 0.5;
  font-family: var(--font-mono);
}
.best-for-no p {
  font-size: 0.88rem;
  color: rgba(133,123,110,0.72);
  line-height: 1.95;
  margin-bottom: 2rem;
}
.best-for-quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(237,232,224,0.42);
  border-left: 1px solid rgba(139,110,26,0.3);
  padding-left: 1.5rem;
}

/* ============================================================
   FOUNDER / TRUST
   ============================================================ */
.founder {
  background: var(--bg-primary);
  padding: 9.5rem 2rem;
  position: relative;
}
.founder-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 7rem;
  align-items: center;
}
.founder-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.01em;
  margin-bottom: 2rem;
  line-height: 1.1;
}
.founder-content h2 em {
  font-style: italic;
  color: var(--accent-light);
}
.founder-lead {
  font-size: 0.95rem;
  color: rgba(237,232,224,0.65);
  line-height: 2;
  margin-bottom: 1.35rem;
}
.founder-body {
  font-size: 0.88rem;
  color: rgba(133,123,110,0.8);
  line-height: 1.95;
  margin-bottom: 3rem;
}
.founder-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 3rem;
  border: 0.5px solid var(--border);
}
.founder-stat {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 2.25rem;
  flex: 1;
}
.founder-stat-div {
  width: 0.5px;
  background: var(--border);
  align-self: stretch;
}
.founder-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.founder-stat-label {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.65;
  line-height: 1.5;
}
.founder-visual { position: relative; }
.founder-img-wrap {
  overflow: hidden;
  position: relative;
  aspect-ratio: 5 / 6;
}
.founder-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.founder-img-wrap:hover img { transform: scale(1.03); }
.founder-badge {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  background: rgba(12,16,20,0.92);
  backdrop-filter: blur(20px);
  border: 0.5px solid var(--glass-border);
  padding: 0.85rem 1.5rem;
}
.badge-text {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(237,232,224,0.45);
}

/* Testimonial author meta */
.author-details {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.author-meta {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(133,123,110,0.5);
}
.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  padding-top: 1.75rem;
  border-top: 0.5px solid var(--border);
}

/* ============================================================
   SECTION TRANSITIONS
   Gradient bleed at the bottom of each section dissolves into
   the next section's background — same technique as the hero.
   ============================================================ */

/* Philosophy (bg-section) → Why OEM (bg-section) — same bg, subtle dissolve */
.philosophy::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 7rem;
  background: linear-gradient(to bottom, transparent, var(--bg-section));
  pointer-events: none;
  z-index: 2;
}

/* Why OEM (bg-section) → Services (bg-primary) */
.why-oem::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 7rem;
  background: linear-gradient(to bottom, transparent, var(--bg-primary));
  pointer-events: none;
}

/* Services (bg-primary) → Mid CTA (bg-section-alt) */
.services::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 7rem;
  background: linear-gradient(to bottom, transparent, var(--bg-section-alt));
  pointer-events: none;
}

/* Mid CTA (bg-section-alt) → Process (bg-primary) */
.mid-cta::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 7rem;
  background: linear-gradient(to bottom, transparent, var(--bg-primary));
  pointer-events: none;
}

/* Process (bg-primary) → Projects (bg-section) */
.process::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 7rem;
  background: linear-gradient(to bottom, transparent, var(--bg-section));
  pointer-events: none;
}

/* Projects (bg-section) → Best For (bg-section-alt) */
.projects-preview::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 7rem;
  background: linear-gradient(to bottom, transparent, var(--bg-section-alt));
  pointer-events: none;
}

/* Best For (bg-section-alt) → Founder (bg-primary) */
.best-for::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 7rem;
  background: linear-gradient(to bottom, transparent, var(--bg-primary));
  pointer-events: none;
}

/* Founder (bg-primary) → Testimonials (bg-section) */
.founder::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 7rem;
  background: linear-gradient(to bottom, transparent, var(--bg-section));
  pointer-events: none;
}

/* Testimonials (bg-section) → CTA (bg-section-alt) */
.testimonials::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 7rem;
  background: linear-gradient(to bottom, transparent, var(--bg-section-alt));
  pointer-events: none;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes wordReveal {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .service-split,
  .service-split--reverse { grid-template-columns: 1fr; }
  .service-image { height: 340px; }
  .service-split--reverse .service-image--right { order: 0; }
  .service-split--reverse .service-content { order: 0; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card:nth-child(2) { border-right: none; }
  .testimonial-card:nth-child(3) { border-top: 0.5px solid var(--border); }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(3) { border-right: 0.5px solid var(--border); border-top: 0.5px solid var(--border); }
  .process-step:nth-child(4) { border-right: none; border-top: 0.5px solid var(--border); }
  .process-step:nth-child(5) { border-right: 0.5px solid var(--border); border-top: 0.5px solid var(--border); }
  .process-step:nth-child(6) { border-right: none; border-top: 0.5px solid var(--border); }
  .why-grid { grid-template-columns: 1fr; }
  .best-for-grid { grid-template-columns: 1fr; gap: 4rem; }
  .founder-inner { grid-template-columns: 1fr; gap: 4rem; }
  .founder-img-wrap { aspect-ratio: 16 / 9; }
  .founder-badge { left: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-trust-inner { gap: 0.5rem; }
  .trust-tag { padding: 0 1rem; font-size: 0.5rem; }
  .trust-sep { display: none; }
  .projects-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; border: none; gap: 0; }
  .testimonial-card {
    border-right: none;
    border-bottom: 0.5px solid var(--border);
  }
  .testimonial-card:nth-child(2) { border-top: none; }
  .testimonial-card:nth-child(3) { border-top: none; border-bottom: none; }
  .testimonial-card:last-child { border-bottom: none; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none !important; border-top: none !important; border-bottom: 0.5px solid var(--border); }
  .process-step:last-child { border-bottom: none; }
  .why-card { padding: 3rem 2.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .service-content { padding: 3.5rem 2.25rem; }
  .service-bg-num { font-size: 6rem; }
  .cta-contact { flex-direction: column; gap: 1.25rem; }
  .cta-divider { display: none; }
  .hero-eyebrow::before { width: 20px; }
  .founder-stats { flex-direction: column; }
  .founder-stat-div { width: auto; height: 0.5px; align-self: stretch; }
  .best-for-grid { grid-template-columns: 1fr; }
}

/* ── INLINE CONTACT FORM (homepage) ───────────────────────── */
.inline-form-section {
  background: var(--bg-primary);
  padding: 8rem 2rem;
  border-bottom: 1px solid var(--border);
}
.inline-form-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.inline-form-inner .gold-rule { margin: 0 auto 1.5rem; }
.inline-form-inner .eyebrow { display: block; margin-bottom: 1rem; }
.inline-form-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}
.inline-form-inner .section-sub { margin-bottom: 3rem; }
.inline-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  text-align: left;
}
.inline-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}
.inline-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.inline-field label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
}
.inline-field input,
.inline-field textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  outline: none;
  width: 100%;
  border-radius: 1px;
  transition: border-color 0.2s;
}
.inline-field input:focus,
.inline-field textarea:focus { border-color: var(--accent); }
.inline-field textarea { resize: vertical; min-height: 120px; }
.inline-form-submit { margin-top: 0.5rem; }
.inline-form-submit button {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2.5rem;
  cursor: pointer;
  border-radius: 1px;
  transition: background 0.25s ease, color 0.25s ease;
}
.inline-form-submit button:hover {
  background: var(--accent);
  color: var(--bg-primary);
}
@media (max-width: 640px) {
  .inline-form-row { grid-template-columns: 1fr; }
}
