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

:root {
  --hero-fade: 1;

  --bg: #f8f9fa;
  --panel: #eef1f3;
  --panel-2: #e4e8eb;

  --text: #1f2529;
  --muted: rgba(31, 37, 41, 0.72);
  --line: rgba(31, 37, 41, 0.14);

  --brand-red: #d32f2f;
  --brand-red-dark: #b71c1c;
  --brand-gold: #f5a623;

  --accent: #f5a623;
  --accent-soft: rgba(245, 166, 35, 0.12);

  --surface-dark: #cfd6db;
  --surface-mid: #dde3e7;
  --surface-light: #f7f9fb;

  --white: #ffffff;
  --gray-1: #d9d9d9;
  --gray-2: #8a939b;
}

@font-face {
  font-family: "Main";
  src: url("/assets/fonts/bdlifelessgrotesk-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Secondary";
  src: url("/assets/fonts/bdlifelessgrotesk-light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Accessory";
  src: url("/assets/fonts/intrigora-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Extra";
  src: url("/assets/fonts/neue\ kaine\ variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: auto;
  background: var(--bg);
}

body {
  font-family: "Main";
  color: var(--text);
  background: var(--bg);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-wrap {
  min-height: 100vh;
  background: radial-gradient(
      circle at top left,
      rgba(211, 47, 47, 0.05),
      transparent 30%
    ),
    radial-gradient(
      circle at top right,
      rgba(245, 166, 35, 0.05),
      transparent 30%
    ),
    linear-gradient(180deg, #f8f9fa 0%, #eef1f3 100%);
}

/* ====== Scroll Reveal ====== */

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====== NAV ====== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  pointer-events: none;
  transition: padding 0.25s ease;
}

/* MAIN NAV CONTAINER */
.nav-inner {
  pointer-events: auto;
  width: min(100%, 1650px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  padding: 14px 36px;
  background: none;
  border: none;
  box-shadow: none;
  transition: width 0.3s ease, padding 0.3s ease, border-radius 0.3s ease,
    background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease,
    backdrop-filter 0.3s ease;
}

/* LOGO */
.brand {
  justify-self: start;
  font-family: "Extra", bold;
  font-size: 38px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-gold);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: font-size 0.25s ease, letter-spacing 0.25s ease,
    opacity 0.25s ease, transform 0.25s ease, text-shadow 0.25s ease;
}

/* RIGHT SIDE */
.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
}

/* HAMBURGER BUTTON */
.nav-menu {
  width: 60px;
  height: 60px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(245, 166, 35, 0.7);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28), 0 0 12px rgba(245, 166, 35, 0.25);
  transition: width 0.25s ease, height 0.25s ease, background 0.25s ease,
    border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.nav-menu:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: var(--brand-red);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.32), 0 0 14px rgba(211, 47, 47, 0.35);
  transform: translateY(-2px);
}

.nav-menu:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.28), inset 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* HAMBURGER LINES */
.nav-menu .nav-menu-line {
  width: 26px;
  height: 2.5px;
  border-radius: 999px;
  background: #f5a623 !important;
  transition: width 0.25s ease, height 0.25s ease, transform 0.25s ease,
    background 0.25s ease, opacity 0.25s ease;
  box-shadow: none;
}

.nav-menu:hover .nav-menu-line {
  background: #d32f2f !important;
}

/* OPEN STATE */
body.menu-open .nav-menu .nav-menu-line:nth-child(1) {
  transform-origin: center;
  transform: translateY(4px) rotate(45deg);
  background: #d32f2f !important;
}

body.menu-open .nav-menu .nav-menu-line:nth-child(2) {
  transform-origin: center;
  transform: translateY(-4px) rotate(-45deg);
  background: #d32f2f !important;
}

/* REMOVE DIVIDER */
.nav-divider-bar {
  display: none;
}

/* ===== CONDENSED NAV (ON SCROLL) ===== */

.site-header.nav-condensed {
  padding: 10px 0;
}

/* glass pill appears */
.site-header.nav-condensed .nav-inner {
  width: min(96%, 1400px);
  padding: 10px 24px;
  border-radius: 999px;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.22),
    rgba(255, 255, 255, 0.1)
  );
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.28);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

/* logo stays visible */
.site-header.nav-condensed .brand {
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
  font-size: 22px;
  letter-spacing: 0.15em;
  color: var(--brand-red);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

/* hamburger scales down slightly but keeps glass */
.site-header.nav-condensed .nav-menu {
  width: 56px;
  height: 56px;

  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border: 1.5px solid rgba(245, 166, 35, 0.72);

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22), 0 0 12px rgba(245, 166, 35, 0.2);
}

.site-header.nav-condensed .nav-menu .nav-menu-line {
  width: 26px;
  height: 2.5px;
  background: #f5a623 !important;
}
/* CTA */
.nav-cta {
  border-radius: 999px;
  border: 1px solid var(--brand-red);
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  color: #fff;
  padding: 10px 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(183, 28, 28, 0.18);
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: linear-gradient(135deg, #e53935, var(--brand-red-dark));
  transform: translateY(-1px);
}

/* BURGER */
.nav-menu {
  border: none;
  background: none;
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-menu-line {
  width: 20px;
  height: 2px;
  background-color: #111111;
  transition: all 0.25s ease;
}

.nav-menu:hover .nav-menu-line {
  background-color: var(--brand-red);
}

/* REMOVE DIVIDER COMPLETELY */
.nav-divider-bar {
  display: none;
}

/* CONDENSED STATE */
.site-header.nav-condensed {
  padding-top: 10px;
}

.site-header.nav-condensed .nav-inner {
  width: min(98vw, 1500px);
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 22px rgba(31, 37, 41, 0.08);
}

/* hide extras on scroll */
.site-header.nav-condensed .brand,
.site-header.nav-condensed .contact-btn,
.site-header.nav-condensed .nav-cta {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: all 0.25s ease;
}

.site-header .brand,
.site-header .contact-btn,
.site-header .nav-cta {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.25s ease;
}

/* ===== MOBILE MENU ===== */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(238, 241, 243, 0.98)
    ),
    radial-gradient(
      circle at top left,
      rgba(211, 47, 47, 0.08),
      transparent 40%
    ),
    radial-gradient(
      circle at top right,
      rgba(245, 166, 35, 0.08),
      transparent 40%
    );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}

body.menu-open .mobile-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.mobile-menu-logo {
  font-family: "Extra";
  font-size: 34px;
  letter-spacing: 0.08em;
  color: var(--text);
  text-transform: uppercase;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mobile-menu-close:hover {
  opacity: 1;
  color: var(--brand-gold);
  transform: rotate(8deg);
}

.mobile-menu-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 0;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.mobile-menu-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(31, 37, 41, 0.5);
  margin: 0 0 26px;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(245, 166, 35, 0.22);
  width: 100%;
  max-width: 260px;
}

.mobile-menu-links {
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.mobile-menu-links li {
  width: 100%;
  max-width: 420px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

body.menu-open .mobile-menu-links li {
  opacity: 1;
  transform: translateY(0);
}

body.menu-open .mobile-menu-links li:nth-child(1) {
  transition-delay: 0.08s;
}
body.menu-open .mobile-menu-links li:nth-child(2) {
  transition-delay: 0.14s;
}
body.menu-open .mobile-menu-links li:nth-child(3) {
  transition-delay: 0.2s;
}
body.menu-open .mobile-menu-links li:nth-child(4) {
  transition-delay: 0.26s;
}
body.menu-open .mobile-menu-links li:nth-child(5) {
  transition-delay: 0.32s;
}
body.menu-open .mobile-menu-links li:nth-child(6) {
  transition-delay: 0.38s;
}

.mobile-menu-links a,
.mobile-menu-links li button {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 20px;
  border-radius: 18px;
  border: 1px solid rgba(31, 37, 41, 0.08);
  background: rgba(255, 255, 255, 0.58);
  color: var(--text);
  font-family: "Extra";
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.mobile-menu-links a:hover,
.mobile-menu-links li button:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 166, 35, 0.32);
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand-red);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.mobile-pay-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid var(--brand-red);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(183, 28, 28, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.mobile-pay-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(183, 28, 28, 0.24);
  filter: brightness(1.03);
}

body.menu-open .nav-menu-line:nth-child(1) {
  transform-origin: center;
  transform: translateY(3px) rotate(45deg);
}

body.menu-open .nav-menu-line:nth-child(2) {
  transform-origin: center;
  transform: translateY(-3px) rotate(-45deg);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .mobile-menu {
    padding: 22px 18px;
  }

  .mobile-menu-header {
    margin-bottom: 18px;
  }

  .mobile-menu-logo {
    font-size: 28px;
  }

  .mobile-menu-label {
    font-size: 11px;
    max-width: 220px;
    margin-bottom: 22px;
  }

  .mobile-menu-links {
    gap: 14px;
    margin-bottom: 28px;
  }

  .mobile-menu-links a,
  .mobile-menu-links li button {
    min-height: 50px;
    font-size: 16px;
    padding: 12px 16px;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .mobile-menu {
    padding: 18px 14px;
  }

  .mobile-menu-logo {
    font-size: 24px;
  }

  .mobile-menu-close {
    font-size: 22px;
  }

  .mobile-menu-label {
    font-size: 10px;
    letter-spacing: 0.16em;
    margin-bottom: 18px;
    padding-bottom: 10px;
  }

  .mobile-menu-links {
    gap: 12px;
    margin-bottom: 24px;
  }

  .mobile-menu-links a,
  .mobile-menu-links li button {
    min-height: 46px;
    font-size: 14px;
    letter-spacing: 0.06em;
  }

  .mobile-pay-link {
    width: 100%;
    max-width: 280px;
    font-size: 10px;
  }
}
/* ===== HERO ===== */

.policy-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  color: white;
  overflow: hidden;
}

.policy-hero-bg {
  position: absolute;
  inset: 0;
  background: url("assets/images/orangegarage.jpg") center/cover no-repeat;
  filter: brightness(0.75);
}

.policy-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.7)
  );
}

.policy-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 24px 60px;
}

.policy-hero-title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  margin: 0 0 12px;
}

.policy-hero-text {
  max-width: 600px;
  font-size: 16px;
  opacity: 0.9;
}

/* ===== CONTENT ===== */

.section-shell {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 24px;
}

.policy-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.policy-title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin-bottom: 20px;
}

.policy-card h3 {
  margin-top: 30px;
  color: #d32f2f;
}

.policy-card p,
.policy-card li {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.policy-card ul,
.policy-card ol {
  padding-left: 20px;
}

.policy-updated {
  margin-top: 40px;
  font-size: 14px;
  color: #888;
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {
  .policy-hero-title {
    font-size: 36px;
  }

  .policy-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .policy-hero {
    min-height: 50vh;
  }

  .policy-hero-title {
    font-size: 30px;
  }
}
