/* ============================================================
   BLACK ROCK ROOFING — "Volcanic Precision"
   Dark luxury meets industrial strength
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; border: none; outline: none; }
body { overflow-x: hidden; }

/* ---- CSS VARIABLES ---- */
:root {
  --black: #0a0a0a;
  --charcoal: #131313;
  --surface: #1a1a1a;
  --surface-light: #222222;
  --gold: #c8963e;
  --gold-light: #daa84f;
  --gold-dark: #a87a2e;
  --gold-glow: rgba(200, 150, 62, 0.15);
  --white: #f0ede6;
  --white-dim: #c5c2bc;
  --gray: #7a7a7a;
  --gray-dark: #3a3a3a;
  --border: rgba(255, 255, 255, 0.06);
  --border-gold: rgba(200, 150, 62, 0.2);

  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;

  --nav-height: 80px;
  --section-pad: clamp(80px, 10vw, 140px);
  --container: 1280px;
  --container-narrow: 900px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---- BASE TYPOGRAPHY ---- */
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--white-dim);
  background: var(--black);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}

.display { font-family: var(--font-display); letter-spacing: 0.03em; }

p + p { margin-top: 1em; }

/* ---- UTILITY ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ---- GRAIN OVERLAY (desktop only — disabled on mobile for iOS perf) ---- */
@media (min-width: 769px) {
  body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.nav__logo img {
  height: 42px;
  width: auto;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.3s;
  position: relative;
}
.nav__link:hover, .nav__link.active { color: var(--gold); }
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-trigger { cursor: pointer; display: flex; align-items: center; gap: 4px; }
.nav__dropdown-trigger svg { width: 12px; height: 12px; transition: transform 0.3s; }
.nav__dropdown:hover .nav__dropdown-trigger svg { transform: rotate(180deg); }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px); left: -16px;
  min-width: 220px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  color: var(--white-dim);
  transition: all 0.2s;
}
.nav__dropdown-menu a:hover {
  color: var(--gold);
  background: rgba(200, 150, 62, 0.06);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s;
}
.nav__cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.nav__phone {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--white);
}
.nav__phone svg { width: 16px; height: 16px; color: var(--gold); }

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile overlay */
.nav__mobile {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(30px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-out);
}
.nav__mobile.open { opacity: 1; visibility: visible; }
.nav__mobile a {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 40px);
  letter-spacing: 0.05em;
  color: var(--white);
  transition: color 0.3s;
}
.nav__mobile a:hover { color: var(--gold); }
.nav__mobile-phone {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--gold) !important;
}

@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn--gold {
  background: var(--gold);
  color: var(--black);
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(200, 150, 62, 0.25);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn svg {
  width: 16px; height: 16px;
  transition: transform 0.3s var(--ease-out);
}
.btn:hover svg { transform: translateX(4px); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-height) + 40px) 0 clamp(60px, 8vw, 120px);
  overflow: hidden;
}
/* hero--short kept as semantic marker on interior pages — same height as base hero per design */
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.95) 0%,
    rgba(10, 10, 10, 0.6) 40%,
    rgba(10, 10, 10, 0.3) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
}
.hero__tagline {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 120px);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 0.02em;
  max-width: 900px;
}
.hero__subtitle {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  color: var(--white-dim);
  max-width: 600px;
  margin-top: 24px;
  line-height: 1.6;
}
.hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}
.section--dark { background: var(--charcoal); }
.section--surface { background: var(--surface); }

.section__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section__title {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 20px;
  max-width: 700px;
}
.section__subtitle {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--white-dim);
  max-width: 600px;
  line-height: 1.7;
}
.section__header {
  margin-bottom: clamp(40px, 5vw, 70px);
}
.section__header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section__header--center .section__title,
.section__header--center .section__subtitle {
  margin-left: auto;
  margin-right: auto;
}


/* ============================================================
   CARDS GRID
   ============================================================ */
.grid {
  display: grid;
  gap: 24px;
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
  transition: all 0.4s var(--ease-out);
  position: relative;
}
.card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.card__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-glow);
  border-radius: 10px;
  margin-bottom: 20px;
  color: var(--gold);
}
.card__icon svg { width: 24px; height: 24px; }
.card__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.card__text {
  font-size: 15px;
  color: var(--white-dim);
  line-height: 1.65;
}

/* Service card with image */
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}
.service-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.service-card__img {
  height: 240px;
  overflow: hidden;
}
.service-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.service-card:hover .service-card__img img { transform: scale(1.05); }
.service-card__body { padding: 28px 28px 32px; }
.service-card__title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.service-card__text {
  font-size: 15px;
  color: var(--white-dim);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s var(--ease-out);
}
.service-card__link:hover { gap: 14px; }
.service-card__link svg { width: 16px; height: 16px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
  position: relative;
}
.testimonial__quote {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--white);
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial__quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 60px;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  font-style: normal;
}
.testimonial__author {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
}
.testimonial__stars {
  color: var(--gold);
  margin-bottom: 24px;
  font-size: 14px;
  letter-spacing: 2px;
}

/* ============================================================
   STATS / BADGES ROW
   ============================================================ */
.stats {
  display: flex;
  justify-content: center;
  gap: clamp(30px, 5vw, 80px);
  flex-wrap: wrap;
  padding: 40px 0;
}
.stat { text-align: center; }
.stat__number {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  color: var(--gold);
  line-height: 1;
}
.stat__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--white-dim);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brands-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
  padding: 20px 0;
}
.brands-row img {
  height: 55px;
  width: auto;
  opacity: 0.85;
  filter: brightness(1.4) contrast(0.95);
  transition: all 0.3s;
}
.brands-row img:hover { opacity: 1; filter: brightness(1.5); }

/* ============================================================
   SPLIT LAYOUT (image + text side by side)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.split__media {
  border-radius: 8px;
  overflow: hidden;
}
.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.split__content { max-width: 560px; }
.split__content .section__label { margin-bottom: 12px; }
.split__content .section__title { margin-bottom: 16px; }
.split__content p { margin-bottom: 16px; }

@media (max-width: 768px) {
  .split { display: flex; flex-direction: column; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  opacity: 0.08;
}
.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner__text {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--white-dim);
  max-width: 600px;
  margin: 0 auto 32px;
}

/* ============================================================
   GALLERY / PROJECTS
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }

/* ============================================================
   FORMS
   ============================================================ */
/* Form container card */
.form-card {
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: clamp(36px, 5vw, 52px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.04);
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
}
.form-card::after {
  content: '';
  position: absolute;
  top: 3px; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, rgba(200, 150, 62, 0.04), transparent);
  pointer-events: none;
}

.form { max-width: 100%; }
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 480px) { .form__row { grid-template-columns: 1fr; } }

.form__group { margin-bottom: 20px; }
.form__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.form__input {
  width: 100%;
  padding: 16px 18px;
  background: var(--black);
  border: 1px solid var(--gray-dark);
  border-radius: 6px;
  color: var(--white);
  font-size: 15px;
  font-weight: 400;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form__input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
  outline: none;
}
.form__input::placeholder { color: var(--gray); }
.form__consent {
  font-size: 11px;
  color: var(--gray);
  line-height: 1.6;
  margin: 20px 0;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.form__consent a { color: var(--gold); text-decoration: underline; }
.form .btn { width: 100%; justify-content: center; padding: 18px 36px; font-size: 15px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer__brand-text {
  font-size: 15px;
  color: var(--white-dim);
  line-height: 1.7;
  margin: 20px 0;
  max-width: 320px;
}
.footer__heading {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__links a {
  display: block;
  font-size: 14px;
  color: var(--white-dim);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--gold); }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--white-dim);
  margin-bottom: 12px;
}
.footer__contact-item svg {
  width: 16px; height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer__social a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--white-dim);
  transition: all 0.3s;
}
.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--gray);
  flex-wrap: wrap;
  gap: 16px;
}
.footer__bottom a { color: var(--gray); transition: color 0.2s; }
.footer__bottom a:hover { color: var(--gold); }
.footer__legal { display: flex; gap: 24px; }

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICE PAGE LAYOUT
   ============================================================ */

.process-steps {
  counter-reset: step;
}
.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.process-step:last-child { border-bottom: none; }
.process-step__number {
  counter-increment: step;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--gold);
}
.process-step__number::before { content: counter(step); }
.process-step__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.process-step__text {
  font-size: 15px;
  color: var(--white-dim);
  line-height: 1.6;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  padding: 36px 32px;
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  position: relative;
}
.blog-card:hover {
  border-color: var(--border-gold);
  border-left-color: var(--gold-light);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.blog-card__number {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 16px;
}
.blog-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}
.blog-card__excerpt {
  font-size: 15px;
  color: var(--white-dim);
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}
.blog-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s var(--ease-out);
}
.blog-card__link svg { width: 16px; height: 16px; }
.blog-card:hover .blog-card__link { gap: 14px; }

/* Blog post content */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 {
  font-size: 28px;
  margin: 48px 0 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.prose h2:first-of-type { border-top: none; padding-top: 0; }
.prose h3 {
  font-size: 22px;
  margin: 32px 0 12px;
}
.prose p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.prose ul, .prose ol {
  margin: 16px 0 24px 24px;
}
.prose li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.prose strong { color: var(--white); font-weight: 600; }

/* ============================================================
   LEGAL / POLICY PAGES
   ============================================================ */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 24px;
  margin: 40px 0 16px;
}
.legal-content h3 {
  font-size: 20px;
  margin: 24px 0 12px;
}
.legal-content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-content ul {
  margin: 12px 0 20px 20px;
}
.legal-content li {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 6px;
  padding-left: 16px;
  position: relative;
}
.legal-content li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   MOBILE BOTTOM BAR
   ============================================================ */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
}
.mobile-bar__inner {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.mobile-bar .btn { flex: 1; justify-content: center; padding: 14px 16px; }
@media (max-width: 768px) {
  .mobile-bar { display: block; }
  body { padding-bottom: 70px; }
  .hero { padding-bottom: 100px; }
}

/* ============================================================
   PAGE-SPECIFIC: VALUES
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
.value-item {
  text-align: center;
  padding: 40px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.value-item__icon {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 12px;
}
.value-item__name {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  cursor: zoom-out;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox__close {
  position: absolute;
  top: 20px; right: 20px;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  font-size: 24px;
}
