/* =========================================================
   GREEN GRASS MOON — design tokens
   Palette pulled from the brand mark (navy skyline + green
   grass) and from the brass / marble finishes that show up
   again and again in the company's own completed jobs.
   ========================================================= */
:root{
  --navy-950:#0a1726;
  --navy-900:#0d1f33;
  --navy-800:#15293f;
  --navy-700:#1f3a56;
  --navy-line:rgba(255,255,255,.14);

  --green-700:#256b3a;
  --green-600:#2f8f46;
  --green-500:#49a854;
  --green-300:#9fd474;

  --gold-600:#a9813a;
  --gold-500:#c9a24b;
  --gold-300:#e6cd8c;

  --marble-50:#f1f2ee;
  --marble-100:#e7e8e1;
  --marble-200:#dadbd2;

  --ink-900:#14181c;
  --ink-600:#4a5057;
  --ink-400:#787f86;

  --white:#ffffff;

  --radius-s:6px;
  --radius-m:14px;

  --font-display:'Fraunces', 'Iowan Old Style', Georgia, serif;
  --font-body:'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:'Space Mono', 'Courier New', monospace;

  --container:1180px;
  --ease:cubic-bezier(.22,.61,.36,1);
}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important;}
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--marble-50);
  color:var(--ink-900);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{margin:0;padding:0;}
h1,h2,h3,h4{font-family:var(--font-display);margin:0;line-height:1.08;font-weight:600;}
p{margin:0;}
button{font-family:inherit;cursor:pointer;}

:focus-visible{
  outline:3px solid var(--gold-500);
  outline-offset:3px;
  border-radius:3px;
}

.wrap{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

.eyebrow{
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--gold-600);
}
.eyebrow.on-dark{color:var(--gold-300);}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(10,23,38,.97);
  border-bottom:1px solid var(--navy-line);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:14px 24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--white);
}
.brand img{height:40px;width:40px;}
.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand-text strong{
  font-family:var(--font-display);
  font-size:16.5px;
  font-weight:700;
  letter-spacing:.01em;
}
.brand-text span{
  font-family:var(--font-mono);
  font-size:10px;
  letter-spacing:.12em;
  color:var(--green-300);
  text-transform:uppercase;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
  list-style:none;
}
.nav-links a{
  color:var(--marble-100);
  font-size:14.5px;
  font-weight:500;
  position:relative;
  padding:6px 0;
}
.nav-links a.active{color:var(--white);}
.nav-links a.active::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:0;
  height:2px;
  background:var(--gold-500);
}
.nav-links a:hover{color:var(--white);}
.nav-cta{
  display:flex;
  align-items:center;
  gap:10px;
}
.nav-toggle{
  display:none;
  background:none;
  border:1px solid var(--navy-line);
  border-radius:8px;
  width:42px;height:42px;
  color:var(--white);
  align-items:center;
  justify-content:center;
}
.nav-toggle svg{width:20px;height:20px;}

@media (max-width:880px){
  .nav-links{
    position:fixed;
    inset:64px 0 0 0;
    flex-direction:column;
    align-items:flex-start;
    background:var(--navy-950);
    padding:24px;
    gap:18px;
    transform:translateY(-12px);
    opacity:0;
    pointer-events:none;
    transition:opacity .22s var(--ease), transform .22s var(--ease);
  }
  .nav-links.open{
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
  }
  .nav-links a{font-size:18px;}
  .nav-cta .btn-text{display:none;}
  .nav-toggle{display:flex;}
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:13px 22px;
  border-radius:var(--radius-s);
  font-size:14.5px;
  font-weight:600;
  border:1px solid transparent;
  white-space:nowrap;
}
.btn svg{width:16px;height:16px;flex:none;}
.btn-primary{
  background:var(--green-600);
  color:var(--white);
  transition:background .18s var(--ease), transform .18s var(--ease);
}
.btn-primary:hover{background:var(--green-500); transform:translateY(-1px);}
.btn-gold{
  background:var(--gold-500);
  color:var(--navy-950);
  transition:background .18s var(--ease), transform .18s var(--ease);
}
.btn-gold:hover{background:var(--gold-300); transform:translateY(-1px);}
.btn-outline{
  background:transparent;
  border-color:rgba(255,255,255,.4);
  color:var(--white);
}
.btn-outline:hover{border-color:var(--white); background:rgba(255,255,255,.08);}
.btn-outline-dark{
  background:transparent;
  border-color:rgba(20,24,28,.25);
  color:var(--ink-900);
}
.btn-outline-dark:hover{border-color:var(--ink-900);}
.btn-sm{padding:9px 16px; font-size:13.5px;}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative;
  min-height:92vh;
  display:flex;
  align-items:flex-end;
  color:var(--white);
  background-size:cover;
  background-position:center 30%;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;inset:0;
  background:
    linear-gradient(180deg, rgba(9,18,30,.55) 0%, rgba(9,18,30,.45) 35%, rgba(8,16,27,.92) 100%);
}
.hero-inner{
  position:relative;
  z-index:2;
  padding:64px 24px 56px;
  width:100%;
  max-width:var(--container);
  margin:0 auto;
}
.hero h1{
  font-size:clamp(36px, 5.6vw, 68px);
  max-width:18ch;
  margin:18px 0 20px;
  font-weight:700;
}
.hero h1 em{
  font-style:italic;
  color:var(--green-300);
  font-weight:600;
}
.hero p.lead{
  max-width:46ch;
  font-size:17.5px;
  color:var(--marble-100);
  margin-bottom:30px;
}
.hero-ctas{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:36px;
}
.hero-meta{
  display:flex;
  flex-wrap:wrap;
  gap:28px;
  border-top:1px solid var(--navy-line);
  padding-top:20px;
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:.06em;
  color:var(--marble-100);
  text-transform:uppercase;
}
.hero-meta strong{color:var(--white); font-family:var(--font-body); font-size:13px; letter-spacing:0; text-transform:none; display:block; font-weight:600; margin-bottom:2px;}

.page-hero{
  background:var(--navy-950);
  color:var(--white);
  padding:150px 0 64px;
  position:relative;
  overflow:hidden;
}
.page-hero::after{
  content:"";
  position:absolute;
  right:-10%; top:-30%;
  width:560px;height:560px;
  border-radius:50%;
  border:1px solid var(--navy-line);
}
.page-hero .eyebrow{margin-bottom:14px;display:block;}
.page-hero h1{
  font-size:clamp(32px,4.6vw,52px);
  max-width:22ch;
  color:var(--white);
}
.page-hero p{
  margin-top:16px;
  max-width:54ch;
  color:var(--marble-100);
  font-size:16.5px;
}

/* =========================================================
   SECTIONS / TYPE
   ========================================================= */
section{padding:84px 0;}
.section-tight{padding:56px 0;}
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:24px;
  margin-bottom:44px;
  flex-wrap:wrap;
}
.section-head h2{
  font-size:clamp(26px,3.4vw,38px);
  max-width:20ch;
}
.section-head .eyebrow{display:block; margin-bottom:10px;}
.section-head p{
  max-width:40ch;
  color:var(--ink-600);
  font-size:15.5px;
}
.bg-navy{background:var(--navy-950); color:var(--white);}
.bg-navy .ink{color:var(--marble-100);}
.bg-marble-deep{background:var(--marble-100);}

/* trust strip */
.trust-strip{
  background:var(--navy-900);
  color:var(--marble-100);
  border-top:1px solid var(--navy-line);
  border-bottom:1px solid var(--navy-line);
}
.trust-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
  padding:32px 0;
}
.trust-grid div{
  border-left:1px solid var(--navy-line);
  padding-left:20px;
}
.trust-grid div:first-child{border-left:none; padding-left:0;}
.trust-grid strong{
  display:block;
  color:var(--white);
  font-family:var(--font-display);
  font-size:17px;
  margin-bottom:4px;
}
.trust-grid span{font-size:13.5px;}
@media (max-width:760px){
  .trust-grid{grid-template-columns:1fr; gap:18px;}
  .trust-grid div{border-left:none; border-top:1px solid var(--navy-line); padding:18px 0 0;}
  .trust-grid div:first-child{border-top:none; padding-top:0;}
}

/* =========================================================
   HEX SERVICE GRID  (echoes the icon row on the company's
   own card / logo — kept as the site's recurring motif)
   ========================================================= */
.hex-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px 18px;
}
.hex-card{
  position:relative;
  text-align:center;
  padding-top:6px;
}
.hex-shape{
  width:100px;
  height:114px;
  margin:0 auto 16px;
  clip-path:polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background:linear-gradient(155deg, var(--navy-800), var(--navy-950));
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform .22s var(--ease), background .22s var(--ease);
  border:1px solid rgba(255,255,255,.06);
}
.hex-card:hover .hex-shape{
  transform:translateY(-4px) scale(1.03);
  background:linear-gradient(155deg, var(--green-700), var(--navy-950));
}
.hex-shape svg{width:38px;height:38px; stroke:var(--gold-300); fill:none; stroke-width:1.6;}
.hex-card h3{
  font-size:14.5px;
  font-weight:600;
  font-family:var(--font-body);
  margin-bottom:6px;
}
.hex-card p{
  font-size:13px;
  color:var(--ink-600);
  max-width:22ch;
  margin:0 auto;
}
@media (max-width:920px){ .hex-grid{grid-template-columns:repeat(3,1fr);} }
@media (max-width:640px){ .hex-grid{grid-template-columns:repeat(2,1fr);} }

.services-detail{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}
.service-row{
  display:flex;
  gap:20px;
  padding:28px;
  background:var(--white);
  border:1px solid var(--marble-200);
  border-radius:var(--radius-m);
}
.service-row .hex-shape{margin:0; flex:none; width:74px; height:84px;}
.service-row .hex-shape svg{width:28px;height:28px;}
.service-row h3{font-size:18px; margin-bottom:6px;}
.service-row p{font-size:14.5px; color:var(--ink-600);}
.service-row ul{margin-top:10px; padding-left:0; list-style:none;}
.service-row li{
  font-size:13px;
  color:var(--ink-600);
  font-family:var(--font-mono);
  padding:3px 0 3px 16px;
  position:relative;
}
.service-row li::before{
  content:"";
  position:absolute;left:0;top:11px;
  width:6px;height:1px;
  background:var(--gold-600);
}
@media (max-width:760px){ .services-detail{grid-template-columns:1fr;} .service-row{flex-direction:column;} }

/* =========================================================
   FEATURED WORK / GALLERY
   ========================================================= */
.work-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  grid-auto-rows:170px;
  gap:14px;
}
.work-grid a{
  position:relative;
  overflow:hidden;
  border-radius:var(--radius-s);
  display:block;
}
.work-grid img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .4s var(--ease);
}
.work-grid a:hover img{transform:scale(1.06);}
.work-grid .tall{grid-row:span 2;}
.work-grid .wide{grid-column:span 2;}
@media (max-width:920px){
  .work-grid{grid-template-columns:repeat(2,1fr); grid-auto-rows:140px;}
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.gallery-item{
  border-radius:var(--radius-m);
  overflow:hidden;
  background:var(--white);
  border:1px solid var(--marble-200);
}
.gallery-item img{
  width:100%;
  height:230px;
  object-fit:cover;
}
.gallery-cap{
  padding:14px 16px;
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap:10px;
}
.gallery-cap span{font-size:13.5px; color:var(--ink-600);}
.gallery-cap .tag{
  font-family:var(--font-mono);
  font-size:10.5px;
  color:var(--gold-600);
  text-transform:uppercase;
  letter-spacing:.07em;
  white-space:nowrap;
}
@media (max-width:920px){.gallery-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:600px){.gallery-grid{grid-template-columns:1fr;}}

/* =========================================================
   VALUE PROPS
   ========================================================= */
.value-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.value-card{
  padding:30px 26px;
  background:var(--white);
  border:1px solid var(--marble-200);
  border-radius:var(--radius-m);
  position:relative;
}
.value-card .mark{
  font-family:var(--font-mono);
  color:var(--gold-600);
  font-size:12px;
  letter-spacing:.1em;
  text-transform:uppercase;
  display:block;
  margin-bottom:14px;
}
.value-card h3{font-size:19px; margin-bottom:10px;}
.value-card p{font-size:14.5px; color:var(--ink-600);}
@media (max-width:820px){.value-grid{grid-template-columns:1fr;}}

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band{
  background:linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color:var(--white);
  border-radius:var(--radius-m);
  padding:48px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
  position:relative;
  overflow:hidden;
}
.cta-band::before{
  content:"";
  position:absolute; inset:0;
  background:radial-gradient(circle at 85% 20%, rgba(201,162,75,.16), transparent 60%);
}
.cta-band h2{font-size:clamp(22px,3vw,30px); max-width:18ch; position:relative;}
.cta-band .cta-actions{display:flex; gap:12px; flex-wrap:wrap; position:relative;}
@media (max-width:760px){.cta-band{padding:32px 24px;}}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{
  background:var(--navy-950);
  color:var(--marble-100);
  padding:60px 0 28px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:40px;
  padding-bottom:36px;
  border-bottom:1px solid var(--navy-line);
}
.footer-brand{display:flex; gap:12px; align-items:flex-start;}
.footer-brand img{height:44px;width:44px;margin-top:2px;}
.footer-brand strong{display:block; color:var(--white); font-family:var(--font-display); font-size:17px;}
.footer-brand p{font-size:13.5px; margin-top:8px; max-width:32ch; color:var(--ink-400);}
.social-row{display:flex; gap:10px; margin-top:16px;}
.social-row a{
  width:36px;height:36px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.07);
  border:1px solid var(--navy-line);
  transition:background .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease);
}
.social-row a svg{width:16px;height:16px;stroke:var(--marble-100);fill:none;stroke-width:1.8;}
.social-row a:hover{background:var(--gold-500); border-color:var(--gold-500); transform:translateY(-2px);}
.social-row a:hover svg{stroke:var(--navy-950);}
.footer-col h4{
  font-family:var(--font-mono);
  font-size:11.5px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--gold-300);
  margin-bottom:14px;
}
.footer-col a, .footer-col li{
  display:block;
  font-size:14px;
  color:var(--marble-100);
  margin-bottom:10px;
}
.footer-col a:hover{color:var(--white);}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
  padding-top:22px;
  font-size:12.5px;
  font-family:var(--font-mono);
  color:var(--ink-400);
}
@media (max-width:780px){
  .footer-grid{grid-template-columns:1fr; gap:28px;}
}

/* =========================================================
   ABOUT PAGE specifics
   ========================================================= */
.about-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:56px;
  align-items:center;
}
.about-grid > *{min-width:0;}
.about-logo-panel{
  background:var(--navy-950);
  border-radius:var(--radius-m);
  padding:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:0;
}
.about-logo-panel img{max-width:min(280px, 100%);}
.about-copy p{color:var(--ink-600); font-size:15.5px; margin-bottom:16px;}
.about-copy h2{margin-bottom:18px; font-size:clamp(24px,3vw,32px);}
@media (max-width:880px){.about-grid{grid-template-columns:1fr;} .about-logo-panel{padding:32px;}}

.cr-strip{
  display:flex;
  gap:30px;
  flex-wrap:wrap;
  padding:26px 0;
  border-top:1px solid var(--marble-200);
  border-bottom:1px solid var(--marble-200);
  margin:36px 0;
}
.cr-strip div strong{display:block; font-family:var(--font-display); font-size:18px;}
.cr-strip div span{font-size:12.5px; font-family:var(--font-mono); color:var(--ink-600); text-transform:uppercase; letter-spacing:.05em;}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:48px;
}
.contact-grid > *{min-width:0;}
.contact-card{
  background:var(--navy-950);
  color:var(--white);
  border-radius:var(--radius-m);
  padding:38px;
  min-width:0;
}
.contact-line{
  display:flex;
  align-items:center;
  gap:14px;
  padding:16px 0;
  border-bottom:1px solid var(--navy-line);
  min-width:0;
}
.contact-line:last-of-type{border-bottom:none;}
.contact-line .ico{
  width:38px;height:38px;border-radius:50%;
  background:rgba(255,255,255,.08);
  display:flex;align-items:center;justify-content:center;
  flex:none;
}
.contact-line .ico svg{width:17px;height:17px;stroke:var(--gold-300);fill:none;stroke-width:1.6;}
.contact-line a, .contact-line span{font-size:15px;}
.contact-line > span:last-child{min-width:0; overflow-wrap:anywhere;}
.contact-line a{overflow-wrap:anywhere;}
.contact-line small{display:block; font-family:var(--font-mono); font-size:11px; letter-spacing:.07em; text-transform:uppercase; color:var(--ink-400); margin-bottom:3px;}

.form-card{
  background:var(--white);
  border:1px solid var(--marble-200);
  border-radius:var(--radius-m);
  padding:38px;
  min-width:0;
}
.form-row{margin-bottom:18px;}
.form-row label{
  display:block;
  font-size:12.5px;
  font-family:var(--font-mono);
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--ink-600);
  margin-bottom:8px;
}
.form-row input, .form-row select, .form-row textarea{
  width:100%;
  padding:13px 14px;
  border:1px solid var(--marble-200);
  border-radius:var(--radius-s);
  font-family:var(--font-body);
  font-size:14.5px;
  background:var(--marble-50);
  color:var(--ink-900);
}
.form-row textarea{resize:vertical; min-height:96px;}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus{
  outline:none;
  border-color:var(--green-600);
  background:var(--white);
}
.form-two{display:grid; grid-template-columns:1fr 1fr; gap:18px;}
.form-two > *{min-width:0;}
.form-note{font-size:12.5px; color:var(--ink-400); margin-top:10px;}
@media (max-width:880px){.contact-grid{grid-template-columns:1fr;} .form-two{grid-template-columns:1fr;}}

/* safety net: grid items default to min-width:auto, which lets long
   unbroken text (links, numbers, hashtags) force a track wider than its
   column and blow out the page horizontally. This resets every direct
   grid child sitewide so content always shrinks to fit instead. */
.hex-grid > *, .services-detail > *, .work-grid > *, .gallery-grid > *,
.value-grid > *, .trust-grid > *, .footer-grid > *, .form-two > *,
.contact-grid > *, .about-grid > *{
  min-width:0;
}
.reveal{opacity:0; transform:translateY(16px); transition:opacity .6s var(--ease), transform .6s var(--ease);}
.reveal.in{opacity:1; transform:translateY(0);}

.map-frame{
  border-radius:var(--radius-m);
  overflow:hidden;
  border:1px solid var(--marble-200);
  filter:grayscale(.15) contrast(1.02);
}
.map-frame iframe{width:100%; height:340px; border:0; display:block;}
