:root {
  --anthracite: #24312d;
  --anthracite-2: #355046;
  --green: #7f9852;
  --green-light: #b9ca91;
  --cream: #f4f3ec;
  --white: #ffffff;
  --ink: #25302d;
  --muted: #66716d;
  --line: #dde5da;
  --shadow: 0 18px 45px rgba(19, 26, 29, .12);
  --radius: 18px;
  --container: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: #fbfbf8; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.65; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 100; background: var(--white); padding: 10px 14px; transform: translateY(-150%); }
.skip-link:focus { transform: none; }
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(251,251,248,.92); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(37,48,45,.08); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); text-decoration: none; }
.brand img { width: 52px; height: 52px; object-fit: contain; object-position: center; border-radius: 0; }
.brand span { display: grid; line-height: 1; }
.brand strong { font-family: Georgia, serif; font-size: 30px; font-weight: 500; letter-spacing: .02em; }
.brand small { margin-top: 6px; color: var(--green-light); letter-spacing: .32em; font-size: 10px; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { color: var(--ink); text-decoration: none; font-size: 15px; }
.main-nav a:not(.button):hover { color: var(--green-light); }
.menu-button { display: none; border: 1px solid rgba(37,48,45,.22); color: var(--ink); background: transparent; padding: 8px 12px; border-radius: 8px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 24px; border: 0; border-radius: 999px; background: var(--green); color: var(--white); font-weight: 700; text-decoration: none; cursor: pointer; transition: transform .2s ease, background .2s ease; }
.button:hover { background: #687f40; transform: translateY(-2px); }
.button-small { min-height: 40px; padding-inline: 18px; }
.hero {
  position: relative;
  min-height: 0;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 26%, rgba(185,202,145,.34), transparent 26%),
    radial-gradient(circle at 72% 84%, rgba(127,152,82,.13), transparent 28%),
    linear-gradient(125deg, #f8f7f1 0%, #f0f3e9 58%, #e7eddf 100%);
}
.brand-banner-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  background: #202629;
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 55px rgba(19,26,29,.16);
}
.brand-banner,
.brand-banner img {
  display: block;
  width: 100%;
}
.brand-banner img {
  height: auto;
  aspect-ratio: 1536 / 218;
  object-fit: cover;
  object-position: center;
}
.hero::before {
  content: "JD";
  position: absolute;
  right: clamp(-35px, 3vw, 55px);
  top: 50%;
  transform: translateY(-52%);
  font-family: Georgia, serif;
  font-size: clamp(230px, 32vw, 520px);
  line-height: .8;
  letter-spacing: -.12em;
  color: rgba(37,48,45,.035);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: min(44vw, 600px);
  aspect-ratio: 1;
  right: -12%;
  bottom: -58%;
  border: 1px solid rgba(127,152,82,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(127,152,82,.04), 0 0 0 140px rgba(127,152,82,.025);
  pointer-events: none;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.20), rgba(255,255,255,0)); }
.hero-content { position: relative; padding-block: 82px 92px; }
.eyebrow { margin: 0 0 14px; color: var(--green); text-transform: uppercase; font-weight: 800; letter-spacing: .16em; font-size: 12px; }
.hero .eyebrow { color: #617642; }
h1, h2, h3, p { text-wrap: pretty; }
h1 { max-width: 780px; margin: 0; font-family: Georgia, serif; font-weight: 500; font-size: clamp(46px, 7vw, 82px); line-height: 1.05; letter-spacing: -.035em; }
h1 span { color: #6f8748; }
.hero-copy { max-width: 660px; margin: 28px 0; font-size: clamp(18px, 2vw, 22px); color: #56615d; }
.hero-actions { display: flex; align-items: center; gap: 25px; flex-wrap: wrap; }
.text-link { color: var(--ink); font-weight: 700; text-decoration: none; }
.hero-points { display: flex; gap: 28px; flex-wrap: wrap; margin: 45px 0 0; padding: 0; list-style: none; color: #56615d; font-size: 14px; }
.hero-points li::before { content: "✓"; color: var(--green-light); margin-right: 8px; font-weight: 800; }
.section { padding-block: 100px; }
.section-soft { background: linear-gradient(180deg, #f4f3ec, #eef3e8); }
.intro-grid, .process-grid, .about-grid, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(45px, 8vw, 110px); align-items: start; }
h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(36px, 5vw, 56px); line-height: 1.1; font-weight: 500; letter-spacing: -.025em; }
.intro-grid > p { margin: 36px 0 0; font-size: 20px; color: var(--muted); }
.section-heading { max-width: 700px; margin-bottom: 50px; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card { position: relative; min-height: 285px; padding: 34px 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 25px rgba(19,26,29,.04); }
.card-number { display: block; margin-bottom: 55px; color: var(--green); font-weight: 800; letter-spacing: .12em; }
.card h3 { margin: 0 0 12px; font-size: 22px; }
.card p { margin: 0; color: var(--muted); }
.process-intro > p:last-child { color: var(--muted); font-size: 18px; }
.steps { margin: 0; padding: 0; list-style: none; counter-reset: step; }
.steps li { counter-increment: step; display: grid; grid-template-columns: 54px 1fr; column-gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.steps li::before { content: "0" counter(step); grid-row: 1 / 3; color: var(--green); font-weight: 800; }
.steps strong { font-size: 20px; }
.steps span { color: var(--muted); }
.about { color: var(--ink); background: #e9efe5; }
.about .eyebrow { color: #617642; }
.about p { color: #56615d; }
.about-panel { min-height: 390px; padding: 45px; display: flex; flex-direction: column; justify-content: space-between; background: linear-gradient(145deg, #ffffff, #edf3e8); border: 1px solid rgba(37,48,45,.08); border-radius: var(--radius); box-shadow: var(--shadow); }
.about-logo { width: min(230px, 68%); height: auto; margin: -12px 0 20px -12px; filter: drop-shadow(0 16px 22px rgba(19,26,29,.14)); }
.about-panel span { color: #6f8748; font-size: 23px; font-weight: 700; }
.note { padding: 16px 18px; border-left: 3px solid var(--green); background: rgba(255,255,255,.65); font-size: 14px; }
.contact { background: #f6f7f2; }
.contact-details { display: grid; gap: 8px; margin-top: 30px; font-size: 19px; font-weight: 700; }
.contact-details a { text-decoration: none; }
.contact-form { display: grid; gap: 10px; padding: 34px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-form label { font-weight: 700; font-size: 14px; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid #cfd5cf; border-radius: 10px; padding: 12px 14px; background: #fbfcfa; }
.contact-form input:focus, .contact-form textarea:focus { outline: 3px solid rgba(120,148,73,.25); border-color: var(--green); }
.contact-form .button { margin-top: 10px; }
.form-note { margin: 5px 0 0; color: var(--muted); font-size: 12px; }
.site-footer { padding-block: 35px; background: #355046; color: #edf2eb; }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 25px; align-items: center; }
.brand-footer strong { font-size: 24px; }
.footer-grid > p { font-size: 13px; }
.footer-links { display: flex; justify-content: flex-end; gap: 18px; font-size: 13px; }
.footer-links a { color: inherit; }
@media (max-width: 900px) {
  .menu-button { display: block; }
  .main-nav { display: none; position: absolute; inset: 82px 0 auto; padding: 24px 20px; background: rgba(251,251,248,.98); border-bottom: 1px solid rgba(37,48,45,.08); flex-direction: column; align-items: stretch; }
  .main-nav.open { display: flex; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .intro-grid, .process-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .intro-grid > p { margin-top: 0; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .brand-footer, .footer-links { justify-content: center; }
}
@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .hero { min-height: 0; }
  .brand-banner img { width: auto; max-width: none; height: 150px; aspect-ratio: auto; object-fit: contain; object-position: left center; }
  .hero-content { padding-block: 64px 72px; }
  .hero::before { right: -115px; opacity: .8; }
  .hero-overlay { background: linear-gradient(90deg, rgba(255,255,255,.28), rgba(255,255,255,.05)); }
  .section { padding-block: 75px; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: auto; }
  .card-number { margin-bottom: 30px; }
  .contact-form { padding: 24px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
