/* luminancetest.com.au v4 — matches sliptest.com.au family */
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Barlow+Condensed:wght@600;700;800&display=swap');

:root {
  --orange: #E8441A;
  --orange-dark: #C03510;
  --charcoal: #2C2C2A;
  --dark: #1A1A18;
  --white: #FFFFFF;
  --off-white: #F7F6F4;
  --grey-light: #EBEBEB;
  --grey-mid: #7A7A78;
  --border: #E2E2DE;
  --max: 1200px;
  --t: 0.2s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; color: var(--charcoal); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--orange-dark); }
ul { list-style: none; padding: 0; margin: 0; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ── HEADER ─────────────────────────────────────────────── */
.site-header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo-wrap { display: flex; align-items: center; }
.logo-text { font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--charcoal); letter-spacing: 0.01em; }
.logo-text span { color: var(--orange); }
.site-nav { display: flex; align-items: center; gap: 2px; }
.site-nav a { font-size: 0.875rem; font-weight: 500; color: var(--charcoal); padding: 8px 12px; border-radius: 4px; transition: all var(--t); }
.site-nav a:hover, .site-nav a.active { color: var(--orange); }
.nav-phone { background: var(--orange) !important; color: var(--white) !important; padding: 10px 18px !important; border-radius: 4px; font-weight: 700 !important; margin-left: 8px; font-size: 0.85rem !important; }
.nav-phone:hover { background: var(--orange-dark) !important; color: var(--white) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; }

/* ── HERO ───────────────────────────────────────────────── */
.hero { position: relative; min-height: 560px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.3) grayscale(15%); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(26,26,24,0.5) 0%, transparent 100%); }
.hero-content { position: relative; z-index: 2; padding: 100px 0 80px; text-align: center; }
.hero-content h1 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.01em; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 640px; margin: 0 auto 36px; line-height: 1.7; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-hero-primary { background: var(--orange); color: var(--white); padding: 14px 32px; font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; border: 2px solid var(--orange); border-radius: 2px; transition: all var(--t); }
.btn-hero-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: var(--white); }
.btn-hero-ghost { background: transparent; color: var(--white); padding: 14px 32px; font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; border: 2px solid rgba(255,255,255,0.5); border-radius: 2px; transition: all var(--t); }
.btn-hero-ghost:hover { background: var(--white); color: var(--charcoal); border-color: var(--white); }

/* ── INTRO BAND ─────────────────────────────────────────── */
.intro-band { padding: 72px 0; text-align: center; }
.intro-band h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(1.8rem,3.5vw,2.4rem); font-weight: 700; margin-bottom: 20px; color: var(--charcoal); }
.intro-band p { color: var(--grey-mid); max-width: 800px; margin: 0 auto 12px; font-size: 1.05rem; line-height: 1.75; }
.intro-band p:last-child { margin-bottom: 0; }
.intro-band strong { color: var(--orange); font-weight: 700; }

/* ── SERVICES PHOTO GRID (matches sliptest's grid layout) ─ */
.services-photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.photo-card { position: relative; min-height: 300px; background-size: cover; background-position: center; display: flex; align-items: flex-end; overflow: hidden; cursor: pointer; }
.photo-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,24,0.9) 0%, rgba(26,26,24,0.3) 60%, transparent 100%); transition: background var(--t); }
.photo-card:hover .photo-card-overlay { background: linear-gradient(to top, rgba(232,68,26,0.85) 0%, rgba(26,26,24,0.5) 70%, transparent 100%); }
.photo-card-body { position: relative; z-index: 2; padding: 28px; }
.photo-card-body h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 6px; line-height: 1.2; }
.photo-card-body p { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.photo-card-btn { display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); padding: 8px 0; border-bottom: 2px solid var(--orange); transition: all var(--t); }
.photo-card-btn:hover { color: var(--orange); }

/* ── WHY SECTION ────────────────────────────────────────── */
.why-section { padding: 80px 0; }
.why-section h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 2.2rem; font-weight: 700; text-align: center; margin-bottom: 12px; }
.why-sub { text-align: center; color: var(--grey-mid); max-width: 720px; margin: 0 auto 56px; font-size: 1.05rem; line-height: 1.7; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 40px; }
.why-item { display: flex; gap: 16px; }
.why-icon { width: 36px; height: 36px; background: var(--charcoal); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }
.why-item h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--charcoal); }
.why-item p { font-size: 0.875rem; color: var(--grey-mid); line-height: 1.65; }

/* ── CTA MID (orange band) ──────────────────────────────── */
.cta-mid { background: var(--orange); padding: 28px 0; }
.cta-mid-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-mid p { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--white); }
.cta-btn-white { background: var(--white); color: var(--orange); padding: 10px 24px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 2px; transition: all var(--t); }
.cta-btn-white:hover { background: var(--charcoal); color: var(--white); }

/* ── WHO SECTION (dark bg, orange bordered boxes) ─────────── */
.who-section { background: var(--dark); padding: 80px 0; }
.who-section h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 700; color: var(--orange); text-align: center; margin-bottom: 16px; }
.who-sub { text-align: center; color: rgba(255,255,255,0.6); max-width: 800px; margin: 0 auto 48px; font-size: 1rem; line-height: 1.75; }
.who-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.who-item { border: 1px solid var(--orange); padding: 16px 12px; text-align: center; font-size: 0.875rem; font-weight: 600; color: var(--orange); border-radius: 2px; transition: all var(--t); cursor: default; }
.who-item:hover { background: var(--orange); color: var(--white); }

/* ── LOCATIONS ──────────────────────────────────────────── */
.locations-section { background: var(--dark); padding: 0 0 80px; }
.locations-section h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 700; color: var(--white); text-align: center; margin-bottom: 8px; padding-top: 0; }
.loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.loc-card { position: relative; min-height: 220px; background-size: cover; background-position: center; display: flex; align-items: flex-end; overflow: hidden; text-decoration: none; }
.loc-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,24,0.85) 0%, rgba(26,26,24,0.2) 60%, transparent 100%); transition: background var(--t); }
.loc-card:hover .loc-overlay { background: linear-gradient(to top, rgba(232,68,26,0.8) 0%, rgba(26,26,24,0.5) 70%, transparent 100%); }
.loc-label { position: relative; z-index: 2; padding: 20px; font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.loc-label span { display: block; font-size: 0.75rem; font-weight: 500; color: rgba(255,255,255,0.6); font-family: 'Barlow', sans-serif; margin-top: 3px; text-transform: uppercase; letter-spacing: 0.06em; }

/* ── CTA FULL (photo bg + "Let's work together") ─────────── */
.cta-full { position: relative; background-size: cover; background-position: center; padding: 100px 0; overflow: hidden; }
.cta-full-overlay { position: absolute; inset: 0; background: rgba(26,26,24,0.82); }
.cta-full-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-full-inner h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 2.8rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.cta-full-inner p { color: rgba(255,255,255,0.65); font-size: 1rem; }
.cta-full-btns { display: flex; align-items: center; gap: 20px; }
.cta-ghost-btn { background: transparent; color: var(--white); padding: 12px 28px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; border: 2px solid rgba(255,255,255,0.4); border-radius: 2px; transition: all var(--t); }
.cta-ghost-btn:hover { background: var(--white); color: var(--charcoal); border-color: var(--white); }

/* ── FAQ SECTION ────────────────────────────────────────── */
.faq-section { padding: 80px 0; background: var(--off-white); }
.faq-layout { display: grid; grid-template-columns: 1fr 360px; gap: 60px; align-items: start; }
.faq-section h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 700; margin-bottom: 8px; }
.faq-list { border: 1px solid var(--border); border-radius: 4px; overflow: hidden; background: var(--white); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question { width: 100%; text-align: left; background: var(--white); border: none; padding: 18px 22px; font-family: 'Barlow', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--charcoal); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: background var(--t); }
.faq-question:hover { background: var(--off-white); }
.faq-question.open { color: var(--orange); background: var(--off-white); }
.faq-icon { width: 24px; height: 24px; background: var(--grey-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; font-weight: 700; transition: all var(--t); }
.faq-question.open .faq-icon { background: var(--orange); color: var(--white); transform: rotate(45deg); }
.faq-answer { display: none; padding: 16px 22px 20px; font-size: 0.9rem; color: var(--grey-mid); line-height: 1.75; border-top: 1px solid var(--border); }
.faq-answer.open { display: block; }
.faq-side { display: flex; flex-direction: column; gap: 20px; }
.slip-crosslink { background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 28px; }
.slip-crosslink h3 { font-size: 1.05rem; margin-bottom: 12px; }
.slip-crosslink p { font-size: 0.875rem; color: var(--grey-mid); margin-bottom: 20px; line-height: 1.7; }
.slip-link-btn { display: inline-block; background: var(--charcoal); color: var(--white); padding: 10px 20px; font-size: 0.85rem; font-weight: 700; border-radius: 2px; transition: background var(--t); }
.slip-link-btn:hover { background: var(--orange); color: var(--white); }
.contact-quick { background: var(--charcoal); border-radius: 4px; padding: 28px; }
.contact-quick h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 20px; }
.contact-q-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.contact-q-row a { color: rgba(255,255,255,0.7); font-weight: 600; }
.contact-q-row a:hover { color: var(--orange); }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer { background: var(--dark); padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-logo { font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.footer-logo span { color: var(--orange); }
.footer-logo-col p { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.75; }
.footer-links-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 18px; }
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color var(--t); }
.footer-links-col a:hover { color: var(--orange); }
.footer-cta-btn { display: inline-block; background: var(--orange); color: var(--white); padding: 10px 20px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 2px; transition: background var(--t); }
.footer-cta-btn:hover { background: var(--orange-dark); color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p, .footer-bottom a { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-bottom a:hover { color: var(--orange); }

/* ── CITY PAGES ─────────────────────────────────────────── */
.city-hero { position: relative; min-height: 380px; display: flex; align-items: center; overflow: hidden; }
.city-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.3) grayscale(15%); }
.city-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(26,26,24,0.9) 0%, rgba(26,26,24,0.6) 60%, transparent 100%); }
.city-hero-inner { position: relative; z-index: 2; padding: 80px 0 64px; max-width: 700px; }
.breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,0.4); }
.breadcrumb a:hover { color: var(--orange); }
.city-hero h1 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2rem,4vw,3rem); font-weight: 800; color: var(--white); margin-bottom: 18px; line-height: 1.1; }
.city-hero p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 28px; max-width: 600px; line-height: 1.7; }
.city-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.city-body { padding: 64px 0; }
.city-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.city-content p { margin-bottom: 1.1rem; line-height: 1.75; color: var(--charcoal); }
.city-content a { color: var(--orange); }
.standard-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.sbadge { display: inline-flex; align-items: center; padding: 6px 14px; background: rgba(232,68,26,0.08); border: 1px solid rgba(232,68,26,0.2); border-radius: 2px; font-size: 0.78rem; font-weight: 700; color: var(--orange); letter-spacing: 0.05em; text-transform: uppercase; }
.services-simple { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 20px; }
.ss-item { padding: 20px; background: var(--off-white); border-radius: 4px; border-left: 3px solid var(--orange); }
.ss-item strong { display: block; font-size: 0.95rem; margin-bottom: 8px; color: var(--charcoal); }
.ss-item p { font-size: 0.875rem; color: var(--grey-mid); margin: 0; line-height: 1.6; }
.city-links { display: flex; flex-wrap: wrap; gap: 8px; }
.city-link { display: inline-block; padding: 8px 16px; background: var(--off-white); border: 1px solid var(--border); border-radius: 2px; font-size: 0.875rem; font-weight: 600; color: var(--charcoal); transition: all var(--t); }
.city-link:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.sidebar-contact { background: var(--dark); border-radius: 4px; padding: 28px; }
.sidebar-contact h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; color: var(--white); margin-bottom: 20px; }
.sc-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-size: 0.875rem; color: rgba(255,255,255,0.65); }
.sc-row a { color: rgba(255,255,255,0.65); font-weight: 600; }
.sc-row a:hover { color: var(--orange); }
.sc-btn-primary { display: block; width: 100%; text-align: center; background: var(--orange); color: var(--white); padding: 12px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 2px; margin-top: 20px; transition: background var(--t); }
.sc-btn-primary:hover { background: var(--orange-dark); color: var(--white); }
.sc-btn-ghost { display: block; width: 100%; text-align: center; background: transparent; color: rgba(255,255,255,0.7); padding: 12px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; border: 1px solid rgba(255,255,255,0.2); border-radius: 2px; margin-top: 10px; transition: all var(--t); }
.sc-btn-ghost:hover { background: var(--white); color: var(--charcoal); }
.sidebar-areas { background: var(--off-white); border-radius: 4px; padding: 24px; margin-top: 16px; }
.sidebar-areas h3 { font-size: 0.9rem; font-weight: 700; color: var(--charcoal); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.78rem; }
.sidebar-areas ul { display: flex; flex-direction: column; gap: 8px; }
.sidebar-areas li { font-size: 0.875rem; color: var(--grey-mid); padding-left: 14px; position: relative; }
.sidebar-areas li::before { content: '–'; position: absolute; left: 0; color: var(--orange); }
.city-main h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem; font-weight: 700; margin-bottom: 16px; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .who-grid { grid-template-columns: repeat(4, 1fr); }
  .loc-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-side { display: grid; grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .services-photo-grid { grid-template-columns: 1fr; }
  .photo-card { min-height: 250px; }
  .why-grid { grid-template-columns: 1fr; gap: 28px; }
  .who-grid { grid-template-columns: repeat(3, 1fr); }
  .city-layout { grid-template-columns: 1fr; }
  .services-simple { grid-template-columns: 1fr; }
  .cta-full-inner { flex-direction: column; }
  .cta-mid-inner { flex-direction: column; text-align: center; }
  .loc-grid { grid-template-columns: 1fr 1fr; }
  .faq-side { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .site-nav { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); padding: 16px 24px 24px; border-bottom: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,0.1); gap: 2px; z-index: 200; }
  .site-nav.open { display: flex; }
  .site-nav a { width: 100%; padding: 12px 16px; }
  .nav-phone { margin-left: 0; margin-top: 8px; }
  .nav-toggle { display: flex; }
}
@media (max-width: 480px) {
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2.2rem; }
}

/* ── VIDEO HERO ─────────────────────────────────────────── */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: grayscale(30%) brightness(0.7);
  z-index: 0;
}
/* Hide video on mobile to save bandwidth */
@media (max-width: 768px) {
  .hero-video { display: none; }
}

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse-orange {
  0%, 100% { box-shadow: 0 4px 16px rgba(232,68,26,0.3); }
  50%       { box-shadow: 0 4px 28px rgba(232,68,26,0.6); }
}

.hero-content h1 { animation: fadeInUp 0.8s ease both; }
.hero-sub { animation: fadeInUp 0.8s 0.15s ease both; }
.hero-btns { animation: fadeInUp 0.8s 0.3s ease both; }
.btn-hero-primary { animation: pulse-orange 2.5s 1s ease-in-out infinite; }
.trust-bar { animation: fadeIn 0.6s 0.5s ease both; }

/* ── SCROLL REVEAL (CSS only) ───────────────────────────── */
.service-card, .audience-card, .why-item, .loc-card, .who-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* ── IMPROVED NAV ────────────────────────────────────────── */
.site-header {
  transition: box-shadow 0.3s ease;
}
.site-nav a {
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 8px; right: 8px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.site-nav a:hover::after, .site-nav a.active::after {
  transform: scaleX(1);
}

/* ── PHOTO CARD IMPROVEMENTS ─────────────────────────────── */
.photo-card {
  transition: transform 0.3s ease;
}
.photo-card:hover {
  transform: scale(1.02);
  z-index: 2;
}

/* ── IMPROVED TYPOGRAPHY ─────────────────────────────────── */
.intro-band h2 {
  position: relative;
  display: inline-block;
}
.intro-band h2::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

/* ── CONTACT BLOCK POLISH ────────────────────────────────── */
.sidebar-contact {
  background: linear-gradient(135deg, var(--dark) 0%, #252525 100%);
  border-left: 3px solid var(--orange);
}

/* ── FOOTER IMPROVEMENT ──────────────────────────────────── */
.site-footer {
  border-top: 3px solid var(--orange);
}
