/* ==========================================================================
   J1S CONTRACTING — DESIGN SYSTEM
   Shared stylesheet for all pages
   ========================================================================== */

/* ============ TOKENS ============ */
:root {
  --bg: #f6f3ec;
  --bg-soft: #efeae0;
  --bg-card: #ffffff;
  --ink: #15140f;
  --ink-2: #2c2a24;
  --muted: #6e6a5f;
  --muted-2: #9b968a;
  --line: #e3ddd0;
  --line-2: #d1cabb;
  --accent: #1c6d8e;
  --accent-deep: #0f4a65;
  --accent-soft: #dbeaf0;
  --water: #1c6d8e;
  --water-soft: #dbeaf0;

  --serif: 'Fraunces', 'Georgia', serif;
  --sans: 'DM Sans', system-ui, sans-serif;

  --container: 1280px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px) { .container { padding: 0 20px; } }

/* ============ ANNOUNCEMENT ============ */
.announce {
  background: var(--ink);
  color: var(--bg);
  text-align: center;
  padding: 11px 20px;
  font-size: 13px;
  letter-spacing: 0.01em;
}
.announce strong { font-weight: 600; color: #b8dde8; }
.announce a {
  color: var(--bg);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  margin-left: 6px;
}
.announce a:hover { color: #b8dde8; }
.announce { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 480px) { .announce-hide-sm { display: none; } }

/* ============ NAV ============ */
nav.top {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 243, 236, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  height: 76px;
}
.nav-links a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.2s;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.nav-cta:hover {
  background: var(--accent);
  transform: translateY(-1px);
}
.nav-cta svg { width: 14px; height: 14px; }
@media (max-width: 900px) {
  .nav-links { display: none; }
}
/* ── SERVICES DROPDOWN ── */
.nav-dropdown {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-drop-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-drop-chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
  flex-shrink: 0;
  opacity: 0.55;
}
.nav-dropdown:hover .nav-drop-chevron,
.nav-dropdown:focus-within .nav-drop-chevron { transform: rotate(180deg); opacity: 1; }
.nav-drop-panel {
  position: absolute;
  top: calc(100% + 1px);
  left: -12px;
  width: 460px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-top: 2px solid var(--accent);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 16px 40px -8px rgba(21,20,15,0.14);
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 200;
}
.nav-dropdown:hover .nav-drop-panel,
.nav-dropdown:focus-within .nav-drop-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-drop-link {
  display: flex;
  flex-direction: column;
  padding: 9px 12px;
  border-radius: 5px;
  color: var(--ink-2);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
  line-height: 1.3;
}
.nav-drop-link:hover { background: var(--bg-soft); color: var(--ink); }
.nav-drop-link small {
  font-size: 11px;
  color: var(--muted-2);
  font-weight: 400;
  margin-top: 2px;
}
.nav-drop-view-all {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  margin-top: 4px;
  border-top: 1px solid var(--line);
  color: var(--accent);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 0 0 5px 5px;
  transition: background 0.15s;
}
.nav-drop-view-all:hover { background: var(--accent-soft); }
.nav-drop-featured { background: var(--accent-soft); color: var(--accent) !important; }
.nav-drop-featured:hover { background: var(--accent-soft); filter: brightness(0.97); }
.nav-drop-featured small { color: var(--accent) !important; opacity: 0.75; }
.mob-service-featured { color: var(--accent) !important; font-weight: 600 !important; }
.nav-badge-new {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--water);
  color: #fff;
  padding: 2px 6px;
  border-radius: 999px;
  vertical-align: middle;
  margin-left: 4px;
}



/* ============ TYPOGRAPHY HELPERS ============ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.eyebrow .dash {
  width: 28px;
  height: 1px;
  background: var(--muted-2);
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.section-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

/* ============ PAGE HERO (sub-pages) ============ */
.page-hero {
  padding: 60px 0 80px;
  border-bottom: 1px solid var(--line);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 1000px) {
  .page-hero-grid { grid-template-columns: 1fr; gap: 40px; }
}
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin-bottom: 24px;
}
.page-hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.page-hero p.lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 52ch;
}
.page-hero-photo {
  aspect-ratio: 5 / 4;
  border-radius: 6px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-soft);
  box-shadow: 0 24px 50px -28px rgba(21, 20, 15, 0.35);
  position: relative;
}
.page-hero-photo .pill {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ink);
  text-transform: uppercase;
}

/* ============ BUTTONS ============ */
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.cta-row.center { justify-content: center; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: white;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px -10px rgba(28, 109, 142, 0.5);
}
.btn-primary svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  padding: 16px 26px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  background: transparent;
  transition: all 0.2s;
  cursor: pointer;
  font-family: var(--sans);
  white-space: nowrap;
}
.btn-secondary:hover {
  border-color: var(--ink);
  background: var(--bg-soft);
}
.btn-secondary svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ============ SECTION DEFAULTS ============ */
section { padding: 110px 0; }
@media (max-width: 700px) { section { padding: 80px 0; } }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 70px;
}
@media (max-width: 900px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 50px; }
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(38px, 5.5vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.section-head h2 em { font-style: italic; font-weight: 400; }
.section-head .lede {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 50ch;
}

/* ============ SERVICES GRID (cards) ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1000px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

.service {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px 30px 30px;
  transition: all 0.25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 280px;
  text-decoration: none;
  color: inherit;
}
.service:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -22px rgba(21, 20, 15, 0.25);
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--bg-soft);
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: all 0.25s;
}
.service:hover .service-icon {
  background: var(--accent-soft);
  color: var(--accent);
}
.service-icon svg { width: 26px; height: 26px; stroke-width: 1.5; }
.service h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.service p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.01em;
  margin-top: auto;
}
.service-link svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ============ APPROACH (dark band) ============ */
.approach { background: var(--ink); color: var(--bg); }
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1000px) {
  .approach-grid { grid-template-columns: 1fr; gap: 50px; }
}
.approach h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(38px, 5.5vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--bg);
  margin-bottom: 28px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.approach h2 em {
  font-style: italic;
  color: #b8dde8;
  font-weight: 400;
}
.approach p {
  color: rgba(246, 243, 236, 0.78);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 52ch;
}
.quote {
  border-left: 2px solid var(--accent);
  padding: 8px 0 8px 24px;
  margin-top: 36px;
}
.quote p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 21px;
  line-height: 1.4;
  color: var(--bg);
  letter-spacing: -0.005em;
}
.quote cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 13px;
  color: var(--muted-2);
  margin-top: 18px;
  letter-spacing: 0.02em;
}
.approach-photo {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  background: #2c2a24 url('/photos/semi_lowboy_tractor.jpg') center/cover;
}

/* ============ CTA ============ */
.cta {
  background: var(--bg);
  text-align: center;
  padding: 130px 0;
}
.cta h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 24px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.cta h2 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.cta p {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 50ch;
  margin: 0 auto 40px;
  line-height: 1.55;
}

/* ============ FOOTER ============ */
footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding: 70px 0 36px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.1fr;
  gap: 48px;
  margin-bottom: 60px;
}
@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; } }
@media (max-width: 480px) { .foot-grid { grid-template-columns: 1fr; gap: 36px; } }
.foot-brand {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 14px;
}
.foot-tag {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 36ch;
}
.foot-col h6 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 18px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.foot-col a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 14.5px;
  transition: color 0.2s;
}
.foot-col a:hover { color: var(--accent); }
.foot-col p {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.55;
}
.foot-col p strong { display: block; color: var(--ink); margin-bottom: 4px; font-weight: 600; }
.foot-bottom {
  border-top: 1px solid var(--line-2);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
}
.foot-bottom-links { display: flex; gap: 24px; }
.foot-bottom a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.foot-bottom a:hover { color: var(--ink); }

/* ==========================================================================
   PAGE-SPECIFIC COMPONENTS
   ========================================================================== */

/* ============ PROCESS STEPS ============ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 900px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .process-steps { grid-template-columns: 1fr; } }
.process-step {
  position: relative;
  padding-top: 32px;
  border-top: 1px solid var(--ink);
}
.process-step .step-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  display: block;
}
.process-step h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  color: var(--ink);
  line-height: 1.15;
}
.process-step p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ============ FLEET / EQUIPMENT ============ */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 800px) { .fleet-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .fleet-grid { grid-template-columns: 1fr; } }

.fleet-item {
  padding: 28px 28px 28px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fleet-item:nth-child(3n) { border-right: none; }
@media (max-width: 800px) {
  .fleet-item:nth-child(3n) { border-right: 1px solid var(--line); }
  .fleet-item:nth-child(2n) { border-right: none; }
}
@media (max-width: 540px) { .fleet-item { border-right: none !important; padding-left: 0; padding-right: 0; } }
.fleet-item .qty {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 36px;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.fleet-item .name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-top: 6px;
}
.fleet-item .desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
}

/* ============ FAQ ACCORDION ============ */
.faq {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.faq details summary {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  list-style: none;
  color: var(--ink);
  gap: 24px;
  line-height: 1.3;
}
.faq details summary::-webkit-details-marker { display: none; }
.faq details summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 28px;
  color: var(--accent);
  transition: transform 0.2s;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 70ch;
}

/* ─── PAGE LOADER ─── */
#j1s-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.6, 1),
              transform 0.65s cubic-bezier(0.4, 0, 0.6, 1);
}
#j1s-loader.jl-out {
  opacity: 0;
  transform: translateY(-14px);
  pointer-events: none;
}
.jl-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.jl-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.jl-logo {
  display: block;
  width: 280px;
  height: auto;
  mix-blend-mode: multiply;
}
.jl-track {
  width: 280px;
  height: 2px;
  background: var(--line);
  border-radius: 1px;
  overflow: hidden;
  position: relative;
}
.jl-track::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 45%;
  height: 100%;
  background: var(--accent);
  border-radius: 1px;
  animation: jl-slide 1.1s ease-in-out infinite;
}
@keyframes jl-slide {
  0%   { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}
.jl-sub {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  animation: jl-fadein 1s ease-out 0.3s both;
}
@keyframes jl-fadein {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .jl-track::after { animation: none; }
  .jl-sub   { animation: none; opacity: 1; }
  #j1s-loader { transition: opacity 0.3s; }
}
/* ==========================================================================
   MOBILE HAMBURGER NAVIGATION
   ========================================================================== */

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  border-radius: 6px;
  transition: background 0.2s;
  margin-left: 8px;
}
.nav-mobile-toggle:hover { background: var(--bg-soft); }
.ham-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}
.nav-mobile-toggle.open .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile-toggle.open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-mobile-toggle.open .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(21, 20, 15, 0.45);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s, visibility 0.28s;
}
.nav-mobile-overlay.open { opacity: 1; visibility: visible; }

.nav-mobile-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(340px, 92vw);
  background: var(--bg-card);
  z-index: 999;
  transform: translateX(110%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
  box-shadow: -8px 0 40px -8px rgba(21, 20, 15, 0.18);
}
.nav-mobile-panel.open { transform: translateX(0); }

.mob-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.mob-panel-head .logo-img { height: 30px; }
.mob-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-soft);
  border: none; border-radius: 6px;
  cursor: pointer; color: var(--ink);
  transition: background 0.15s;
  flex-shrink: 0;
}
.mob-close:hover { background: var(--line); }

.mob-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}
.mob-link {
  display: block;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color 0.15s, background 0.15s;
}
.mob-link:hover { color: var(--accent); background: var(--accent-soft); }
.mob-link:last-child { border-bottom: none; }

.mob-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
  border-bottom: 1px solid var(--line);
  user-select: none;
  transition: background 0.15s;
}
.mob-section-head:hover { background: var(--accent-soft); }
.mob-chevron { transition: transform 0.22s ease; flex-shrink: 0; color: var(--muted-2); }
.mob-chevron.rotated { transform: rotate(180deg); }

.mob-services-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.mob-services-list.expanded { max-height: 640px; }
.mob-service-link {
  display: block;
  padding: 11px 20px 11px 40px;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color 0.15s, background 0.15s;
}
.mob-service-link:last-child { border-bottom: none; }
.mob-service-link:hover { color: var(--accent); background: var(--accent-soft); }

.mob-cta-wrap {
  padding: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--bg-soft);
  flex-shrink: 0;
}
.mob-phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  background: var(--bg-card);
  transition: border-color 0.2s, color 0.2s;
}
.mob-phone-link:hover { border-color: var(--accent); color: var(--accent); }
.mob-phone-link svg { flex-shrink: 0; }
.mob-quote-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--bg);
  background: var(--ink);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.mob-quote-btn:hover { background: var(--accent); }

@media (max-width: 900px) {
  .nav-mobile-toggle { display: flex; }
}

/* ==========================================================================
   RESPONSIVE — inline grid sections
   Collapses hardcoded two-column inline grids on mobile.
   These sections use style="grid-template-columns:..." so they can't
   have their own media queries; this targets them by attribute value.
   ========================================================================== */
@media (max-width: 900px) {
  [style*="grid-template-columns: 0.8fr 1.2fr"],
  [style*="grid-template-columns: 1.2fr 0.8fr"],
  [style*="grid-template-columns: 1fr 2fr"],
  [style*="grid-template-columns: 2fr 1fr"],
  [style*="grid-template-columns: 1.4fr 1fr"],
  [style*="grid-template-columns: 1fr 1.4fr"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* Equal two-column grids with large gaps (content sections, not card grids) */
  [style*="grid-template-columns: 1fr 1fr"][style*="gap: 80px"],
  [style*="grid-template-columns: 1fr 1fr"][style*="gap: 60px"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* Materials how-it-works dark band */
  .how-it-works-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}


/* ==========================================================================
   COMPONENT SUPPLEMENT — classes from service/content pages
   ========================================================================== */
/* ============ HOME HERO ============ */
.hero {
  padding: 80px 0 90px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero { padding: 50px 0 70px; }
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.hero-sub {
  font-size: 18.5px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 52ch;
  margin-bottom: 40px;
}


/* ============ HOME HERO PHOTO ============ */
.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-soft) url('/photos/J1S.T800Red.jpg') center/cover;
  box-shadow: 0 30px 60px -30px rgba(21, 20, 15, 0.35), 0 10px 20px -10px rgba(21, 20, 15, 0.2);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(21, 20, 15, 0.35));
}
.hero-photo .badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-photo .badge::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #2bb673;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(43, 182, 115, 0.2);
}
.hero-photo .caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  color: white;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-photo .caption span:last-child {
  font-weight: 400;
  opacity: 0.8;
  font-size: 12px;
}
.hero-photo-wrap {
  position: relative;
}
.hero-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 24px -24px -24px 24px;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  z-index: -1;
}


/* ============ TRUST STRIP ============ */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-cell {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.trust-cell:last-child { border-right: none; }
.trust-cell .num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 44px;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.trust-cell .num sup {
  font-size: 0.5em;
  color: var(--accent);
  font-weight: 500;
  margin-left: 4px;
  top: -0.7em;
}
.trust-cell .lbl {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media (max-width: 800px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-cell:nth-child(2) { border-right: none; }
  .trust-cell:nth-child(1), .trust-cell:nth-child(2) { border-bottom: 1px solid var(--line); }
  .trust-cell .num { font-size: 36px; }
}


/* ============ EXPLAINER (split) ============ */
.explainer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.explainer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 1000px) { .explainer-grid { grid-template-columns: 1fr; gap: 50px; } }
.explainer h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
  font-variation-settings: "opsz" 144;
}
.explainer h3 em {
  font-style: italic;
  color: var(--water);
  font-weight: 400;
}
.explainer p {
  font-size: 16.5px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 52ch;
}
.explainer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.explainer-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
}
.explainer-list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--water);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-top: 3px;
}
.explainer-photo {
  aspect-ratio: 5 / 4;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-card) url('/photos/HydroVac2.jpg') center/cover;
  position: relative;
  box-shadow: 0 24px 50px -28px rgba(21, 20, 15, 0.35);
}
.explainer-photo .pill {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--water);
  color: white;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


/* ============ WHY (4-col) ============ */
.why { background: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }

.why-cell {
  padding: 40px 28px 36px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-cell:last-child { border-right: none; }
@media (max-width: 900px) {
  .why-cell:nth-child(2n) { border-right: none; }
}
@media (max-width: 540px) { .why-cell { border-right: none; padding-left: 0; padding-right: 0; } }
.why-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.why-cell h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.why-cell p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}


/* ============ PROJECTS GRID ============ */
.projects {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
.projects-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 28px;
}
@media (max-width: 900px) { .projects-grid { grid-template-columns: 1fr; } }
.project {
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-card);
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.project:hover { transform: translateY(-4px); }
.project-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--bg);
  position: relative;
  overflow: hidden;
}
.project-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(21, 20, 15, 0.7));
  transition: opacity 0.3s;
}
.project-large { grid-column: 1; grid-row: 1 / span 2; }
.project-large .project-img { aspect-ratio: 4 / 5; }
.project-meta {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  color: white;
  z-index: 2;
}
.project-meta .type {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 8px;
}
.project-meta h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.project-meta .loc {
  font-size: 13px;
  opacity: 0.8;
  margin-top: 6px;
}


/* ============ PROJECTS PAGE GRID (uniform) ============ */
.projects-uniform {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .projects-uniform { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .projects-uniform { grid-template-columns: 1fr; } }
.projects-uniform .project .project-img { aspect-ratio: 4 / 3; }
@media (max-width: 600px) { .project-meta h4 { display: none; } }
.svc-area-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 40px; }
@media (max-width: 1000px) { .svc-area-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .svc-area-grid { grid-template-columns: repeat(2, 1fr); } }


/* ============ SERVICE DETAIL (long-form section) ============ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 90px 0;
  border-bottom: 1px solid var(--line);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse .sd-photo { order: 2; }
@media (max-width: 900px) {
  .service-detail { grid-template-columns: 1fr; gap: 40px; padding: 70px 0; }
  .service-detail.reverse .sd-photo { order: 0; }
}
.sd-photo {
  aspect-ratio: 5 / 4;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--bg-soft);
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: 0 24px 50px -28px rgba(21, 20, 15, 0.3);
}
.sd-photo .pill {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ink);
  text-transform: uppercase;
}
.sd-photo .pill.water { background: var(--water); color: white; }
.sd-content .sd-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--accent);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  display: block;
}
.sd-content h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 18px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.sd-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 16px;
  max-width: 50ch;
}
.sd-list {
  list-style: none;
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
@media (max-width: 600px) { .sd-list { grid-template-columns: 1fr; } }
.sd-list li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-2);
  align-items: flex-start;
  line-height: 1.5;
}
.sd-list li::before {
  content: "—";
  color: var(--accent);
  font-weight: 500;
  flex-shrink: 0;
}


/* ============ SPECS GRID ============ */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
@media (max-width: 800px) { .specs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .specs-grid { grid-template-columns: 1fr; } }
.spec-item {
  padding: 28px 24px 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.spec-item:nth-child(3n) { border-right: none; }
@media (max-width: 800px) {
  .spec-item:nth-child(3n) { border-right: 1px solid var(--line); }
  .spec-item:nth-child(2n) { border-right: none; }
}
@media (max-width: 480px) {
  .spec-item { border-right: none !important; padding-left: 0; padding-right: 0; }
}
.spec-item .k {
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 500;
}
.spec-item .v {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 30px;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.spec-item .v.water-v { color: var(--water); }
.spec-item .v small {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-left: 6px;
}


/* ============ TIMELINE ============ */
.timeline {
  position: relative;
  padding-left: 0;
  display: flex;
  flex-direction: column;
}
.milestone {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.milestone:first-child { padding-top: 0; }
.milestone:last-child { border-bottom: none; }
@media (max-width: 600px) {
  .milestone { grid-template-columns: 1fr; gap: 12px; }
}
.milestone .year {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  font-size: 30px;
  letter-spacing: -0.02em;
  line-height: 1;
  padding-top: 4px;
}
.milestone h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  color: var(--ink);
  line-height: 1.2;
}
.milestone p {
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 60ch;
}


/* ============ TEAM ============ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; } }
.team-member { display: flex; flex-direction: column; }
.team-photo {
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  background-color: var(--bg-soft);
  background-size: cover;
  background-position: center;
  margin-bottom: 22px;
}
.team-member h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 4px;
}
.team-member .role {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
}
.team-member p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}


/* ============ FILTER PILLS ============ */
.filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.filter-pill {
  padding: 10px 18px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: transparent;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--sans);
}
.filter-pill:hover { border-color: var(--ink); color: var(--ink); }
.filter-pill.active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}


/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
}
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 40px;
}
@media (max-width: 600px) { .form-card { padding: 28px 22px; } }
.form-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  color: var(--ink);
}
.form-card .form-sub {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 28px;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}
.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 22px;
}
@media (max-width: 540px) { .form-row.two { grid-template-columns: 1fr; gap: 22px; } }
.form-row.two > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-row label {
  font-size: 12px;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--ink-2);
  text-transform: uppercase;
}
.form-row input,
.form-row select,
.form-row textarea {
  padding: 14px 16px;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 15px;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--bg-card);
}
.form-row textarea {
  resize: vertical;
  min-height: 140px;
  font-family: var(--sans);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--bg-card);
}
.info-card h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.info-card .big {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.25;
}
.info-card a.big {
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s;
}
.info-card a.big:hover { color: var(--accent); }
.info-card .meta {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.5;
}


/* ============ SERVICE AREA ============ */
.area-block {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 800px) {
  .area-block { grid-template-columns: 1fr; padding: 28px; }
}
.area-block h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.area-block p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 16px;
}
.area-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}
.area-list li {
  font-size: 14.5px;
  color: var(--ink-2);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.area-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.area-map {
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}


/* ============ VALUES (about page) ============ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
@media (max-width: 800px) { .values-grid { grid-template-columns: 1fr; gap: 40px; } }
.value-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.value-item .num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-size: 22px;
}
.value-item h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}
.value-item p {
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 50ch;
}


/* ============ COMPARE TABLE ============ */
.compare {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-card);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.compare-row:last-child { border-bottom: none; }
.compare-row.head .compare-cell {
  background: var(--bg-soft);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}
.compare-cell {
  padding: 18px 22px;
  border-right: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--ink-2);
  display: flex;
  align-items: center;
}
.compare-cell:last-child { border-right: none; }
.compare-cell.label {
  font-weight: 500;
  color: var(--ink);
}
.compare-cell.yes { color: var(--water); font-weight: 600; }
.compare-cell.yes::before {
  content: "✓";
  margin-right: 8px;
  font-size: 16px;
}
.compare-cell.no { color: var(--muted-2); }
.compare-cell.no::before {
  content: "—";
  margin-right: 8px;
}
@media (max-width: 600px) {
  .compare-row { grid-template-columns: 1.6fr 0.7fr 0.7fr; }
  .compare-cell { padding: 12px 10px; font-size: 12.5px; }
  .compare-cell.yes::before, .compare-cell.no::before { margin-right: 4px; }
}


/* ============ CREDENTIALS ============ */
.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 700px) { .cred-grid { grid-template-columns: repeat(2, 1fr); } }
.cred-item {
  padding: 28px 24px 24px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cred-item:nth-child(4n) { border-right: none; }
@media (max-width: 700px) {
  .cred-item:nth-child(4n) { border-right: 1px solid var(--line); }
  .cred-item:nth-child(2n) { border-right: none; }
}
.cred-item .label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 10px;
}
.cred-item h5 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
}


/* ─── PAGE LOADER ─── */
#j1s-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.6, 1),
              transform 0.65s cubic-bezier(0.4, 0, 0.6, 1);
}
#j1s-loader.jl-out {
  opacity: 0;
  transform: translateY(-14px);
  pointer-events: none;
}
.jl-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.jl-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.jl-logo {
  display: block;
  width: 280px;
  height: auto;
  mix-blend-mode: multiply;
}
.jl-track {
  width: 280px;
  height: 2px;
  background: var(--line);
  border-radius: 1px;
  overflow: hidden;
  position: relative;
}
.jl-track::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 45%;
  height: 100%;
  background: var(--accent);
  border-radius: 1px;
  animation: jl-slide 1.1s ease-in-out infinite;
}
@keyframes jl-slide {
  0%   { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}
.jl-sub {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  animation: jl-fadein 1s ease-out 0.3s both;
}
@keyframes jl-fadein {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .jl-track::after { animation: none; }
  .jl-sub   { animation: none; opacity: 1; }
  #j1s-loader { transition: opacity 0.3s; }
}




/* ============ CREDENTIALS GRID ============ */
.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(246, 243, 236, 0.15);
  margin-top: 52px;
}
@media (max-width: 700px) { .cred-grid { grid-template-columns: repeat(2, 1fr); } }
.cred-item {
  padding: 28px 24px 24px 24px;
  border-right: 1px solid rgba(246, 243, 236, 0.15);
  border-bottom: 1px solid rgba(246, 243, 236, 0.15);
}
.cred-item:nth-child(4n) { border-right: none; }
@media (max-width: 700px) {
  .cred-item:nth-child(4n) { border-right: 1px solid rgba(246, 243, 236, 0.15); }
  .cred-item:nth-child(2n) { border-right: none; }
}
.cred-item .cred-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 243, 236, 0.5);
  font-weight: 600;
  margin-bottom: 12px;
}
.cred-item h5 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--bg);
  line-height: 1.3;
}



/* ============ SPECS GRID ============ */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 800px) { .specs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .specs-grid { grid-template-columns: 1fr; } }
.spec-item {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.spec-item:nth-child(3n) { border-right: none; }
.spec-item .k {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.spec-item .v {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.spec-item .water-v { color: var(--accent); }

