:root {
  --green: #8dc63f;
  --ink: #231f20;
  --paper: #e6e7e8;
  --page-pad: clamp(1.5rem, 6.8vw, 8.2rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  height: 6.8rem;
  display: grid;
  place-items: center;
  pointer-events: none;
  mix-blend-mode: normal;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: .72rem;
  padding: .6rem 1.1rem;
  font-size: clamp(.72rem, .9vw, 1rem);
  letter-spacing: .015em;
  pointer-events: auto;
}
.desktop-nav a { transition: color .25s ease; }
.desktop-nav a:hover,
.desktop-nav a.active { color: var(--green); font-weight: 600; }
.menu-toggle { display: none; }

.section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
}
.hero { display: grid; place-items: center; }
.hero-content { width: min(26rem, 60vw); text-align: center; }
.brand-logo { display: block; width: 100%; height: auto; }
.hero-content p {
  margin: clamp(4rem, 13vh, 8.6rem) 0 0;
  font-size: clamp(.9rem, 1.25vw, 1.5rem);
  white-space: nowrap;
}
strong, h1, h2 { color: var(--green); }

.about { display: flex; align-items: center; padding: 7rem var(--page-pad) 4rem; }
.section-content { position: relative; z-index: 2; width: min(46rem, 48vw); }
h1, h2 { margin: 0; font-size: clamp(2rem, 3vw, 3rem); line-height: 1.1; font-weight: 600; }
.section-content p { margin: 1.5rem 0 0; font-size: clamp(1rem, 1.45vw, 1.5rem); line-height: 1.55; }
.section-content p + p { margin-top: 1.6rem; }
.about-art {
  display: block;
  position: absolute;
  right: clamp(-5rem, -2vw, -1rem);
  bottom: 0;
  width: min(55vw, 61rem);
  max-height: 88vh;
  object-fit: contain;
  object-position: right bottom;
}

.services { display: flex; align-items: center; padding: 7rem var(--page-pad) 4rem; }
.services-inner { width: 100%; }
.service-list { margin-top: clamp(2rem, 5vh, 4.5rem); display: grid; gap: 1.1rem; }
.service-list article { display: grid; grid-template-columns: clamp(8rem, 13vw, 12rem) 1fr; align-items: center; gap: 2.2rem; }
.service-list h3 {
  margin: 0;
  padding: .25rem .85rem;
  color: var(--ink);
  background: var(--green);
  font-size: clamp(.9rem, 1.25vw, 1.25rem);
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
}
.service-list p { margin: 0; font-size: clamp(.86rem, 1.25vw, 1.3rem); line-height: 1.45; }

.contact { display: flex; align-items: center; padding: 7rem var(--page-pad) 4rem; }
.contact-copy { position: relative; z-index: 2; }
.contact-copy p { margin: 2.5rem 0 0; font-size: clamp(.95rem, 1.45vw, 1.45rem); }
.contact-copy span, .contact-copy b { color: var(--green); font-weight: 300; }
.contact-copy a { transition: color .2s ease; }
.contact-copy a:hover { color: var(--green); }
.contact-art {
  position: absolute;
  right: clamp(1rem, 8vw, 10rem);
  bottom: 0;
  width: min(43vw, 47rem);
  max-height: 88vh;
  object-fit: contain;
  object-position: bottom;
}

.mobile-menu { display: none; }
.reveal { opacity: 0; transform: translateY(1.5rem); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 767px) {
  .site-header { height: 5.4rem; }
  .desktop-nav { display: none; }
  .menu-toggle {
    display: grid;
    place-items: center;
    width: 3.4rem;
    height: 3.4rem;
    padding: 1rem .88rem;
    border: 0;
    background: transparent;
    cursor: pointer;
    pointer-events: auto;
  }
  .menu-toggle img { width: 100%; height: 100%; }

  .mobile-menu {
    --menu-text-start: 4.7rem;
    position: fixed;
    z-index: 100;
    inset: 0;
    display: grid;
    align-content: center;
    padding: 6.5rem 2rem 2rem;
    background: var(--green);
    color: var(--ink);
    clip-path: circle(0 at 50% 2.7rem);
    visibility: hidden;
    transition: clip-path .65s cubic-bezier(.78,0,.2,1), visibility .65s;
  }
  .mobile-menu.open { clip-path: circle(145% at 50% 2.7rem); visibility: visible; }
  .menu-grid { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(var(--ink) 1px,transparent 1px),linear-gradient(90deg,var(--ink) 1px,transparent 1px); background-size: 42px 42px; }
  .menu-logo { position: absolute; left: var(--menu-text-start); top: 1.5rem; width: 8.5rem; filter: brightness(0) saturate(100%); }
  .menu-close { position: absolute; right: 1.2rem; top: 1.2rem; width: 3.2rem; height: 3.2rem; border: 0; background: transparent; cursor: pointer; }
  .menu-close span { position: absolute; left: .55rem; right: .55rem; top: 50%; height: 3px; background: var(--ink); transform: rotate(45deg); }
  .menu-close span:last-child { transform: rotate(-45deg); }
  .mobile-menu nav { position: relative; display: grid; }
  .mobile-menu nav a { display: flex; align-items: baseline; gap: 1rem; padding: .42rem 0; font-size: clamp(2.25rem, 12vw, 4.2rem); line-height: 1.08; font-weight: 300; letter-spacing: -.05em; border-bottom: 1px solid rgba(35,31,32,.25); }
  .mobile-menu nav a span { width: 1.7rem; font-size: .7rem; letter-spacing: 0; font-weight: 300; }
  .mobile-menu > p { position: relative; margin: 2rem 0 0 calc(var(--menu-text-start) - 2rem); font-size: .85rem; }
  .mobile-menu > p strong { color: var(--ink); font-weight: 700; }

  .section { min-height: 100svh; }
  .hero-content { width: min(44vw, 12rem); }
  .hero-content p { margin-top: 20vh; font-size: clamp(.68rem, 2.8vw, .9rem); }

  .about { min-height: 100svh; align-items: flex-start; justify-content: center; padding: 23vh 1.5rem 42vh; text-align: center; }
  .section-content { width: min(100%, 38rem); }
  h1, h2 { font-size: clamp(1.7rem, 7.5vw, 2.35rem); }
  .section-content p { font-size: clamp(.9rem, 3.65vw, 1.2rem); line-height: 1.55; }
  .section-content p + p { margin-top: 1.35rem; }
  .about-art { display: block; position: absolute; left: 50%; bottom: 0; width: min(96vw, 38rem); max-height: 42vh; object-fit: contain; object-position: bottom; transform: translateX(-50%); }
  .about-art.visible { transform: translateX(-50%); }

  .services { min-height: auto; padding: 7rem 1.5rem 5rem; text-align: center; border-bottom: 2.8rem solid var(--green); }
  .service-list { gap: 2rem; margin-top: 3.5rem; }
  .service-list article { display: flex; flex-direction: column; gap: .8rem; align-items: center; }
  .service-list h3 { min-width: 8.5rem; font-size: 1rem; }
  .service-list p { max-width: 27rem; font-size: .86rem; line-height: 1.65; }

  .contact { min-height: 100svh; align-items: flex-start; justify-content: center; padding: 22vh 1.2rem 54vh; text-align: center; border-bottom: 2.8rem solid var(--green); }
  .contact-copy p { margin-top: 2.5rem; font-size: clamp(.78rem, 3.35vw, 1rem); white-space: nowrap; }
  .contact-art { right: auto; left: 50%; bottom: 0; width: min(88vw, 32rem); max-height: 48vh; transform: translateX(-50%); }
  .contact-art.visible { transform: translateX(-50%); }
}

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