/* ============================================================
   CRATEWELL — Moving & Relocation Company
   Design system: signal-orange industrial / motion-driven
   Fonts: Bricolage Grotesque (display) · Figtree (body) · Space Mono (labels)
   ============================================================ */

:root {
  /* palette — neutral ink + signal orange */
  --ink: #141210;
  --ink-2: #23201b;
  --ink-3: #322d26;
  --paper: #f1f2f0;
  --paper-2: #e7e8e4;
  --card: #ffffff;
  --line: rgba(20, 18, 16, 0.12);
  --line-2: rgba(20, 18, 16, 0.07);
  --line-dark: rgba(255, 255, 255, 0.12);
  --muted: #6c6960;
  --muted-2: #928e83;
  --accent: #ff4a1c;
  --accent-ink: #d63807;
  --accent-soft: #ffe9e1;

  /* type */
  --font-display: "Bricolage Grotesque", "Figtree", sans-serif;
  --font-body: "Figtree", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;

  --text-hero: clamp(2.7rem, 1.3rem + 4.6vw, 5.6rem);
  --text-h2: clamp(2.1rem, 1.2rem + 3.4vw, 4.1rem);
  --text-h3: clamp(1.4rem, 1.05rem + 1.3vw, 2rem);
  --text-lead: clamp(1.06rem, 0.98rem + 0.4vw, 1.28rem);

  /* rhythm */
  --container: 1240px;
  --gutter: clamp(1.15rem, 0.6rem + 2.4vw, 2.75rem);
  --space-section: clamp(4.5rem, 3rem + 6vw, 9rem);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 30px;

  --dur: 320ms;
  --dur-fast: 160ms;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: 0 22px 60px -30px rgba(20, 18, 16, 0.5);
  --shadow-sm: 0 12px 30px -20px rgba(20, 18, 16, 0.45);
}

/* ---------- reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: 0 0 10px 0;
  z-index: 200;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ---------- layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-ink);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
}
.eyebrow.on-dark { color: var(--accent); }

.section { padding-block: var(--space-section); }

.section-head {
  display: grid;
  gap: 1.1rem;
  max-width: 640px;
  margin-bottom: clamp(2.2rem, 1rem + 4vw, 3.6rem);
}
.section-head h2 { font-size: var(--text-h2); }
.section-head p { color: var(--muted); font-size: var(--text-lead); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.92rem 1.5rem;
  border-radius: 100px;
  transition: transform var(--dur-fast) var(--ease),
    background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; transition: transform var(--dur) var(--ease); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-ink); transform: translateY(-2px); }
.btn-primary:hover svg { transform: translate(3px, -3px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-2); transform: translateY(-2px); }
.btn-ghost { border: 1.5px solid var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-ghost.on-dark { border-color: var(--line-dark); color: #fff; }
.btn-ghost.on-dark:hover { border-color: #fff; }
.btn-lg { padding: 1.05rem 1.8rem; font-size: 1.04rem; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.site-header.scrolled { border-color: var(--line); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 78px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.32rem;
  letter-spacing: -0.03em;
}
.brand .mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--accent);
  display: grid;
  place-items: center;
  color: #fff;
  flex: 0 0 auto;
}
.brand .mark svg { width: 20px; height: 20px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-weight: 500;
  font-size: 0.96rem;
}
.nav-links a { color: var(--muted); transition: color var(--dur-fast); position: relative; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--accent);
}
.header-cta { display: flex; align-items: center; gap: 0.9rem; }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--line); }
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); margin: 3px auto; transition: transform var(--dur), opacity var(--dur); }

/* ---------- hero ---------- */
.hero { padding-top: clamp(2.5rem, 1rem + 5vw, 5rem); padding-bottom: 0; position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 1rem + 2vw, 3rem);
  align-items: end;
}
.hero-copy { display: flex; flex-direction: column; }
.hero h1 {
  font-size: var(--text-hero);
  letter-spacing: -0.035em;
  margin-top: 1.4rem;
}
.hero h1 .stroke { color: var(--accent); }
.hero-lead {
  color: var(--muted);
  font-size: var(--text-lead);
  max-width: 30ch;
  margin-top: 1.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.hero-stats {
  display: flex;
  gap: clamp(1.2rem, 0.5rem + 2vw, 2.6rem);
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-stat .num { font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; letter-spacing: -0.03em; }
.hero-stat .lbl { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 0.15rem; }

.hero-visual { position: relative; }
.hero-photo {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  aspect-ratio: 5 / 6;
  background: var(--paper-2);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  background: color-mix(in srgb, var(--ink) 85%, transparent);
  backdrop-filter: blur(8px);
  color: #fff;
  border-radius: 100px;
  padding: 0.5rem 0.95rem 0.5rem 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #46d67f; box-shadow: 0 0 0 0 rgba(70, 214, 127, 0.6); animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(70, 214, 127, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(70, 214, 127, 0); }
  100% { box-shadow: 0 0 0 0 rgba(70, 214, 127, 0); }
}
.hero-quote-card {
  position: absolute;
  right: 16px;
  bottom: 22px;
  background: var(--card);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1.1rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 78%;
}
.hero-quote-card .qc-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--accent-soft); color: var(--accent-ink); display: grid; place-items: center; flex: 0 0 auto; }
.hero-quote-card .qc-icon svg { width: 22px; height: 22px; }
.hero-quote-card .qc-num { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; }
.hero-quote-card .qc-lbl { font-size: 0.78rem; color: var(--muted); }

/* ---------- marquee ---------- */
.marquee {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  border-block: 1px solid var(--ink);
}
.marquee-track {
  display: flex;
  gap: 3.2rem;
  width: max-content;
  padding-block: 1.05rem;
  animation: scroll-x 34s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
}
.marquee-item svg { width: 16px; height: 16px; color: var(--accent); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- services (bento) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.svc {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur);
}
.svc:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: var(--line); }
.svc-col-3 { grid-column: span 3; }
.svc-col-2 { grid-column: span 2; }
.svc-feature { grid-column: span 3; grid-row: span 2; background: var(--ink); color: #fff; min-height: 460px; }
.svc-num { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.14em; color: var(--muted); }
.svc-feature .svc-num { color: var(--muted-2); }
.svc-ico { width: 50px; height: 50px; border-radius: 13px; background: var(--accent-soft); color: var(--accent-ink); display: grid; place-items: center; margin-bottom: auto; }
.svc-ico svg { width: 26px; height: 26px; }
.svc-feature .svc-ico { background: rgba(255, 74, 28, 0.16); color: var(--accent); }
.svc h3 { font-size: var(--text-h3); margin-top: 1.3rem; }
.svc p { color: var(--muted); margin-top: 0.5rem; font-size: 0.96rem; }
.svc-feature p { color: rgba(255, 255, 255, 0.72); }
.svc-feature-img { border-radius: var(--radius-sm); overflow: hidden; margin-top: 1.4rem; aspect-ratio: 16 / 10; }
.svc-feature-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-link { margin-top: 1.1rem; font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-ink); display: inline-flex; align-items: center; gap: 0.4rem; }
.svc-feature .svc-link { color: var(--accent); }
.svc-link svg { width: 14px; height: 14px; transition: transform var(--dur); }
.svc:hover .svc-link svg { transform: translateX(4px); }

/* ---------- route / process spine ---------- */
.route { background: var(--paper-2); }
.route-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  position: relative;
}
.route-track::before {
  content: "";
  position: absolute;
  top: 33px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 10px, transparent 10px 20px);
}
.route-step { position: relative; }
.route-node {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  position: relative;
  z-index: 1;
  transition: background var(--dur), color var(--dur);
}
.route-step:hover .route-node { background: var(--accent); border-color: var(--accent); color: #fff; }
.route-step h3 { font-size: 1.28rem; margin-top: 1.3rem; }
.route-step p { color: var(--muted); margin-top: 0.5rem; font-size: 0.95rem; }
.route-step .tag { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-ink); margin-top: 0.9rem; display: block; }

/* ---------- stats band ---------- */
.stats {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2.4rem, 1.5rem + 3vw, 4rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat-cell { border-left: 2px solid var(--accent); padding-left: 1.2rem; }
.stat-cell .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 1.4rem + 3vw, 3.8rem); letter-spacing: -0.03em; }
.stat-cell .lbl { color: rgba(255, 255, 255, 0.7); font-size: 0.92rem; margin-top: 0.3rem; }

/* ---------- feature split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); width: 100%; aspect-ratio: 5 / 6; object-fit: cover; }
.split-media .float-chip {
  position: absolute;
  bottom: 20px;
  left: -18px;
  background: var(--card);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.split-media .float-chip .rate { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: var(--accent); }
.split-media .float-chip small { display: block; font-size: 0.8rem; color: var(--muted); }
.split h2 { font-size: var(--text-h2); margin-top: 1.1rem; }
.check-list { display: grid; gap: 1rem; margin-top: 1.8rem; }
.check-list li { display: flex; gap: 0.85rem; align-items: flex-start; }
.check-list .ci { width: 26px; height: 26px; border-radius: 8px; background: var(--accent-soft); color: var(--accent-ink); display: grid; place-items: center; flex: 0 0 auto; margin-top: 2px; }
.check-list .ci svg { width: 15px; height: 15px; }
.check-list strong { font-weight: 600; }
.check-list p { color: var(--muted); font-size: 0.94rem; }

/* ---------- testimonials ---------- */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.tst {
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.tst .stars { color: var(--accent); display: flex; gap: 3px; }
.tst .stars svg { width: 16px; height: 16px; }
.tst blockquote { font-size: 1.05rem; line-height: 1.55; }
.tst-who { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }
.tst-who img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.tst-who .n { font-weight: 600; font-size: 0.94rem; }
.tst-who .r { font-family: var(--font-mono); font-size: 0.72rem; color: var(--muted); letter-spacing: 0.04em; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2.6rem, 1.5rem + 4vw, 5rem);
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% -10%, rgba(255, 255, 255, 0.22), transparent 55%);
  pointer-events: none;
}
.cta-band h2 { font-size: var(--text-h2); max-width: 16ch; position: relative; }
.cta-band p { max-width: 42ch; margin-top: 1rem; color: rgba(255, 255, 255, 0.9); font-size: var(--text-lead); position: relative; }
.cta-band .btn-dark { margin-top: 2rem; position: relative; }
.cta-band .btn-dark:hover { background: #000; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.72); padding-top: clamp(3.5rem, 2rem + 4vw, 5.5rem); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-dark); }
.footer-brand .brand { color: #fff; margin-bottom: 1.1rem; }
.footer-brand p { max-width: 34ch; font-size: 0.95rem; }
.footer-col h4 { font-family: var(--font-mono); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 1.1rem; }
.footer-col a { display: block; padding: 0.35rem 0; color: rgba(255, 255, 255, 0.72); transition: color var(--dur-fast); font-size: 0.95rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding-block: 1.8rem; font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.04em; color: var(--muted-2); }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-dark); display: grid; place-items: center; color: #fff; transition: background var(--dur-fast), border-color var(--dur-fast); }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); }
.footer-social svg { width: 16px; height: 16px; }

/* ---------- page hero (inner pages) ---------- */
.page-hero { padding-top: clamp(3rem, 2rem + 3vw, 5rem); padding-bottom: clamp(2rem, 1rem + 3vw, 3.5rem); }
.page-hero .crumb { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.2rem; }
.page-hero h1 { font-size: clamp(2.6rem, 1.4rem + 4.5vw, 5rem); letter-spacing: -0.035em; max-width: 16ch; }
.page-hero p { color: var(--muted); font-size: var(--text-lead); max-width: 52ch; margin-top: 1.3rem; }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; align-items: start; }
.price {
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.price.featured { background: var(--ink); color: #fff; box-shadow: var(--shadow); }
.price .tier { font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-ink); }
.price.featured .tier { color: var(--accent); }
.price .amt { font-family: var(--font-display); font-weight: 800; font-size: 3rem; letter-spacing: -0.03em; }
.price .amt span { font-family: var(--font-body); font-weight: 500; font-size: 1rem; color: var(--muted); }
.price.featured .amt span { color: var(--muted-2); }
.price ul { display: grid; gap: 0.8rem; }
.price li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.95rem; }
.price li svg { width: 18px; height: 18px; color: var(--accent); flex: 0 0 auto; margin-top: 2px; }
.price .btn { justify-content: center; }

/* ---------- contact / forms ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 1rem + 3vw, 4rem); align-items: start; }
.contact-info .info-item { display: flex; gap: 1rem; padding: 1.3rem 0; border-bottom: 1px solid var(--line); }
.contact-info .info-item:first-child { padding-top: 0; }
.contact-info .ii-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--accent-soft); color: var(--accent-ink); display: grid; place-items: center; flex: 0 0 auto; }
.contact-info .ii-ico svg { width: 22px; height: 22px; }
.contact-info h4 { font-family: var(--font-display); font-size: 1.05rem; }
.contact-info p, .contact-info a { color: var(--muted); font-size: 0.96rem; }
.contact-info a:hover { color: var(--accent-ink); }
.form-card { background: var(--card); border: 1px solid var(--line-2); border-radius: var(--radius); padding: clamp(1.5rem, 1rem + 2vw, 2.4rem); box-shadow: var(--shadow-sm); }
.field { display: grid; gap: 0.45rem; margin-bottom: 1.1rem; }
.field label { font-size: 0.82rem; font-weight: 600; }
.field input, .field select, .field textarea {
  font: inherit;
  font-size: 0.96rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 0.4rem; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 0.9rem; text-align: center; }

/* ---------- about values ---------- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.value { padding: 1.7rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); }
.value .vi { width: 48px; height: 48px; border-radius: 12px; background: var(--ink); color: var(--accent); display: grid; place-items: center; margin-bottom: 1.2rem; }
.value .vi svg { width: 24px; height: 24px; }
.value h3 { font-size: 1.2rem; }
.value p { color: var(--muted); margin-top: 0.5rem; font-size: 0.95rem; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.member img { border-radius: var(--radius); aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.member h4 { font-family: var(--font-display); font-size: 1.1rem; margin-top: 1rem; }
.member p { font-family: var(--font-mono); font-size: 0.76rem; color: var(--accent-ink); letter-spacing: 0.04em; }

/* ---------- reveal animation (JS-gated so content is visible without JS) ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js [data-reveal].in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; }
  .hero-photo { border-radius: var(--radius-lg); aspect-ratio: 16 / 11; }
  .svc-feature { grid-row: span 1; min-height: 320px; }
  .svc-col-3, .svc-col-2, .svc-feature { grid-column: span 3; }
  .split { grid-template-columns: 1fr; }
  .split-media { max-width: 480px; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav-links, .header-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-col-3, .svc-col-2, .svc-feature { grid-column: span 1; }
  .route-track { grid-template-columns: 1fr 1fr; gap: 2rem 1.2rem; }
  .route-track::before { display: none; }
  .stats { grid-template-columns: 1fr 1fr; }
  .tst-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  /* mobile nav panel */
  .nav-links.open {
    display: flex;
    position: fixed;
    inset: 78px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 1rem var(--gutter) 1.5rem;
    z-index: 99;
  }
  .nav-links.open a { padding: 0.9rem 0; width: 100%; border-bottom: 1px solid var(--line-2); font-size: 1.05rem; }
}
@media (max-width: 460px) {
  .route-track { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
