*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:   #0085C7;
  --yellow: #F4C300;
  --black:  #1a1a1a;
  --green:  #009F6B;
  --red:    #DF0024;

  --blue-pale:   #E6F4FB;
  --yellow-pale: #FEFAE6;
  --green-pale:  #E6F5F0;
  --red-pale:    #FBEAEC;

  --white:     #FFFFFF;
  --off-white: #FAFAF8;
  --surface:   #F4F3EF;
  --border:    #E0DDD5;
  --text:      #1a1a1a;
  --text-mid:  #555550;
  --text-muted:#999990;

  --stripe: linear-gradient(to right, var(--blue) 20%, var(--yellow) 20% 40%, #ffffff 40% 60%, var(--green) 60% 80%, var(--red) 80%);

  /* Hero overlay — tweakable via debug panel (Ctrl+Shift+D). Defaults reproduce the original look. */
  --overlay-color: #000000;
  --overlay-opacity: 1;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── LANE STRIPE ─── */

.lane-stripe {
  height: 4px;
  background: var(--stripe);
  flex-shrink: 0;
}

/* ─── NAV ─── */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--black);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo-img {
  height: 38px;
  width: auto;
}

.nav-wordmark {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: white;
  line-height: 1;
}

.nav-wordmark span {
  display: block;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  padding: 8px 14px;
  transition: color 0.2s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-link:hover { color: white; }

.nav-link:hover::after { transform: scaleX(1); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav */

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--black);
  z-index: 999;
  padding: 20px 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 4px solid;
  border-image: var(--stripe) 1;
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu a:last-child {
  color: var(--blue);
  border-bottom: none;
  margin-top: 8px;
}

/* ─── SECTION COMMONS ─── */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── PAGE HEADER ─── */

/* ─── FORM SECTION ─── */

/* ─── FOOTER ─── */

footer {
  background: var(--black);
  border-top: 5px solid transparent;
  border-image: var(--stripe) 1;
}

.footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .nav-wordmark {
  font-size: 22px;
  margin-bottom: 0;
  display: block;
}

.footer-brand .nav-wordmark span {
  display: block;
  font-size: 10px;
  margin-top: 4px;
}

.footer-brand .nav-logo-img {
  height: 52px;
}

.footer-brand-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-stripe-small {
  height: 3px;
  background: var(--stripe);
  width: 120px;
}

.footer-col-title {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links li a:hover { color: white; }

.footer-links li a.disabled-link {
  color: rgba(255,255,255,0.25);
  cursor: not-allowed;
  pointer-events: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 40px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal-links a:hover { color: rgba(255,255,255,0.6); }

/* ─── RESPONSIVE ─── */

@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-back { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0 20px; }
  .container { padding: 0 20px; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
}
