:root {
  --paper: #f7f5ef;
  --paper-2: #efece3;
  --surface: #ffffff;
  --ink: #1c2620;
  --ink-soft: #4a554d;
  --muted: #717c73;
  --forest: #1f5d43;
  --forest-deep: #16412f;
  --moss: #7c9a5e;
  --gold: #b08a4f;
  --line: rgba(28, 38, 32, 0.12);
  --line-soft: rgba(28, 38, 32, 0.07);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.container { width: min(1180px, 90vw); margin: 0 auto; }

.kicker {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 18px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 2px;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  background: var(--forest);
  color: #f7f5ef;
  border: 1px solid var(--forest);
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.btn:hover { background: var(--forest-deep); border-color: var(--forest-deep); }
.btn-ghost { background: transparent; color: var(--forest); border: 1px solid var(--line); }
.btn-ghost:hover { background: transparent; border-color: var(--forest); color: var(--forest-deep); }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 239, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand-wordmark { height: 30px; width: auto; display: block; }
.brand-icon { height: 40px; width: auto; display: block; }
.brand-text { font-family: "Fraunces", serif; font-weight: 500; font-size: 1.3rem; letter-spacing: -0.01em; }
.brand-text strong { font-weight: 600; color: var(--forest); }
.nav-links { display: flex; gap: 34px; }
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--forest);
  transition: width 0.25s;
}
.nav-links a:hover { color: var(--forest); }
.nav-links a:hover::after { width: 100%; }
.btn-nav { padding: 10px 22px; }

/* MOBILE NAV */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 1.5px;
  margin: 0 auto;
  background: var(--ink);
  transition: transform 0.28s, opacity 0.2s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--line-soft);
  background: var(--paper);
  padding: 8px 5vw 20px;
}
.mobile-menu a {
  padding: 15px 0;
  color: var(--ink);
  text-decoration: none;
  font-size: 1.02rem;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mobile-cta {
  margin-top: 14px;
  text-align: center;
  background: var(--forest);
  color: #f7f5ef;
  border-radius: 2px;
  border-bottom: none;
}
.mobile-menu.open { display: flex; }
body.menu-open { overflow: hidden; }

/* HERO */
.hero { position: relative; padding: 120px 0 0; overflow: hidden; }
.hero-glow { display: none; }
.hero-inner { max-width: 880px; }
.hero-emblem { height: 72px; width: auto; display: block; margin-bottom: 28px; }
.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 26px;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.grad { font-style: italic; color: var(--forest); }
.lead {
  color: var(--ink-soft);
  font-size: 1.18rem;
  max-width: 56ch;
  margin-bottom: 38px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 90px;
  border-top: 1px solid var(--line);
}
.strip-item {
  padding: 30px 28px 40px 0;
  color: var(--muted);
  font-size: 0.88rem;
  border-right: 1px solid var(--line-soft);
}
.strip-item:last-child { border-right: none; }
.strip-item span {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}

/* SECTIONS */
.section { padding: 110px 0; }
.section-alt { background: var(--paper-2); }
.section-head { max-width: 60ch; margin-bottom: 60px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-sub { color: var(--ink-soft); margin-top: 20px; font-size: 1.08rem; }

/* GRID + CARDS */
.grid { display: grid; gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  padding: 40px 36px;
  background: var(--surface);
  transition: background 0.25s;
}
.card:hover { background: #fcfbf8; }
.card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.card p { color: var(--ink-soft); font-size: 0.98rem; }
.card strong { color: var(--forest); font-weight: 600; }
.product h3 { color: var(--forest); }

/* ABOUT */
.about { display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: start; }
.about-text h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; margin-bottom: 24px; }
.about-text p { color: var(--ink-soft); margin-bottom: 18px; }
.about-cards { display: grid; gap: 0; border-top: 1px solid var(--line); }
.mini-card { padding: 26px 0; border-bottom: 1px solid var(--line); }
.mini-card h4 { font-size: 1.2rem; margin-bottom: 6px; }
.mini-card p { color: var(--ink-soft); font-size: 0.96rem; }

/* FEATURES */
.feature { padding: 40px 36px; background: var(--surface); transition: background 0.25s; }
.feature:hover { background: #fcfbf8; }
.feature-icon {
  display: grid;
  place-items: center;
  width: 50px; height: 50px;
  border-radius: 50%;
  color: var(--forest);
  border: 1px solid var(--line);
  margin-bottom: 24px;
  transition: background 0.25s, color 0.25s;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature:hover .feature-icon { background: var(--forest); color: #f7f5ef; border-color: var(--forest); }
.feature h3 { font-size: 1.3rem; margin-bottom: 10px; }
.feature p { color: var(--ink-soft); font-size: 0.96rem; }
.grid .feature { border: none; }
.section .grid { gap: 1px; }

/* PROCESS */
.process { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); }
.step {
  position: relative;
  padding: 36px 24px 36px 0;
  border-right: 1px solid var(--line-soft);
}
.step:last-child { border-right: none; padding-right: 0; }
.step-no {
  font-family: "Fraunces", serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.05em;
}
.step h4 { font-size: 1.25rem; margin: 16px 0 10px; font-weight: 500; }
.step p { color: var(--ink-soft); font-size: 0.9rem; }

/* CHECK LIST */
.check-list { list-style: none; margin-top: 26px; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 26px; color: var(--ink-soft); }
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 12px;
  width: 12px; height: 1px;
  background: var(--forest);
}

/* FACILITY */
.facility-card {
  padding: 56px 40px;
  border: 1px solid var(--line);
  background: var(--surface);
  text-align: center;
}
.facility-pin { color: var(--forest); margin-bottom: 16px; display: flex; justify-content: center; }
.facility-pin svg { width: 34px; height: 34px; }
.facility-card h3 { font-size: 1.7rem; font-weight: 400; }
.facility-card p { color: var(--muted); margin-top: 6px; }
.facility-tag {
  display: inline-block;
  margin-top: 22px;
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
}

/* CTA / CONTACT */
.cta { padding: 110px 0; background: var(--forest-deep); color: #eef1ec; }
.cta .kicker { color: var(--moss); }
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.cta-text h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; margin-bottom: 18px; color: #f7f5ef; }
.cta-text > p { color: rgba(238, 241, 236, 0.75); margin-bottom: 30px; }
.contact-rows { display: grid; gap: 16px; border-top: 1px solid rgba(238, 241, 236, 0.16); padding-top: 26px; }
.contact-row { color: #eef1ec; font-size: 0.98rem; }
.contact-row span {
  display: inline-block;
  width: 96px;
  color: var(--moss);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contact-form {
  display: grid;
  gap: 18px;
  padding: 40px;
  background: rgba(247, 245, 239, 0.04);
  border: 1px solid rgba(238, 241, 236, 0.14);
}
.contact-form label {
  display: grid; gap: 8px;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moss);
}
.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 0.98rem;
  padding: 13px 16px;
  border-radius: 2px;
  border: 1px solid rgba(238, 241, 236, 0.2);
  background: rgba(247, 245, 239, 0.05);
  color: #f7f5ef;
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(238, 241, 236, 0.4); }
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--moss); }
.contact-form .btn {
  justify-self: start;
  cursor: pointer;
  background: #f7f5ef;
  color: var(--forest-deep);
  border-color: #f7f5ef;
}
.contact-form .btn:hover { background: var(--moss); border-color: var(--moss); color: var(--forest-deep); }

/* FOOTER */
.footer { padding: 56px 0; background: var(--paper); border-top: 1px solid var(--line); }
.footer-inner { display: flex; flex-direction: column; gap: 22px; }
.footer-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 26px; }
.footer-links a { color: var(--ink-soft); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--forest); }
.footer-tag { color: var(--muted); font-size: 0.92rem; }
.footer-meta { color: var(--muted); font-size: 0.82rem; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nav-links { gap: 24px; }
  .about { gap: 50px; }
  .cta-inner { gap: 48px; }
}

@media (max-width: 900px) {
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { height: 68px; }

  .section { padding: 80px 0; }
  .section-head { margin-bottom: 44px; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }

  .process { grid-template-columns: 1fr 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--line-soft); padding: 28px 0; }
  .step:nth-child(odd) { padding-right: 24px; border-right: 1px solid var(--line-soft); }

  .hero { padding-top: 84px; }
  .hero-strip { grid-template-columns: 1fr 1fr; margin-top: 60px; }
  .strip-item { padding: 24px 20px 24px 0; }
  .strip-item:nth-child(2) { border-right: none; }
  .strip-item:nth-child(1), .strip-item:nth-child(2) { border-bottom: 1px solid var(--line-soft); }

  .about, .cta-inner { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 600px) {
  body { font-size: 15px; }
  .container { width: 88vw; }

  .hero { padding-top: 64px; }
  .hero h1 { font-size: clamp(2.1rem, 9vw, 2.9rem); }
  .lead { font-size: 1.06rem; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn { text-align: center; }

  .process, .hero-strip { grid-template-columns: 1fr; }
  .step, .step:nth-child(odd) { border-right: none; padding: 24px 0; }
  .strip-item, .strip-item:nth-child(2) { border-right: none; padding: 22px 0; border-bottom: 1px solid var(--line-soft); }
  .strip-item:last-child { border-bottom: none; }

  .section { padding: 64px 0; }
  .section-head h2 { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .hero-emblem { height: 58px; margin-bottom: 22px; }

  .card, .feature { padding: 30px 24px; }
  .facility-card { padding: 40px 24px; }
  .contact-form { padding: 26px 22px; }
  .contact-form .btn { justify-self: stretch; text-align: center; }
  .cta { padding: 72px 0; }

  .footer-top { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-links { gap: 18px 22px; }
}

@media (max-width: 380px) {
  .nav-inner { height: 62px; }
  .brand-wordmark { height: 26px; }
  .contact-row span { display: block; width: auto; margin-bottom: 2px; }
}
