/* Rad Rovers — dark automotive stylesheet
   Barlow Condensed (headings/UI) + Lato (body) | Dark navy + orange palette */

:root {
  --dark-navy:    rgb(27, 31, 37);
  --charcoal:     rgb(42, 48, 57);
  --near-black:   rgb(28, 28, 28);
  --orange:       rgb(254, 144, 1);
  --blue:         rgb(46, 163, 242);
  --navy-cta:     rgba(13, 72, 114, 0.92);
  --navy-cta-mid: rgba(14, 73, 114, 0.74);
  --red-accent:   rgb(193, 15, 27);
  --body-text:    rgb(102, 102, 102);
  --white:        #ffffff;
  --light-bg:     #f5f5f5;
  --border:       rgba(255,255,255,.12);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 17px;
  color: var(--body-text);
  background: var(--white);
  line-height: 1.75em;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 60px;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Barlow Condensed', Helvetica, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 .5em;
}
h1 { letter-spacing: 0.08em; }
p, .body-copy, li {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 300;
}
p { margin: 0 0 1em; }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.1rem; }

/* ── Layout ──────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-white    { background: var(--white); }
.section-light    { background: var(--light-bg); }
.section-dark     { background: var(--charcoal); }
.section-charcoal { background: var(--charcoal); }
.section-darkest  { background: var(--dark-navy); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 40px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 4px;
  text-transform: uppercase;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: background 300ms, transform 150ms, opacity 200ms;
  text-decoration: none !important;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); opacity: .92; }
.btn-orange { background: var(--orange); color: #fff !important; }
.btn-orange:hover { background: rgb(230, 125, 0); }
.btn-white  { background: #fff; color: #111 !important; }
.btn-white:hover  { background: #e8e8e8; }
.btn-dark   { background: rgb(38, 38, 38); color: #fff !important; }
.btn-dark:hover { background: rgb(20, 20, 20); }
.btn-navy   { background: var(--navy-cta); color: #fff !important; }
.btn-navy:hover { background: rgba(13, 72, 114, 1); }
.btn-outline-white {
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,.7);
  padding: 12px 38px;
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); }
.btn-block { display: block; text-align: center; width: 100%; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* ── Site Header ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 350ms ease, box-shadow 350ms ease;
}
.site-header.scrolled {
  background: var(--dark-navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.site-header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
}
.brand img {
  height: 58px;
  width: auto;
  display: block;
  filter: brightness(1.1);
}

/* Desktop nav */
.nav-desktop { display: none; }
@media (min-width: 1000px) {
  .nav-desktop { display: block; }
}
.nav-desktop ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0; padding: 0;
  gap: 0;
}
.nav-desktop ul li { position: relative; }
.nav-desktop ul li a {
  display: block;
  padding: 10px 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff !important;
  transition: color 200ms;
}
.nav-desktop ul li a:hover { color: var(--orange) !important; text-decoration: none; }

/* Dropdown */
.nav-desktop ul li ul.sub-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: var(--dark-navy);
  min-width: 220px;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
  z-index: 10;
}
.nav-desktop ul li:hover ul.sub-menu { display: flex; }
.nav-desktop ul li ul.sub-menu li a {
  padding: 10px 18px;
  font-size: 15px;
  letter-spacing: 2px;
  border-top: 1px solid rgba(255,255,255,.07);
}

/* Dropdown caret indicator — inline so it doesn't add height */
.nav-caret {
  display: inline;
  font-size: 10px;
  margin-left: 4px;
  opacity: 0.55;
  letter-spacing: 0;
  vertical-align: middle;
}

/* Start Your Build CTA button in nav */
.nav-desktop ul li a.nav-cta {
  padding: 8px 18px;
  font-size: 17px;
  letter-spacing: 3px;
  border-radius: 3px;
  margin-left: 6px;
  color: #fff !important;
}
.nav-desktop ul li a.nav-cta:hover {
  background: #e07e00;
  color: #fff !important;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
@media (min-width: 1000px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: all 250ms;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 80px; left: 0; right: 0;
  background: var(--dark-navy);
  padding: 20px 24px 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 12px 32px rgba(0,0,0,.5);
}
.mobile-menu.open { display: block; }
.mobile-menu ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.mobile-menu ul li a {
  display: block;
  padding: 11px 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff !important;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-menu ul li a:hover { color: var(--orange) !important; text-decoration: none; }
.mobile-menu ul.sub-menu {
  margin: 0;
  padding-left: 16px;
}
.mobile-menu ul.sub-menu li a {
  font-size: 16px;
  letter-spacing: 2px;
  opacity: .8;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark-navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.36) 0%, rgb(61,61,61) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 900px;
  margin: 0 auto;
}
.hero-inner h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  color: #fff;
  letter-spacing: 6px;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}

/* ── Hero logo images ────────────────────────────────────── */
.hero-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-logo-img {
  height: 88px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.6));
  transition: transform 250ms, filter 250ms;
  border-radius: 6px;
}
.hero-logo-img:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.8));
}
.hero-inner h2 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: rgba(255,255,255,.9);
  letter-spacing: 4px;
  font-weight: 400;
  margin-bottom: 20px;
}
.hero-inner p {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: rgba(255,255,255,.85);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ── Two-col dark bar ────────────────────────────────────── */
.two-bar {
  background: var(--charcoal);
  padding: 70px 0;
}
.two-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 760px) {
  .two-bar-inner { grid-template-columns: 1fr; gap: 48px; }
}
.two-bar-blurb { text-align: center; }
.two-bar-icon {
  font-size: 64px;
  margin-bottom: 20px;
  color: var(--blue);
  line-height: 1;
}
.two-bar-icon svg { width: 64px; height: 64px; fill: var(--blue); margin: 0 auto; }
.two-bar-blurb h3 {
  font-size: 2rem;
  color: #fff;
  letter-spacing: 4px;
  margin-bottom: 14px;
}
.two-bar-blurb p {
  color: rgba(255,255,255,.72);
  font-size: 15px;
  margin-bottom: 24px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Projects section ────────────────────────────────────── */
.projects-section {
  background: var(--white);
  padding: 80px 0;
}
.projects-head {
  text-align: center;
  margin-bottom: 50px;
}
.projects-head h2 {
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--dark-navy);
  letter-spacing: 6px;
}
.projects-head p {
  font-size: 16px;
  color: var(--body-text);
  max-width: 580px;
  margin: 0 auto;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) {
  .projects-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .projects-grid { grid-template-columns: 1fr; }
}
.project-card {
  position: relative;
  overflow: hidden;
  background: var(--dark-navy);
}
.project-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 400ms ease;
}
.project-card:hover img { transform: scale(1.04); }
.project-card-body {
  padding: 18px 20px;
}
.project-card-body h4 {
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 0;
}
.projects-foot {
  text-align: center;
  margin-top: 40px;
}

/* ── Features / Why Us ───────────────────────────────────── */
.features-section {
  background: var(--charcoal);
  padding: 80px 0;
}
.features-head {
  text-align: center;
  margin-bottom: 48px;
}
.features-head h2 { color: #fff; }
.features-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.feature-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-icon svg {
  width: 36px; height: 36px;
  stroke: var(--orange);
  fill: none;
}
.feature-item h4 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 4px;
}
.feature-item p {
  font-size: 17px;
  color: rgba(255,255,255,.65);
  margin: 0;
}
.features-cta {
  text-align: center;
  margin-top: 52px;
}

/* ── Dream / full-bleed CTA ──────────────────────────────── */
.dream-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: var(--dark-navy);
}
.dream-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.dream-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,31,37,.82);
}
.dream-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(8rem, 22vw, 20rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  opacity: .04;
  filter: blur(4px);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}
.dream-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Dream section two-route cards ──────────────────────── */
.dream-routes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  text-align: left;
}
@media (max-width: 680px) {
  .dream-routes { grid-template-columns: 1fr; }
}
.dream-route {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  padding: 32px 28px 28px;
}
.dream-route h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.dream-route p {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,.72);
  line-height: 1.8;
  margin-bottom: 24px;
}
.btn-white-ghost {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.5);
  padding: 10px 24px;
  text-decoration: none !important;
  transition: background 200ms, border-color 200ms;
}
.btn-white-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}
.dream-inner h2 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: #fff;
  letter-spacing: 6px;
  margin-bottom: 24px;
}
.dream-inner p {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  color: rgba(255,255,255,.78);
  line-height: 1.75;
  margin-bottom: 32px;
}

/* ── Bio / Jason two-column split section ────────────────── */
.bio-section {
  background: var(--dark-navy);
  padding: 0;
  overflow: hidden;
}
.bio-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
@media (max-width: 820px) {
  .bio-split { grid-template-columns: 1fr; }
}
.bio-photo-col {
  position: relative;
  overflow: hidden;
}
.bio-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  display: block;
  min-height: 500px;
}
@media (max-width: 820px) {
  .bio-photo-img {
    min-height: 340px;
    object-position: center top;
  }
}
.bio-text-col {
  background: var(--dark-navy);
  position: relative;
  display: flex;
  align-items: center;
}
.bio-text-col::before {
  content: '';
  position: absolute;
  left: -80px;
  top: 0;
  bottom: 0;
  width: 140px;
  background: linear-gradient(to right, transparent, var(--dark-navy));
  z-index: 1;
  pointer-events: none;
}
.bio-content-wrap {
  position: relative;
  z-index: 2;
  padding: 64px 56px 64px 36px;
  max-width: 100%;
}
.bio-content-wrap h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  letter-spacing: 4px;
  margin-bottom: 8px;
}
.bio-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
}
.bio-content-wrap p {
  font-size: 15px;
  color: rgba(255,255,255,.75);
  line-height: 1.85;
  margin-bottom: 20px;
}
.bio-feature-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}
.bio-feature-list li {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  gap: 12px;
}
.bio-feature-list li::before {
  content: "→";
  color: var(--orange);
  font-size: 14px;
  flex-shrink: 0;
}
.bio-quote {
  border-left: 3px solid var(--orange);
  padding: 14px 20px;
  margin: 24px 0;
  background: rgba(254,144,1,.07);
}
.bio-quote p {
  font-family: 'Lato', sans-serif;
  font-style: italic;
  color: rgba(255,255,255,.7);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

/* ── Contact strip ───────────────────────────────────────── */
.contact-strip {
  background: var(--charcoal);
  padding: 32px 0;
}
.contact-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px 40px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.contact-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  text-decoration: none !important;
}
.contact-strip-item svg { stroke: var(--orange); fill: none; flex-shrink: 0; }
.contact-strip-item:hover { color: var(--orange) !important; }
.contact-strip-divider {
  width: 1px; height: 24px;
  background: rgba(255,255,255,.2);
}
@media (max-width: 640px) { .contact-strip-divider { display: none; } }

/* ── Inner page header ───────────────────────────────────── */
.page-header {
  padding: 140px 24px 70px;
  background: var(--dark-navy);
  text-align: center;
}
.page-header h1 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  color: #fff;
  letter-spacing: 6px;
}
.page-header p {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,.75);
  max-width: 580px;
  margin: 12px auto 0;
}
.page-header .eyebrow-label {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--near-black);
  padding: 60px 0 30px;
  color: rgba(255,255,255,.7);
  font-family: 'Lato', sans-serif;
  font-size: 14px;
}
.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto 40px;
  padding: 0 24px;
}
@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.footer-col p { margin: 0 0 8px; color: rgba(255,255,255,.65); }
.footer-col a { color: rgba(255,255,255,.7); }
.footer-col a:hover { color: var(--orange); text-decoration: none; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 7px; }
.footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(1.1);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 24px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  max-width: 1180px;
  margin: 0 auto;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--orange); }

/* ── Mobile sticky CTA ───────────────────────────────────── */
.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  display: flex;
}
@media (min-width: 900px) { .mobile-cta { display: none; } }
.mobile-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none !important;
}
.mobile-cta .call    { background: var(--charcoal); color: #fff !important; }
.mobile-cta .call .phone-icon { color: var(--orange); }
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 640px) { .locations-grid { grid-template-columns: 1fr; } }
.mobile-cta .contact { background: var(--orange); color: #fff !important; }

/* ── Forms ───────────────────────────────────────────────── */
.form-section {
  padding: 80px 0;
  background: var(--white);
}
.form-wrap {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 24px;
}
.form-wrap h2 {
  font-size: 2.8rem;
  color: var(--dark-navy);
  letter-spacing: 4px;
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark-navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #ccc;
  background: #fafafa;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: #333;
  border-radius: 0;
  transition: border-color 200ms;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--navy-cta);
}
.form-group textarea { height: 130px; resize: vertical; }
.form-consent {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  color: #777;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 22px;
  line-height: 1.5;
}
.form-consent input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; }
.form-honeypot { display: none !important; }
.form-success { display: none; background: #d4edda; color: #155724; padding: 14px 18px; margin-top: 16px; font-family: 'Lato', sans-serif; }
.form-error   { display: none; background: #f8d7da; color: #721c24; padding: 14px 18px; margin-top: 16px; font-family: 'Lato', sans-serif; }

/* ── Projects listing (inner page) ──────────────────────── */
.projects-listing {
  padding: 60px 0 80px;
}
.projects-listing .projects-grid { gap: 30px; }

/* ── For Sale listing ────────────────────────────────────── */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  padding: 60px 0 80px;
}
.listing-card {
  background: var(--dark-navy);
  overflow: hidden;
}
.listing-card img {
  width: 100%; height: 220px;
  object-fit: cover;
}
.listing-card-body { padding: 18px 20px; }
.listing-card-body h3 { color: #fff; font-size: 1.3rem; letter-spacing: 2px; }
.listing-card-body .status {
  display: inline-block;
  padding: 3px 10px;
  background: var(--orange);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.listing-card-body p { color: rgba(255,255,255,.65); font-size: 14px; }

/* ── About page extras ───────────────────────────────────── */
.history-item { margin-bottom: 48px; }
.history-item h2 { color: var(--dark-navy); font-size: 2rem; margin-bottom: 10px; }
.history-item .specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.history-item .spec-tag {
  background: var(--dark-navy);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
}

/* ── 404 page ────────────────────────────────────────────── */
.not-found-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-navy);
  text-align: center;
  padding: 120px 24px 80px;
}
.not-found-section h1 {
  font-size: clamp(5rem, 15vw, 12rem);
  color: rgba(255,255,255,.08);
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 0;
}
.not-found-section h2 {
  font-size: 2.5rem;
  color: #fff;
  letter-spacing: 5px;
  margin: 8px 0 20px;
}
.not-found-section p {
  font-family: 'Lato', sans-serif;
  color: rgba(255,255,255,.65);
  font-size: 17px;
  margin-bottom: 32px;
}

/* ── Parts section ───────────────────────────────────────── */
.parts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  padding: 60px 0 80px;
}
.part-card {
  border: 2px solid #e0e0e0;
  background: #fff;
}
.part-card img { width: 100%; height: 200px; object-fit: cover; }
.part-card-body { padding: 18px; }
.part-card-body h3 { color: var(--dark-navy); font-size: 1.5rem; letter-spacing: 2px; }
.part-card-body p { font-size: 16px; color: var(--body-text); margin-bottom: 14px; }
.part-card-body .price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--orange);
  text-transform: uppercase;
}

/* ── Restoration page ────────────────────────────────────── */
.restoration-steps {
  counter-reset: step;
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
}
.restoration-steps li {
  counter-increment: step;
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  align-items: flex-start;
}
.restoration-steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  text-align: center;
}
.restoration-steps li h4 {
  color: var(--dark-navy);
  font-size: 1.4rem;
  letter-spacing: 3px;
  margin-bottom: 8px;
}
.restoration-steps li p { color: var(--body-text); font-size: 15px; }

/* ── Utility ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-white  { color: #fff !important; }
.text-orange { color: var(--orange) !important; }
.text-blue   { color: var(--blue) !important; }
.mb-0  { margin-bottom: 0 !important; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* Admin bar compatibility — push content below fixed header.
   When isAdmin the admin-bar sits above the site-header. */
body.is-admin-view { padding-top: 44px; }


/* ── Logo strip ──────────────────────────────────────────── */
.logo-strip {
  background: var(--dark-navy);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 28px 24px;
}
.logo-strip-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.logo-strip-inner img {
  height: 70px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .55;
  transition: opacity .2s;
}
.logo-strip-inner img:hover { opacity: .85; }
@media (max-width: 560px) {
  .logo-strip-inner { gap: 32px; }
  .logo-strip-inner img { height: 48px; }
}

/* ── Restoration page split layout ──────────────────────── */
.restoration-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 70px;
}
.restoration-split-img img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  background: #f0efeb;
}
@media (max-width: 760px) {
  .restoration-split { grid-template-columns: 1fr; }
}

/* ── Customize grid ──────────────────────────────────────── */
.customize-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 16px;
}
.customize-item {
  background: var(--light-bg);
  padding: 28px 24px;
  border-top: 3px solid var(--orange);
}
.customize-item h4 {
  color: var(--dark-navy);
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.customize-item p {
  font-size: 16px;
  color: var(--body-text);
  margin: 0;
}
@media (max-width: 900px) { .customize-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .customize-grid { grid-template-columns: 1fr; } }

/* ── Parts page extended styles ──────────────────────────── */
.parts-grid { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.part-card-wide { grid-column: 1 / -1; }
.part-card-imgs {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4px;
  background: #eee;
}
.part-card-imgs img { width: 100%; height: 220px; object-fit: cover; margin: 0; }
.part-img-secondary { height: 220px; }
.part-card-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  background: #eee;
}
.part-card-gallery img { width: 100%; height: 180px; object-fit: cover; margin: 0; }
@media (max-width: 700px) {
  .part-card-gallery { grid-template-columns: repeat(2, 1fr); }
  .part-card-imgs { grid-template-columns: 1fr; }
  .part-img-secondary { display: none; }
}
.part-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.part-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--dark-navy);
  color: #fff;
  padding: 3px 10px;
  display: inline-block;
}

/* ── Dream watermark — accommodate longer text ───────────── */
.dream-watermark { font-size: clamp(5rem, 15vw, 14rem); }

/* ── Section heading (centred, light) ───────────────────── */
.section-head-centered {
  text-align: center;
  margin-bottom: 48px;
}
.eyebrow-label--light {
  color: rgba(255,255,255,.5);
  border-color: rgba(255,255,255,.25);
}
.eyebrow-label--orange {
  color: var(--orange);
  border-color: rgba(254,144,1,.35);
}

/* ── Famous Enthusiasts grid ─────────────────────────────── */
.enthusiasts-section { padding: 80px 0 72px; }

.enthusiasts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .enthusiasts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .enthusiasts-grid { grid-template-columns: 1fr; } }

.enthusiast-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 28px 24px;
  transition: background 250ms, border-color 250ms;
}
.enthusiast-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(254,144,1,.4);
}
.enthusiast-initial {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.enthusiast-card h3 {
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: 2px;
  margin: 0 0 10px;
}
.enthusiast-card p {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.65);
  margin: 0;
}

/* ── Camel Trophy / Video section ───────────────────────── */
.camel-section { padding: 80px 0; }

.history-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .history-video-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .history-video-grid { grid-template-columns: 1fr; } }

.history-video-wrap { display: flex; flex-direction: column; }
.history-video-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin: 0 0 10px;
}
.history-video-box {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: rgba(0,0,0,.4);
}
.history-video-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Portfolio grid (projects page) ─────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}
@media (max-width: 960px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .portfolio-grid { grid-template-columns: 1fr; } }

.portfolio-card {
  display: flex;
  flex-direction: column;
  background: var(--dark-navy);
  text-decoration: none;
  color: inherit;
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.45);
}
.portfolio-card-image {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.portfolio-card-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}
.portfolio-card:hover .portfolio-card-image img { transform: scale(1.05); }

.portfolio-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 10px;
  color: #fff;
}
.portfolio-badge--done    { background: var(--orange); }
.portfolio-badge--sold    { background: rgba(0,0,0,.65); border: 1px solid rgba(255,255,255,.3); }
.portfolio-badge--current { background: var(--blue); }

.portfolio-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.portfolio-card-nickname {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 6px;
}
.portfolio-card-title {
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: 1.5px;
  line-height: 1.3;
  margin: 0 0 10px;
}
.portfolio-card-summary {
  font-family: 'Lato', sans-serif;
  font-size: 13.5px;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
}
.portfolio-card-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: auto;
}

.projects-cta-strip {
  text-align: center;
  background: var(--charcoal);
  padding: 52px 40px;
}
.projects-cta-strip h3 {
  color: #fff;
  letter-spacing: 4px;
  margin-bottom: 12px;
}
.projects-cta-strip p {
  font-family: 'Lato', sans-serif;
  color: rgba(255,255,255,.7);
  margin-bottom: 24px;
}

/* ───────────────────────────────────────────────────────
   Project Detail (v2) — solid hero, side-by-side, lightbox, carousel
   ─────────────────────────────────────────────────────── */

/* HERO: solid dark, two columns ------------------------------------ */
.pd-hero {
  background: var(--dark-navy);
  padding: 120px 0 64px; /* clear fixed nav */
}
.pd-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .pd-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .pd-hero { padding: 110px 0 48px; }
}

.pd-back-link {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 200ms;
}
.pd-back-link:hover { color: var(--orange); }

.pd-nickname {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  letter-spacing: 2px;
  color: var(--orange);
  margin: 0 0 8px;
  line-height: 1;
}
.pd-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  color: #fff;
  letter-spacing: 3px;
  line-height: 1.15;
  margin: 0 0 18px;
}
.pd-summary {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
  margin: 0 0 28px;
  max-width: 540px;
}

/* Quick Facts box */
.pd-facts-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-left: 3px solid var(--orange);
  padding: 20px 24px;
  margin-bottom: 28px;
  max-width: 480px;
}
.pd-facts-header {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.pd-facts-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(255,255,255,.06);
}
.pd-facts-row:last-child { border-bottom: 0; }
.pd-facts-key {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.pd-facts-val {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-align: right;
}

/* Status colors (used in facts + featured badge + carousel) */
.pd-status-completed { color: var(--orange); }
.pd-status-current   { color: var(--blue); }
.pd-status-sold      { color: rgba(255,255,255,.55); }

.pd-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Right: featured image */
.pd-hero-right { position: relative; }
.pd-featured {
  position: relative;
  width: 100%;
  margin: 0;
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
  overflow: hidden;
}
.pd-featured-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.pd-featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: rgba(0,0,0,.78);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}
.pd-featured-badge.pd-status-completed { background: var(--orange); color: #fff; }
.pd-featured-badge.pd-status-current   { background: var(--blue); color: #fff; }
.pd-featured-badge.pd-status-sold      { background: rgba(0,0,0,.85); color: #fff; }

/* STORY ----------------------------------------------------------- */
.pd-story-section {
  background: #fff;
  padding: 72px 0;
}
.container--narrow { max-width: 760px; }
.pd-story p {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--body-text);
  margin: 0 0 22px;
}
.pd-story p:last-child { margin-bottom: 0; }
.pd-story-list {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--body-text);
  margin: 0 0 26px;
  padding-left: 24px;
  list-style: none;
}
.pd-story-list li {
  position: relative;
  padding: 6px 0 6px 22px;
  border-bottom: 1px dashed rgba(0,0,0,.08);
  font-weight: 400;
}
.pd-story-list li:last-child { border-bottom: 0; }
.pd-story-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 10px;
  height: 2px;
  background: var(--orange);
}

/* Section heading shared */
.pd-section-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(0,0,0,.85);
  margin: 0 0 8px;
  text-align: center;
}
.pd-section-heading--light { color: #fff; text-align: left; margin-bottom: 0; }
.pd-section-sub {
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: rgba(0,0,0,.5);
  margin: 0 0 36px;
}

/* GALLERY --------------------------------------------------------- */
.pd-gallery-section {
  background: #f5f3ef;
  padding: 72px 0 80px;
}
.pd-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 760px) { .pd-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .pd-gallery { grid-template-columns: 1fr; } }

.pd-gallery-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  background: #000;
  border: 0;
  cursor: zoom-in;
  overflow: hidden;
}
.pd-gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: opacity 250ms, transform 400ms;
}
.pd-gallery-item:hover img { opacity: .85; transform: scale(1.04); }
.pd-gallery-item:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

/* LIGHTBOX -------------------------------------------------------- */
.pd-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  animation: pdFade 200ms ease-out;
}
.pd-lightbox[hidden] { display: none; }
@keyframes pdFade { from { opacity: 0; } to { opacity: 1; } }
.pd-lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 16px 60px rgba(0,0,0,.7);
}
.pd-lightbox-close,
.pd-lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  width: 48px;
  height: 48px;
  font-size: 22px;
  cursor: pointer;
  transition: background 200ms;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-lightbox-close:hover,
.pd-lightbox-nav:hover { background: var(--orange); border-color: var(--orange); }
.pd-lightbox-close { top: 24px; right: 24px; font-size: 28px; line-height: 1; }
.pd-lightbox-prev  { left: 24px;  top: 50%; transform: translateY(-50%); }
.pd-lightbox-next  { right: 24px; top: 50%; transform: translateY(-50%); }
.pd-lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: rgba(255,255,255,.7);
}

/* MORE BUILDS CAROUSEL ------------------------------------------- */
.pd-carousel-section {
  background: var(--dark-navy);
  padding: 72px 0 80px;
}
.pd-carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.pd-carousel-controls {
  display: flex;
  gap: 8px;
}
.pd-carousel-btn {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background 200ms, border-color 200ms;
}
.pd-carousel-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
}
.pd-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 12px;
  margin: 0 -8px;
  padding-left: 8px;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) rgba(255,255,255,.05);
}
.pd-carousel::-webkit-scrollbar { height: 6px; }
.pd-carousel::-webkit-scrollbar-track { background: rgba(255,255,255,.05); }
.pd-carousel::-webkit-scrollbar-thumb { background: var(--orange); }

.pd-carousel-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: var(--charcoal);
  text-decoration: none;
  display: block;
  overflow: hidden;
  transition: transform 250ms, box-shadow 250ms;
}
.pd-carousel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.55);
}
@media (max-width: 560px) { .pd-carousel-card { flex: 0 0 80vw; } }

.pd-carousel-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.pd-carousel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms;
}
.pd-carousel-card:hover .pd-carousel-img img { transform: scale(1.04); }
.pd-carousel-status {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  background: rgba(0,0,0,.78);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
}
.pd-carousel-status.pd-status-completed { background: var(--orange); }
.pd-carousel-status.pd-status-current   { background: var(--blue); }

.pd-carousel-info { padding: 18px 20px 22px; }
.pd-carousel-nick {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-style: italic;
  color: var(--orange);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.pd-carousel-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.3;
}
.pd-carousel-meta {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

/* CTA ------------------------------------------------------------- */
.pd-cta-section {
  background: var(--charcoal);
  padding: 80px 0;
}
.pd-cta-box {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.pd-cta-box h3 {
  color: #fff;
  letter-spacing: 4px;
  margin-bottom: 14px;
}
.pd-cta-box p {
  font-family: 'Lato', sans-serif;
  color: rgba(255,255,255,.7);
  margin-bottom: 28px;
}
.pd-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Outline white button (used in hero + CTA) */
.btn-outline-white {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 2px solid rgba(255,255,255,.5);
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: border-color 200ms, color 200ms, background 200ms;
}
.btn-outline-white:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.05); }
