/* ============================================================
   1CARBON — Main Stylesheet
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Bebas+Neue&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --red:       #CC0000;
  --red-hi:    #FF1A1A;
  --off-white: #F4F4F4;
  --gray:      #D0D0D0;
  --d1:        #252525;
  --d2:        #111418;
  --d3:        #050505;
  --orb:  'Orbitron', sans-serif;
  --beb:  'Bebas Neue', cursive;
  --body: 'DM Sans', sans-serif;
  --transition: 0.22s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--d3);
  color: var(--off-white);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--d3); }
::-webkit-scrollbar-thumb { background: var(--red); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 60px;
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--red);
  transition: padding var(--transition);
}
header.scrolled { padding: 10px 60px; }

.logo img { height: 52px; width: auto; }
.logo-text {
  font-family: var(--orb);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--off-white);
}
.logo-text span { color: var(--red); }

nav { display: flex; align-items: center; gap: 32px; }
nav a {
  font-family: var(--beb);
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  position: relative;
  transition: color var(--transition);
}
nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--transition);
}
nav a:hover, nav a.active { color: var(--off-white); }
nav a:hover::after, nav a.active::after { width: 100%; }

.nav-cta {
  font-family: var(--beb);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--off-white) !important;
  border: 2px solid var(--red);
  padding: 8px 22px;
  transition: background var(--transition), color var(--transition) !important;
}
.nav-cta:hover {
  background: transparent !important;
  color: var(--red-hi) !important;
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--off-white);
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(5,5,5,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--orb);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--red-hi); }
.mobile-nav .close-btn {
  position: absolute; top: 24px; right: 30px;
  font-family: var(--beb); font-size: 1rem;
  letter-spacing: 0.3em; color: var(--gray);
  cursor: pointer; background: none; border: none;
}

/* ============================================================
   PAGE WRAPPER
   ============================================================ */
main { padding-top: 82px; }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section { padding: 100px 60px; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-tag {
  font-family: var(--beb);
  font-size: 0.72rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-family: var(--orb);
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--off-white);
  margin-bottom: 16px;
}
.section-sub {
  font-family: var(--body);
  font-weight: 300;
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  max-width: 580px;
}
.red-rule { width: 48px; height: 3px; background: var(--red); margin-bottom: 16px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--beb);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 13px 36px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--red);
  color: var(--off-white);
  border-color: var(--red);
}
.btn-primary:hover { background: transparent; color: var(--red-hi); border-color: var(--red-hi); }
.btn-ghost {
  background: transparent;
  color: var(--off-white);
  border-color: var(--d1);
}
.btn-ghost:hover { border-color: var(--red); color: var(--red-hi); }
.btn-outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline:hover { background: var(--red); color: var(--off-white); }
.btn:active { transform: scale(0.97); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 60px;
  background: linear-gradient(115deg, var(--d3) 52%, var(--d1) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; right: 0; top: 0;
  width: 52%; height: 100%;
  background: var(--d1);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-text { position: relative; z-index: 1; }
.hero-eyebrow {
  font-family: var(--beb);
  font-size: 0.8rem;
  letter-spacing: 0.5em;
  color: var(--red);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.hero-title {
  font-family: var(--orb);
  font-weight: 900;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 22px;
}
.hero-title .accent { color: var(--red); display: block; }
.hero-sub {
  font-family: var(--body);
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-image {
  position: relative; z-index: 1;
  width: 100%;
}
.hero-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.hero-image-placeholder {
  width: 100%;
  height: 520px;
  background: var(--d2);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  border-left: 3px solid var(--red);
  position: relative; overflow: hidden;
}
.hero-image-placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.012) 20px, rgba(255,255,255,0.012) 21px);
}
.placeholder-text {
  font-family: var(--beb);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--d1);
  z-index: 1;
}

/* Stat strip */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--d1);
  background: var(--d2);
}
.hero-stat {
  padding: 28px 40px;
  border-right: 1px solid var(--d1);
  text-align: center;
}
.hero-stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--orb);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--red);
  letter-spacing: 0.04em;
}
.stat-lbl {
  font-family: var(--body);
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--d3); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 52px;
}
.service-card {
  background: var(--d2);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
  border-top: 3px solid transparent;
  transition: border-color var(--transition);
}
.service-card:hover { border-top-color: var(--red); }
.service-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(204,0,0,0.04);
  transition: transform 0.4s;
}
.service-card:hover::before { transform: scale(1.5); }
.service-icon {
  width: 52px; height: 52px;
  border: 1px solid var(--d1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: border-color var(--transition);
}
.service-card:hover .service-icon { border-color: var(--red); }
.service-icon svg { stroke: var(--red); }
.service-title {
  font-family: var(--orb);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 14px;
}
.service-desc {
  font-family: var(--body);
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 24px;
}
.service-link {
  font-family: var(--beb);
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  display: flex; align-items: center; gap: 8px;
  transition: gap var(--transition);
}
.service-card:hover .service-link { gap: 14px; }

/* ============================================================
   WORKS PREVIEW / WORKS PAGE
   ============================================================ */
.works-section { background: var(--d2); }
.works-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.works-grid.two-col { grid-template-columns: repeat(2, 1fr); }
.work-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--d1);
}
.work-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.work-card:hover .work-img { transform: scale(1.05); }
.work-img-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: var(--d1);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--beb); font-size: 0.65rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--d1);
  position: relative; overflow: hidden;
  transition: transform 0.4s ease;
}
.work-img-placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 16px, rgba(255,255,255,0.016) 16px, rgba(255,255,255,0.016) 17px);
}
.work-card:hover .work-img-placeholder { transform: scale(1.04); }
.work-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.9) 0%, transparent 55%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  opacity: 0;
  transition: opacity var(--transition);
}
.work-card:hover .work-overlay { opacity: 1; }
.work-cat {
  font-family: var(--beb);
  font-size: 0.62rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 4px;
}
.work-name {
  font-family: var(--orb);
  font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--off-white);
}
.work-card.featured { grid-column: span 2; }
.work-card.featured .work-img-placeholder { aspect-ratio: 16/7; }
.work-card.featured .work-img { aspect-ratio: 16/7; }

.filter-row {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 32px;
      flex-wrap: wrap;
    }
    .works-count {
      font-family: var(--body);
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gray);
      opacity: 0.4;
      margin-left: auto;
    }

    /* Grid */
    #worksGrid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 4px;
    }
    .work-card {
      position: relative;
      overflow: hidden;
      background: var(--d1);
      cursor: pointer;
    }
    .work-card img.work-img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }
    .work-card:hover img.work-img { transform: scale(1.06); }

    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed; inset: 0;
      background: rgba(5,5,5,0.97);
      z-index: 9999;
      align-items: center; justify-content: center; flex-direction: column;
      gap: 16px; padding: 20px;
    }
    .lightbox.open { display: flex; }
    .lightbox img {
      max-width: 90vw; max-height: 82vh;
      object-fit: contain;
      border: 1px solid var(--d1);
    }
    .lightbox-caption {
      font-family: var(--orb); font-weight: 700;
      font-size: 0.78rem; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--off-white); text-align: center;
    }
    .lightbox-caption span { color: var(--red); margin-right: 10px; }
    .lightbox-close {
      position: absolute; top: 20px; right: 24px;
      font-family: var(--beb); font-size: 0.8rem; letter-spacing: 0.3em;
      color: var(--gray); background: none; border: none; cursor: pointer;
      transition: color 0.2s;
    }
    .lightbox-close:hover { color: var(--red-hi); }
    .lightbox-nav {
      position: absolute; top: 50%; transform: translateY(-50%);
      background: rgba(17,20,24,0.8); border: 1px solid var(--d1);
      color: var(--gray); width: 44px; height: 44px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: border-color 0.2s, color 0.2s;
    }
    .lightbox-nav:hover { border-color: var(--red); color: var(--off-white); }
    .lightbox-prev { left: 16px; }
    .lightbox-next { right: 16px; }

    @media (max-width: 768px)  { #worksGrid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 480px)  { #worksGrid { grid-template-columns: 1fr; } }

/* Filter tabs */
.filter-tabs {
  display: flex; gap: 3px;
  margin-bottom: 32px;
}
.filter-tab {
  font-family: var(--beb);
  font-size: 0.82rem; letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--d1); color: var(--gray);
  border: none; padding: 10px 24px; cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.filter-tab:hover { color: var(--off-white); }
.filter-tab.active { background: var(--red); color: var(--off-white); }

.work-price {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 1.5px solid var(--red);
  padding: 6px 14px;
  font-family: var(--beb);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--off-white);
  background: rgba(5, 5, 5, 0.75);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
  z-index: 2;
}

.work-card:hover .work-price {
  opacity: 1;
}

/* ── Price box on cards ── */
.work-price {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 1.5px solid var(--red);
  padding: 5px 13px;
  font-family: var(--beb);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--off-white);
  background: rgba(5, 5, 5, 0.78);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
  z-index: 2;
}
.work-card:hover .work-price { opacity: 1; }

/* ── Price range filter row ── */
.price-filter-tabs {
  display: flex;
  gap: 3px;
}
.price-tab {
  font-family: var(--beb);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--d1);
  color: var(--gray);
  border: 1px solid transparent;
  padding: 8px 18px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.price-tab:hover { color: var(--off-white); }
.price-tab.active {
  background: transparent;
  border-color: var(--red);
  color: var(--red);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { background: var(--d3); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-right: 4px solid var(--red);
}
.about-img-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: var(--d1);
  border-right: 4px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--beb); font-size: 0.65rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--d1); position: relative; overflow: hidden;
}
.about-img-placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 18px, rgba(255,255,255,0.015) 18px, rgba(255,255,255,0.015) 19px);
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px; margin-top: 40px;
}
.stat-box {
  background: var(--d2); padding: 22px 20px;
  border-left: 3px solid transparent;
  transition: border-color var(--transition);
}
.stat-box:hover { border-left-color: var(--red); }
.stat-box .num {
  font-family: var(--orb); font-weight: 900;
  font-size: 1.8rem; color: var(--red);
}
.stat-box .lbl {
  font-family: var(--body); font-weight: 300;
  font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gray); margin-top: 4px;
}

/* ============================================================
   MAP
   ============================================================ */
.map-container {
  width: 100%;
  margin-top: 48px;
  border: 2px solid var(--d1);
  overflow: hidden;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
  filter: grayscale(1) contrast(1.05);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section { background: var(--d2); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px; margin-top: 52px;
}
.review-card {
  background: var(--d1); padding: 32px 28px;
  border-top: 2px solid var(--d1);
  transition: border-color var(--transition);
}
.review-card:hover { border-top-color: var(--red); }
.stars { color: var(--red); font-size: 0.85rem; letter-spacing: 3px; margin-bottom: 16px; }
.review-text {
  font-family: var(--body); font-weight: 300; font-size: 0.9rem;
  line-height: 1.8; color: var(--gray); margin-bottom: 24px; font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--d2); border: 2px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--orb); font-weight: 700; font-size: 0.6rem;
  color: var(--red); flex-shrink: 0; text-transform: uppercase;
}
.reviewer-name {
  font-family: var(--orb); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--off-white);
}
.reviewer-role {
  font-family: var(--body); font-weight: 300; font-size: 0.66rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-top: 2px;
}

/* ============================================================
   ORDER / CONTACT FORM
   ============================================================ */
.order-section { background: var(--d3); }
.order-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px; align-items: start;
}
.order-info {}
.contact-detail {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid var(--d1);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--transition);
}
.contact-detail:hover .contact-icon { border-color: var(--red); }
.contact-icon svg { stroke: var(--red); }
.contact-label {
  font-family: var(--beb); font-size: 0.68rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gray); opacity: 0.6; margin-bottom: 3px;
}
.contact-value {
  font-family: var(--body); font-weight: 400; font-size: 0.9rem;
  color: var(--off-white);
}

/* Form */
.order-form { background: var(--d2); padding: 44px 40px; }
.form-title {
  font-family: var(--orb); font-weight: 900; font-size: 1.1rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--off-white); margin-bottom: 6px;
}
.form-sub {
  font-family: var(--body); font-weight: 300; font-size: 0.8rem;
  color: var(--gray); opacity: 0.6; margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px; margin-bottom: 14px;
}
.form-row.full { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-family: var(--beb); font-size: 0.66rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--red);
}
.form-input,
.form-select,
.form-textarea {
  background: var(--d1);
  border: 1px solid var(--d1);
  color: var(--off-white);
  font-family: var(--body); font-size: 0.88rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(212,212,212,0.3); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--red); }
.form-select { cursor: pointer; appearance: none; }
.form-select option { background: var(--d1); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%; margin-top: 8px;
  font-family: var(--beb); font-size: 1rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--red); color: var(--off-white);
  border: 2px solid var(--red);
  padding: 14px; cursor: pointer;
  transition: all var(--transition);
}
.form-submit:hover { background: transparent; color: var(--red-hi); }
.form-submit:active { transform: scale(0.98); }

/* Alert messages */
.alert {
  padding: 14px 18px; margin-bottom: 20px;
  font-family: var(--body); font-size: 0.85rem;
  border-left: 3px solid;
}
.alert-success { background: rgba(0,180,0,0.08); border-color: #00cc44; color: #00cc44; }
.alert-error   { background: rgba(204,0,0,0.08);  border-color: var(--red); color: var(--red-hi); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  background: var(--red);
  padding: 72px 60px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 28px;
}
.cta-text {}
.cta-title {
  font-family: var(--orb); font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--off-white); margin-bottom: 8px;
}
.cta-sub {
  font-family: var(--body); font-weight: 300; font-size: 1rem;
  color: rgba(244,244,244,0.75);
}
.btn-white {
  font-family: var(--beb); font-size: 0.95rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--off-white); color: var(--red);
  border: 2px solid var(--off-white);
  padding: 13px 36px; cursor: pointer;
  transition: all var(--transition); display: inline-block;
  white-space: nowrap;
}
.btn-white:hover { background: transparent; color: var(--off-white); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--d3);
  border-top: 1px solid var(--d1);
  padding: 60px 60px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px; margin-bottom: 48px;
}
.footer-brand .logo-text { font-size: 1.3rem; margin-bottom: 16px; }
.footer-brand p {
  font-family: var(--body); font-weight: 300; font-size: 0.85rem;
  color: var(--gray); line-height: 1.75; max-width: 300px; opacity: 0.7;
  margin-bottom: 24px;
}
.social-row { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--d1); background: transparent;
  color: var(--gray); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition);
}
.social-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }
.social-btn svg { fill: currentColor; }

.footer-col-title {
  font-family: var(--orb); font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--off-white); margin-bottom: 20px;
  padding-bottom: 10px; border-bottom: 1px solid var(--d1);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-family: var(--body); font-weight: 300; font-size: 0.85rem;
  color: var(--gray); opacity: 0.65; transition: all var(--transition);
}
.footer-links a:hover { opacity: 1; color: var(--red-hi); padding-left: 6px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 14px;
}
.footer-contact-item svg { stroke: var(--red); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span {
  font-family: var(--body); font-weight: 300; font-size: 0.82rem;
  color: var(--gray); opacity: 0.7; line-height: 1.5;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--d1);
  flex-wrap: wrap; gap: 12px;
}
.footer-copy {
  font-family: var(--body); font-weight: 300; font-size: 0.7rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray); opacity: 0.35;
}

/* Scroll to top */
.scroll-top-btn {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--red); border: none; color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 999;
  opacity: 0; pointer-events: none;
  transition: all var(--transition);
}
.scroll-top-btn.visible { opacity: 1; pointer-events: all; }
.scroll-top-btn:hover { background: var(--red-hi); transform: translateY(-3px); }

/* Page Hero (inner pages) */
.page-hero {
  background: var(--d2);
  padding: 80px 60px 60px;
  border-bottom: 2px solid var(--red);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; right: -5%; top: 0;
  width: 50%; height: 100%;
  background: var(--d1);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; }
.breadcrumb {
  font-family: var(--beb); font-size: 0.65rem;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gray); opacity: 0.45; margin-bottom: 14px;
}
.breadcrumb a { color: var(--red); }
.page-title {
  font-family: var(--orb); font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4rem);
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--off-white); line-height: 1.0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  header { padding: 14px 32px; }
  .hero { padding: 0 32px; }
  .section { padding: 80px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  header { padding: 14px 20px; }
  nav.desktop-nav { display: none; }
  .hamburger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto; padding: 40px 20px 60px;
  }
  .hero::before { display: none; }
  .hero-image { display: none; }
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; }
  .hero-stat { padding: 20px 16px; }
  .stat-num { font-size: 1.6rem; }

  .section { padding: 60px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .works-grid { grid-template-columns: 1fr 1fr; }
  .work-card.featured { grid-column: span 2; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img, .about-img-placeholder { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .order-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-section { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .page-hero { padding: 60px 20px 40px; }
  .works-header { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--d1); }
  .works-grid { grid-template-columns: 1fr; }
  .work-card.featured { grid-column: span 1; }
  .filter-tabs { flex-wrap: wrap; }
}

/* ── Process Steps (order page) ── */
.process-steps { display: flex; flex-direction: column; gap: 20px; }
.step { display: flex; align-items: flex-start; gap: 18px; }
.step-num {
  font-family: var(--orb); font-weight: 900; font-size: 1.4rem;
  color: var(--red); line-height: 1; flex-shrink: 0; width: 36px;
}
.step-title {
  font-family: var(--orb); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--off-white); margin-bottom: 4px;
}
.step-desc {
  font-family: var(--body); font-weight: 300; font-size: 0.82rem;
  color: var(--gray); line-height: 1.6;
}
