* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --forest: #174a34;
    --forest-dark: #0c3022;
    --leaf: #73a942;
    --lime: #dceb89;
    --cream: #f7f3e8;
    --paper: #fffdf8;
    --ink: #183128;
    --body: #526159;
    --line: #dfe5db;
    --orange: #ea723d;
    --display: 'Manrope', sans-serif;
    --body-font: 'DM Sans', sans-serif;
    --maxw: 1180px;
    --ease: cubic-bezier(.2,.7,.2,1);
}

html { scroll-behavior: smooth; }
body { background: var(--paper); color: var(--body); font-family: var(--body-font); line-height: 1.7; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--maxw), calc(100% - 48px)); margin-inline: auto; }
h1, h2, h3 { color: var(--ink); font-family: var(--display); line-height: 1.08; letter-spacing: -.045em; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

#header { position: fixed; inset: 0 0 auto; z-index: 50; background: rgba(255,253,248,.92); border-bottom: 1px solid transparent; backdrop-filter: blur(14px); transition: .25s var(--ease); }
#header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(12,48,34,.07); }
.nav-wrap { height: 86px; display: flex; align-items: center; justify-content: space-between; }
.logo-link img { width: 190px; height: 65px; object-fit: contain; object-position: left center; }
#nav ul { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
#nav a { color: var(--ink); font-size: .94rem; font-weight: 600; transition: color .2s; }
#nav a:hover { color: var(--leaf); }
#nav .nav-contact { display: block; padding: .65rem 1.25rem; color: #fff; background: var(--forest); border-radius: 99px; }
#nav .nav-contact:hover { color: #fff; background: var(--forest-dark); }
#nav-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--forest); padding: 12px; }
#nav-toggle span { display: block; height: 2px; margin: 4px 0; background: #fff; }

.eyebrow { display: inline-flex; align-items: center; gap: .55rem; color: var(--leaf); font-family: var(--display); font-size: .73rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { content: ''; width: 24px; height: 2px; background: currentColor; }
.eyebrow.light { color: var(--lime); }
.btn { display: inline-flex; align-items: center; gap: 1.3rem; padding: .92rem 1.35rem; color: #fff; background: var(--forest); border-radius: 4px; font-weight: 700; transition: transform .2s, background .2s; }
.btn:hover { transform: translateY(-2px); background: var(--orange); }
.btn span { font-size: 1.3rem; line-height: 1; }

#hero { min-height: 100vh; padding: 150px 0 0; background: var(--cream); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; min-height: calc(100vh - 205px); gap: 4rem; }
.hero-copy h1 { margin: 1.25rem 0 1.5rem; font-size: clamp(3.2rem, 6vw, 5.75rem); }
.hero-copy h1 em { color: var(--leaf); font-style: normal; }
.hero-copy > p { max-width: 560px; font-size: 1.1rem; }
.hero-cta { display: flex; align-items: center; gap: 1.8rem; margin-top: 2.25rem; }
.text-link { color: var(--forest); border-bottom: 1px solid var(--forest); font-weight: 700; }
.hero-visual { position: relative; }
.hero-visual::before { content: ''; position: absolute; width: 82%; aspect-ratio: 1; right: -8%; top: -6%; border-radius: 50%; background: var(--lime); }
.hero-visual img { position: relative; width: 100%; aspect-ratio: 1.08; object-fit: cover; border-radius: 48% 48% 8px 8px; }
.hero-card { position: absolute; left: -30px; bottom: 30px; display: flex; align-items: center; gap: .8rem; padding: 1rem 1.3rem; background: var(--orange); color: #fff; box-shadow: 0 18px 45px rgba(53,61,35,.18); }
.hero-card strong { font: 800 2.5rem/1 var(--display); }
.hero-card span { font-size: .75rem; line-height: 1.35; text-transform: uppercase; letter-spacing: .08em; }
.hero-strip { min-height: 55px; display: flex; justify-content: center; align-items: center; gap: 3rem; color: #fff; background: var(--forest); font: 700 .76rem var(--display); letter-spacing: .14em; text-transform: uppercase; }
.hero-strip i { width: 5px; height: 5px; border-radius: 50%; background: var(--lime); }

section { padding: 110px 0; }
#about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 7rem; }
.about-media { position: relative; }
.about-media img { width: 100%; aspect-ratio: .85; object-fit: cover; border-radius: 180px 180px 8px 8px; }
.since { position: absolute; right: -45px; bottom: 45px; width: 150px; height: 150px; display: grid; place-content: center; text-align: center; border-radius: 50%; color: #fff; background: var(--forest); border: 8px solid var(--paper); }
.since span { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; }
.since strong { font: 800 2rem var(--display); }
.about-copy h2, .section-head h2 { margin: 1.1rem 0 1.5rem; font-size: clamp(2.35rem, 4.5vw, 4rem); }
.about-copy .lead { color: var(--ink); font-size: 1.15rem; font-weight: 600; }
.about-copy > p { margin-bottom: 1rem; }
.company-facts { margin-top: 2rem; border-top: 1px solid var(--line); }
.company-facts div { display: grid; grid-template-columns: 180px 1fr; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid var(--line); }
.company-facts span { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.company-facts strong { color: var(--ink); font-size: .9rem; }

#services { background: var(--cream); }
.section-head { display: grid; grid-template-columns: 1fr .8fr; align-items: end; gap: 3rem; margin-bottom: 3.5rem; }
.section-head p { padding-bottom: .5rem; font-size: 1.05rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.service-card { background: var(--paper); border-radius: 8px; overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 24px 55px rgba(12,48,34,.12); }
.service-card.featured { margin-top: 40px; }
.service-card img { width: 100%; aspect-ratio: 1.18; object-fit: cover; }
.service-content { position: relative; padding: 2rem; }
.service-content > span { position: absolute; right: 1.5rem; top: -1rem; display: grid; place-content: center; width: 45px; height: 45px; border-radius: 50%; color: #fff; background: var(--orange); font: 800 .8rem var(--display); }
.service-content h3 { margin-bottom: .75rem; font-size: 1.45rem; }

#contact { background: var(--paper); }
.contact-panel { display: grid; grid-template-columns: 1.15fr .85fr; background: var(--forest); color: rgba(255,255,255,.72); }
.contact-copy { padding: 4.5rem; background: radial-gradient(circle at 0 100%, rgba(115,169,66,.3), transparent 50%); }
.contact-copy h2 { max-width: 600px; margin: 1.2rem 0; color: #fff; font-size: clamp(2.3rem, 4.5vw, 4rem); }
.contact-copy p { max-width: 540px; margin-bottom: 2rem; font-size: 1.05rem; }
.btn-light { color: var(--forest); background: var(--lime); }
.contact-details { padding: 4.5rem 3.5rem; background: rgba(0,0,0,.12); }
.contact-details div { padding: 1.2rem 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.contact-details span { display: block; margin-bottom: .4rem; color: var(--lime); font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.contact-details a { color: #fff; font: 700 1.25rem var(--display); }
.contact-details address { color: #fff; font-style: normal; line-height: 1.65; }

footer { padding: 55px 0 25px; color: #91a399; background: var(--forest-dark); }
.footer-main { display: flex; justify-content: space-between; align-items: center; padding-bottom: 2.5rem; }
.footer-brand img { width: 175px; height: 65px; object-fit: contain; object-position: left; padding: 6px; border-radius: 4px; background: #fff; }
.footer-brand p { margin-top: .8rem; font-size: .88rem; }
.footer-links { display: flex; gap: 2rem; color: #fff; font-weight: 600; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .78rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 900px) {
    .hero-grid, .about-grid, .section-head, .contact-panel { grid-template-columns: 1fr; }
    .hero-grid { padding: 4rem 0; }
    .hero-copy { text-align: center; }
    .hero-copy > p { margin-inline: auto; }
    .hero-cta { justify-content: center; }
    .hero-visual { max-width: 620px; margin-inline: auto; }
    .about-grid { gap: 4rem; }
    .about-media { max-width: 560px; margin: auto; }
    .service-grid { grid-template-columns: 1fr 1fr; }
    .service-card.featured { margin-top: 0; }
    .contact-copy, .contact-details { padding: 3.5rem; }
}

@media (max-width: 680px) {
    .container { width: min(100% - 32px, var(--maxw)); }
    .nav-wrap { height: 74px; }
    .logo-link img { width: 150px; height: 55px; }
    #nav-toggle { display: block; }
    #nav { position: fixed; top: 74px; right: -100%; width: min(85vw, 330px); height: calc(100vh - 74px); padding: 2rem; background: var(--paper); transition: right .3s var(--ease); }
    #nav.open { right: 0; box-shadow: -20px 20px 40px rgba(0,0,0,.12); }
    #nav ul { align-items: stretch; flex-direction: column; gap: 1.5rem; }
    #nav .nav-contact { text-align: center; }
    #hero { padding-top: 100px; }
    .hero-grid { gap: 3rem; min-height: auto; }
    .hero-copy h1 { font-size: clamp(2.8rem, 15vw, 4.2rem); }
    .hero-cta { flex-direction: column; }
    .hero-card { left: 10px; bottom: 10px; }
    .hero-strip { gap: .8rem; padding: 1rem; font-size: .58rem; }
    section { padding: 75px 0; }
    .since { right: -5px; bottom: 20px; width: 125px; height: 125px; }
    .company-facts div { grid-template-columns: 1fr; gap: .2rem; }
    .service-grid { grid-template-columns: 1fr; }
    .contact-copy, .contact-details { padding: 2.5rem 1.5rem; }
    .footer-main, .footer-bottom { align-items: flex-start; flex-direction: column; gap: 1.5rem; }
    .footer-links { flex-wrap: wrap; gap: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
}
