/* ============================================
   BROADHEAD CONSTRUCTION — STYLESHEET
   Orange #F07020 | Teal #29ABE2 | Black #0D0D0D
   ============================================ */

/* ---------- RESET & VARIABLES ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --orange:     #F07020;
    --orange-dk:  #C85810;
    --orange-lt:  #FF8C3A;
    --teal:       #29ABE2;
    --teal-dk:    #1A88B8;
    --black:      #0A0A0A;
    --bg:         #111111;
    --bg-2:       #181818;
    --bg-3:       #202020;
    --bg-4:       #282828;
    --border:     #2A2A2A;
    --border-lt:  #383838;
    --text:       #C8C8C8;
    --text-muted: #707070;
    --white:      #FFFFFF;
    --h-font:     'Oswald', sans-serif;
    --b-font:     'Open Sans', sans-serif;
    --max-w:      1200px;
    --radius:     3px;
    --ease:       0.3s ease;
    --ease-out:   0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--b-font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
    font-family: var(--h-font);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.1;
    color: var(--white);
}

h1 { font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.5vw, 3rem);  font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 500; }
p  { font-size: 1rem; color: var(--text); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--h-font);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1rem;
}

.eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--teal);
    border-radius: 2px;
    flex-shrink: 0;
}

/* Heading with orange underline */
.ruled-heading {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1.75rem;
}

.ruled-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 52px; height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-lt));
    border-radius: 2px;
}

.ruled-heading.center {
    display: block;
    text-align: center;
}

.ruled-heading.center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Decorative large background label */
.bg-word {
    position: absolute;
    font-family: var(--h-font);
    font-size: clamp(6rem, 15vw, 13rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: rgba(255,255,255,0.022);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    line-height: 1;
}

/* ---------- LAYOUT ---------- */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
}

.section     { padding: 6rem 0; position: relative; overflow: hidden; }
.section-alt { background: var(--bg-2); }

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.orange-bar {
    width: 48px; height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-lt));
    border-radius: 2px;
    margin: 0.75rem 0 1.5rem;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2.2rem;
    font-family: var(--h-font);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    border-radius: var(--radius);
    transition: all var(--ease);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: background var(--ease);
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--orange-lt);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(240,112,32,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.06);
    transform: translateY(-2px);
}

.btn-teal {
    background: var(--teal);
    color: var(--white);
}
.btn-teal:hover {
    background: var(--teal-dk);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(41,171,226,0.35);
}

/* Arrow icon in button */
.btn-arrow::after { content: '→'; font-size: 1rem; margin-left: 0.25rem; }

/* ---------- NAVIGATION ---------- */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img { height: 44px; width: auto; transition: opacity var(--ease); }
.nav-logo:hover img { opacity: 0.85; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.nav-links a {
    font-family: var(--h-font);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(200,200,200,0.8);
    transition: color var(--ease);
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--orange);
    transition: width var(--ease-out);
}

.nav-links a:not(.btn):hover,
.nav-links a.active {
    color: var(--white);
}

.nav-links a:not(.btn):hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links .btn { margin-left: 0.5rem; padding: 0.62rem 1.4rem; font-size: 0.8rem; }

/* Transparent → solid on scroll */
.nav.top {
    background: transparent;
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: rgba(10,10,10,0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}

.nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--ease);
    transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
    display: none;
    flex-direction: column;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    padding: 1.5rem 2rem 2rem;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
    font-family: var(--h-font);
    font-size: 1.05rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border);
    transition: color var(--ease), padding-left var(--ease);
}

.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--orange); padding-left: 0.5rem; }
.nav-mobile .btn { text-align: center; margin-top: 1rem; border-bottom: none !important; padding-left: 0 !important; }

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--black);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center 35%;
    opacity: 0.3;
    will-change: transform;
}

/* Deep gradient overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(10,10,10,0.97) 0%, rgba(10,10,10,0.75) 50%, rgba(10,10,10,0.2) 100%),
        linear-gradient(to bottom, transparent 70%, rgba(10,10,10,0.9) 100%);
    z-index: 1;
}

/* Geometric triangle accent — mirrors logo motif */
.hero-geo {
    position: absolute;
    right: -2%;
    top: 50%;
    transform: translateY(-52%);
    width: 44vw;
    max-width: 580px;
    height: auto;
    aspect-ratio: 1 / 0.866;
    z-index: 1;
    pointer-events: none;
}

.hero-geo-logo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.18;
    filter: brightness(0.8) saturate(0.6);
    z-index: 0;
}

.geo-tri {
    position: absolute;
    inset: 0;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    border-radius: 2px;
    z-index: 1;
}

.geo-tri-1 {
    background: linear-gradient(160deg, var(--orange), transparent);
    opacity: 0.12;
    transform: scale(1);
}
.geo-tri-2 {
    background: linear-gradient(160deg, var(--teal), transparent);
    opacity: 0.1;
    transform: scale(0.72);
    transform-origin: bottom center;
}
.geo-tri-3 {
    background: linear-gradient(160deg, var(--orange), var(--teal));
    opacity: 0.07;
    transform: scale(0.45);
    transform-origin: bottom center;
}

/* Vertical accent line */
.hero-accent-line {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--orange), transparent);
    z-index: 2;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 78px;
    max-width: 680px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--h-font);
    font-size: 0.76rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1.5rem;
    animation: heroFadeUp 0.7s 0.1s both;
}

.hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 32px; height: 1.5px;
    background: var(--teal);
    flex-shrink: 0;
}

.hero-headline {
    animation: heroFadeUp 0.7s 0.2s both;
    margin-bottom: 0;
}

.hero-headline em {
    font-style: normal;
    color: var(--orange);
}

.hero-headline .teal { color: var(--teal); }

.hero-tagline {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.75rem 0 2.5rem;
    animation: heroFadeUp 0.7s 0.3s both;
}

.hero-tagline-line {
    width: 40px; height: 1.5px;
    background: var(--orange);
    flex-shrink: 0;
}

.hero-tagline p {
    font-family: var(--h-font);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(200,200,200,0.6);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: heroFadeUp 0.7s 0.4s both;
}

/* Scroll indicator */
.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;
    animation: heroFadeUp 0.7s 0.6s both;
}

.hero-scroll span {
    font-family: var(--h-font);
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-mouse {
    width: 22px; height: 34px;
    border: 1.5px solid var(--border-lt);
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 5px;
}

.scroll-mouse::after {
    content: '';
    width: 3px; height: 6px;
    background: var(--orange);
    border-radius: 2px;
    animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
    0%   { transform: translateY(0); opacity: 1; }
    80%  { transform: translateY(10px); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
}

/* ---------- MARQUEE STRIP ---------- */
.marquee-strip {
    background: var(--orange);
    overflow: hidden;
    padding: 0.9rem 0;
    position: relative;
    z-index: 5;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
    white-space: nowrap;
    font-family: var(--h-font);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
}

.marquee-dot {
    display: inline-block;
    width: 5px; height: 5px;
    background: rgba(255,255,255,0.5);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ---------- STATS BAR ---------- */
.stats-section {
    background: var(--bg-2);
    padding: 3.5rem 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--teal), var(--orange));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 2rem;
    border-right: 1px solid var(--border);
    transition: background var(--ease);
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(240,112,32,0.04); }

.stat-number {
    font-family: var(--h-font);
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.4rem;
    display: block;
}

.stat-number .suffix { color: var(--orange); }

.stat-label {
    font-family: var(--h-font);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ---------- ABOUT / SERVICES ---------- */
.about-image-wrap {
    position: relative;
}

.about-img-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.about-img-frame::before {
    content: '';
    position: absolute;
    top: -8px; left: -8px;
    right: 8px; bottom: 8px;
    border: 2px solid var(--orange);
    border-radius: var(--radius);
    z-index: -1;
    opacity: 0.5;
}

.about-img-frame img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    filter: brightness(0.9) contrast(1.05);
    transition: filter 0.5s ease, transform 0.6s ease;
    background: var(--bg-3);
}

.about-img-frame:hover img {
    filter: brightness(1) contrast(1.05);
    transform: scale(1.02);
}

/* Teal accent block behind image */
.img-accent {
    position: absolute;
    bottom: -16px; right: -16px;
    width: 55%; height: 55%;
    background: linear-gradient(135deg, rgba(41,171,226,0.12), transparent);
    border: 1px solid rgba(41,171,226,0.2);
    border-radius: var(--radius);
    z-index: -2;
}

/* Service cards grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 2rem;
}

.service-card {
    background: var(--bg-3);
    padding: 0.95rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: background var(--ease), transform var(--ease);
    cursor: default;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 0;
    background: var(--orange);
    transition: width var(--ease);
}

.service-card:hover::before { width: 3px; }
.service-card:hover { background: var(--bg-4); }

.service-tri {
    display: inline-block;
    width: 0; height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 8px solid var(--teal);
    flex-shrink: 0;
    transition: border-bottom-color var(--ease);
}

.service-card:hover .service-tri { border-bottom-color: var(--orange); }

.service-card span {
    font-size: 0.88rem;
    color: var(--text);
    transition: color var(--ease);
    line-height: 1.3;
}

.service-card:hover span { color: var(--white); }

/* ---------- PHILOSOPHY & MISSION ---------- */
.text-block { max-width: 500px; }
.text-block p { font-size: 1.05rem; line-height: 1.85; color: var(--text); margin-top: 0.5rem; }

.section-num {
    position: absolute;
    top: -0.15em; right: -0.05em;
    font-family: var(--h-font);
    font-size: clamp(8rem, 16vw, 14rem);
    font-weight: 700;
    color: rgba(255,255,255,0.022);
    pointer-events: none;
    user-select: none;
    line-height: 1;
    z-index: 0;
}

.section-content { position: relative; z-index: 1; }

/* Tall accent image */
.tall-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.tall-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    filter: brightness(0.88) contrast(1.05);
    transition: filter 0.6s ease, transform 0.7s ease;
    background: var(--bg-3);
}

.tall-img-wrap:hover img {
    filter: brightness(1) contrast(1.05);
    transform: scale(1.03);
}

/* Orange vertical accent bar */
.v-bar {
    display: inline-flex;
    align-items: stretch;
    gap: 1.5rem;
}

.v-bar-line {
    width: 3px;
    background: linear-gradient(to bottom, var(--orange), var(--teal));
    border-radius: 2px;
    flex-shrink: 0;
    min-height: 60px;
}

/* ---------- CTA BAND ---------- */
.cta-band {
    background: linear-gradient(105deg, var(--orange-dk) 0%, var(--orange) 50%, var(--orange-lt) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    mix-blend-mode: luminosity;
}

.cta-band::after {
    content: 'GET STARTED';
    position: absolute;
    right: -2%;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--h-font);
    font-size: clamp(5rem, 12vw, 10rem);
    font-weight: 700;
    color: rgba(0,0,0,0.08);
    pointer-events: none;
    white-space: nowrap;
    line-height: 1;
}

.cta-band-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-band h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: var(--white);
    margin-bottom: 0.5rem;
}

.cta-band p {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    max-width: 440px;
}

.cta-band .btn-outline {
    border-color: rgba(255,255,255,0.6);
    white-space: nowrap;
    flex-shrink: 0;
}

.cta-band .btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

/* ---------- REVIEWS ---------- */
.reviews-section {
    padding: 5.5rem 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.reviews-watermark {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0.03;
}

.reviews-watermark svg { width: min(500px, 75vw); }

.reviews-content { position: relative; z-index: 2; }

.reviews-coming {
    display: inline-block;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.1rem 2.5rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 1.75rem;
    font-size: 1rem;
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--black);
    border-top: 1px solid var(--border);
    padding: 5rem 0 2.5rem;
}

.footer::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--teal));
    margin-bottom: 0;
    position: relative;
    top: -5rem;
    margin-bottom: -5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo { height: 46px; margin-bottom: 1.25rem; }

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.78;
    max-width: 280px;
}

.footer-col h4 {
    font-family: var(--h-font);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col ul a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color var(--ease), padding-left var(--ease);
}

.footer-col ul a:hover { color: var(--white); padding-left: 4px; }

.footer-col p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.85;
}

.footer-col a { color: var(--teal); transition: color var(--ease); }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
    padding: 11rem 0 5.5rem;
    background: var(--black);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.55), rgba(10,10,10,0.98));
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p { font-size: 1.05rem; color: var(--text-muted); margin-top: 0.5rem; }
.page-hero-divider {
    width: 52px; height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--teal));
    border-radius: 2px;
    margin: 1.1rem auto 0;
}

/* ---------- PROJECTS PAGE ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--bg-3);
    cursor: pointer;
}

.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: var(--bg-3);
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(240,112,32,0.5) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--ease);
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* Highlighted project entries */
.highlighted-project {
    padding: 5.5rem 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.highlighted-project:last-child { border-bottom: none; }
.highlighted-project .grid-2 { gap: 5.5rem; }

.project-tag {
    display: inline-block;
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 0.25rem 0.75rem;
    font-family: var(--h-font);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.85rem;
}

.project-content p {
    font-size: 1rem;
    line-height: 1.82;
    color: var(--text);
    margin-top: 0.75rem;
}

.project-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.project-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    filter: brightness(0.88) contrast(1.08);
    transition: filter 0.55s ease, transform 0.6s ease;
    background: var(--bg-3);
}

.project-image:hover img {
    filter: brightness(1) contrast(1.08);
    transform: scale(1.03);
}

.project-image::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.project-image:hover::after { transform: scaleX(1); }

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 5.5rem;
    align-items: start;
}

.form-group { margin-bottom: 1.35rem; }

.form-group label {
    display: block;
    font-family: var(--h-font);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--white);
    font-family: var(--b-font);
    font-size: 0.95rem;
    padding: 0.88rem 1.1rem;
    outline: none;
    transition: border-color var(--ease), box-shadow var(--ease);
    appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(240,112,32,0.1);
    background: var(--bg-4);
}

.form-group textarea { resize: vertical; min-height: 130px; line-height: 1.6; }

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.btn-submit { width: 100%; padding: 1rem; font-size: 0.95rem; margin-top: 0.5rem; }

.contact-info-card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    margin-top: 2.5rem;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--teal));
}

.contact-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.contact-detail:last-child { border-bottom: none; padding-bottom: 0; }
.contact-detail:first-child { padding-top: 0; }

.contact-icon {
    width: 36px; height: 36px;
    background: rgba(240,112,32,0.1);
    border: 1px solid rgba(240,112,32,0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    color: var(--orange);
}

.contact-detail-label {
    display: block;
    font-family: var(--h-font);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.contact-detail-value {
    font-size: 0.95rem;
    color: var(--white);
    line-height: 1.6;
}

.contact-detail-value a { color: var(--teal); transition: color var(--ease); }
.contact-detail-value a:hover { color: var(--white); }

/* ---------- THANK YOU PAGE ---------- */
.thankyou-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.thankyou-box { max-width: 480px; }

.thankyou-icon {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--orange), var(--teal));
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 1.8rem;
    color: var(--white);
}

.thankyou-box h1 { font-size: 2.4rem; margin-bottom: 1rem; }
.thankyou-box p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 2rem; }

/* ---------- ANIMATIONS ---------- */
@keyframes heroFadeUp {
    from { opacity: 0.3; transform: translateY(18px); }
    to   { opacity: 1;   transform: translateY(0); }
}

/* Visible by default — JS adds body.js-ready to enable the hide-then-reveal effect */
.reveal {
    transition: opacity 0.75s ease, transform 0.75s ease;
}

body.js-ready .reveal {
    opacity: 0;
    transform: translateY(32px);
}

body.js-ready .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }
.reveal-delay-4 { transition-delay: 0.46s; }

/* ===== WHY BROADHEAD ===== */
.why-list { display: flex; flex-direction: column; gap: 1.4rem; }
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.why-item strong { color: var(--white); }
.why-tri {
    flex-shrink: 0;
    width: 0; height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 12px solid var(--orange);
    margin-top: 4px;
}
.why-quote {
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand-quote {
    border-left: 4px solid var(--orange);
    padding: 2rem 2rem 2rem 2.5rem;
    background: rgba(240,112,32,0.06);
    border-radius: 0 4px 4px 0;
    position: relative;
}
.quote-mark {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    line-height: 0.8;
    color: var(--orange);
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0.6;
}
.brand-quote p {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.45;
    color: var(--white);
    margin: 0;
}

/* ===== CERTIFICATIONS ===== */
.cert-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}
.cert-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 0.45rem 0.9rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
}
.cert-badge .cert-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
    .grid-2 { grid-template-columns: 1fr; gap: 3rem; }
    .grid-2.reverse > *:first-child { order: 2; }
    .grid-2.reverse > *:last-child  { order: 1; }
    .contact-grid { grid-template-columns: 1fr; gap: 3.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid .stat-item:nth-child(2) { border-right: none; }
    .cta-band-inner { flex-direction: column; text-align: center; }
    .cta-band p { max-width: 100%; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .highlighted-project .grid-2 { gap: 3rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-geo { opacity: 0.06; }
}

@media (max-width: 700px) {
    .nav-links  { display: none; }
    .nav-toggle { display: flex; }
    .section { padding: 4rem 0; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-geo { display: none; }
    .hero-accent-line { display: none; }
    .about-img-frame img, .tall-img-wrap img { height: 300px; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.25rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: 1fr; }
}
