@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #18201b;
  --muted: #657067;
  --paper: #FCFCFB;
  --white: #fff;
  --line: rgba(24, 32, 27, .13);
  --green: #6FBF40;
  --green-deep: #397536;
  --green-soft: #dcebc9;
  --lime: #b7d94e;
  --dark: #1d2b20;
  --serif: "DM Serif Display", Georgia, "Times New Roman", serif;
  --sans: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 24px 70px rgba(27, 47, 28, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 64px)); margin: 0 auto; }
.top-line {
  position: relative;
  z-index: 5;
  padding: 11px 0;
  background: var(--dark);
  color: rgba(255, 255, 255, .77);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.top-line .container { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.top-line strong { color: var(--lime); font-weight: 800; }
.header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(252,252,251,.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(24,32,27,.08);
}
.nav { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 12px 0; }
.brand { display: inline-flex; align-items: center; }
.brand img { width: 230px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links > a, .nav-dropdown > a {
  position: relative;
  padding: 12px 0;
  color: #000;
  font-size: 14px;
  font-weight: 700;
}
.nav-links > a::after, .nav-dropdown > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 2px;
  background: var(--green);
  transition: right .3s ease;
}
.nav-links > a:hover, .nav-dropdown > a:hover { color: var(--ink); }
.nav-links > a:hover::after, .nav-dropdown > a:hover::after { right: 0; }
.nav-dropdown { position: relative; }
.nav-dropdown > a::before { content: "⌄"; margin-left: 7px; float: right; color: var(--green-deep); }
.dropdown-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% - 2px);
  left: 50%;
  width: 280px;
  max-height: min(68vh, 430px);
  overflow-y: auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .25s ease, transform .25s ease;
}
.nav-dropdown::after { content: ""; position: absolute; left: -18px; right: -18px; bottom: -8px; height: 12px; }
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.dropdown-menu::-webkit-scrollbar { width: 5px; }
.dropdown-menu::-webkit-scrollbar-thumb { border-radius: 99px; background: var(--green); }
.dropdown-menu a { display: block; padding: 10px 12px; border-radius: 10px; color: #000; font-size: 14px; font-weight: 700; line-height: 1.35; }
.dropdown-menu a:hover { background: var(--green-soft); color: var(--ink); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 100px;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  transition: transform .35s ease, background .35s ease, box-shadow .35s ease;
}
.button::after { content: "↗"; font-size: 18px; line-height: 0; }
.button:hover { background: var(--green-deep); box-shadow: 0 12px 30px rgba(100, 157, 58, .25); transform: translateY(-3px); }
.button-dark { background: var(--green); color: var(--white); border-color: var(--green); }
.button-dark:hover { background: var(--green-deep); border-color: var(--green-deep); }
.nav-cta { display: inline-flex; min-height: 44px; padding: 0 18px; gap: 8px; }
.menu-toggle { display: none; border: 0; background: transparent; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 25px; height: 2px; background: var(--ink); margin: 5px 0; }

.inner-hero {
  position: relative;
  min-height: 210px;
  display: flex;
  align-items: end;
  padding: 98px 0 28px;
  background: var(--paper);
  overflow: hidden;
}
.inner-hero::before {
  content: "Mg";
  position: absolute;
  right: 4%;
  top: 90px;
  color: rgba(111, 167, 79, .11);
  font-family: var(--serif);
  font-size: 220px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.16em;
  animation: drift 8s ease-in-out infinite alternate;
}
.inner-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 43%;
  height: 72%;
  background: url("assets/aaa.jpg") center / cover no-repeat;
  opacity: .22;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}
.inner-hero .container { position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--green); }
.inner-hero h1 {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 400;
  line-height: .8;
  letter-spacing: -.08em;
}
.inner-hero h1 em { color: var(--green); font-style: normal; }
.inner-hero p { max-width: 410px; margin: 16px 0 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.about-main { padding: 120px 0 140px; background: var(--white); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 10vw, 150px); align-items: center; }
.about-photo { position: relative; max-width: 520px; }
.about-photo::before { content: ""; position: absolute; left: -28px; top: -28px; width: 92px; height: 92px; border-top: 2px solid var(--green); border-left: 2px solid var(--green); }
.about-photo::after { content: "25+"; position: absolute; z-index: 2; right: -24px; bottom: -20px; display: grid; place-items: center; width: 110px; height: 110px; border-radius: 50%; background: var(--green); color: var(--dark); font-family: var(--serif); font-size: 33px; transform: rotate(-11deg); box-shadow: 0 15px 30px rgba(62, 117, 54, .2); pointer-events: none; }
.about-photo img { position: relative; z-index: 1; width: 100%; border-radius: 4px 90px 4px 90px; }
.about-copy h2, .contact-copy h2 { max-width: 600px; margin: 18px 0 0; font-family: var(--serif); font-size: clamp(30px, 3.8vw, 48px); font-weight: 400; line-height: .95; letter-spacing: -.06em; }
.about-copy h2 em, .contact-copy h2 em { color: var(--green-deep); font-style: normal; }
.about-copy p { max-width: 580px; margin: 28px 0; color: var(--muted); font-size: 16px; line-height: 1.85; }
.quote-band { margin-top: 120px; padding: 85px 0; background: var(--dark); color: var(--white); text-align: center; }
.quote-band blockquote { max-width: 820px; margin: 0 auto; font-family: var(--serif); font-size: clamp(28px, 3.5vw, 46px); line-height: 1.05; letter-spacing: -.05em; }
.quote-band blockquote em { color: var(--lime); font-style: normal; }
.quote-band p { margin: 24px 0 0; color: rgba(255,255,255,.6); font-size: 12px; letter-spacing: .15em; text-transform: uppercase; }

.contact-main { padding: 108px 0 140px; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 10vw, 145px); align-items: start; }
.contact-copy p { max-width: 420px; margin: 28px 0 42px; color: var(--muted); font-size: 16px; line-height: 1.8; }
.contact-details { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; padding-top: 28px; border-top: 1px solid var(--line); }
.contact-details h3 { margin: 0 0 12px; color: var(--green-deep); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
.contact-details address { color: var(--muted); font-size: 14px; line-height: 1.9; font-style: normal; }
.contact-details a { transition: color .25s ease; }
.contact-details a:hover { color: var(--green-deep); }
.contact-form { position: relative; padding: clamp(28px, 5vw, 58px); border-radius: 5px 70px 5px 70px; background: var(--green-soft); }
.contact-form::before { content: ""; position: absolute; width: 170px; height: 170px; right: 22px; top: -45px; border: 1px solid rgba(57,117,54,.2); border-radius: 50%; }
.contact-form h2 { position: relative; margin: 0 0 28px; font-family: var(--serif); font-size: 38px; font-weight: 400; letter-spacing: -.05em; }
.field { position: relative; z-index: 1; margin-bottom: 18px; }
.field label { display: block; margin-bottom: 8px; color: var(--green-deep); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.field input, .field textarea { width: 100%; padding: 14px 0; border: 0; border-bottom: 1px solid rgba(24,32,27,.24); outline: 0; background: transparent; color: var(--ink); font-size: 15px; transition: border-color .25s ease; }
.field textarea { min-height: 90px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--green-deep); }
.contact-form .button { position: relative; z-index: 1; margin-top: 10px; border: 0; cursor: pointer; }
.form-note { min-height: 20px; margin: 14px 0 0; color: var(--green-deep); font-size: 12px; }
.contact-map { grid-column: 1 / -1; overflow: hidden; border-radius: 5px 54px 5px 54px; background: var(--green-soft); box-shadow: var(--shadow); }
.contact-map iframe { display: block; width: 100%; height: 330px; border: 0; filter: saturate(.78) contrast(.96); }

.service-intro { padding: 105px 0 65px; background: var(--white); }
.service-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(55px, 9vw, 130px); align-items: center; }
.service-photo { position: relative; }
.service-photo img { width: 100%; max-height: 470px; object-fit: cover; border-radius: 4px 86px 4px 86px; }
.service-copy h2 { max-width: 570px; margin: 18px 0 0; font-family: var(--serif); font-size: clamp(30px, 3.8vw, 48px); font-weight: 400; line-height: .98; letter-spacing: -.06em; }
.service-copy h2 em, .service-card h3 em { color: var(--green-deep); font-style: normal; }
.service-copy p { max-width: 570px; margin: 24px 0 0; color: var(--muted); font-size: 15px; line-height: 1.85; }
.service-list { padding: 85px 0 120px; background: var(--paper); }
.service-list-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 42px; }
.service-list-head h2 { max-width: 520px; margin: 18px 0 0; font-family: var(--serif); font-size: clamp(30px, 3.8vw, 48px); font-weight: 400; line-height: .98; letter-spacing: -.06em; }
.service-list-head p { max-width: 310px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { min-height: 235px; padding: 28px 24px; border: 1px solid var(--line); border-radius: 5px 44px 5px 44px; background: var(--white); transition: transform .35s ease, box-shadow .35s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-card span { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--green-soft); color: var(--green-deep); font-family: var(--serif); font-size: 18px; }
.service-card h3 { margin: 28px 0 10px; font-family: var(--serif); font-size: 25px; font-weight: 400; line-height: 1; letter-spacing: -.05em; }
.service-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.order-main { padding: 105px 0 125px; background: var(--white); }
.order-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(55px, 9vw, 125px); align-items: start; }
.order-copy h2 { max-width: 510px; margin: 18px 0 0; font-family: var(--serif); font-size: clamp(30px, 3.8vw, 48px); font-weight: 400; line-height: .98; letter-spacing: -.06em; }
.order-copy h2 em { color: var(--green-deep); font-style: normal; }
.order-copy > p { max-width: 420px; margin: 25px 0 34px; color: var(--muted); font-size: 15px; line-height: 1.8; }
.order-contact { padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; line-height: 2; }
.order-contact strong { display: block; margin-bottom: 8px; color: var(--green-deep); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
.order-form { padding: clamp(28px, 5vw, 54px); border-radius: 5px 70px 5px 70px; background: var(--green-soft); }
.order-form h2 { margin: 0 0 28px; font-family: var(--serif); font-size: 34px; font-weight: 400; letter-spacing: -.05em; }
.order-form .field { margin-bottom: 17px; }
.order-form label { display: block; margin-bottom: 7px; color: var(--green-deep); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.order-form input, .order-form select, .order-form textarea { width: 100%; padding: 13px 0; border: 0; border-bottom: 1px solid rgba(24,32,27,.24); outline: 0; background: transparent; color: var(--ink); font-size: 14px; }
.order-form textarea { min-height: 80px; resize: vertical; }
.order-form .button { border: 0; cursor: pointer; }

.footer { padding: 78px 0 28px; background: var(--white); color: var(--ink); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .7fr 1.2fr; gap: 50px; padding-bottom: 60px; }
.footer-brand img { width: 190px; opacity: .94; }
.footer-brand p { max-width: 230px; margin: 22px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.footer h4 { margin: 6px 0 20px; color: var(--green-deep); font-size: 12px; letter-spacing: .17em; text-transform: uppercase; }
.footer a, .footer address, .footer span { display: block; color: var(--muted); font-size: 15px; line-height: 2.05; font-style: normal; }
.footer a:hover { color: var(--green-deep); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid var(--line); color: #879087; font-size: 11px; }
.footer-bottom span:last-child, .footer-bottom a { color: var(--green-deep); }
.progress { position: fixed; z-index: 20; top: 0; left: 0; width: 0; height: 3px; background: var(--lime); transition: width .08s linear; }
.back-to-top { position: fixed; z-index: 19; right: 24px; bottom: 24px; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: #fff; font-size: 23px; box-shadow: 0 12px 26px rgba(27,47,28,.2); opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity .25s ease, transform .25s ease, background .25s ease; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.back-to-top:hover { background: var(--green-deep); transform: translateY(-4px); }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
@keyframes drift { from { transform: translateY(0) rotate(-4deg); } to { transform: translateY(15px) rotate(3deg); } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; } .reveal { opacity: 1; transform: none; } }
@media (max-width: 960px) {
  .container { width: min(100% - 44px, 720px); }
  .brand img { width: 195px; }
  .nav-links { gap: 18px; }
  .nav-cta { display: inline-flex; }
  .about-grid, .contact-grid, .service-grid, .order-grid { grid-template-columns: 1fr; gap: 65px; }
  .about-photo { margin: 0 auto; }
  .service-photo { max-width: 550px; margin: 0 auto; }
  .service-cards { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .container { width: min(100% - 36px, 520px); }
  .top-line .container { justify-content: center; text-align: center; }
  .top-line .container span:last-child { display: none; }
  .header { top: 0; }
  .nav { gap: 8px; }
  .nav-cta { min-height: 38px; padding: 0 12px; font-size: 12px; }
  .brand img { width: 150px; }
  .menu-toggle { display: block; }
  .nav-links { position: absolute; z-index: 30; top: calc(100% + 8px); left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; max-height: calc(100vh - 100px); overflow-y: auto; padding: 14px; border-radius: 18px; background: rgba(255,255,255,.97); box-shadow: var(--shadow); }
  .nav-links.is-open { display: flex; }
  .nav-links > a, .nav-dropdown > a { padding: 13px 10px; }
  .nav-dropdown .dropdown-menu,
  .nav-links.is-open .nav-dropdown .dropdown-menu { position: static; display: block; width: 100%; max-height: 220px; padding: 4px; box-shadow: none; border: 0; background: var(--paper); opacity: 1; pointer-events: auto; transform: none; }
  .nav-dropdown::after { display: none; }
  .inner-hero { min-height: 235px; padding-top: 94px; padding-bottom: 26px; }
  .inner-hero::after { width: 88%; height: 55%; opacity: .15; }
  .inner-hero h1 { font-size: clamp(32px, 10vw, 48px); }
  .about-main, .contact-main, .service-intro, .order-main { padding: 72px 0 84px; }
  .about-copy p, .contact-copy p { font-size: 15px; }
  .quote-band { margin-top: 88px; padding: 70px 0; }
  .contact-details { grid-template-columns: 1fr; gap: 25px; }
  .contact-map iframe { height: 250px; }
  .contact-form { border-radius: 5px 42px 5px 42px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: block; line-height: 1.8; }
  .service-list { padding: 72px 0 84px; }
  .service-list-head { display: block; }
  .service-list-head p { margin-top: 20px; }
  .service-cards { grid-template-columns: 1fr; }
  .order-form { border-radius: 5px 42px 5px 42px; }
  .back-to-top { right: 16px; bottom: 16px; }
}