/* ═══════════════════════════════════════════════════════
   Celtic Scaffolding Solutions - site.css
   ═══════════════════════════════════════════════════════ */

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

:root {
  --gold:         #C9A84C;
  --gold-light:   #E8C96A;
  --gold-dark:    #8A6820;
  --black:        #080808;
  --dark:         #0E0E0E;
  --charcoal:     #1A1A1A;
  --steel:        #2A2A2E;
  --mid:          #3D3D3D;
  --silver:       #9A9A9A;
  --light:        #E8E8E8;
  --white:        #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  height: 80px;
  background: linear-gradient(180deg, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.0) 100%);
  backdrop-filter: blur(2px);
  animation: fadeDown 1s ease both;
}
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo img { height: 48px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase;
  color: var(--black) !important;
  background: var(--gold);
  padding: 10px 24px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s, color 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; color: var(--black) !important; }

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 16px 40px;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-primary:hover::before { transform: scaleX(1); }
.btn-primary span { position: relative; z-index: 1; }

.btn-ghost {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}
.btn-ghost svg { transition: transform 0.3s; }
.btn-ghost:hover { color: var(--gold); }
.btn-ghost:hover svg { transform: translateX(4px); }

/* ─── SHARED SECTION ELEMENTS ─────────────────────────── */
.section-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 1.5rem; }
.section-eyebrow-line { width: 32px; height: 1px; background: var(--gold); flex-shrink: 0; }
.section-eyebrow span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 1.8rem;
}
.section-title em { font-style: normal; color: var(--gold); }

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,8,8,0.2) 0%, rgba(8,8,8,0.15) 40%, rgba(8,8,8,0.75) 75%, rgba(8,8,8,1) 100%),
    linear-gradient(105deg, rgba(8,8,8,0.6) 0%, transparent 55%),
    url('/media/haifycpd/scaffold-hero.jpg') center/cover no-repeat;
  transform: scale(1.05);
  animation: slowZoom 20s ease-out both;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  z-index: 2;
  animation: fadeIn 1.5s 0.8s ease both;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 4rem 7rem;
  max-width: 900px;
  animation: slideUp 1.2s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 1.5rem; }
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.hero-eyebrow span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: clamp(3.8rem, 7vw, 7.5rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-slogan {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-style: italic;
  color: var(--light);
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
  opacity: 0.9;
}
.hero-actions { display: flex; align-items: center; gap: 2rem; }
.hero-stats {
  position: absolute;
  right: 0; bottom: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  background: rgba(14,14,14,0.85);
  border-left: 1px solid rgba(201,168,76,0.3);
  backdrop-filter: blur(10px);
  animation: fadeIn 1.5s 1.2s ease both;
}
.hero-stat { padding: 1.6rem 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.06); text-align: right; }
.hero-stat:last-child { border-bottom: none; }
.hero-stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.02em;
}
.hero-stat-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 4px;
}

/* ─── PAGE HERO (inner pages) ─────────────────────────── */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 80px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,8,0.1) 0%, rgba(8,8,8,0.5) 100%);
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 4rem 4rem;
}
.page-hero-content h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-top: 0.8rem;
}

/* ─── CREDENTIALS BAR ─────────────────────────────────── */
.credentials-bar {
  position: relative;
  background: var(--charcoal);
  border-top: 1px solid rgba(201,168,76,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 0 4rem;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.credentials-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cred-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  padding: 1.4rem 2.5rem 1.4rem 0;
  border-right: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap;
  margin-right: 2.5rem;
}
.cred-items { display: flex; align-items: center; gap: 0; flex: 1; overflow: hidden; }
.cred-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1.4rem 2.2rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  white-space: nowrap;
}
.cred-icon {
  width: 28px; height: 28px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cred-icon svg { width: 14px; height: 14px; color: var(--gold); }
.cred-icon--large { width: 48px; height: 48px; }
.cred-icon--large svg { width: 22px; height: 22px; }
.cred-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light);
  display: block;
}
.cred-sub {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
}

/* ─── INTRO ───────────────────────────────────────────── */
.intro {
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.intro::before {
  content: 'CSS';
  position: absolute;
  right: -2rem; top: 50%;
  transform: translateY(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 28rem;
  color: rgba(255,255,255,0.015);
  letter-spacing: -0.05em;
  pointer-events: none;
  line-height: 1;
}
.intro-text { position: relative; z-index: 1; }
.intro-body { font-weight: 300; font-size: 1.05rem; color: var(--silver); line-height: 1.9; margin-bottom: 1.4rem; }
.intro-body strong { color: var(--light); font-weight: 400; }
.intro-callout {
  margin-top: 2.5rem;
  padding: 1.6rem 2rem;
  border-left: 3px solid var(--gold);
  background: rgba(201,168,76,0.05);
}
.intro-callout p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--light);
  font-weight: 300;
  line-height: 1.6;
}
.intro-signature { margin-top: 1rem; padding-left: 2rem; }
.intro-signature p { font-family: 'Great Vibes', cursive; font-size: 2rem; color: var(--gold); line-height: 1.2; }
.intro-visual { position: relative; z-index: 1; }
.intro-img-wrap { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.intro-img-wrap img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(30%) contrast(1.05); transition: transform 6s ease; }
.intro-img-wrap:hover img { transform: scale(1.04); }
.intro-img-wrap::before, .intro-img-wrap::after { content: ''; position: absolute; width: 40px; height: 40px; z-index: 2; }
.intro-img-wrap::before { top: -1px; right: -1px; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.intro-img-wrap::after { bottom: -1px; left: -1px; border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.intro-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,8,0.5) 0%, transparent 50%); z-index: 1; }
.intro-img-tag {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  z-index: 2;
  background: rgba(8,8,8,0.85);
  border-left: 2px solid var(--gold);
  padding: 0.8rem 1.2rem;
  backdrop-filter: blur(8px);
}
.intro-img-tag span { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); display: block; }
.intro-img-tag p { font-weight: 300; font-size: 0.8rem; color: var(--light); margin-top: 2px; }

/* ─── SERVICES ────────────────────────────────────────── */
.services { padding: 4rem 4rem 7rem; position: relative; }
.services-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3.5rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.services-header-left { max-width: 480px; }
.services-meta { font-family: 'Barlow Condensed', sans-serif; font-weight: 300; font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--silver); text-align: right; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.04); }
.service-card { position: relative; overflow: hidden; cursor: pointer; min-height: 520px; display: flex; flex-direction: column; justify-content: flex-end; }
/* Image: full colour, no filter — let the gradient do the work */
.service-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: none; transition: transform 0.6s ease; transform: scale(1.02); }
.service-card:hover .service-card-bg { transform: scale(1.08); }
/* Overlay: fully transparent at top, fades to near-black over the bottom ~55% */
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,8,8,1)    0%,
    rgba(8,8,8,0.97) 30%,
    rgba(8,8,8,0.85) 48%,
    rgba(8,8,8,0.3)  65%,
    rgba(8,8,8,0.0)  100%
  );
  transition: background 0.4s;
}
/* On hover the fade starts slightly higher, revealing a touch more image */
.service-card:hover .service-card-overlay {
  background: linear-gradient(
    to top,
    rgba(8,8,8,1)    0%,
    rgba(8,8,8,0.95) 32%,
    rgba(8,8,8,0.75) 52%,
    rgba(8,8,8,0.15) 72%,
    rgba(8,8,8,0.0)  100%
  );
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); z-index: 3; }
.service-card:hover::before, .service-card.featured::before { transform: scaleX(1); }
.service-card-content { position: relative; z-index: 2; padding: 2.5rem 2rem; }
.service-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 3rem; color: rgba(201,168,76,0.18); line-height: 1; margin-bottom: 1rem; letter-spacing: -0.02em; }
.service-card.featured .service-num { color: rgba(201,168,76,0.3); }
.service-icon { width: 44px; height: 44px; margin-bottom: 1.2rem; }
.service-icon svg { width: 100%; height: 100%; color: var(--gold); }
.service-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 500; font-size: 1.15rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 0.8rem; line-height: 1.1; }
.service-desc { font-weight: 300; font-size: 0.82rem; color: var(--silver); line-height: 1.75; }
.service-tag { display: inline-block; margin-top: 1.4rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,168,76,0.35); padding: 4px 10px; }

/* ─── DIFFERENTIATORS ─────────────────────────────────── */
.differentiators { background: var(--charcoal); padding: 6rem 4rem; position: relative; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.05); }
/* Photo bleeds in from right, fades out horizontally to transparent */
.differentiators::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to left,
      rgba(26,26,26,0.0)  0%,
      rgba(26,26,26,0.5)  35%,
      rgba(26,26,26,0.88) 60%,
      rgba(26,26,26,1)    80%
    ),
    url('/media/oh1fels4/scaffold-7.jpg') right center / cover no-repeat;
  pointer-events: none;
  z-index: 0;
}
/* Ensure inner content sits above the image layer */
.differentiators .diff-bg-text,
.differentiators .diff-inner { position: relative; z-index: 1; }
.diff-bg-text { position: absolute; bottom: -2rem; right: 2rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 14rem; color: rgba(255,255,255,0.03); text-transform: uppercase; letter-spacing: 0.05em; pointer-events: none; line-height: 1; user-select: none; }
.diff-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem; align-items: start; }
.diff-left { position: sticky; top: 120px; }
.diff-points { display: flex; flex-direction: column; gap: 0; }
.diff-point { display: flex; gap: 1.8rem; align-items: flex-start; padding: 2rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.diff-point:first-child { padding-top: 0; }
.diff-number { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1rem; color: var(--gold); letter-spacing: 0.05em; flex-shrink: 0; width: 2rem; margin-top: 3px; }
.diff-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); margin-bottom: 0.5rem; }
.diff-text { font-weight: 300; font-size: 0.85rem; color: white; line-height: 1.8; }

/* ─── FEATURED PROJECTS STRIP ─────────────────────────── */
.projects-strip { padding: 6rem 4rem; background: var(--black); }
.projects-strip-header { margin-bottom: 3rem; }
.projects-strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.04); }
.project-strip-card { position: relative; overflow: hidden; }
.project-strip-card a { display: block; text-decoration: none; }
.project-strip-img { aspect-ratio: 4/3; overflow: hidden; }
.project-strip-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(40%) brightness(0.7); transition: filter 0.6s, transform 0.6s; }
.project-strip-card:hover .project-strip-img img { filter: grayscale(0%) brightness(0.9); transform: scale(1.04); }
.project-strip-info { padding: 1.2rem 1.4rem; background: var(--dark); border-top: 1px solid rgba(201,168,76,0.2); }
.project-strip-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.9rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); display: block; }
.project-strip-loc { font-size: 0.75rem; font-weight: 300; color: var(--silver); margin-top: 2px; display: block; }

/* ─── TESTIMONIALS ────────────────────────────────────── */
.testimonials { background: var(--black); padding: 6rem 4rem; border-top: 1px solid rgba(255,255,255,0.05); position: relative; overflow: hidden; }
/* Photo bleeds in from left, fades out horizontally to transparent */
.testimonials::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(8,8,8,0.0)  0%,
      rgba(8,8,8,0.5)  30%,
      rgba(8,8,8,0.88) 55%,
      rgba(8,8,8,1)    75%
    ),
    url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1400&q=80') left center / cover no-repeat;
  pointer-events: none;
  z-index: 0;
}
.testimonials-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2px; background: rgba(255,255,255,0.04); }
.testimonial-card { background: var(--dark); padding: 2.5rem 2rem; position: relative; }
.testimonial-quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 5rem; color: var(--gold); opacity: 0.3; line-height: 0.6; margin-bottom: 1rem; }
.testimonial-text { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; color: var(--light); line-height: 1.7; margin-bottom: 1.5rem; font-weight: 300; }
.testimonial-author { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1rem; }
.testimonial-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); display: block; }
.testimonial-role { font-size: 0.75rem; font-weight: 300; color: var(--silver); margin-top: 2px; display: block; }

/* ─── GET IN TOUCH CTA BAND ───────────────────────────── */
.cta-band { position: relative; padding: 6rem 4rem; overflow: hidden; background: var(--charcoal); border-top: 1px solid rgba(201,168,76,0.2); }
.cta-band-bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1800&q=80') center/cover no-repeat; opacity: 0.06; filter: grayscale(100%); }
.cta-band-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: center; }
.cta-band-sub { font-weight: 300; font-size: 0.95rem; color: var(--silver); line-height: 1.8; max-width: 500px; margin-top: 1rem; }
.cta-band-actions { display: flex; flex-direction: column; gap: 2rem; align-items: flex-start; }
.cta-band-contact { display: flex; flex-direction: column; gap: 0.8rem; }
.cta-contact-item { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--light); font-weight: 300; font-size: 0.9rem; transition: color 0.3s; }
.cta-contact-item:hover { color: var(--gold); }
.cta-contact-item svg { flex-shrink: 0; color: var(--gold); }

/* ─── FOOTER ──────────────────────────────────────────── */
.site-footer { background: var(--black); padding: 5rem 4rem 2rem; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-logo { height: 48px; width: auto; margin-bottom: 1.2rem; }
.footer-tagline { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); line-height: 1.3; margin-bottom: 1.5rem; }
.footer-creds { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.footer-creds span { font-family: 'Barlow Condensed', sans-serif; font-weight: 400; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,168,76,0.25); padding: 3px 8px; }
.footer-nav h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav ul a { font-weight: 300; font-size: 0.85rem; color: var(--silver); text-decoration: none; transition: color 0.3s; }
.footer-nav ul a:hover { color: var(--gold); }
.footer-contact h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-contact p, .footer-contact a { display: block; font-weight: 300; font-size: 0.85rem; color: var(--silver); text-decoration: none; margin-bottom: 0.5rem; transition: color 0.3s; }
.footer-contact a:hover { color: var(--gold); }
.footer-base { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.footer-base p { font-size: 0.75rem; font-weight: 300; color: var(--mid); }
.footer-base a { color: var(--silver); text-decoration: none; font-size: 0.75rem; }

/* ─── PROJECTS PAGE ───────────────────────────────────── */
.projects-page { padding: 5rem 4rem; }
.projects-page-inner { display: flex; flex-direction: column; gap: 5rem; }
.project-card { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start; padding-bottom: 5rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.project-card:last-child { border-bottom: none; }
.project-card:nth-child(even) { direction: rtl; }
.project-card:nth-child(even) > * { direction: ltr; }
.project-card-gallery {}
.project-card-main-img { aspect-ratio: 3/2; overflow: hidden; }
.project-card-main-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.project-card-main-img:hover img { transform: scale(1.03); }
.project-thumb-strip { display: flex; gap: 4px; margin-top: 4px; }
.project-thumb { width: 25%; aspect-ratio: 4/3; overflow: hidden; border: none; background: none; padding: 0; cursor: pointer; opacity: 0.6; transition: opacity 0.3s; }
.project-thumb:hover, .project-thumb.active { opacity: 1; outline: 2px solid var(--gold); }
.project-thumb img { width: 100%; height: 100%; object-fit: cover; }
.project-card-info { padding-top: 1rem; }
.project-card-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 1.8rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--white); margin: 0.8rem 0; }
.project-card-location { font-size: 0.8rem; font-weight: 300; color: var(--silver); display: flex; align-items: center; gap: 6px; margin-bottom: 1rem; }
.project-card-location svg { color: var(--gold); flex-shrink: 0; }
.project-card-desc { font-weight: 300; font-size: 0.9rem; color: var(--silver); line-height: 1.8; }

/* ─── ACCREDITATIONS PAGE ─────────────────────────────── */
.accreds-page { padding: 5rem 4rem; }
.accreds-intro { max-width: 700px; margin: 0 auto 4rem; text-align: center; }
.accreds-intro .section-eyebrow { justify-content: center; }
.accreds-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(255,255,255,0.04); }
.accred-card { background: var(--dark); padding: 2.5rem 2rem; }
.accred-card-top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
.accred-card-top h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.3rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); }
.accred-status { font-family: 'Barlow Condensed', sans-serif; font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,168,76,0.35); padding: 3px 8px; margin-left: auto; white-space: nowrap; }
.accred-card p { font-weight: 300; font-size: 0.85rem; color: var(--silver); line-height: 1.8; }

/* ─── CONTACT PAGE ────────────────────────────────────── */
.contact-page { padding: 5rem 4rem; }
.contact-page-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem; align-items: start; }
.contact-details { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-detail-item svg { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.contact-detail-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--silver); display: block; margin-bottom: 2px; }
.contact-detail-value { font-size: 0.95rem; font-weight: 300; color: var(--light); text-decoration: none; }
.contact-detail-value:hover { color: var(--gold); }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--silver); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.3);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-bottom-color: var(--gold); }
.form-group select option { background: var(--charcoal); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ─── ANIMATIONS ──────────────────────────────────────── */
@keyframes fadeDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp  { from { opacity: 0; transform: translateY(40px); }  to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn   { from { opacity: 0; }                                to { opacity: 1; } }
@keyframes slowZoom { from { transform: scale(1.05); }                    to { transform: scale(1.0); } }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.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; }

/* ─── HAMBURGER (hidden on desktop) ──────────────────── */
.nav-hamburger { display: none; }

/* ─── FORM SUCCESS / ERROR MESSAGES ──────────────────── */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 2.5rem 2rem;
  border-left: 3px solid var(--gold);
  background: rgba(201,168,76,0.05);
}
.form-success svg { color: var(--gold); }
.form-success h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
.form-success p { font-weight: 300; font-size: 0.95rem; color: var(--silver); }
.form-error-msg {
  padding: 1.2rem 1.5rem;
  border-left: 3px solid #c0392b;
  background: rgba(192,57,43,0.08);
  margin-bottom: 1.5rem;
}
.form-error-msg p { font-weight: 300; font-size: 0.9rem; color: var(--light); }