@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;500;600;700;800&family=Yellowtail&display=swap');

:root {
  --green: #1e4d34;
  --green-dark: #0d2f20;
  --green-soft: #2f694b;
  --gold: #c69a4d;
  --gold-light: #dfbd79;
  --gray: #6b6e70;
  --ink: #1a1a1a;
  --cream: #f5f5f2;
  --white: #ffffff;
  --heading: 'Bebas Neue', sans-serif;
  --body: 'Montserrat', sans-serif;
  --script: 'Yellowtail', cursive;
  --shadow: 0 18px 55px rgba(13, 47, 32, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: var(--body); line-height: 1.7; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 96px 0; position: relative; }
.section.light { background: var(--white); }
.section.green { background: var(--green); color: var(--white); }
.section.cream { background: var(--cream); }
.text-center { text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 12px; color: var(--gold); font-weight: 800; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { content: ''; width: 34px; height: 2px; background: currentColor; }
h1, h2, h3, h4, h5, h6 { margin: 0 0 16px; font-family: var(--heading); font-weight: 400; line-height: .96; letter-spacing: .025em; text-transform: uppercase; }
h1 { font-size: clamp(54px, 7.1vw, 104px); }
h2 { font-size: clamp(42px, 5vw, 70px); }
h3 { font-size: clamp(29px, 3vw, 42px); }
h4 { font-size: 27px; }
p { margin: 0 0 18px; }
.lead { max-width: 780px; font-size: clamp(17px, 2vw, 21px); color: var(--gray); font-weight: 500; }
.hl { color: var(--gold); }
.script { color: var(--gold); font-family: var(--script); font-size: 1.08em; text-transform: none; letter-spacing: 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 36px; margin-bottom: 46px; }
.section-head p { max-width: 560px; color: var(--gray); font-weight: 500; }

/* Buttons */
.btn { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 10px; padding: 12px 28px; border: 2px solid var(--gold); background: var(--gold); color: var(--ink); font-weight: 800; font-size: 13px; letter-spacing: .09em; text-transform: uppercase; cursor: pointer; transition: transform .2s, background .2s, color .2s, border-color .2s; }
.btn::after { content: '\2192'; font-size: 18px; line-height: 1; }
.btn:hover, .btn:focus-visible { transform: translateY(-2px); background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline { color: var(--green); background: transparent; border-color: var(--green); }
.btn-outline:hover, .btn-outline:focus-visible { color: var(--white); background: var(--green); border-color: var(--green); }
.btn-dark { background: var(--green-dark); color: var(--white); border-color: var(--green-dark); }
.btn-dark:hover { background: var(--green); border-color: var(--green); }
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* Top bar */
.announce { background: var(--green-dark); color: var(--white); border-bottom: 1px solid rgba(255,255,255,.14); }
.announce-inner { width: min(1320px, calc(100% - 36px)); min-height: 42px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.announce-title { display: flex; align-items: center; gap: 12px; }
.announce-title h6 { margin: 0; font-family: var(--body); font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.announce-title .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(198,154,77,.16); }
.announce-meta { display: flex; align-items: center; gap: 26px; font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.announce-meta a:hover { color: var(--gold-light); }

/* Header */
.site-header { position: sticky; z-index: 50; top: 0; background: rgba(245,245,242,.96); border-bottom: 1px solid rgba(30,77,52,.12); backdrop-filter: blur(12px); }
.header-inner { width: min(1320px, calc(100% - 36px)); min-height: 86px; margin: auto; display: grid; grid-template-columns: 275px 1fr auto; align-items: center; gap: 30px; }
.logo img { width: 270px; height: 72px; object-fit: contain; }
.main-nav > ul { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2.4vw, 38px); }
.main-nav > ul > li > a { position: relative; padding: 32px 0; color: var(--green-dark); font-weight: 800; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.main-nav > ul > li > a::before { content: ''; position: absolute; left: 0; right: 100%; bottom: 24px; height: 2px; background: var(--gold); transition: right .2s; }
.main-nav > ul > li > a:hover::before, .main-nav > ul > li > a.active::before { right: 0; }
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: '\2304'; margin-left: 6px; }
.main-nav .has-dropdown::before { content: ''; position: absolute; z-index: 1; top: 100%; left: -14px; right: -14px; height: 30px; }
.dropdown { display: none; position: absolute; z-index: 20; top: calc(100% + 28px); left: -20px; min-width: 225px; padding: 10px; border-top: 3px solid var(--gold); background: var(--green-dark); box-shadow: var(--shadow); }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown, .has-dropdown.open .dropdown { display: block; }
.dropdown a { display: block; padding: 12px 14px; color: var(--white); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.dropdown a:hover { background: rgba(255,255,255,.08); color: var(--gold-light); }
.header-contact { display: flex; align-items: center; gap: 16px; }
.header-phone { color: var(--green-dark); font-family: var(--heading); font-size: 23px; letter-spacing: .045em; white-space: nowrap; }
.header-phone small { display: block; margin-bottom: 2px; color: var(--gray); font-family: var(--body); font-size: 9px; font-weight: 800; letter-spacing: .11em; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 11px; border: 0; background: var(--green); cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--white); }
.mobile-nav { display: none; }

/* Hero */
.hero { min-height: 715px; display: flex; align-items: center; position: relative; isolation: isolate; background: center/cover no-repeat; color: var(--white); }
.hero::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(8,31,21,.95) 0%, rgba(8,31,21,.82) 35%, rgba(8,31,21,.15) 75%, rgba(8,31,21,.05) 100%); }
.hero::after { content: ''; position: absolute; left: 0; bottom: 0; width: 32%; height: 8px; background: var(--gold); }
.hero .container { padding-block: 84px; }
.hero-content { width: min(700px, 66%); }
.hero h1 { max-width: 660px; margin-bottom: 16px; }
.hero-sub { max-width: 620px; margin-bottom: 22px; font-size: clamp(20px, 2.4vw, 29px); font-weight: 500; line-height: 1.35; }
.hero-trust { max-width: 600px; color: rgba(255,255,255,.8); font-size: 14px; }
.hero-locs { margin: 24px 0 0; color: var(--gold-light); font-weight: 700; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.hero-inner { min-height: 490px; }
.hero-inner .hero-content { width: min(820px, 76%); }
.hero-inner h1 { font-size: clamp(54px, 7vw, 92px); }

/* Trust/service strip */
.badge-strip { position: relative; z-index: 3; background: var(--green); color: var(--white); }
.badge-row { display: grid; grid-template-columns: repeat(5, 1fr); }
.badge-item { min-height: 120px; padding: 25px 18px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 6px; border-right: 1px solid rgba(255,255,255,.15); text-align: center; }
.badge-item:first-child { border-left: 1px solid rgba(255,255,255,.15); }
.badge-icon { color: var(--gold-light); font-family: var(--heading); font-size: 40px; line-height: 1; }
.badge-item strong { font-family: var(--heading); font-size: 22px; font-weight: 400; letter-spacing: .04em; text-transform: uppercase; }
.badge-item span { color: rgba(255,255,255,.68); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

/* Content */
.split { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr); align-items: center; gap: clamp(45px, 7vw, 92px); }
.split > img, .image-frame img { width: 100%; min-height: 430px; object-fit: cover; }
.image-frame { position: relative; padding: 0 0 26px 26px; }
.image-frame::before { content: ''; position: absolute; left: 0; bottom: 0; width: 70%; height: 72%; z-index: -1; background: var(--gold); }
.review-card { margin-top: 28px; padding: 26px 28px; border-left: 4px solid var(--gold); background: var(--white); box-shadow: var(--shadow); }
.review-card .stars, .stars { color: var(--gold); letter-spacing: 3px; }
.review-card p { margin: 7px 0 0; font-weight: 600; }
.signature { margin-top: 20px; font-family: var(--script); color: var(--gold); font-size: 33px; }

/* Services and cards */
.service-grid, .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { position: relative; min-height: 440px; display: flex; align-items: end; overflow: hidden; background: var(--green-dark); color: var(--white); box-shadow: var(--shadow); }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.service-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,31,21,.98), rgba(8,31,21,.05) 72%); }
.service-card:hover img { transform: scale(1.035); }
.service-card-body { position: relative; z-index: 2; width: 100%; padding: 28px; }
.service-card .num { color: var(--gold-light); font-family: var(--heading); font-size: 20px; }
.service-card h3 { margin: 2px 0 8px; }
.service-card p { margin: 0; color: rgba(255,255,255,.72); font-size: 13px; }
.service-card a { display: inline-block; margin-top: 18px; color: var(--gold-light); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

/* Stats */
.stats { padding: 0; background: var(--green-dark); color: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { min-height: 155px; padding: 32px 22px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid rgba(255,255,255,.12); }
.stat:first-child { border-left: 1px solid rgba(255,255,255,.12); }
.stat .num { color: var(--gold-light); font-family: var(--heading); font-size: 42px; line-height: 1; }
.stat .lbl { margin-top: 8px; color: rgba(255,255,255,.7); font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }

/* Feature marks */
.logo-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch; gap: 14px; }
.logo-row .trust-mark { min-width: 180px; padding: 25px 26px; border: 1px solid rgba(30,77,52,.15); background: var(--white); color: var(--green); font-family: var(--heading); font-size: 24px; letter-spacing: .04em; text-align: center; text-transform: uppercase; }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card { position: relative; padding: 34px; border-top: 4px solid var(--gold); background: var(--white); box-shadow: var(--shadow); }
.testi-card::before { content: '\201C'; position: absolute; right: 23px; top: 0; color: rgba(198,154,77,.2); font-family: Georgia, serif; font-size: 96px; line-height: 1; }
.testi-card p { position: relative; font-size: 14px; }
.testi-card .name { color: var(--green); font-family: var(--heading); font-size: 21px; text-transform: uppercase; }

/* Callout */
.google-strip { padding: 60px 0; background: var(--gold); }
.google-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 34px; }
.google-inner > * { min-height: 84px; display: flex; align-items: center; justify-content: center; text-align: center; border-right: 1px solid rgba(26,26,26,.22); }
.google-inner > *:last-child { border: 0; }
.google-inner strong, .award-txt { font-family: var(--heading); font-size: 26px; line-height: 1.1; text-transform: uppercase; }
.award-icon { font-family: var(--heading); font-size: 54px; }

/* Process + accordions */
.process { color: var(--white); background: linear-gradient(110deg, rgba(8,31,21,.98), rgba(30,77,52,.94)), url('images/hero-fence.jpg') center/cover fixed; }
.process .lead { color: rgba(255,255,255,.72); }
.process-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: start; gap: clamp(45px, 8vw, 100px); }
.accordion-item { margin-bottom: 12px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06); }
.accordion-head { width: 100%; padding: 19px 22px; display: flex; justify-content: space-between; align-items: center; gap: 20px; border: 0; background: transparent; color: var(--white); font-weight: 700; text-align: left; cursor: pointer; }
.accordion-head::after { content: '+'; color: var(--gold-light); font-family: var(--heading); font-size: 27px; }
.accordion-item.open .accordion-head::after { content: '\2212'; }
.accordion-body { display: none; padding: 0 22px 20px; color: rgba(255,255,255,.72); font-size: 14px; }
.accordion-item.open .accordion-body { display: block; }

/* Estimate */
.estimate { overflow: hidden; background: var(--cream); }
.estimate::before { content: 'BUILT TO LAST'; position: absolute; right: -35px; top: 20px; color: rgba(30,77,52,.035); font-family: var(--heading); font-size: 185px; line-height: 1; white-space: nowrap; }
.estimate .container { position: relative; }
.estimate-layout { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: 64px; }
.contact-panel { padding: 40px; background: var(--green); color: var(--white); }
.contact-panel .call-now { display: block; margin: 20px 0 10px; color: var(--gold-light); font-family: var(--heading); font-size: 34px; letter-spacing: .03em; }
.contact-panel p, .contact-panel a:not(.call-now) { color: rgba(255,255,255,.75); }
.est-form { position: relative; padding: 42px; background: var(--white); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.est-form input, .est-form select, .est-form textarea { width: 100%; margin-bottom: 14px; padding: 14px 15px; border: 1px solid #d6d8d7; border-radius: 0; outline: none; background: var(--cream); color: var(--ink); }
.est-form input:focus, .est-form select:focus, .est-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(198,154,77,.14); }
.radio-title { margin: 8px 0 10px; color: var(--green); font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.radio-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 15px; }
.radio-pills label { padding: 9px 12px; border: 1px solid rgba(30,77,52,.22); color: var(--green); font-size: 12px; font-weight: 700; cursor: pointer; }
.radio-pills input { width: auto; margin: 0 7px 0 0; accent-color: var(--green); }
.form-success { display: none; margin-top: 14px; padding: 13px 15px; border-left: 4px solid var(--gold); background: rgba(30,77,52,.08); color: var(--green); font-weight: 700; }

/* Tabs */
.tabs { margin-top: 40px; }
.tab-menu { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.tab-link { padding: 11px 18px; border: 1px solid var(--green); background: transparent; color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; cursor: pointer; }
.tab-link:hover, .tab-link.active { background: var(--green); color: var(--white); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }
.tab-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 52px; padding: 34px; background: var(--white); box-shadow: var(--shadow); }
.tab-grid img { width: 100%; height: 420px; object-fit: cover; }
.tab-grid p { color: var(--gray); }

/* Blog/project cards */
.blog-card { background: var(--white); box-shadow: var(--shadow); transition: transform .25s; }
.blog-card:hover { transform: translateY(-6px); }
.blog-card img { width: 100%; height: 245px; object-fit: cover; }
.blog-card-body { padding: 25px; }
.blog-card h3 { font-size: 30px; }
.blog-card .date { color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.blog-card p { color: var(--gray); font-size: 13px; }
.blog-card .read-more { color: var(--green); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }

/* Areas */
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 40px; }
.area-card { padding: 24px; border: 1px solid rgba(30,77,52,.14); background: var(--white); }
.area-card h5 { margin-bottom: 8px; color: var(--green); font-size: 25px; }
.area-card p { margin: 0; color: var(--gray); font-size: 12px; }

/* Footer */
.site-footer { background: var(--green-dark); color: var(--white); }
.footer-top { padding: 72px 0 52px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .7fr 1fr; gap: 44px; }
.footer-logo img { width: 290px; padding: 10px; background: var(--cream); mix-blend-mode: normal; }
.footer-tagline { margin-top: 18px; color: var(--gold-light); font-family: var(--heading); font-size: 21px; letter-spacing: .04em; text-transform: uppercase; }
.newsletter { display: flex; margin-top: 18px; }
.newsletter input { min-width: 0; flex: 1; padding: 12px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.07); color: var(--white); }
.newsletter button { padding: 10px 15px; border: 0; background: var(--gold); font-weight: 800; cursor: pointer; }
.footer-col h4 { color: var(--gold-light); font-size: 24px; }
.footer-col li { margin-bottom: 9px; }
.footer-col a, .footer-col p { color: rgba(255,255,255,.68); font-size: 13px; }
.footer-col a:hover { color: var(--gold-light); }
.footer-phone { color: var(--white) !important; font-family: var(--heading); font-size: 26px !important; }
.socials { display: flex; gap: 9px; margin-top: 18px; }
.socials a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.22); color: var(--white); font-weight: 800; }
.footer-bottom { padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.5); font-size: 11px; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 20px; }

@media (max-width: 1100px) {
  .header-inner { grid-template-columns: 235px 1fr auto; }
  .logo img { width: 230px; }
  .main-nav > ul { gap: 18px; }
  .header-phone { font-size: 19px; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 920px) {
  .section { padding: 76px 0; }
  .site-header { backdrop-filter: none; }
  .announce-meta span { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .main-nav, .header-contact { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav { position: fixed; inset: 128px 0 0; padding: 24px 28px 40px; overflow-y: auto; background: var(--green-dark); color: var(--white); }
  .mobile-nav.open { display: block; }
  .mobile-nav > ul > li > a { display: block; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-family: var(--heading); font-size: 28px; text-transform: uppercase; }
  .mobile-nav .sub { display: none; padding: 5px 0 10px 18px; }
  .mobile-nav .has-sub.open .sub { display: block; }
  .mobile-nav .sub a { display: block; padding: 8px 0; color: rgba(255,255,255,.7); }
  .hero { min-height: 610px; }
  .hero-content, .hero-inner .hero-content { width: 82%; }
  .badge-row { grid-template-columns: repeat(3, 1fr); }
  .badge-item { border-bottom: 1px solid rgba(255,255,255,.15); }
  .split, .process-grid, .estimate-layout { grid-template-columns: 1fr; }
  .service-grid, .blog-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .google-inner { grid-template-columns: 1fr; }
  .google-inner > * { padding: 16px; border-right: 0; border-bottom: 1px solid rgba(26,26,26,.2); }
  .tab-grid { grid-template-columns: 1fr; }
  .tab-grid img { height: 360px; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .announce-inner { min-height: 50px; }
  .announce-title h6 { font-size: 9px; letter-spacing: .07em; }
  .announce-meta { gap: 10px; font-size: 9px; }
  .site-header .header-inner { min-height: 74px; }
  .logo img { width: 205px; height: 58px; }
  .mobile-nav { inset: 124px 0 0; }
  .hero { min-height: 620px; background-position: 63% center; }
  .hero::before { background: linear-gradient(90deg, rgba(8,31,21,.96), rgba(8,31,21,.75) 70%, rgba(8,31,21,.46)); }
  .hero-content, .hero-inner .hero-content { width: 100%; }
  .hero h1 { font-size: 58px; }
  .hero-sub { font-size: 19px; }
  .hero .btn { width: 100%; }
  .badge-row { grid-template-columns: 1fr 1fr; }
  .badge-item { min-height: 105px; padding: 20px 8px; }
  .badge-item strong { font-size: 19px; }
  .section-head { display: block; }
  .service-grid, .blog-grid, .testi-grid, .stats-grid, .areas-grid, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .service-card { min-height: 390px; }
  .stat { min-height: 125px; }
  .image-frame { padding: 0 0 16px 16px; }
  .split > img, .image-frame img { min-height: 320px; }
  .contact-panel, .est-form { padding: 28px 22px; }
  .tab-menu { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; }
  .tab-link { flex: 0 0 auto; }
  .tab-grid { padding: 20px; }
  .tab-grid img { height: 260px; }
  .footer-contact { grid-column: auto; }
  .footer-bottom .container { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
