:root {
  /* Sampled straight from the MJ&MSA mark: deep ink navy + the bright signal blue */
  --navy-900: #00284f;
  --navy-800: #0a3c6e;
  --navy-700: #145091;
  --blue-500: #0084cf;
  --blue-600: #0070b0;
  --paper: #f5f7f8;
  --paper-alt: #e9edf0;
  --ink: #10161d;
  --ink-soft: #55606b;
  --white: #ffffff;
  --border: rgba(0, 40, 79, 0.14);
  --rule: rgba(0, 40, 79, 0.22);
  --radius: 2px;
  --shadow: 0 20px 40px -20px rgba(0, 40, 79, 0.3);
  --font-display: "Bricolage Grotesque", "Hanken Grotesk", sans-serif;
  --font-body: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.6; }
}

/* Hero illustration choreography — one 14s atelier plate, every track synced to it.
   Draft guides appear first, the garment is drawn over them, then the guides retire. */
@keyframes mjScene {
  0%, 93% { opacity: 1; }
  98.5%, 100% { opacity: 0; }
}

@keyframes mjSway {
  0%, 100% { transform: rotate(-0.7deg); }
  50% { transform: rotate(0.7deg); }
}

@keyframes mjDraftFade {
  0%, 2% { opacity: 0; }
  9% { opacity: 0.45; }
  60% { opacity: 0.45; }
  69%, 100% { opacity: 0; }
}

@keyframes mjDraw1 { 0%, 6%  { stroke-dashoffset: 1; } 16%, 100% { stroke-dashoffset: 0; } }
@keyframes mjDraw2 { 0%, 14% { stroke-dashoffset: 1; } 30%, 100% { stroke-dashoffset: 0; } }
@keyframes mjDraw3 { 0%, 26% { stroke-dashoffset: 1; } 40%, 100% { stroke-dashoffset: 0; } }
@keyframes mjDraw4 { 0%, 38% { stroke-dashoffset: 1; } 50%, 100% { stroke-dashoffset: 0; } }
@keyframes mjDraw5 { 0%, 50% { stroke-dashoffset: 1; } 62%, 100% { stroke-dashoffset: 0; } }

@keyframes mjFill2 { 0%, 26% { fill-opacity: 0; } 40%, 100% { fill-opacity: 1; } }
@keyframes mjFill3 { 0%, 36% { fill-opacity: 0; } 48%, 100% { fill-opacity: 1; } }
@keyframes mjFill4 { 0%, 46% { fill-opacity: 0; } 56%, 100% { fill-opacity: 1; } }

@keyframes mjWeaveIn { 0%, 30% { opacity: 0; } 48%, 100% { opacity: 0.5; } }
@keyframes mjShadowIn { 0%, 30% { opacity: 0; } 55%, 100% { opacity: 1; } }

@keyframes mjStitchIn { 0%, 58% { opacity: 0; } 66%, 100% { opacity: 1; } }
@keyframes mjStitchFlow { to { stroke-dashoffset: -18; } }

@keyframes mjPopA {
  0%, 62% { opacity: 0; transform: scale(0.2); }
  68%, 100% { opacity: 1; transform: scale(1); }
}
@keyframes mjPopB {
  0%, 66% { opacity: 0; transform: scale(0.2); }
  72%, 100% { opacity: 1; transform: scale(1); }
}

@keyframes mjGuideIn { 0%, 68% { opacity: 0; } 76%, 100% { opacity: 0.65; } }
@keyframes mjLabelIn { 0%, 71% { opacity: 0; } 79%, 100% { opacity: 0.75; } }

@keyframes mjSheen {
  0%, 76% { transform: translateX(0) skewX(-10deg); }
  90%, 100% { transform: translateX(600px) skewX(-10deg); }
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal="left"] { transform: translateX(-32px); }
[data-reveal="left"].in-view { transform: translateX(0); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="right"].in-view { transform: translateX(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-copy, .hero-media, .hero-placeholder {
    animation: none !important;
  }
  * { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }

  /* Show the illustration fully drawn instead of mid-choreography */
  .hero-svg * { animation: none !important; }
  .hero-svg .draw { stroke-dashoffset: 0 !important; }
  .hero-svg .cloth { fill-opacity: 1 !important; }
  .hero-svg .scene,
  .hero-svg .stitch,
  .hero-svg .shadow,
  .hero-svg .btn-dot { opacity: 1 !important; }
  .hero-svg .guides path { opacity: 0.65 !important; }
  .hero-svg .svg-label { opacity: 0.75 !important; }
  .hero-svg .weave { opacity: 0.5 !important; }
  .hero-svg .draft { opacity: 0 !important; }
  .hero-svg .sheen { display: none; }
}

/* Blueprint / pattern-paper grid — the recurring "cutting table" motif */
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(0, 40, 79, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 40, 79, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  line-height: 1.5;
}

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 16px;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.3rem, 1.55rem + 2.9vw, 3.75rem); }
h2 { font-size: clamp(1.9rem, 1.55rem + 1.4vw, 2.75rem); }

.accent-italic {
  font-style: italic;
  font-weight: 500;
  color: var(--blue-600);
}

p { margin: 0 0 16px; color: var(--ink-soft); }

/* Eyebrow system — numbered editorial labels */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin: 0 0 14px;
}
.eyebrow-num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0;
  color: var(--navy-900);
  opacity: 0.55;
}
.eyebrow-center::before,
.eyebrow-center::after {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
}
.eyebrow-trail::after {
  content: "";
  width: 60px;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn > span { position: relative; z-index: 1; }
.btn:active { transform: scale(0.98); }
.btn-arrow { transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--navy-900);
  color: var(--white);
}
.btn-primary:hover { background: var(--navy-800); }

.btn-ghost {
  background: transparent;
  color: var(--navy-900);
  border-color: rgba(0, 40, 79, 0.35);
}
.btn-ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--navy-900);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}
.btn-ghost:hover {
  color: var(--white);
  border-color: var(--navy-900);
}
.btn-ghost:hover::before { transform: scaleX(1); }

.btn-block { width: 100%; justify-content: center; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 247, 248, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 8px 24px -18px rgba(0, 40, 79, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
  transition: padding 0.3s ease;
}
.is-scrolled .header-inner {
  padding-top: 10px;
  padding-bottom: 10px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 37px;
  height: 34px;
  display: block;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--navy-900);
  letter-spacing: 0.02em;
}
.logo-mark .amp { color: var(--blue-500); }
.logo-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 2px;
}

.main-nav {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  position: relative;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--blue-500);
  transition: width 0.25s ease;
}
.main-nav a:hover { color: var(--blue-600); }
.main-nav a:hover::after { width: 100%; }

.nav-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy-900);
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  padding: 72px 0 56px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1px 0.9fr;
  column-gap: 44px;
  align-items: center;
}
.hero-rule {
  align-self: stretch;
  width: 1px;
  position: relative;
  background: linear-gradient(to bottom, transparent, var(--rule) 15%, var(--rule) 85%, transparent);
}
.hero-rule::before,
.hero-rule::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid var(--blue-600);
  border-radius: 50%;
  background: var(--paper);
  transform: translateX(-50%);
}
.hero-rule::before { top: 16%; }
.hero-rule::after { bottom: 16%; }
.hero-copy {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-media {
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}
.hero-lead {
  font-size: 18px;
  max-width: 46ch;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-soft);
}
.hero-trust li {
  padding-left: 18px;
  position: relative;
}
.hero-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-500);
  animation: pulseDot 2.4s ease-in-out infinite;
}
.hero-trust li:nth-child(2)::before { animation-delay: 0.3s; }
.hero-trust li:nth-child(3)::before { animation-delay: 0.6s; }

.hero-placeholder {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--navy-800), var(--navy-900));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

/* Hero SVG — atelier line illustration, drawn straight onto the page */
.hero-svg-wrap {
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  overflow: visible;
}
.hero-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-svg .scene { animation: mjScene 14s ease-in-out infinite; }
.hero-svg .sway {
  transform-box: view-box;
  transform-origin: 200px 72px;
  animation: mjSway 9s ease-in-out infinite;
}

/* Pencil drafting guides — thin, dashed, they appear first and retire last */
.hero-svg .draft path {
  fill: none;
  stroke: rgba(0, 40, 79, 0.55);
  stroke-width: 1;
  stroke-dasharray: 5 5;
  stroke-linecap: round;
}
.hero-svg .draft { opacity: 0; animation: mjDraftFade 14s ease-in-out infinite; }

.hero-svg .shadow { opacity: 0; animation: mjShadowIn 14s ease-in-out infinite; }

.hero-svg .gold-line {
  fill: none;
  stroke: var(--blue-600);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Sits behind the garment, so it reads as veiled by the fabric */
.hero-svg .hanger-bar { opacity: 0.5; }

.hero-svg .cloth {
  fill: url(#mj-fabric);
  stroke: rgba(0, 40, 79, 0.72);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* Collar and lapels: a flat, slightly darker tone for depth */
.hero-svg .deep { fill: rgba(0, 40, 79, 0.12); }

.hero-svg .detail {
  fill: none;
  stroke: rgba(0, 40, 79, 0.4);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-svg .draw {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.hero-svg .s1 { animation: mjDraw1 14s ease-in-out infinite; }
.hero-svg .s2 { animation: mjDraw2 14s ease-in-out infinite, mjFill2 14s ease-in-out infinite; }
.hero-svg .s3 { animation: mjDraw3 14s ease-in-out infinite, mjFill3 14s ease-in-out infinite; }
.hero-svg .s4 { animation: mjDraw4 14s ease-in-out infinite, mjFill4 14s ease-in-out infinite; }
.hero-svg .s5 { animation: mjDraw5 14s ease-in-out infinite; }

.hero-svg .weave { opacity: 0; animation: mjWeaveIn 14s ease-in-out infinite; }

.hero-svg .sheen {
  transform-box: view-box;
  animation: mjSheen 14s ease-in-out infinite;
}

.hero-svg .stitch {
  fill: none;
  stroke: var(--blue-600);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-dasharray: 3 6;
  opacity: 0;
  animation: mjStitchIn 14s ease-in-out infinite, mjStitchFlow 1.6s linear infinite;
}

.hero-svg .btn-dot {
  fill: var(--blue-600);
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
}
.hero-svg .pop-a { animation: mjPopA 14s cubic-bezier(0.34, 1.56, 0.64, 1) infinite; }
.hero-svg .pop-b { animation: mjPopB 14s cubic-bezier(0.34, 1.56, 0.64, 1) infinite; }

.hero-svg .guides path {
  fill: none;
  stroke: var(--blue-600);
  stroke-width: 1.2;
  stroke-linecap: round;
  opacity: 0;
  animation: mjGuideIn 14s ease-in-out infinite;
}

.hero-svg .svg-label {
  font: 500 11px var(--font-mono);
  letter-spacing: 0.1em;
  fill: var(--blue-600);
  opacity: 0;
  animation: mjLabelIn 14s ease-in-out infinite;
}

/* Strip */
.strip {
  background-color: var(--navy-900);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  color: var(--white);
  padding: 28px 0;
}
.strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.strip-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--blue-500);
}
.strip-item span {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

/* Sections */
.section { padding: 88px 0; }
.section-alt {
  background-color: var(--paper-alt);
  background-image:
    linear-gradient(rgba(0, 40, 79, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 40, 79, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head h2 { margin-bottom: 12px; }
.section-lead { font-size: 17px; }

/* Catalog — one block per product line, a dense grid of real garments inside */
.catalog-category { margin-bottom: 64px; }
.catalog-category:last-child { margin-bottom: 0; }

.cat-head {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.cat-num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 26px;
  line-height: 1;
  color: var(--blue-600);
  opacity: 0.6;
}
.cat-head h3 { font-size: 23px; margin-bottom: 6px; }
.cat-head p { font-size: 14.5px; max-width: 62ch; margin-bottom: 6px; }

.product-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin: 0;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}
.mini-card {
  position: relative;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}
.mini-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: repeating-linear-gradient(-45deg, var(--blue-500) 0 6px, var(--navy-900) 6px 12px);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}
.mini-card:hover::before { transform: scaleX(1); }
.mini-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(0, 132, 207, 0.4);
}
.mini-thumb {
  aspect-ratio: 3 / 4;
  background: var(--paper-alt);
  overflow: hidden;
}
.mini-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.mini-card:hover .mini-thumb img { transform: scale(1.05); }
.mini-card figcaption {
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.3;
}

.card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-900);
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s ease, transform 0.2s ease;
}
.card-link:hover { color: var(--blue-600); transform: translateX(3px); }

/* About */
.about-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.about-placeholder { aspect-ratio: 4/3; padding: 0; }
.about-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lead-quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--blue-600);
  margin-bottom: 14px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-size: 15px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue-500);
  color: var(--white);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.step-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 19px;
  color: var(--blue-600);
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}
.step:hover .step-num { transform: scale(1.15); }
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { font-size: 14px; margin-bottom: 0; }

/* CTA / contact */
.cta-section {
  background-color: var(--navy-900);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.cta-section .eyebrow { color: var(--blue-500); }
.cta-section h2 { color: var(--white); }
.cta-section .section-lead { color: rgba(255,255,255,0.75); }
.contact-details p {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  margin-bottom: 8px;
}
.contact-details strong { color: var(--white); }
.contact-details a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.contact-details a:hover {
  color: var(--blue-500);
  border-color: var(--blue-500);
}

/* WhatsApp panel — replaces the old contact form */
.whatsapp-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.wa-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  margin-bottom: 18px;
}
.wa-icon svg { width: 24px; height: 24px; }
.whatsapp-panel h3 { font-size: 21px; margin-bottom: 8px; }
.whatsapp-panel p { font-size: 14.5px; margin-bottom: 22px; }

.btn-whatsapp {
  background: #25d366;
  color: #06301c;
}
.btn-whatsapp:hover { background: #1fbd5a; }

.wa-tip {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.wa-tip-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 10px;
}
.wa-tip ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.wa-tip li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--ink-soft);
}
.wa-tip li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-500);
}

/* Footer */
.site-footer {
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-mark { filter: brightness(0) invert(1); opacity: 0.9; }
.footer-logo { color: var(--white); }
.footer-tag { font-size: 12px; color: rgba(255,255,255,0.55); margin: 2px 0 0; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.55); margin: 0; }

/* Responsive */
@media (max-width: 960px) {
  .hero-inner, .about-inner, .cta-inner {
    grid-template-columns: 1fr;
  }
  .hero-rule { display: none; }
  .about-media { order: -1; }
  .mini-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .strip-inner { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
}

@media (max-width: 720px) {
  .main-nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 0 24px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, padding 0.35s ease;
  }
  .main-nav.open {
    max-height: 320px;
    opacity: 1;
    padding: 8px 24px 16px;
  }
  .main-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .site-header { position: sticky; }
  .header-inner { position: relative; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .mini-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-head { grid-template-columns: 40px 1fr; }
  .cat-num { font-size: 26px; }
  .steps { grid-template-columns: 1fr; }
  .whatsapp-panel { padding: 28px; }
  .hero { padding: 48px 0 40px; }
  .section { padding: 60px 0; }
}
