/*
Theme Name: Barnwood Limited
Theme URI: https://barnwood.co.uk
Author: Brace Creative Agency
Description: Modernised homepage theme for Barnwood Limited — Construction, Shopfitting & Interiors, General Works
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
License: Private
Text Domain: barnwood
*/

/* ================================================================
   All styles imported from staging build
   See staging/css/styles.css for source
================================================================ */

:root {
  --orange:       #f36e21;
  --orange-dark:  #d55e17;
  --black:        #0d0d0d;
  --charcoal:     #1a1a1a;
  --dark:         #2d2d2d;
  --mid:          #6b6b6b;
  --muted:        #9a9a9a;
  --pale:         #c8c4bf;
  --light:        #e4e1dd;
  --warm:         #f8f6f3;
  --white:        #ffffff;
  --display:      'Barlow Condensed', sans-serif;
  --body:         'Open Sans', sans-serif;
  --header-h:     80px;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0, 0, 0.2, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); font-size: 16px; line-height: 1.7; color: var(--dark); background: var(--white); -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* HEADER */
#site-header { position: fixed; top: 0; left: 0; right: 0; height: var(--header-h); z-index: 100; background: linear-gradient(180deg, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.18) 70%, transparent 100%); transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease); }
#site-header.scrolled { background: var(--white); box-shadow: 0 1px 0 rgba(0,0,0,0.09); }
.header-inner { max-width: 1440px; margin: 0 auto; padding: 0 2.5rem; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.logo-link { flex-shrink: 0; display: flex; align-items: center; }
#site-logo { height: 52px; width: auto; }
.wp-custom-logo #site-logo { height: 52px; width: auto; }

/* NAV */
#main-nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; }
.nav-link { display: inline-flex; align-items: center; gap: 3px; padding: 0 1rem; height: var(--header-h); font-family: var(--body); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(255,255,255,0.88); position: relative; transition: color 0.25s; white-space: nowrap; }
.nav-link::after { content: ''; position: absolute; bottom: 20px; left: 1rem; right: 1rem; height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: left center; transition: transform 0.3s var(--ease); }
.nav-link:hover::after, .nav-link--active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--white); }
#site-header.scrolled .nav-link { color: var(--dark); }
#site-header.scrolled .nav-link:hover { color: var(--orange); }
.nav-chevron { font-size: 1.1em; line-height: 1; transition: transform 0.25s var(--ease); display: inline-block; margin-top: 1px; }
.nav-item--has-mega:hover .nav-chevron { transform: rotate(180deg); }
.nav-link--cta { background: var(--orange); color: var(--white) !important; height: auto !important; padding: 0.55rem 1.1rem !important; border-radius: 2px; margin-left: 0.5rem; transition: background 0.25s !important; }
.nav-link--cta::after { display: none !important; }
.nav-link--cta:hover { background: var(--orange-dark) !important; }

/* MEGA MENU */
.nav-item--has-mega { position: static; }
.mega-menu { position: absolute; top: calc(var(--header-h) - 2px); left: 50%; transform: translateX(-50%) translateY(10px); background: var(--white); min-width: 580px; display: flex; gap: 0; padding: 2.25rem 2.5rem; border-top: 3px solid var(--orange); box-shadow: 0 24px 64px rgba(0,0,0,0.14), 0 4px 16px rgba(0,0,0,0.07); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s; }
.nav-item--has-mega:hover .mega-menu, .nav-item--has-mega:focus-within .mega-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.mega-col { flex: 1; min-width: 0; }
.mega-separator { width: 1px; background: var(--light); margin: 0 2.5rem; flex-shrink: 0; }
.mega-label { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 1rem; }
.mega-col ul { display: flex; flex-direction: column; gap: 1px; }
.mega-col ul li a { display: block; padding: 0.4rem 0.65rem; font-size: 0.875rem; font-weight: 400; color: var(--dark); border-radius: 3px; transition: background 0.2s, color 0.2s, padding-left 0.2s; }
.mega-col ul li a:hover { background: var(--warm); color: var(--orange); padding-left: 1rem; }
.mega-divider-item { margin-top: 0.5rem; padding-top: 0.5rem; border-top: 1px solid var(--light); }
.mega-col--sectors { flex: 1.6; }
.mega-sectors-grid { display: grid !important; grid-template-columns: 1fr 1fr !important; flex-direction: unset !important; gap: 1px !important; }

/* HAMBURGER */
#mobile-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px 4px; width: 36px; }
.burger-line { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 1px; transition: all 0.3s var(--ease); }
#site-header.scrolled .burger-line { background: var(--charcoal); }
#mobile-toggle[aria-expanded="true"] .burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#mobile-toggle[aria-expanded="true"] .burger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
#mobile-toggle[aria-expanded="true"] .burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE DRAWER */
#mobile-menu { position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; background: var(--black); overflow-y: auto; transform: translateX(100%); transition: transform 0.4s var(--ease); z-index: 90; }
#mobile-menu.open { transform: translateX(0); }
.mobile-list { padding: 2rem 2rem 4rem; display: flex; flex-direction: column; }
.mobile-list > li > a, .mobile-sub-btn { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 0.9rem 0; font-family: var(--display); font-size: 1.5rem; font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; color: var(--white); border-bottom: 1px solid rgba(255,255,255,0.08); background: none; border-left: none; border-right: none; border-top: none; cursor: pointer; text-align: left; transition: color 0.2s; }
.mobile-list > li > a:hover, .mobile-sub-btn:hover { color: var(--orange); }
.mobile-sub-icon { font-size: 1.2rem; font-weight: 300; font-family: var(--body); transition: transform 0.25s var(--ease); display: inline-block; }
.mobile-sub-btn[aria-expanded="true"] .mobile-sub-icon { transform: rotate(45deg); }
.mobile-sub-list { display: none; padding: 0.75rem 1rem 1.25rem; background: rgba(255,255,255,0.03); border-radius: 4px; margin: 0.25rem 0 0.5rem; }
.mobile-sub-list.open { display: block; }
.mobile-sub-list li a { display: block; padding: 0.4rem 0; font-size: 0.88rem; font-weight: 400; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.mobile-sub-list li a:hover { color: var(--orange); }
.mobile-sub-heading { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); padding: 0.9rem 0 0.35rem; }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; gap: 0.35rem; background: var(--orange); color: var(--white); padding: 0.85rem 1.85rem; font-family: var(--body); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; border-radius: 2px; transition: background 0.25s var(--ease), transform 0.2s var(--ease-spring), box-shadow 0.25s; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(243,110,33,0.38); }
.btn-ghost { display: inline-flex; align-items: center; background: transparent; color: var(--white); padding: 0.85rem 1.85rem; font-family: var(--body); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; border: 1.5px solid rgba(255,255,255,0.38); border-radius: 2px; transition: border-color 0.25s, background 0.25s, transform 0.2s var(--ease-spring); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn-outline { display: inline-flex; align-items: center; gap: 0.35rem; color: var(--dark); padding: 0.75rem 1.5rem; font-family: var(--body); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; border: 1.5px solid var(--dark); border-radius: 2px; transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s var(--ease-spring); }
.btn-outline:hover { background: var(--dark); color: var(--white); transform: translateY(-2px); }

/* SECTION LABELS */
.section-label { display: inline-block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.85rem; }
.section-label--light { color: rgba(255,255,255,0.42); }
.section-label--orange { color: var(--orange); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.72s var(--ease-out), transform 0.72s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* HERO */
#hero { position: relative; height: 100vh; min-height: 560px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 30%; animation: hero-drift 14s ease-out forwards; transform: scale(1.06); }
@keyframes hero-drift { to { transform: scale(1); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(125deg, rgba(13,13,13,0.80) 0%, rgba(13,13,13,0.42) 55%, rgba(13,13,13,0.55) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 1440px; width: 100%; margin: 0 auto; padding: calc(var(--header-h) + 2rem) 2.5rem 0; }
.hero-reveal { opacity: 0; transform: translateY(18px); animation: hero-reveal-in 0.9s var(--ease-out) forwards; }
@keyframes hero-reveal-in { to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange); margin-bottom: 1.5rem; }
.hero-heading { font-family: var(--display); font-size: clamp(4rem, 10.5vw, 10.5rem); font-weight: 800; line-height: 0.88; letter-spacing: -0.01em; text-transform: uppercase; color: var(--white); margin-bottom: 2rem; }
.hero-accent { color: var(--orange); font-style: italic; }
.hero-sub { font-size: 1rem; font-weight: 300; color: #ffffff; max-width: 420px; line-height: 1.75; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.hero-scroll-label { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.38); }
.hero-scroll-line { width: 1px; height: 44px; background: rgba(255,255,255,0.15); overflow: hidden; position: relative; }
.hero-scroll-line::after { content: ''; position: absolute; top: -100%; left: 0; width: 1px; height: 100%; background: linear-gradient(to bottom, transparent, var(--orange)); animation: scroll-pulse 2.2s ease-in-out infinite; }
@keyframes scroll-pulse { 0% { top: -100%; } 100% { top: 100%; } }
.hero-caption { position: absolute; bottom: 2.5rem; right: 2.5rem; z-index: 2; font-size: 0.68rem; font-weight: 300; letter-spacing: 0.06em; color: rgba(255,255,255,0.32); }

/* ABOUT */
.section-about { background: var(--white); padding: 8rem 2.5rem; }
.about-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.about-heading { font-family: var(--display); font-size: clamp(2.8rem, 5.5vw, 5.5rem); font-weight: 700; text-transform: uppercase; letter-spacing: -0.01em; line-height: 0.95; color: var(--black); margin-bottom: 2.5rem; }
.about-body { display: flex; flex-direction: column; gap: 1.35rem; margin-bottom: 5rem; }
.about-body p { font-size: 0.985rem; font-weight: 300; color: var(--mid); line-height: 1.9; }
.stats-row { display: flex; align-items: center; justify-content: center; border-top: 1px solid var(--light); padding-top: 3.5rem; }
.stat-item { display: flex; flex-direction: column; align-items: center; padding: 0 3.5rem; }
.stat-number { display: block; font-family: var(--display); font-size: clamp(2.5rem, 4.5vw, 4rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1; color: var(--black); }
.stat-plus { color: var(--orange); }
.stat-label { display: block; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 0.4rem; }
.stat-sep { width: 1px; height: 44px; background: var(--light); flex-shrink: 0; }

/* DIVISIONS */
.section-divisions { background: var(--black); padding: 8rem 2.5rem; }
.divisions-header { max-width: 1440px; margin: 0 auto 4.5rem; display: flex; flex-direction: column; align-items: flex-start; }
.divisions-heading { font-family: var(--display); font-size: clamp(2.6rem, 5vw, 4.8rem); font-weight: 700; text-transform: uppercase; letter-spacing: -0.01em; line-height: 1; color: var(--white); }
.divisions-heading em { color: var(--orange); font-style: italic; }
.divisions-grid { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.division-card { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 4 / 5; display: block; }
.division-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.75s var(--ease); }
.division-card:hover .division-img { transform: scale(1.07); }
.division-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,13,13,0.96) 0%, rgba(13,13,13,0.42) 48%, rgba(13,13,13,0.08) 100%); transition: background 0.4s var(--ease); }
.division-card:hover .division-overlay { background: linear-gradient(to top, rgba(13,13,13,0.99) 0%, rgba(13,13,13,0.62) 55%, rgba(13,13,13,0.18) 100%); }
.division-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 2.75rem; z-index: 2; }
.division-num { display: block; font-family: var(--display); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.12em; color: var(--orange); margin-bottom: 0.55rem; }
.division-name { font-family: var(--display); font-size: clamp(1.6rem, 2.8vw, 2.6rem); font-weight: 800; text-transform: uppercase; letter-spacing: -0.005em; line-height: 1; color: var(--white); margin-bottom: 0.85rem; }
.division-desc { font-size: 0.84rem; font-weight: 300; color: rgba(255,255,255,0.58); line-height: 1.7; max-width: 280px; margin-bottom: 1.6rem; opacity: 0; transform: translateY(8px); transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out); }
.division-card:hover .division-desc { opacity: 1; transform: translateY(0); }
.division-link { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.11em; text-transform: uppercase; color: var(--orange); transition: gap 0.25s var(--ease); }
.division-link:hover { gap: 0.85rem; }
.link-arrow { display: inline-block; transition: transform 0.25s var(--ease); }
.division-link:hover .link-arrow { transform: translateX(4px); }

/* SECTORS */
.section-sectors { background: var(--warm); padding: 8rem 2.5rem; }
.sectors-header { max-width: 1440px; margin: 0 auto 3.5rem; display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; }
.sectors-hd-left { flex-shrink: 0; }
.sectors-heading { font-family: var(--display); font-size: clamp(2.8rem, 5.5vw, 5.5rem); font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; line-height: 0.92; color: var(--black); }
.sectors-hd-right { display: flex; flex-direction: column; align-items: flex-start; gap: 1.25rem; padding-bottom: 0.4rem; max-width: 360px; }
.sectors-intro { font-size: 0.94rem; font-weight: 300; color: var(--mid); line-height: 1.78; }
.sectors-grid { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.sector-tile { position: relative; overflow: hidden; display: block; cursor: pointer; background-color: var(--charcoal); aspect-ratio: 1 / 1; }
.sector-tile--wide { grid-column: span 2; aspect-ratio: 2 / 1; }
.sector-tile::before { content: ''; position: absolute; inset: 0; background-image: var(--bg); background-size: cover; background-position: center; transition: transform 0.65s var(--ease); z-index: 0; }
.sector-tile:hover::before { transform: scale(1.07); }
.sector-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,13,13,0.84) 0%, rgba(13,13,13,0.28) 55%, rgba(13,13,13,0.06) 100%); transition: background 0.45s var(--ease); z-index: 1; }
.sector-tile:hover .sector-overlay { background: linear-gradient(to top, rgba(243,110,33,0.88) 0%, rgba(13,13,13,0.55) 58%, rgba(13,13,13,0.14) 100%); }
.sector-inner { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.75rem; z-index: 2; }
.sector-name { display: block; font-family: var(--display); font-size: 1.2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.1; color: var(--white); transition: letter-spacing 0.3s var(--ease); }
.sector-tile--wide .sector-name { font-size: 1.5rem; }
.sector-tile:hover .sector-name { letter-spacing: 0.05em; }
.sector-arrow { display: block; margin-top: 0.5rem; font-size: 1.2rem; color: rgba(255,255,255,0); transform: translateX(-6px); transition: color 0.35s var(--ease), transform 0.35s var(--ease-spring); }
.sector-tile:hover .sector-arrow { color: rgba(255,255,255,0.9); transform: translateX(0); }

/* RECENT PROJECTS */
.section-recent { background: var(--charcoal); padding: 8rem 2.5rem; }
.recent-inner { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 260px 1fr; gap: 7rem; align-items: start; }
.recent-heading { font-family: var(--display); font-size: clamp(2.5rem, 4.5vw, 4.5rem); font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; line-height: 0.92; color: var(--white); margin-bottom: 2.5rem; }
.recent-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.recent-card { display: block; overflow: hidden; background: var(--dark); transition: opacity 0.25s; }
.recent-card:hover { opacity: 0.92; }
.recent-img { aspect-ratio: 4 / 3; background-size: cover; background-position: center; transition: transform 0.65s var(--ease); filter: brightness(0.88) saturate(0.85); }
.recent-card:hover .recent-img { transform: scale(1.05); filter: brightness(1) saturate(1); }
.recent-meta { padding: 1rem 1.25rem 1.4rem; background: rgba(255,255,255,0.035); border-top: 2px solid rgba(255,255,255,0.055); }
.recent-tag { display: inline-block; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.4rem; }
.recent-title { font-family: var(--body); font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.8); line-height: 1.45; }

/* CTA BAND */
.section-cta { background: var(--white); border-top: 1px solid var(--light); padding: 7rem 2.5rem; }
.cta-inner { max-width: 1440px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 5rem; }
.cta-heading { font-family: var(--display); font-size: clamp(2.2rem, 4.2vw, 4.2rem); font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; line-height: 0.95; color: var(--black); margin-top: 0.5rem; }
.cta-right { display: flex; flex-direction: column; gap: 2rem; flex-shrink: 0; min-width: 300px; }
.cta-contacts { display: flex; flex-direction: column; gap: 0; }
.cta-contact { display: flex; flex-direction: column; gap: 0.15rem; padding: 1.1rem 0; border-bottom: 1px solid var(--light); transition: padding-left 0.25s var(--ease); }
.cta-contact:first-child { border-top: 1px solid var(--light); }
.cta-contact:hover { padding-left: 6px; }
.cta-contact-label { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.cta-contact-value { font-size: 1rem; font-weight: 600; color: var(--black); transition: color 0.25s; }
.cta-contact:hover .cta-contact-value { color: var(--orange); }

/* FOOTER */
#site-footer { background: var(--black); color: var(--white); }
.footer-top { max-width: 1440px; margin: 0 auto; padding: 5.5rem 2.5rem 4rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-col--brand { padding-right: 2rem; }
.footer-logo { filter: brightness(0) invert(1); opacity: 0.82; margin-bottom: 1.25rem; transition: opacity 0.25s; }
.footer-logo-link:hover .footer-logo { opacity: 1; }
.footer-tagline { font-size: 0.75rem; font-weight: 300; color: rgba(255,255,255,0.32); line-height: 1.7; letter-spacing: 0.03em; }
.footer-heading { font-size: 0.64rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 1.35rem; }
.footer-col p, .footer-col address { font-size: 0.84rem; font-weight: 300; color: rgba(255,255,255,0.48); line-height: 1.8; font-style: normal; }
.footer-col p + p { margin-top: 0.25rem; }
.footer-col p a, .footer-col address a { color: rgba(255,255,255,0.48); transition: color 0.2s; }
.footer-col p a:hover, .footer-col address a:hover { color: var(--orange); }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links li a { font-size: 0.84rem; font-weight: 300; color: rgba(255,255,255,0.48); display: block; transition: color 0.2s, padding-left 0.2s; }
.footer-links li a:hover { color: var(--orange); padding-left: 4px; }
.footer-linkedin { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.48); transition: color 0.25s; margin-bottom: 1.5rem; }
.footer-linkedin:hover { color: #0a66c2; }
.footer-info-links { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-info-links li a { font-size: 0.78rem; font-weight: 300; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-info-links li a:hover { color: rgba(255,255,255,0.65); }
.footer-bottom { max-width: 1440px; margin: 0 auto; padding: 1.6rem 2.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.footer-bottom p { font-size: 0.75rem; font-weight: 300; color: rgba(255,255,255,0.25); }
.footer-bottom p a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom p a:hover { color: rgba(255,255,255,0.65); }

/* GENERIC PAGE */
.page-content { max-width: 900px; margin: 0 auto; padding: calc(var(--header-h) + 4rem) 2.5rem 6rem; }
.page-content h1 { font-family: var(--display); font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 800; text-transform: uppercase; color: var(--black); margin-bottom: 2rem; line-height: 1; }
.page-content .entry-content { font-size: 1rem; font-weight: 300; color: var(--mid); line-height: 1.85; }
.page-content .entry-content p { margin-bottom: 1.25rem; }
.page-content .entry-content h2 { font-family: var(--display); font-size: 2rem; font-weight: 700; color: var(--black); margin: 2.5rem 0 1rem; text-transform: uppercase; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .sectors-grid { grid-template-columns: repeat(3, 1fr); gap: 3px; }
  .sector-tile--wide { grid-column: span 2; aspect-ratio: 2 / 1; }
  .divisions-grid { grid-template-columns: 1fr; gap: 3px; max-width: 680px; }
  .division-card { aspect-ratio: 16 / 8; }
  .division-desc { opacity: 1; transform: none; max-width: none; }
  .recent-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
  .footer-col--brand { grid-column: span 3; padding-right: 0; display: flex; align-items: center; gap: 2rem; border-bottom: 1px solid rgba(255,255,255,0.07); padding-bottom: 2rem; }
  .footer-logo { margin-bottom: 0; }
}
@media (max-width: 768px) {
  :root { --header-h: 64px; }
  #main-nav { display: none; }
  #mobile-toggle { display: flex; }
  .hero-heading { font-size: clamp(3.2rem, 14vw, 6rem); }
  .hero-sub { max-width: 100%; }
  .section-about, .section-divisions, .section-sectors, .section-recent, .section-cta { padding: 5.5rem 1.5rem; }
  .stat-item { padding: 0 1.8rem; }
  .sectors-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .sectors-hd-right { max-width: 100%; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); gap: 3px; }
  .sector-tile--wide { grid-column: span 2; aspect-ratio: 2 / 1; }
  .sector-tile { aspect-ratio: 1 / 1; }
  .cta-inner { flex-direction: column; align-items: flex-start; gap: 3rem; }
  .cta-right { min-width: 0; width: 100%; }
  .footer-top { grid-template-columns: 1fr 1fr; padding: 3.5rem 1.5rem 2.5rem; }
  .footer-col--brand { grid-column: span 2; flex-direction: column; align-items: flex-start; }
  #site-footer .footer-bottom { padding: 1.5rem; flex-direction: column; align-items: flex-start; gap: 0.35rem; }
}
@media (max-width: 480px) {
  .header-inner { padding: 0 1.25rem; }
  .hero-content { padding-left: 1.25rem; padding-right: 1.25rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-caption { display: none; }
  .section-about, .section-divisions, .section-sectors, .section-recent, .section-cta { padding: 4.5rem 1.25rem; }
  .stats-row { flex-direction: column; gap: 2rem; padding-top: 2.5rem; }
  .stat-sep { width: 36px; height: 1px; }
  .sectors-grid { grid-template-columns: 1fr; }
  .sector-tile--wide { grid-column: span 1; aspect-ratio: 4 / 3; }
  .sector-tile { aspect-ratio: 4 / 3; }
  .recent-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; padding: 3rem 1.25rem 2rem; }
  .footer-col--brand { grid-column: span 1; }
}
