/* ============================================================
   BELRON GROUP — styles.css
   Sections:
     1.  Reset & Base
     2.  CSS Variables
     3.  Typography
     4.  Layout Utilities
     5.  Header / Navigation
     6.  Mobile Navigation
     7.  Hero Section
     8.  Services Section
     9.  About Section
    10.  Contact Section
    11.  Footer
    12.  Animations & Transitions
    13.  Responsive Media Queries
    14.  Accessibility
============================================================ */


/* ============================================================
   1. RESET & BASE
============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

ul,
ol {
  list-style: none;
}


/* ============================================================
   2. CSS VARIABLES
============================================================ */

:root {
  /* Colors */
  --black:       #0A0A0A;
  --off-black:   #141414;
  --charcoal:    #1E1E1E;
  --mid:         #3A3A3A;
  --muted:       #6B7280;
  --rule:        #E2E2E2;
  --white:       #FFFFFF;
  --off-white:   #FAFAFA;
  --warm-white:  #F7F7F4;
  --cool-gray:   #F4F6F7;

  /* Typography */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;

  /* Layout */
  --header-h:  84px;
  --max-w:     1200px;
  --section-v: clamp(60px, 8vw, 110px);

  /* Easing */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
}


/* ============================================================
   3. TYPOGRAPHY
============================================================ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1;
  color: var(--black);
}

p {
  font-family: var(--font-body);
}

.label-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #9CA3AF;
  font-weight: 700;
}


/* ============================================================
   4. LAYOUT UTILITIES
============================================================ */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }


/* ============================================================
   5. HEADER / NAVIGATION
============================================================ */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  transition: box-shadow 0.3s var(--ease-out);
}

.header.scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 150px 1fr 420px;
  align-items: center;
}

/* Column 1 — Logo */
.header-logo {
  grid-column: 1;
  justify-self: start;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header-logo img {
  width: 92px;
  height: auto;
  display: block;
}

/* Column 2 — Wordmark */
.header-wordmark {
  grid-column: 2;
  justify-self: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 12px;
  padding-left: 12px;
  color: var(--black);
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Column 3 — Nav */
.header-nav {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 42px;
  list-style: none;
}

.header-nav a {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.header-nav a:hover,
.header-nav a:focus {
  color: var(--black);
  border-bottom-color: var(--black);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  padding: 4px;
  grid-column: 3;
  justify-self: end;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--black);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
  transform-origin: center;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}


/* ============================================================
   6. MOBILE NAVIGATION DRAWER
============================================================ */

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--white);
  z-index: 99;
  flex-direction: column;
  padding: 32px clamp(20px, 5vw, 48px);
  border-top: 1px solid var(--rule);
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
  pointer-events: none;
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.06em;
  color: var(--black);
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--muted);
}


/* ============================================================
   7. HERO SECTION
============================================================ */

.hero {
  background: var(--white);
  padding-top: calc(var(--header-h) + 64px);
  padding-bottom: 32px;
  padding-left: clamp(16px, 4vw, 80px);
  padding-right: clamp(16px, 4vw, 80px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dark card */
.hero-card {
  position: relative;
  width: 78vw;
  max-width: 1180px;
  min-height: 615px;
  background: linear-gradient(90deg, #101010 0%, #151515 45%, #2f2f2f 100%);
  overflow: visible;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
}

/* Fine grid overlay */
.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* Grid texture */
.hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* Subtle top accent line */
.hero-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  z-index: 2;
}

/* Atmospheric right-side fade */
.hero-card-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Content */
.hero-body {
  position: relative;
  z-index: 3;
  margin-left: 80px;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 60px 0;
}

.hero-kicker {
  font-family: var(--font-mono);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 5.5px;
  text-transform: uppercase;
  color: #D8DCE2;
  margin-bottom: 34px;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 0.94;
  font-weight: 800;
  letter-spacing: 8.5px;
  color: var(--white);
  margin-bottom: 34px;
  max-width: 560px;
}

.hero h1 .dim {
  color: #747C88;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.8;
  color: #D1D5DB;
  max-width: 480px;
  margin-bottom: 38px;
  font-weight: 300;
}

/* Hero CTA button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 320px;
  padding: 0 52px;
  height: 60px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  white-space: nowrap;
  border: none;
  border-radius: 0;
  position: relative;
  z-index: 5;
  margin-top: 0;
  flex-shrink: 0;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-cta:hover {
  background: #EBEBEB;
}


/* ============================================================
   8. SERVICES SECTION
============================================================ */

.services {
  padding: 100px 0 110px;
  background: var(--cool-gray);
}

/* Section header — title only, no label */
.services-header {
  margin-bottom: 54px;
}

.services-title {
  font-family: var(--font-display);
  font-size: 88px;
  letter-spacing: 6px;
  font-weight: 800;
  text-transform: uppercase;
  color: #111111;
  line-height: 0.95;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid #D9D9D9;
}

/* Cards */
.service-card {
  background: #ffffff;
  padding: 64px 52px;
  min-height: 380px;
  border-radius: 0;
  border-right: 1px solid #D9D9D9;
  position: relative;
  transition: background 0.25s;
}

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

/* Left accent bar on hover */
.service-card::before {
  display: none;
}

.service-card:hover {
  background: #111111;
}

.service-card:hover .service-title {
  color: #ffffff;
}

.service-card:hover .service-desc {
  color: #D1D5DB;
}

.service-title {
  font-family: var(--font-display);
  font-size: 42px;
  letter-spacing: 2px;
  font-weight: 900;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 30px;
  line-height: 1.0;
  transition: color 0.25s;
}

.service-desc {
  font-size: 17px;
  line-height: 1.65;
  color: #4B5563;
  font-weight: 400;
  max-width: 340px;
  transition: color 0.25s;
}


/* ============================================================
   9. ABOUT SECTION
============================================================ */

.about {
  padding: 52px 0 56px;
  background: var(--cool-gray);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

/* Left column */
.about-left {
  display: flex;
  flex-direction: column;
}

.about-title {
  font-family: var(--font-display);
  font-size: 74px;
  letter-spacing: 3px;
  font-weight: 800;
  text-transform: uppercase;
  color: #111111;
  line-height: 0.97;
  margin-bottom: 16px;
}

.about-body p {
  font-size: 18px;
  line-height: 1.72;
  color: #2D2D33;
  font-weight: 300;
  max-width: 424px;
  margin-bottom: 10px;
}

.about-body p:last-child {
  margin-bottom: 18px;
}

/* About CTA */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  padding: 0 44px;
  border: 1.5px solid #0A0A0A;
  color: #0A0A0A;
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-outline:hover {
  background: #0A0A0A;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Right column — logistics image panel */
.about-visual {
  position: relative;
  width: 541px;
  height: 541px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.about-visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-visual-overlay {
  position: absolute;
  inset: 0;
  background:
    rgba(0, 0, 0, 0.08),
    radial-gradient(ellipse at center, transparent 60%, rgba(0, 0, 0, 0.28) 100%);
  z-index: 1;
  pointer-events: none;
}


/* ============================================================
   10. CONTACT SECTION
============================================================ */

.contact {
  padding: 48px 0 56px;
  background: #FFFFFF;
}

.contact-title {
  font-family: var(--font-display);
  font-size: 88px;
  line-height: 0.95;
  letter-spacing: 6px;
  font-weight: 900;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 36px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: stretch;
}

/* Form card */
.contact-form-wrap {
  background: #ffffff;
  border: 1px solid #D1D5DB;
  padding: 40px 48px;
  border-radius: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
  height: 100%;
  min-height: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 800;
  text-transform: uppercase;
  color: #6B7280;
  margin-bottom: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #D1D5DB;
  background: #FAFAFA;
  color: #111111;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  border-radius: 0;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input {
  height: 52px;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #111111;
  background: #ffffff;
}

.form-group textarea {
  resize: none;
  height: 165px;
  min-height: unset;
  font-size: 16px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9CA3AF;
}

/* Submit button */
.btn-submit {
  width: 100%;
  height: 50px;
  background: #111111;
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 3px;
  line-height: 1;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  flex-shrink: 0;
  transition: background 0.2s;
}

.btn-submit:hover {
  background: #2B2B2B;
}

/* Contact info card */
.contact-info-wrap {
  background: #ffffff;
  border: 1px solid #D1D5DB;
  padding: 40px 48px;
  border-radius: 0;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.contact-info-title {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  letter-spacing: 2px;
  font-weight: 900;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 32px;
}

.contact-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-item {
  padding: 14px 0;
  border-bottom: 1px solid #E5E7EB;
}

.contact-item:first-child {
  padding-top: 0;
}

.contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-item-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 800;
  text-transform: uppercase;
  color: #6B7280;
  margin-bottom: 8px;
}

.contact-item-value {
  font-size: 17px;
  line-height: 1.7;
  color: #111111;
  font-weight: 400;
}

.contact-item-value a {
  color: #111111;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item-value a:hover {
  color: #6B7280;
}


/* ============================================================
   11. FOOTER
============================================================ */

.footer {
  background: #0E0E0E;
  padding: 70px 0 42px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

/* Top row */
.footer-top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  padding: 12px 14px;
  border-radius: 5px;
}

.footer-logo-img {
  width: 92px;
  height: auto;
  display: block;
}

.footer-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: #D1D5DB;
  max-width: 420px;
  text-align: right;
  font-weight: 300;
}

/* Middle row */
.footer-mid-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: clamp(16px, 2.5vw, 36px);
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #D1D5DB;
}

/* Social icons */
.footer-social {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-social a {
  color: #D1D5DB;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: #ffffff;
}

.social-icon {
  display: block;
}

/* Bottom row */
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy,
.footer-url {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: #8A8F98;
}


/* ============================================================
   12. ANIMATIONS & TRANSITIONS
============================================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-body {
  animation: fadeInUp 0.9s var(--ease-out) both;
}


/* ============================================================
   13. RESPONSIVE MEDIA QUERIES
============================================================ */

/* ── Tablet / small desktop ── */
@media (max-width: 960px) {
  .header-wordmark  { display: none; }
  .header-inner     { grid-template-columns: 1fr auto; padding: 0 24px; }
  .header-nav       { display: none; }
  .hamburger        { display: flex; }
  .services-grid    { grid-template-columns: 1fr 1fr; }
  .about-grid       { grid-template-columns: 1fr; }
  .contact-grid     { grid-template-columns: 1fr; gap: 24px; }
  .footer-top-row   { flex-direction: column; }
}

/* ── Mobile ── */
/* ============================================================
   MOBILE — 768px (tablet)
============================================================ */
@media (max-width: 768px) {

  /* Header */
  .header-inner {
    padding: 0 20px;
    grid-template-columns: 1fr auto;
  }

  /* Hero */
  .hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-card {
    width: 100%;
    min-height: auto;
    padding: 52px 32px 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-body {
    margin-left: 0;
    max-width: 100%;
    padding: 0;
  }

  .hero-kicker {
    font-size: 14px;
    letter-spacing: 3px;
    white-space: normal;
    word-break: break-word;
  }

  .hero h1 { font-size: 52px; }
  .hero-sub { font-size: 16px; }

  .btn-cta {
    min-width: unset;
    width: 100%;
    max-width: 380px;
    padding: 0 24px;
    letter-spacing: 2px;
  }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .services-title { font-size: 56px; }
  .service-card {
    border-right: none;
    border-bottom: 1px solid #D9D9D9;
  }
  .service-card:last-child { border-bottom: none; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { width: 100%; height: auto; aspect-ratio: 4/3; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Footer */
  .footer-top-row { flex-direction: column; gap: 28px; }
  .footer-desc { text-align: left; }
  .footer-mid-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer-links { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-bottom-row { flex-direction: column; align-items: flex-start; gap: 8px; }
}


/* ============================================================
   MOBILE — 600px and below (phones)
============================================================ */
@media (max-width: 600px) {

  /* ── Root ── */
  :root { --header-h: 64px; }

  /* ── Header ── */
  .header-inner { padding: 0 18px; }
  .header-logo img { width: 68px; }

  /* ── Mobile nav drawer ── */
  .mobile-nav { padding: 24px 20px; }
  .mobile-nav a { font-size: 26px; padding: 14px 0; }

  /* ── Hero ── */
  .hero {
    padding-top: calc(var(--header-h) + 20px);
    padding-bottom: 24px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-card {
    width: 100%;
    min-height: auto;
    padding: 40px 24px 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: visible;
  }

  .hero-body {
    margin-left: 0;
    max-width: 100%;
    padding: 0;
  }

  /* Eyebrow: reduce size and spacing so it wraps cleanly */
  .hero-kicker {
    font-size: 11px;
    letter-spacing: 2.5px;
    white-space: normal;
    word-break: break-word;
    margin-bottom: 20px;
  }

  /* Headline: scale for readability without overflow */
  .hero h1 {
    font-size: 40px;
    letter-spacing: 4px;
    line-height: 0.97;
    margin-bottom: 22px;
  }

  .hero-sub {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 100%;
  }

  /* CTA: full width, centered text, no overflow */
  .btn-cta {
    min-width: unset;
    width: 100%;
    padding: 0 20px;
    height: 56px;
    font-size: 13px;
    letter-spacing: 2px;
    justify-content: center;
  }

  /* ── Services ── */
  .services { padding: 64px 0 72px; }
  .services-title {
    font-size: 44px;
    letter-spacing: 3px;
    margin-bottom: 36px;
  }
  .services-grid { grid-template-columns: 1fr; }
  .service-card {
    padding: 32px 24px;
    border-right: none;
    border-bottom: 1px solid #D9D9D9;
  }
  .service-card:last-child { border-bottom: none; }
  .service-title { font-size: 28px; letter-spacing: 1px; }
  .service-desc { font-size: 15px; max-width: 100%; }

  /* ── About ── */
  .about { padding: 48px 0 56px; }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  /* Image stacks below text on mobile */
  .about-left { order: 1; }
  .about-visual {
    order: 2;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
  }
  .about-title {
    font-size: 40px;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }
  .about-body p { font-size: 16px; max-width: 100%; }
  .btn-outline {
    height: 58px;
    padding: 0 32px;
    font-size: 14px;
    letter-spacing: 0.14em;
    width: 100%;
    justify-content: center;
  }

  /* ── Contact ── */
  .contact { padding: 40px 0 48px; }
  .contact-title {
    font-size: 40px;
    letter-spacing: 3px;
    margin-bottom: 28px;
  }
  .contact-grid { grid-template-columns: 1fr; gap: 20px; }
  .contact-form-wrap {
    padding: 28px 24px;
    height: auto;
  }
  .contact-info-wrap {
    padding: 28px 24px;
    height: auto;
  }
  .contact-info-title { font-size: 24px; }

  /* Form inputs: comfortable tap targets */
  .form-group input { height: 48px; font-size: 16px; }
  .form-group textarea {
    height: 120px;
    font-size: 16px;
  }
  .form-group label { font-size: 11px; }
  .contact-form { gap: 20px; }

  /* Submit button */
  .btn-submit { height: 52px; font-size: 13px; }

  /* Contact info rows */
  .contact-item { padding: 12px 0; }
  .contact-item-label { font-size: 10px; }
  .contact-item-value { font-size: 15px; }

  /* Standalone contact page (contact.html) */
  .contact-standalone {
    padding-top: calc(var(--header-h) + 28px);
  }

  /* ── Footer ── */
  .footer { padding: 48px 0 32px; }
  .footer-top-row { flex-direction: column; gap: 24px; margin-bottom: 32px; }
  .footer-logo-wrap { padding: 10px 12px; }
  .footer-logo-img { width: 76px; }
  .footer-desc { font-size: 14px; text-align: left; max-width: 100%; }
  .footer-mid-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    margin-bottom: 20px;
  }
  .footer-links { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-links a { font-size: 12px; }
  .footer-social { gap: 20px; }
  .footer-bottom-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .footer-copy, .footer-url { font-size: 10px; }

  /* ── Legal pages (privacy, terms, sitemap) ── */
  .legal-page {
    padding-top: calc(var(--header-h) + 40px);
    padding-bottom: 72px;
  }
  .legal-doc { max-width: 100%; }
  .legal-header {
    margin-bottom: 44px;
    padding-bottom: 24px;
  }
  .legal-title {
    font-size: 2.6rem;
    letter-spacing: 3px;
  }
  .legal-date { font-size: 10px; margin-top: 12px; }
  .legal-body section { margin-bottom: 36px; }
  .legal-body h2 { font-size: 1.25rem; letter-spacing: 1.5px; margin-bottom: 14px; }
  .legal-body p,
  .legal-body ul li,
  .legal-body address { font-size: 15px; line-height: 1.75; }
}


/* ============================================================
   MOBILE — very small phones (390px)
============================================================ */
@media (max-width: 390px) {

  .hero h1 { font-size: 36px; letter-spacing: 3px; }
  .hero-kicker { font-size: 10px; letter-spacing: 2px; }
  .services-title { font-size: 38px; }
  .about-title { font-size: 36px; }
  .contact-title { font-size: 36px; letter-spacing: 2px; }
  .legal-title { font-size: 2.2rem; letter-spacing: 2px; }
  .mobile-nav a { font-size: 24px; }
}


/* ============================================================
   14. ACCESSIBILITY
============================================================ */

:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

@media (prefers-contrast: high) {
  .hero-card::after {
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  }
}


/* ============================================================
   15. INNER PAGES (privacy, terms, sitemap)
============================================================ */

.inner-page {
  padding-top: calc(var(--header-h) + 64px);
  padding-bottom: 100px;
  background: var(--white);
  min-height: 80vh;
}

.inner-hero {
  background: var(--warm-white);
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 64px;
}

.inner-hero-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 4px;
  font-weight: 700;
  text-transform: uppercase;
  color: #9CA3AF;
  margin-bottom: 14px;
}

.inner-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #111111;
  line-height: 0.95;
}

.inner-hero-sub {
  font-size: 17px;
  color: #6B7280;
  font-weight: 300;
  line-height: 1.7;
  margin-top: 20px;
  max-width: 560px;
}

.inner-content {
  max-width: 780px;
}

.inner-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111111;
  margin-top: 52px;
  margin-bottom: 18px;
  line-height: 1;
}

.inner-content h2:first-child { margin-top: 0; }

.inner-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #3F3F46;
  font-weight: 300;
  margin-bottom: 18px;
}

.inner-content ul {
  list-style: none;
  margin-bottom: 18px;
}

.inner-content ul li {
  font-size: 16px;
  line-height: 1.8;
  color: #3F3F46;
  font-weight: 300;
  padding: 6px 0 6px 18px;
  position: relative;
}

.inner-content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #9CA3AF;
  font-family: var(--font-mono);
  font-size: 12px;
}

.inner-content a {
  color: #111111;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.inner-content a:hover { color: #6B7280; }

.inner-content .effective-date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9CA3AF;
  margin-bottom: 48px;
  display: block;
}

/* Sitemap */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 48px;
  margin-top: 8px;
}

.sitemap-group h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 20px;
  margin-top: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
  line-height: 1;
}

.sitemap-group ul { list-style: none; }

.sitemap-group ul li {
  padding: 10px 0;
  border-bottom: 1px solid #F3F4F6;
}

.sitemap-group ul li:last-child { border-bottom: none; }

.sitemap-group ul li a {
  font-size: 16px;
  color: #111111;
  font-weight: 400;
  text-decoration: none;
  font-family: var(--font-body);
  transition: color 0.2s;
}

.sitemap-group ul li a:hover { color: #6B7280; }

.sitemap-desc {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9CA3AF;
  display: block;
  margin-top: 3px;
}

/* Inner page responsive */
/* inner-page 600px → consolidated into main mobile block */


/* ============================================================
   16. LEGAL DOCUMENT PAGES (privacy, terms)
============================================================ */

/* Full-page wrapper — sits directly under the fixed header */
.legal-page {
  background: #ffffff;
  padding-top: calc(var(--header-h) + 72px);
  padding-bottom: 120px;
  min-height: 100vh;
}

/* Constrained content column */
.legal-doc {
  max-width: 720px;
}

/* ── Page header ── */
.legal-header {
  margin-bottom: 64px;
  padding-bottom: 36px;
  border-bottom: 1px solid #E2E2E2;
}

.legal-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #0A0A0A;
  line-height: 0.95;
  margin-bottom: 20px;
}

.legal-date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9CA3AF;
  display: block;
}

/* ── Body ── */
.legal-body section {
  margin-bottom: 52px;
}

.legal-body section:last-child {
  margin-bottom: 0;
}

.legal-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0A0A0A;
  line-height: 1;
  margin-bottom: 20px;
}

.legal-body p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.85;
  color: #1A1A1A;
  font-weight: 300;
  margin-bottom: 16px;
}

.legal-body p:last-child {
  margin-bottom: 0;
}

.legal-body ul {
  list-style: none;
  margin: 16px 0 20px;
}

.legal-body ul li {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.85;
  color: #1A1A1A;
  font-weight: 300;
  padding: 6px 0 6px 22px;
  position: relative;
}

.legal-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #9CA3AF;
  font-family: var(--font-mono);
  font-size: 12px;
  top: 7px;
}

.legal-body a {
  color: #0A0A0A;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.2s;
}

.legal-body a:hover {
  color: #6B7280;
}

.legal-body address {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 2;
  color: #1A1A1A;
  font-weight: 300;
  margin-top: 8px;
}

/* ── Responsive ── */
/* legal-page 600px → consolidated into main mobile block */


/* ============================================================
   17. STANDALONE CONTACT PAGE
============================================================ */

/* Adds top clearance for fixed header on contact.html */
.contact-standalone {
  padding-top: calc(var(--header-h) + 56px);
}

/* contact-standalone 600px → consolidated into main mobile block */


/* ============================================================
   18. FAQ PAGE
============================================================ */

/* Each Q&A pair */
.faq-item {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #F0F0F0;
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Questions — larger, heavier than legal body h2 */
.faq-body .faq-item h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0A0A0A;
  line-height: 1.05;
  margin-bottom: 16px;
  margin-top: 0;
}

/* Answers */
.faq-body .faq-item p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.85;
  color: #1A1A1A;
  font-weight: 300;
  margin-bottom: 0;
}

.faq-body .faq-item p a {
  color: #0A0A0A;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.2s;
}

.faq-body .faq-item p a:hover { color: #6B7280; }

/* Bottom CTA */
.faq-cta {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid #E2E2E2;
}

.faq-cta p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: #3F3F46;
  font-weight: 300;
}

.faq-cta p a {
  color: #0A0A0A;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.faq-cta p a:hover { color: #6B7280; }

/* FAQ mobile */
@media (max-width: 600px) {
  .faq-item { margin-bottom: 32px; padding-bottom: 32px; }
  .faq-body .faq-item h2 { font-size: 1.2rem; letter-spacing: 1px; }
  .faq-body .faq-item p { font-size: 15px; }
  .faq-cta { margin-top: 36px; padding-top: 24px; }
  .faq-cta p { font-size: 15px; }
}

/* ============================================================
   MARKETPLACE INTELLIGENCE SECTION
============================================================ */

.intel {
  padding: 42px 0 46px;
  background: #FFFFFF;
  border-top: 1px solid #E1E4E6;
  border-bottom: 1px solid #E1E4E6;
}

.intel-header {
  max-width: 900px;
  margin-bottom: 26px;
}

.intel-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #111111;
  line-height: 0.94;
  margin-bottom: 20px;
}

.intel-sub {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.72;
  color: #30343A;
  font-weight: 500;
  max-width: 680px;
}

.intel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  background: transparent;
  border: none;
}

.intel-card {
  background: #F4F6F7;
  border: 1px solid #D9D9D9;
  position: relative;
  transition: background 0.25s, border-color 0.25s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.intel-card::before { display: none; }

.intel-card:hover { background: #111111; border-color: #111111; }
.intel-card:hover .intel-card-title { color: #FFFFFF; }
.intel-card:hover .intel-list li { color: #D1D5DB; }
.intel-card:hover .intel-list li::before { background: #9CA3AF; }

.intel-card-inner {
  padding: 34px 34px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.intel-card-label { display: none; }

/* Fixed-height title zone so bullet lists start at same position in both cards */
.intel-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #111111;
  line-height: 1.0;
  height: 74px;
  display: flex;
  align-items: flex-start;
  margin-bottom: 22px;
  overflow: hidden;
  transition: color 0.25s;
}

.intel-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.intel-list li {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: #2B2F33;
  font-weight: 500;
  padding: 9px 0 9px 22px;
  position: relative;
  transition: color 0.25s;
}

.intel-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #111111;
  transition: background 0.25s;
}

/* ── Intel responsive ── */
@media (max-width: 768px) {
  .intel { padding: 38px 0 42px; }
  .intel-header { margin-bottom: 22px; }
  .intel-grid { grid-template-columns: 1fr; gap: 20px; }
  .intel-card-title { height: auto; min-height: unset; }
}

@media (max-width: 600px) {
  .intel { padding: 32px 0 36px; }
  .intel-title { font-size: 1.9rem; letter-spacing: 3px; }
  .intel-sub { font-size: 16px; }
  .intel-card-inner { padding: 28px 24px; }
  .intel-card-title { font-size: 1.35rem; letter-spacing: 1px; min-height: auto; }
  .intel-list li { font-size: 15px; }
}

@media (max-width: 390px) {
  .intel-title { font-size: 1.7rem; }
  .intel-card-title { font-size: 1.2rem; }
}