/* Homepage-specific styles.
 *
 * Extracted from a ~936-line inline <style> in index.html on 2026-07-27. Inlined CSS is
 * re-transmitted in full on every single homepage request (the HTML document itself is
 * correctly uncacheable), and it had drifted into a second, hand-synced copy of the shared
 * design system. index.html now loads css/shared.css first, then this file, so the cascade
 * order is unchanged and this file still wins on any conflict.
 *
 * Some rules here still duplicate css/shared.css. They are harmless (same values, later in
 * the cascade) but should be pruned when someone next touches the homepage design.
 */
 
 *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
 :root {
 --bg: #ffffff;
 --bg2: #f7f4ef;
 --bg3: #f0ece4;
 --green: #00461F;
 --green-m: #005c28;
 --green-l: #007535;
 --green-xl: #00a849;
 --gold: #b8954a;
 --gold-l: #c8a96e;
 /* Accessible gold for TEXT on light backgrounds -- see css/shared.css */
 --gold-d: #856428;
 --dark: #111410;
 --text: #1d1d1b;
 --text-m: #5a5a56;
 --muted: rgba(29,29,27,0.4);
 --border: rgba(0,0,0,0.08);
 --border-g: rgba(0,70,31,0.14);
 --ease: cubic-bezier(0.16, 1, 0.3, 1);
 --ease2: cubic-bezier(0.4, 0, 0.2, 1);
 --shadow: 0 2px 24px rgba(0,0,0,0.07);
 --shadow-m: 0 8px 48px rgba(0,0,0,0.11);
 }
 html { scroll-behavior: smooth; font-size: 16px; }
 body {
 font-family: 'Inter', system-ui, sans-serif;
 background: var(--bg);
 color: var(--text);
 overflow-x: hidden;
 -webkit-font-smoothing: antialiased;
 }
 img { max-width: 100%; display: block; }
 a { text-decoration: none; color: inherit; }
 ul { list-style: none; }
 button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 40px; }

 .tag {
 font-size: 10.5px;
 font-weight: 600;
 letter-spacing: 0.22em;
 text-transform: uppercase;
 color: var(--green);
 display: flex;
 align-items: center;
 gap: 12px;
 margin-bottom: 18px;
 }
 .tag::before {
 content: '';
 display: block;
 width: 28px; height: 1px;
 background: var(--green);
 flex-shrink: 0;
 }

 .section-heading {
 font-family: 'Cormorant Garamond', Georgia, serif;
 font-size: clamp(2.2rem, 4vw, 3.6rem);
 font-weight: 300;
 line-height: 1.12;
 color: var(--dark);
 }
 .section-heading em {
 font-style: italic;
 color: var(--green);
 }

 .btn {
 display: inline-flex;
 align-items: center;
 gap: 10px;
 padding: 14px 32px;
 font-family: 'Inter', sans-serif;
 font-size: 11.5px;
 font-weight: 600;
 letter-spacing: 0.13em;
 text-transform: uppercase;
 transition: all 0.3s var(--ease2);
 }
 .btn svg { width: 15px; height: 15px; flex-shrink: 0; transition: transform 0.3s var(--ease); }
 .btn:hover svg { transform: translateX(3px); }

 .btn-primary {
 background: var(--green);
 color: #fff;
 border: 1.5px solid var(--green);
 }
 .btn-primary:hover { background: var(--green-m); border-color: var(--green-m); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,70,31,0.25); }

 .btn-outline {
 background: transparent;
 color: #fff;
 border: 1.5px solid rgba(255,255,255,0.4);
 }
 .btn-outline:hover { border-color: rgba(255,255,255,0.9); transform: translateY(-1px); }

 .btn-outline-dark {
 background: transparent;
 color: var(--text);
 border: 1.5px solid rgba(0,0,0,0.18);
 }
 .btn-outline-dark:hover { border-color: var(--green); color: var(--green); transform: translateY(-1px); }

 .btn-gold {
 background: var(--gold);
 color: #fff;
 border: 1.5px solid var(--gold);
 font-weight: 700;
 }
 .btn-gold:hover { background: var(--gold-l); border-color: var(--gold-l); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(184,149,74,0.3); }

nav {
 position: fixed;
 top: 0; left: 0; right: 0;
 z-index: 1000;
 padding: 22px 0;
 transition: all 0.4s var(--ease2);
 }
 nav.scrolled {
 background: rgba(255,255,255,0.97);
 backdrop-filter: blur(20px);
 -webkit-backdrop-filter: blur(20px);
 padding: 13px 0;
 box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,0.05);
 }
 .nav-inner {
 display: flex;
 align-items: center;
 justify-content: space-between;
 max-width: 1180px;
 margin: 0 auto;
 padding: 0 40px;
 }
 .nav-logo { display: flex; align-items: center; gap: 12px; }
 .nav-logo-img {
 height: 70px;
 width: auto;
 transition: filter 0.4s;
 }
 .nav-logo-text { display: none; flex-direction: column; gap: 2px; }
 .nav-logo-text.show { display: flex; }
 .nav-logo-main {
 font-family: 'Cormorant Garamond', serif;
 font-size: 1.5rem;
 font-weight: 600;
 letter-spacing: 0.03em;
 color: #fff;
 line-height: 1;
 transition: color 0.4s;
 }
 nav.scrolled .nav-logo-main { color: var(--dark); }
 .nav-logo-sub {
 font-size: 8.5px;
 font-weight: 500;
 letter-spacing: 0.22em;
 text-transform: uppercase;
 color: rgba(255,255,255,0.65);
 transition: color 0.4s;
 }
 nav.scrolled .nav-logo-sub { color: var(--gold-d); }

 .nav-links { display: flex; align-items: center; gap: 32px; }
 .nav-links a {
 font-size: 11.5px;
 font-weight: 500;
 letter-spacing: 0.1em;
 text-transform: uppercase;
 color: rgba(255,255,255,0.88);
 transition: color 0.25s;
 position: relative;
 }
 nav.scrolled .nav-links a { color: var(--text-m); }
 .nav-links a::after {
 content: '';
 position: absolute;
 bottom: -5px; left: 0;
 width: 0; height: 1px;
 background: var(--green);
 transition: width 0.3s var(--ease2);
 }
 .nav-links a:hover { color: #fff; }
 nav.scrolled .nav-links a:hover { color: var(--dark); }
 .nav-links a:hover::after { width: 100%; }

 .nav-right { display: flex; align-items: center; gap: 20px; }
 .nav-phone {
 font-size: 12.5px;
 font-weight: 500;
 color: rgba(255,255,255,0.88);
 letter-spacing: 0.04em;
 transition: color 0.4s;
 }
 nav.scrolled .nav-phone { color: var(--green); }

 .hamburger { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; padding: 0; width: 48px; height: 48px; /* Negative block margins keep the 48x48 hit area without letting it drive the    header's height -- at 48px in flow it grew the fixed nav from 64px to 92px,    which then overlapped the top of every page hero. */ margin: -10px -8px -10px 0; }
 .hamburger span { display: block; width: 24px; height: 2px; border-radius: 2px; background: #fff; transition: all 0.3s; }
 nav.scrolled .hamburger span { background: var(--dark); }

.mobile-menu {
 position: fixed; inset: 0;
 background: #fff;
 z-index: 1200;
 display: flex; flex-direction: column;
 align-items: center; justify-content: center;
 gap: 2px;
 padding: 84px 24px 40px;
 overflow-y: auto;
 opacity: 0; pointer-events: none; visibility: hidden;
 transition: opacity 0.3s var(--ease2), visibility 0s linear 0.3s;
 }
 .mobile-menu.open { opacity: 1; pointer-events: all; visibility: visible; transition-delay: 0s, 0s; }
 .mobile-menu a {
 font-family: 'Cormorant Garamond', serif;
 font-size: 1.9rem; font-weight: 300;
 color: var(--dark); transition: color 0.2s;
 padding: 11px 18px; width: 100%; max-width: 320px; text-align: center;
 }
 .mobile-menu a:hover, .mobile-menu a:active { color: var(--green); }
 .mobile-close {
 position: absolute; top: 16px; right: 16px;
 width: 48px; height: 48px; padding: 0;
 display: flex; align-items: center; justify-content: center;
 font-size: 24px; line-height: 1; color: var(--green);
 background: var(--bg2); border: 1px solid var(--border-g); border-radius: 50%;
 transition: background 0.2s;
 }
 .mobile-close:hover, .mobile-close:active { background: var(--bg3); }
 .mobile-menu .mobile-phone {
 font-size: 15px; font-weight: 600;
 color: #fff; background: var(--green);
 letter-spacing: 0.03em; margin-top: 18px;
 padding: 13px 30px; border-radius: 100px; max-width: none;
 }
 .mobile-menu .mobile-phone:hover, .mobile-menu .mobile-phone:active { color: #fff; background: var(--green-m); }
 body.menu-open { overflow: hidden; }

#hero {
 position: relative;
 height: 100vh; min-height: 820px;
 overflow: hidden;
 }
 .hero-slide {
 position: absolute; inset: 0;
 background-size: cover;
 background-position: center;
 opacity: 0;
 transition: opacity 1.2s ease-in-out, transform 8s var(--ease);
 transform: scale(1.05);
 }
 .hero-slide.active {
 opacity: 1;
 transform: scale(1);
 }
 .hero-slide:nth-child(1) { background-image:url('/images-gs/BE67C83D-B31D-4D26-B49B-11B0033DEDFF.jpg');background-image:image-set(url('/images-gs/BE67C83D-B31D-4D26-B49B-11B0033DEDFF.webp') type('image/webp'), url('/images-gs/BE67C83D-B31D-4D26-B49B-11B0033DEDFF.jpg') type('image/jpeg')); }
 /* Slides 2 and 3 deliberately have NO background-image here. opacity:0 does not stop a
    fetch, so declaring all three in CSS pulled ~200KB of images the visitor will not see
    for at least 5 seconds into direct competition with the LCP image. Their sources live
    on data-bg attributes in index.html and are applied by the carousel script the first
    time each slide becomes active. Slide 1 IS the LCP element and stays in CSS so the
    preload in <head> can match it. */

 .hero-overlay {
 position: absolute; inset: 0;
 background:
 linear-gradient(to bottom, rgba(10,15,11,0.88) 0%, rgba(10,15,11,0.55) 15%, rgba(10,15,11,0.3) 35%),
 linear-gradient(to top, rgba(10,15,11,0.95) 0%, rgba(10,15,11,0.7) 35%, rgba(10,15,11,0.4) 65%, rgba(10,15,11,0.25) 100%);
 z-index: 1;
 }
 .hero-content {
 position: absolute; top: 0; bottom: 0; left: 0; right: 0;
 max-width: 1180px; margin: 0 auto;
 z-index: 2;
 padding: 100px 40px 60px;
 display: flex; align-items: center; justify-content: space-between; gap: 52px;
 }
 .hero-text { flex: 1 1 auto; max-width: 600px; }
 .hero-form {
 flex: 0 0 auto; width: 380px;
 background: var(--bg);
 border-top: 3px solid var(--green);
 padding: 26px 28px 20px;
 box-shadow: 0 24px 70px rgba(0,0,0,0.45);
 }
 .hero-form-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green); display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
 .hero-form-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--green); }
 .hero-form-title { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-weight: 500; color: var(--dark); line-height: 1.12; }
 .hero-form-sub { font-size: 12px; font-weight: 300; line-height: 1.55; color: var(--text-m); margin: 6px 0 16px; }
 .hero-form .form-group { margin-bottom: 11px; }
 .hero-form .form-label { margin-bottom: 5px; font-size: 9px; }
 .hero-form .form-input, .hero-form .form-textarea { padding: 11px 14px; font-size: 13px; }
 .hero-form .form-textarea { min-height: 62px; }
 .hero-form button { margin-top: 4px; }
 .hero-eyebrow {
 display: inline-flex; align-items: center; gap: 10px;
 background: rgba(10,15,11,0.45);
 border: 1px solid rgba(255,255,255,0.22);
 border-radius: 100px;
 padding: 7px 18px 7px 10px;
 margin-bottom: 26px;
 backdrop-filter: blur(8px);
 -webkit-backdrop-filter: blur(8px);
 }
 .hero-eyebrow-dot {
 width: 6px; height: 6px; border-radius: 50%;
 background: var(--gold-l);
 animation: pulse 2.2s ease-in-out infinite;
 }
 @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)}50%{opacity:0.4;transform:scale(0.75)} }
 .hero-eyebrow span {
 font-size: 10.5px; font-weight: 500;
 letter-spacing: 0.18em; text-transform: uppercase;
 color: rgba(255,255,255,1);
 text-shadow: 0 1px 8px rgba(0,0,0,0.8);
 }
 .hero-headline {
 font-family: 'Cormorant Garamond', serif;
 font-size: clamp(2.6rem, 5vw, 4.6rem);
 font-weight: 400; line-height: 1.05;
 max-width: 100%; margin-bottom: 20px;
 color: #fff;
 text-shadow: 0 2px 16px rgba(0,0,0,0.6), 0 4px 40px rgba(0,0,0,0.4);
 }
 .hero-headline em { font-style: italic; color: var(--gold-l); text-shadow: 0 2px 16px rgba(0,0,0,0.5); }
 .hero-sub {
 font-size: 15.5px; font-weight: 300;
 color: rgba(240,232,213,0.75);
 max-width: 490px; line-height: 1.72;
 margin-bottom: 44px;
 }
 .hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.hero-dots {
 position: absolute; bottom: 40px; right: 40px;
 display: flex; gap: 8px; z-index: 3;
 }
 .hero-dot {
 width: 7px; height: 7px; border-radius: 50%;
 background: rgba(255,255,255,0.35);
 border: 1px solid rgba(255,255,255,0.5);
 cursor: pointer;
 transition: background 0.3s, transform 0.3s;
 }
 .hero-dot.active { background: #fff; transform: scale(1.2); }

.hero-scroll {
 position: absolute; bottom: 40px; left: 50%;
 transform: translateX(-50%);
 display: flex; flex-direction: column; align-items: center; gap: 10px;
 z-index: 3;
 }
 .hero-scroll span {
 font-size: 9.5px; font-weight: 500;
 letter-spacing: 0.18em; text-transform: uppercase;
 color: rgba(255,255,255,0.5);
 }
 .scroll-line {
 width: 1px; height: 50px;
 background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
 animation: scrollAnim 2.4s ease-in-out infinite;
 }
 @keyframes scrollAnim {
 0%{transform:scaleY(0);transform-origin:top}
 50%{transform:scaleY(1);transform-origin:top}
 51%{transform-origin:bottom}
 100%{transform:scaleY(0);transform-origin:bottom}
 }

.marquee-bar {
 background: var(--green);
 padding: 14px 0;
 overflow: hidden;
 }
 .marquee-track {
 display: flex; width: max-content;
 animation: marquee 34s linear infinite;
 }
 .marquee-bar:hover .marquee-track { animation-play-state: paused; }
 @keyframes marquee { from{transform:translateX(0)}to{transform:translateX(-50%)} }
 .marquee-item {
 display: inline-flex; align-items: center; gap: 12px;
 padding: 0 44px;
 font-size: 11px; font-weight: 500;
 letter-spacing: 0.14em; text-transform: uppercase;
 color: rgba(255,255,255,0.9);
 white-space: nowrap;
 }
 .marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold-l); flex-shrink: 0; }

#stats { border-bottom: 1px solid var(--border); }
 .stats-grid {
 display: grid; grid-template-columns: repeat(4,1fr);
 gap: 0;
 }
 .stat-card {
 padding: 56px 40px;
 text-align: center;
 border-right: 1px solid var(--border);
 transition: background 0.3s;
 }
 .stat-card:last-child { border-right: none; }
 .stat-card:hover { background: var(--bg2); }
 .stat-number {
 font-family: 'Cormorant Garamond', serif;
 font-size: clamp(3rem,5vw,4.8rem);
 font-weight: 300; color: var(--green);
 line-height: 1; margin-bottom: 10px;
 }
 .stat-number sup { font-size: 0.42em; vertical-align: super; }
 .stat-label {
 font-size: 10.5px; font-weight: 500;
 letter-spacing: 0.16em; text-transform: uppercase;
 color: var(--muted);
 }

#about { padding: 130px 0; }
 .about-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 90px; align-items: center;
 }
 .about-images { position: relative; height: 580px; }
 .about-img-main {
 position: absolute;
 top: 0; left: 0; right: 70px; bottom: 90px;
 background-image:url('/images-gs/BE67C83D-B31D-4D26-B49B-11B0033DEDFF.jpg');background-image:image-set(url('/images-gs/BE67C83D-B31D-4D26-B49B-11B0033DEDFF.webp') type('image/webp'), url('/images-gs/BE67C83D-B31D-4D26-B49B-11B0033DEDFF.jpg') type('image/jpeg'));
 background-size: cover; background-position: center;
 box-shadow: var(--shadow-m);
 }
 .about-img-accent {
 position: absolute;
 bottom: 0; right: 0;
 width: 58%; height: 52%;
 background-image:url('/images-gs/A7CE443B-B69A-4FFB-BEC9-086C41D1E178.jpg');background-image:image-set(url('/images-gs/A7CE443B-B69A-4FFB-BEC9-086C41D1E178.webp') type('image/webp'), url('/images-gs/A7CE443B-B69A-4FFB-BEC9-086C41D1E178.jpg') type('image/jpeg'));
 background-size: cover; background-position: center;
 border: 6px solid var(--bg);
 box-shadow: var(--shadow-m);
 }
 .about-badge {
 position: absolute; top: 36px; right: 0;
 background: var(--green);
 padding: 22px 26px; text-align: center; z-index: 2;
 }
 .about-badge-num {
 font-family: 'Cormorant Garamond', serif;
 font-size: 2.6rem; font-weight: 300;
 color: var(--gold-l); line-height: 1;
 }
 .about-badge-text {
 font-size: 9.5px; font-weight: 500;
 letter-spacing: 0.14em; text-transform: uppercase;
 color: rgba(255,255,255,0.8); margin-top: 5px;
 }
 .about-content { padding-left: 10px; }
 .about-content p {
 font-size: 14.5px; font-weight: 300;
 line-height: 1.82; color: var(--text-m);
 margin-top: 8px; margin-bottom: 18px;
 }
 .about-list { margin: 28px 0 40px; display: flex; flex-direction: column; gap: 13px; }
 .about-list li {
 display: flex; align-items: center; gap: 14px;
 font-size: 13.5px; font-weight: 400; color: var(--text);
 }
 .about-list li::before {
 content: ''; display: block;
 width: 20px; height: 1px;
 background: var(--green); flex-shrink: 0;
 }

#services { padding: 130px 0; background: var(--bg2); }
 .services-header {
 display: flex; align-items: flex-end;
 justify-content: space-between; gap: 40px;
 margin-bottom: 60px;
 }
 .services-header-text {
 max-width: 360px; font-size: 14px; font-weight: 300;
 line-height: 1.8; color: var(--text-m);
 }
 .services-grid {
 display: grid; grid-template-columns: repeat(3,1fr);
 gap: 20px;
 }
 .service-card {
 background: var(--bg);
 border: 1px solid var(--border);
 padding: 48px 38px;
 position: relative; overflow: hidden;
 transition: box-shadow 0.35s var(--ease2), transform 0.35s var(--ease2);
 }
 .service-card:hover {
 box-shadow: var(--shadow-m);
 transform: translateY(-4px);
 }
 .service-card::after {
 content: '';
 position: absolute; bottom: 0; left: 0;
 width: 0; height: 3px;
 background: var(--green);
 transition: width 0.45s var(--ease2);
 }
 .service-card:hover::after { width: 100%; }
 .service-num {
 font-family: 'Cormorant Garamond', serif;
 font-size: 5rem; font-weight: 300;
 color: rgba(0,70,31,0.06); line-height: 1;
 margin-bottom: 28px;
 }
 .service-icon { width: 42px; height: 42px; color: var(--green); margin-bottom: 20px; }
 .service-title {
 font-family: 'Cormorant Garamond', serif;
 font-size: 1.85rem; font-weight: 400;
 color: var(--dark); margin-bottom: 14px;
 }
 .service-desc {
 font-size: 13.5px; font-weight: 300;
 line-height: 1.78; color: var(--text-m);
 margin-bottom: 28px;
 }
 .service-link {
 display: inline-flex; align-items: center; gap: 8px;
 font-size: 10.5px; font-weight: 600;
 letter-spacing: 0.14em; text-transform: uppercase;
 color: var(--green);
 transition: gap 0.3s var(--ease2);
 }
 .service-card:hover .service-link { gap: 14px; }

#sectors { padding: 130px 0; }
 .sectors-header { margin-bottom: 64px; }
 .sectors-grid {
 display: grid; grid-template-columns: repeat(3,1fr);
 gap: 0;
 border-top: 1px solid var(--border);
 border-left: 1px solid var(--border);
 }
 .sector-card {
 background: var(--bg);
 padding: 44px 36px;
 border-right: 1px solid var(--border);
 border-bottom: 1px solid var(--border);
 position: relative; overflow: hidden;
 transition: background 0.3s;
 }
 .sector-card:hover { background: var(--bg2); }
 .sector-card::after {
 content: '';
 position: absolute; top: 0; left: 0;
 width: 3px; height: 0;
 background: var(--green);
 transition: height 0.45s var(--ease2);
 }
 .sector-card:hover::after { height: 100%; }
 .sector-icon { width: 38px; height: 38px; color: var(--green-l); margin-bottom: 18px; }
 .sector-title {
 font-family: 'Cormorant Garamond', serif;
 font-size: 1.45rem; font-weight: 400;
 color: var(--dark); margin-bottom: 10px;
 }
 .sector-desc { font-size: 13px; font-weight: 300; line-height: 1.72; color: var(--text-m); }

#projects { padding: 130px 0; background: var(--bg2); }
 .projects-header {
 display: flex; align-items: flex-end;
 justify-content: space-between; gap: 40px;
 margin-bottom: 60px;
 }
 .projects-header-text { max-width: 300px; font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--text-m); }

.projects-featured {
 display: grid;
 grid-template-columns: 2fr 1fr;
 grid-template-rows: 320px 320px;
 gap: 12px;
 margin-bottom: 12px;
 }
 .project-card {
 position: relative; overflow: hidden; cursor: pointer;
 background: var(--bg3);
 }
 .project-card:first-child { grid-row: 1 / 3; }
 .project-bg {
 position: absolute; inset: 0;
 background-size: cover; background-position: center;
 transition: transform 0.9s var(--ease);
 }
 .project-card:hover .project-bg { transform: scale(1.06); }
 .project-overlay {
 position: absolute; inset: 0;
 background: linear-gradient(to top, rgba(10,15,11,0.88) 0%, rgba(10,15,11,0.2) 55%, transparent 100%);
 }
 .project-content {
 position: absolute; bottom: 0; left: 0; right: 0; padding: 28px;
 }
 .project-location {
 font-size: 10px; font-weight: 600;
 letter-spacing: 0.22em; text-transform: uppercase;
 color: var(--gold-l); margin-bottom: 6px;
 }
 .project-title {
 font-family: 'Cormorant Garamond', serif;
 font-size: 1.35rem; font-weight: 400;
 line-height: 1.3; color: #fff;
 }
 .project-arrow {
 position: absolute; top: 20px; right: 20px;
 width: 38px; height: 38px;
 background: rgba(255,255,255,0.12);
 border: 1px solid rgba(255,255,255,0.22);
 display: flex; align-items: center; justify-content: center;
 color: #fff; opacity: 0;
 transform: translate(6px,-6px);
 transition: all 0.35s var(--ease2);
 }
 .project-card:hover .project-arrow { opacity: 1; transform: translate(0,0); }

.projects-gallery {
 display: grid;
 grid-template-columns: repeat(6, 1fr);
 gap: 12px;
 }
 .gallery-item {
 aspect-ratio: 1;
 overflow: hidden;
 position: relative;
 cursor: pointer;
 }
 .gallery-item img {
 width: 100%; height: 100%;
 object-fit: cover;
 transition: transform 0.7s var(--ease);
 }
 .gallery-item:hover img { transform: scale(1.08); }
 .gallery-item-overlay {
 position: absolute; inset: 0;
 background: rgba(0,70,31,0);
 transition: background 0.35s;
 }
 .gallery-item:hover .gallery-item-overlay { background: rgba(0,70,31,0.2); }

#brands {
 padding: 70px 0;
 border-top: 1px solid var(--border);
 border-bottom: 1px solid var(--border);
 }
 .brands-label {
 text-align: center;
 font-size: 10.5px; font-weight: 600;
 letter-spacing: 0.22em; text-transform: uppercase;
 color: var(--muted);
 margin-bottom: 40px;
 }
 .brands-grid {
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 0;
 flex-wrap: wrap;
 }
 .brand-item {
 flex: 1 1 120px;
 max-width: 160px;
 padding: 16px 24px;
 display: flex; align-items: center; justify-content: center;
 opacity: 0.4;
 transition: opacity 0.3s;
 border-right: 1px solid var(--border);
 }
 .brand-item:last-child { border-right: none; }
 .brand-item:hover { opacity: 0.85; }
 .brand-item img { max-height: 36px; width: auto; filter: grayscale(1); }

#process { padding: 130px 0; }
 .process-header { text-align: center; margin-bottom: 80px; }
 .process-header .tag { justify-content: center; }
 .process-grid {
 display: grid; grid-template-columns: repeat(4,1fr);
 gap: 0;
 border-top: 1px solid var(--border);
 border-left: 1px solid var(--border);
 }
 .process-step {
 padding: 48px 32px;
 border-right: 1px solid var(--border);
 border-bottom: 1px solid var(--border);
 position: relative;
 transition: background 0.3s;
 }
 .process-step:hover { background: var(--bg2); }
 .process-num {
 font-family: 'Cormorant Garamond', serif;
 font-size: 4.2rem; font-weight: 300;
 color: rgba(0,70,31,0.1); line-height: 1;
 margin-bottom: 20px;
 }
 .process-title {
 font-family: 'Cormorant Garamond', serif;
 font-size: 1.35rem; font-weight: 400;
 color: var(--dark); margin-bottom: 12px;
 }
 .process-desc { font-size: 13px; font-weight: 300; line-height: 1.72; color: var(--text-m); }

#hs-strip { padding: 72px 0; background: var(--bg2); border-top: 1px solid var(--border); }
 .hs-inner { display: flex; align-items: center; gap: 56px; }
 .hs-icon { width: 56px; height: 56px; color: var(--green); flex-shrink: 0; }
 .hs-text h3 {
 font-family: 'Cormorant Garamond', serif;
 font-size: 1.7rem; font-weight: 400;
 color: var(--dark); margin-bottom: 10px;
 }
 .hs-text p { font-size: 14px; font-weight: 300; line-height: 1.78; color: var(--text-m); max-width: 820px; }

#cta {
 position: relative;
 padding: 140px 0;
 overflow: hidden;
 text-align: center;
 background: var(--green);
 }
 .cta-pattern {
 position: absolute; inset: 0;
 background-image:url('/images-gs/2E8A4111-5E54-4C2F-B62D-DACAE9C49EA5.jpg');background-image:image-set(url('/images-gs/2E8A4111-5E54-4C2F-B62D-DACAE9C49EA5.webp') type('image/webp'), url('/images-gs/2E8A4111-5E54-4C2F-B62D-DACAE9C49EA5.jpg') type('image/jpeg'));
 background-size: cover; background-position: center;
 opacity: 0.08;
 }
 .cta-content { position: relative; z-index: 1; }
 .cta-content .tag { justify-content: center; color: var(--gold-l); }
 .cta-content .tag::before { background: var(--gold-l); }
 .cta-heading {
 font-family: 'Cormorant Garamond', serif;
 font-size: clamp(2.6rem, 5vw, 4.8rem);
 font-weight: 300; line-height: 1.1;
 max-width: 680px; margin: 0 auto 16px;
 color: #fff;
 }
 .cta-heading em { font-style: italic; color: var(--gold-l); }
 .cta-sub { font-size: 15.5px; font-weight: 300; color: rgba(255,255,255,0.65); margin-bottom: 48px; }
 .cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
 .btn-white {
 background: #fff; color: var(--green);
 border: 1.5px solid #fff;
 font-size: 11.5px; font-weight: 700;
 letter-spacing: 0.13em; text-transform: uppercase;
 padding: 14px 32px;
 display: inline-flex; align-items: center; gap: 10px;
 transition: all 0.3s var(--ease2);
 }
 .btn-white svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
 .btn-white:hover { background: var(--gold-l); border-color: var(--gold-l); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.25); }
 .btn-white:hover svg { transform: translateX(3px); }

#contact { padding: 130px 0; }
 .contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 90px; align-items: start; }
 .contact-left p {
 font-size: 14.5px; font-weight: 300; line-height: 1.82;
 color: var(--text-m); margin-top: 8px; margin-bottom: 52px;
 }
 .contact-details { display: flex; flex-direction: column; gap: 26px; }
 .contact-detail { display: flex; gap: 16px; align-items: flex-start; }
 .contact-detail-icon {
 width: 44px; height: 44px;
 background: rgba(0,70,31,0.07);
 border: 1px solid var(--border-g);
 display: flex; align-items: center; justify-content: center;
 color: var(--green); flex-shrink: 0;
 }
 .contact-detail-label {
 font-size: 9.5px; font-weight: 600;
 letter-spacing: 0.18em; text-transform: uppercase;
 color: var(--muted); margin-bottom: 4px;
 }
 .contact-detail-value { font-size: 14.5px; font-weight: 400; color: var(--text); }
 .contact-detail-value a { color: var(--text); transition: color 0.2s; }
 .contact-detail-value a:hover { color: var(--green); }

 .contact-form { display: flex; flex-direction: column; gap: 14px; }
 .contact-form form { display: flex; flex-direction: column; gap: 16px; }
 .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
 .form-group { display: flex; flex-direction: column; gap: 7px; }
 .form-label { font-size: 9.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-m); }
 .form-input, .form-textarea, .form-select {
 background: #fcfbf9;
 border: 1px solid rgba(0,0,0,0.22);
 color: var(--text);
 padding: 13px 17px;
 font-family: 'Inter', sans-serif;
 font-size: 13.5px; font-weight: 300;
 transition: border-color 0.2s, box-shadow 0.2s;
 outline: none; width: 100%;
 border-radius: 0; -webkit-appearance: none;
 }
 .form-input::placeholder, .form-textarea::placeholder { color: rgba(29,29,27,0.48); }
 .form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,70,31,0.1); }
 .form-textarea { resize: vertical; min-height: 118px; }
 .form-select {
 cursor: pointer;
 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300461F' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
 background-repeat: no-repeat;
 background-position: right 15px center;
 padding-right: 38px;
 }

footer {
 background: var(--dark);
 padding: 80px 0 0;
 }
 .footer-grid {
 display: grid;
 grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
 gap: 40px; margin-bottom: 60px;
 }
 .footer-logo-img {
 height: 46px; width: auto;
 margin-bottom: 20px;
 opacity: 0.9;
 }
 .footer-logo-main {
 font-family: 'Cormorant Garamond', serif;
 font-size: 1.55rem; font-weight: 600;
 color: #fff; line-height: 1; margin-bottom: 4px;
 }
 .footer-logo-sub {
 font-size: 8.5px; font-weight: 500;
 letter-spacing: 0.22em; text-transform: uppercase;
 color: var(--gold-l); margin-bottom: 20px;
 }
 .footer-brand-desc { font-size: 13px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.4); }
 .footer-col-title {
 font-size: 10.5px; font-weight: 600;
 letter-spacing: 0.18em; text-transform: uppercase;
 color: var(--gold-l); margin-bottom: 22px;
 }
 .footer-links { display: flex; flex-direction: column; gap: 11px; }
 .footer-links a { display: inline-block; padding: 7px 0; font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.45); transition: color 0.2s; }
 .footer-links a:hover { color: #fff; }
 .footer-bottom {
 border-top: 1px solid rgba(255,255,255,0.07);
 padding: 22px 0;
 display: flex; align-items: center; justify-content: space-between; gap: 20px;
 }
 .footer-bottom p { font-size: 11.5px; font-weight: 300; color: rgba(255,255,255,0.28); }

.fade-up {
 opacity: 0; transform: translateY(28px);
 transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
 }
 .fade-up.visible { opacity: 1; transform: translateY(0); }
 .stagger > *:nth-child(1){transition-delay:0s}
 .stagger > *:nth-child(2){transition-delay:0.1s}
 .stagger > *:nth-child(3){transition-delay:0.2s}
 .stagger > *:nth-child(4){transition-delay:0.3s}
 .stagger > *:nth-child(5){transition-delay:0.4s}
 .stagger > *:nth-child(6){transition-delay:0.5s}

@media (max-width: 1024px) {
 .about-grid { grid-template-columns: 1fr; gap: 60px; }
 .about-images { height: 420px; }
 .about-content { padding-left: 0; }
 .stats-grid { grid-template-columns: repeat(2,1fr); }
 .stat-card:nth-child(2) { border-right: none; }
 .stat-card:nth-child(3) { border-top: 1px solid var(--border); }
 .projects-featured { grid-template-columns: 1fr; grid-template-rows: 380px 260px 260px; }
 .project-card:first-child { grid-row: auto; }
 .projects-gallery { grid-template-columns: repeat(3,1fr); }
 .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
 .hs-inner { flex-direction: column; gap: 28px; }
 .brands-grid { gap: 0; }
 }
 @media (max-width: 768px) {
 .container { padding: 0 22px; }
 .nav-inner { padding: 0 22px; }
 .nav-links, .nav-phone { display: none; }
 .nav-right .btn { display: none; }
 .hamburger { display: flex; }
 nav, nav.scrolled { padding: 9px 0; }
 .nav-logo-img { height: 46px; }
 .hero-content { padding: 0 22px 80px; }
 .hero-scroll { display: none; }
 .services-header { flex-direction: column; align-items: flex-start; }
 .services-grid, .sectors-grid, .process-grid { grid-template-columns: 1fr; }
 .projects-header { flex-direction: column; align-items: flex-start; }
 .projects-gallery { grid-template-columns: repeat(2,1fr); }
 .brands-grid { gap: 0; }
 .brand-item { max-width: 50%; border-bottom: 1px solid var(--border); }
 .contact-grid { grid-template-columns: 1fr; gap: 60px; }
 .form-row { grid-template-columns: 1fr; }
 .footer-grid { grid-template-columns: 1fr; gap: 30px; }
 .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
 #about,#services,#sectors,#projects,#process,#contact,#cta { padding: 80px 0; }
 }
 @media (max-width: 920px) {
 #hero { height: auto; min-height: 0; }
 .hero-content { position: relative; z-index: 2; transform: none; flex-direction: column; align-items: stretch; gap: 26px; max-width: 100%; padding: 96px 22px 56px; }
 .hero-text { max-width: 100%; }
 .hero-form { width: 100%; max-width: 460px; }
 .hero-dots { display: none; }
 /* Headline was washing out over the bright photo: stronger, even overlay for contrast */
 .hero-overlay {
   background: linear-gradient(to bottom, rgba(10,15,11,0.84) 0%, rgba(10,15,11,0.68) 42%, rgba(10,15,11,0.8) 100%);
 }
 .hero-sub { margin-bottom: 28px; }
 }
 @media (max-width: 600px) {
 .hero-headline { font-size: clamp(2.3rem, 9vw, 3rem); margin-bottom: 16px; }
 .hero-sub { font-size: 14.5px; margin-bottom: 24px; }
 .hero-eyebrow { margin-bottom: 20px; }
 .hero-actions { gap: 10px; }
 .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
 .hero-form { padding: 22px 20px 18px; }
 .stats-grid { grid-template-columns: repeat(2,1fr); }
 }

.trust-bar { background: var(--green); }
.trust-bar-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 22px 30px; padding: 26px 0; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item svg { width: 26px; height: 26px; color: var(--gold-l); flex-shrink: 0; }
.trust-item strong { display: block; font-size: 13.5px; font-weight: 600; color: #fff; line-height: 1.2; }
.trust-item span { font-size: 11px; color: rgba(255,255,255,0.6); letter-spacing: 0.03em; }
.testimonials { padding: 100px 0; background: var(--bg2); border-top: 1px solid var(--border); }
.testimonials-head { text-align: center; margin-bottom: 52px; }
.ts-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 10.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }
.ts-eyebrow::before, .ts-eyebrow::after { content: ''; width: 24px; height: 1px; background: var(--green); }
.ts-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; line-height: 1.12; color: var(--dark); }
.ts-title em { font-style: italic; color: var(--green); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: #fff; border: 1px solid var(--border); padding: 36px 32px; display: flex; flex-direction: column; gap: 16px; transition: box-shadow 0.35s var(--ease2), transform 0.35s var(--ease2); }
.testimonial-card:hover { box-shadow: var(--shadow-m); transform: translateY(-3px); }
.stars { color: var(--gold-d); letter-spacing: 3px; font-size: 15px; }
.testimonial-card blockquote { font-size: 14.5px; font-weight: 300; line-height: 1.8; color: var(--text); font-style: italic; }
.testimonial-card figcaption { display: flex; flex-direction: column; gap: 2px; margin-top: auto; }
.t-name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 500; color: var(--dark); }
.t-meta { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 1024px) { .testimonial-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .trust-bar-inner { justify-content: flex-start; } }

 .footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
 .footer-bottom a:hover { color: #fff; }

/* Mobile hero variants for the carousel (see css/shared.css for the rationale).
   Slide 1 only -- slides 2 and 3 get their background from data-bg at activation time,
   already after the LCP window, so the desktop asset is fine there. */
@media (max-width: 768px) {
  .hero-slide:nth-child(1) { background-image:url('/images-gs/BE67C83D-B31D-4D26-B49B-11B0033DEDFF-900.jpg');background-image:image-set(url('/images-gs/BE67C83D-B31D-4D26-B49B-11B0033DEDFF-900.webp') type('image/webp'),url('/images-gs/BE67C83D-B31D-4D26-B49B-11B0033DEDFF-900.jpg') type('image/jpeg')); }
}
