:root {
  --bg:       #F9F8F5;
  --bg-dark:  #161614;
  --bg-mid:   #EEECE4;
  --text:     #1A1A18;
  --muted:    #696966;
  --border:   #DDD9CE;
  --green:    #1B6B4A;
  --green-lt: #D4EDE3;
  --amber:    #C98A1A;
  --white:    #FEFEFE;
  --radius:   6px;
  --max-w:    1080px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
address { font-style: normal; }

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 56px;
}
.nav-logo {
  font-size: 15px; font-weight: 700; letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 8px;
}
.nav-logo-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  flex-shrink: 0;
}
.nav-menu { display: flex; gap: 32px; list-style: none; }
.nav-menu a {
  font-size: 13px; font-weight: 500; color: var(--muted);
  transition: color .15s;
}
.nav-menu a:hover { color: var(--text); }
.nav-burger {
  display: none; background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger-line {
  display: block; width: 20px; height: 1.5px; background: var(--text);
  margin: 5px 0; transition: .2s;
}

/* ── HERO ── */
.hero {
  padding: 96px 0 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--green);
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green); margin-bottom: 28px;
}
.hero-eyebrow::after {
  content: ''; display: block; width: 40px; height: 1px; background: var(--green);
}
.hero h1 {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--text);
  max-width: 820px;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: normal;
  color: var(--green);
}
.hero-lead {
  font-size: 17px; color: var(--muted); max-width: 520px; line-height: 1.7;
  margin-bottom: 44px;
}
.hero-cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 26px;
  font-size: 14px; font-weight: 600;
  border-radius: var(--radius); border: none; cursor: pointer; transition: .15s;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: #155a3c; }
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--text); }
.hero-note { font-size: 13px; color: var(--muted); }
.hero-note strong { color: var(--text); font-weight: 600; }

/* ── ABOUT (dark) ── */
.about {
  background: var(--bg-dark);
  padding: 80px 0;
}
.about-inner {
  display: grid; grid-template-columns: 260px 1fr; gap: 72px; align-items: start;
}
.about-label {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: #5A5A55; margin-bottom: 12px;
}
.about-num {
  font-size: 72px; font-weight: 800; color: #232320;
  letter-spacing: -0.04em; line-height: 1;
}
.about-right h2 {
  font-size: clamp(20px, 3vw, 28px); font-weight: 700;
  color: #FAFAF7; letter-spacing: -0.02em; margin-bottom: 20px;
}
.about-right p { color: #8A8A85; font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.about-right p:last-child { margin-bottom: 0; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.tag {
  font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 3px;
  background: #1E1E1B; color: #6A6A65; border: 1px solid #2A2A27;
}

/* ── SERVICES ── */
.services { padding: 80px 0; }
.section-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 48px; gap: 24px;
}
.section-kicker {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green); margin-bottom: 8px;
}
.section-title {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800; letter-spacing: -0.025em; color: var(--text);
}
.section-desc { font-size: 15px; color: var(--muted); max-width: 360px; margin-top: 8px; }
.services-list { border-top: 1px solid var(--border); }
.service-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 24px; align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.service-row:hover { background: var(--bg-mid); margin: 0 -16px; padding-left: 16px; padding-right: 16px; }
.service-num {
  font-size: 12px; font-weight: 700; color: var(--green);
  letter-spacing: .05em; padding-top: 3px;
}
.service-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.service-body p { font-size: 14px; color: var(--muted); }
.service-arrow { color: var(--border); font-size: 18px; padding-top: 3px; }

/* ── CONTACT SECTION ── */
.contact-sec {
  padding: 80px 0;
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

.contact-block h2 {
  font-size: clamp(20px, 3vw, 28px); font-weight: 800; letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.contact-block > p { font-size: 14px; color: var(--muted); margin-bottom: 32px; }

.cdata { margin-top: 0; }
.cdata-row {
  display: grid; grid-template-columns: 90px 1fr;
  gap: 8px; padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.cdata-row:last-child { border-bottom: none; }
.cdata-lbl { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); padding-top: 2px; }
.cdata-val { color: var(--text); font-weight: 500; }
.cdata-val a { color: var(--green); }
.cdata-val a:hover { text-decoration: underline; }

.cform { background: var(--white); border-radius: 8px; padding: 32px; border: 1px solid var(--border); }
.cform h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.cform-note { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .04em; color: var(--muted); margin-bottom: 6px; text-transform: uppercase; }
.field input,
.field textarea {
  width: 100%; padding: 10px 12px;
  font-family: inherit; font-size: 14px; color: var(--text);
  background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius);
  transition: border-color .15s;
}
.field input:focus,
.field textarea:focus { outline: none; border-color: var(--green); }
.field textarea { resize: vertical; min-height: 90px; }
.btn-submit { width: 100%; justify-content: center; }

/* ── FOOTER ── */
footer {
  background: var(--bg-dark);
  padding: 48px 0 32px;
}
.footer-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 36px; border-bottom: 1px solid #242420;
  gap: 32px; flex-wrap: wrap;
}
.footer-brand .logo { font-size: 14px; font-weight: 700; color: #FAFAF7; }
.footer-brand .logo-sub { font-size: 12px; color: #4A4A46; margin-top: 6px; max-width: 240px; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 13px; color: #4A4A46; transition: color .15s; }
.footer-nav a:hover { color: #9A9A95; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: #38383A; }
.footer-legal a { font-size: 12px; color: #38383A; }
.footer-legal a:hover { color: #6A6A65; }

/* ── INNER PAGE ── */
.page-top {
  padding: 56px 0 44px;
  border-bottom: 1px solid var(--border);
}
.page-top .kicker { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--green); margin-bottom: 10px; }
.page-top h1 { font-size: clamp(26px, 4vw, 42px); font-weight: 800; letter-spacing: -0.025em; }
.page-top p { color: var(--muted); margin-top: 10px; font-size: 16px; }

/* ── PROSE ── */
.prose-wrap { max-width: 680px; padding: 64px 0; }
.prose-wrap h2 { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; margin: 40px 0 12px; color: var(--text); }
.prose-wrap p, .prose-wrap li { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.prose-wrap ul { padding-left: 20px; }
.prose-wrap a { color: var(--green); }
.prose-wrap a:hover { text-decoration: underline; }
.prose-wrap strong { color: var(--text); font-weight: 600; }

/* ── CONTACT PAGE ── */
.contact-page-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
  padding: 64px 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 760px) {
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-num { font-size: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-page-grid { grid-template-columns: 1fr; gap: 40px; padding: 40px 0; }
  .section-head { flex-direction: column; }
  .service-row { grid-template-columns: 40px 1fr; }
  .service-arrow { display: none; }
  .nav-menu { display: none; position: absolute; top: 56px; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: 8px 0; z-index: 100; }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 12px 28px; font-size: 14px; }
  .nav-burger { display: block; }
  .hero::before { display: none; }
  .hero { padding: 64px 0 56px; }
  .footer-row { flex-direction: column; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
