/* =========================================================
   GreenMorph Builders — Core Stylesheet
   Palette: warm cream base, sage/forest green, soft charcoal
   ========================================================= */

:root {
  --cream:        #f6f1e7;
  --cream-soft:   #fbf8f1;
  --cream-deep:   #efe7d6;
  --sand:         #e7ddc8;
  --green:        #4f6648;
  --green-deep:   #3a4d35;
  --green-soft:   #6f8567;
  --olive:        #8a9a6e;
  --ink:          #2b2b27;
  --ink-soft:     #55554d;
  --line:         #d9cfba;
  --white:        #ffffff;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Archivo", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1200px;
  --shadow: 0 24px 60px -32px rgba(50, 60, 40, 0.45);
  --shadow-soft: 0 14px 40px -28px rgba(50, 60, 40, 0.5);
  --r: 4px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  font-weight: 300;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: 0.2px;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--green-soft);
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--green-soft);
  display: inline-block;
}

.section { padding: 100px 0; }
.section-sm { padding: 70px 0; }

.lead { font-size: 1.18rem; color: var(--ink-soft); font-weight: 300; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: var(--r);
  border: 1px solid var(--green);
  background: var(--green);
  color: var(--cream-soft);
  cursor: pointer;
  transition: all .35s ease;
}
.btn:hover { background: var(--green-deep); border-color: var(--green-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--green); }
.btn-ghost:hover { background: var(--green); color: var(--cream-soft); }
.btn-light { background: var(--cream-soft); color: var(--green-deep); border-color: var(--cream-soft); }
.btn-light:hover { background: transparent; color: var(--cream-soft); border-color: var(--cream-soft); }

.arrow { transition: transform .35s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(246, 241, 231, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all .4s ease;
}
.site-header.scrolled {
  background: rgba(246, 241, 231, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 30px -24px rgba(0,0,0,.4);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; }
.brand .brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand .brand-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--green-deep);
  font-weight: 600;
  letter-spacing: .3px;
}
.brand .brand-sub {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}

.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links a {
  font-size: 13.5px;
  letter-spacing: .6px;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color .3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--green);
  transition: width .3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* dropdown */
.has-drop { position: relative; }
.dropdown {
  position: absolute;
  top: 130%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-soft);
  padding: 12px;
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}
.has-drop:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 13.5px;
  border-radius: 3px;
  white-space: nowrap;
}
.dropdown a::after { display: none; }
.dropdown a:hover { background: var(--cream-deep); color: var(--green); }

.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-phone {
  font-size: 13.5px;
  color: var(--green-deep);
  font-weight: 500;
  letter-spacing: .5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); transition: .3s; display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 150px 0 90px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.8rem, 5.4vw, 4.8rem);
  margin: 22px 0 24px;
}
.hero h1 em { font-style: italic; color: var(--green); }
.hero p { font-size: 1.18rem; color: var(--ink-soft); max-width: 30em; }
.hero-actions { margin-top: 36px; display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual { position: relative; }
.hero-visual .img-main {
  border-radius: 6px;
  box-shadow: var(--shadow);
  height: 540px;
  object-fit: cover;
  width: 100%;
}
.hero-visual .img-badge {
  position: absolute;
  bottom: -26px; left: -26px;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px 26px;
  box-shadow: var(--shadow-soft);
  max-width: 230px;
}
.hero-visual .img-badge .num { font-family: var(--serif); font-size: 2.6rem; color: var(--green); line-height: 1; }
.hero-visual .img-badge .lbl { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-soft); margin-top: 6px; }

.hero-stats {
  display: flex;
  gap: 50px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.hero-stats .stat .n { font-family: var(--serif); font-size: 2.4rem; color: var(--green-deep); line-height: 1; }
.hero-stats .stat .t { font-size: 12.5px; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-soft); margin-top: 8px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: 170px 0 90px;
  background: var(--green-deep);
  color: var(--cream-soft);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .22;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--olive); }
.page-hero .eyebrow::before, .page-hero .eyebrow::after { background: var(--olive); }
.page-hero h1 { color: var(--cream-soft); font-size: clamp(2.6rem, 5vw, 4.2rem); margin: 18px 0 18px; max-width: 16em; }
.page-hero p { color: rgba(246,241,231,.82); max-width: 40em; font-size: 1.15rem; }
.breadcrumb { font-size: 12.5px; letter-spacing: 1px; text-transform: uppercase; color: rgba(246,241,231,.6); margin-bottom: 8px; }
.breadcrumb a:hover { color: var(--olive); }

/* ---------- Section heading ---------- */
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2.1rem, 4vw, 3.1rem); margin: 18px 0 18px; }
.section-head p { color: var(--ink-soft); }

/* ---------- Service cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }

.service-card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card .sc-img { height: 230px; overflow: hidden; }
.service-card .sc-img img { height: 100%; width: 100%; object-fit: cover; transition: transform .7s ease; }
.service-card:hover .sc-img img { transform: scale(1.06); }
.service-card .sc-body { padding: 30px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.service-card .sc-no { font-size: 12px; letter-spacing: 2px; color: var(--green-soft); }
.service-card h3 { font-size: 1.6rem; margin: 10px 0 12px; }
.service-card p { font-size: 0.98rem; color: var(--ink-soft); flex: 1; }
.service-card .sc-link {
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.service-card:hover .sc-link .arrow { transform: translateX(4px); }

/* ---------- Feature / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: 6px; box-shadow: var(--shadow-soft); width: 100%; height: 520px; object-fit: cover; }
.split-body h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); margin: 18px 0 22px; }
.split-body p { color: var(--ink-soft); margin-bottom: 18px; }

.tick-list { list-style: none; margin: 26px 0 0; }
.tick-list li {
  position: relative;
  padding: 12px 0 12px 38px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 1rem;
}
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f6f1e7' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- Stats band ---------- */
.band {
  background: var(--green-deep);
  color: var(--cream-soft);
}
.band .grid-4 { gap: 0; }
.band .stat-box {
  text-align: center;
  padding: 56px 20px;
  border-right: 1px solid rgba(246,241,231,.14);
}
.band .stat-box:last-child { border-right: none; }
.band .stat-box .n { font-family: var(--serif); font-size: 3.3rem; color: var(--cream-soft); line-height: 1; }
.band .stat-box .n span { color: var(--olive); }
.band .stat-box .t { font-size: 12.5px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(246,241,231,.7); margin-top: 12px; }

/* ---------- Process ---------- */
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.process-step { position: relative; padding-top: 30px; border-top: 2px solid var(--line); }
.process-step .ps-no { font-family: var(--serif); font-size: 3.2rem; color: var(--cream-deep); line-height: .8; position: absolute; top: 20px; right: 0; z-index: 0; }
.process-step:hover { border-top-color: var(--green); }
.process-step h3 { font-size: 1.4rem; margin-bottom: 12px; position: relative; z-index: 1; }
.process-step p { font-size: .95rem; color: var(--ink-soft); position: relative; z-index: 1; }

/* ---------- Projects ---------- */
.project-card { position: relative; border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-soft); }
.project-card img { height: 380px; width: 100%; object-fit: cover; transition: transform .8s ease; }
.project-card:hover img { transform: scale(1.07); }
.project-card .pc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(35,45,30,.86) 0%, rgba(35,45,30,.15) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 30px;
  opacity: 1;
}
.project-card .pc-overlay .cat { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--olive); }
.project-card .pc-overlay h3 { color: var(--cream-soft); font-size: 1.6rem; margin-top: 8px; }
.project-card .pc-overlay .loc { color: rgba(246,241,231,.7); font-size: .9rem; margin-top: 4px; }
.project-card.tall img { height: 500px; }

/* ---------- Testimonials ---------- */
.testi-wrap { background: var(--cream-deep); }
.testi-card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 38px 34px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testi-card .quote-mark { font-family: var(--serif); font-size: 4rem; color: var(--olive); line-height: .6; height: 30px; }
.testi-card .stars { color: #c9a227; letter-spacing: 3px; margin: 8px 0 14px; font-size: 14px; }
.testi-card p { color: var(--ink); font-size: 1.05rem; font-style: italic; flex: 1; font-family: var(--serif); }
.testi-card .person { display: flex; align-items: center; gap: 14px; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
.testi-card .avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--green); color: var(--cream-soft);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.3rem;
}
.testi-card .person .nm { font-weight: 500; font-size: 1rem; letter-spacing: .3px; }
.testi-card .person .rl { font-size: 12.5px; color: var(--ink-soft); letter-spacing: .5px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  padding: 110px 0;
  background: var(--green);
  color: var(--cream-soft);
  text-align: center;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M0 0h1v60H0zM0 0h60v1H0z' fill='%23ffffff' opacity='.06'/%3E%3C/svg%3E");
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: var(--cream-soft); font-size: clamp(2.2rem, 4vw, 3.4rem); margin-bottom: 18px; }
.cta-band p { color: rgba(246,241,231,.85); max-width: 38em; margin: 0 auto 34px; }
.cta-band .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(246,241,231,.72); padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 44px; }
.site-footer .brand .brand-name { color: var(--cream-soft); }
.site-footer .brand .brand-sub { color: rgba(246,241,231,.55); }
.footer-about p { margin-top: 22px; font-size: .96rem; max-width: 30em; color: rgba(246,241,231,.6); }
.footer-col h4 { color: var(--cream-soft); font-family: var(--sans); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 22px; font-weight: 500; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 13px; }
.footer-col ul a { font-size: .96rem; color: rgba(246,241,231,.65); transition: color .3s, padding .3s; }
.footer-col ul a:hover { color: var(--olive); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; font-size: .96rem; color: rgba(246,241,231,.7); }
.footer-contact-item svg { flex-shrink: 0; margin-top: 3px; stroke: var(--olive); }
.footer-bottom {
  margin-top: 56px; padding-top: 26px;
  border-top: 1px solid rgba(246,241,231,.12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(246,241,231,.5);
}
.footer-bottom a:hover { color: var(--olive); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.info-card { display: flex; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.info-card .ic {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 50%; background: var(--cream-deep);
  display: flex; align-items: center; justify-content: center;
}
.info-card .ic svg { stroke: var(--green); }
.info-card h4 { font-family: var(--sans); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 6px; font-weight: 500; }
.info-card p, .info-card a { font-size: 1.12rem; color: var(--ink); font-family: var(--serif); }
.info-card a:hover { color: var(--green); }

.form-wrap { background: var(--cream-soft); border: 1px solid var(--line); border-radius: 6px; padding: 40px; box-shadow: var(--shadow-soft); }
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 12px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 9px; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--ink);
  transition: border .3s, box-shadow .3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(79,102,72,.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-note { font-size: 13px; color: var(--ink-soft); margin-top: 14px; }
.form-success { display: none; background: rgba(79,102,72,.12); border: 1px solid var(--green-soft); color: var(--green-deep); padding: 16px; border-radius: var(--r); margin-bottom: 20px; font-size: .95rem; }

/* ---------- Map ---------- */
.map-embed { border: 1px solid var(--line); border-radius: 6px; overflow: hidden; height: 420px; box-shadow: var(--shadow-soft); }
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: saturate(.85); }

/* ---------- Value / about ---------- */
.value-card { padding: 34px 30px; background: var(--cream-soft); border: 1px solid var(--line); border-radius: 6px; transition: .4s; }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.value-card .vc-ic { width: 56px; height: 56px; border-radius: 50%; background: var(--cream-deep); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.value-card .vc-ic svg { stroke: var(--green); }
.value-card h3 { font-size: 1.45rem; margin-bottom: 10px; }
.value-card p { font-size: .96rem; color: var(--ink-soft); }

/* ---------- Detail list (service pages) ---------- */
.detail-block { padding: 28px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 60px 1fr; gap: 24px; }
.detail-block .db-no { font-family: var(--serif); font-size: 1.8rem; color: var(--green-soft); }
.detail-block h3 { font-size: 1.5rem; margin-bottom: 10px; }
.detail-block p { color: var(--ink-soft); font-size: 1rem; }

.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.pill-list span {
  font-size: 12.5px; letter-spacing: .5px;
  padding: 8px 18px; border-radius: 100px;
  background: var(--cream-deep); border: 1px solid var(--line); color: var(--ink-soft);
}

/* sidebar */
.svc-layout { display: grid; grid-template-columns: 1fr 320px; gap: 60px; align-items: start; }
.svc-side { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 26px; }
.side-card { background: var(--cream-soft); border: 1px solid var(--line); border-radius: 6px; padding: 28px; }
.side-card h4 { font-family: var(--sans); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 18px; font-weight: 500; }
.side-nav a { display: flex; justify-content: space-between; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: .98rem; transition: .3s; }
.side-nav a:last-child { border-bottom: none; }
.side-nav a:hover, .side-nav a.active { color: var(--green); padding-left: 6px; }
.side-cta { background: var(--green-deep); color: var(--cream-soft); border: none; }
.side-cta h4 { color: var(--olive); }
.side-cta p { color: rgba(246,241,231,.8); font-size: .95rem; margin-bottom: 20px; }
.side-cta .phone-big { font-family: var(--serif); font-size: 1.5rem; color: var(--cream-soft); }

/* ---------- Reveal animation (light) ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Mobile nav panel ---------- */
.mobile-panel {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(82vw, 360px);
  background: var(--cream-soft);
  border-left: 1px solid var(--line);
  z-index: 200;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
  padding: 30px 28px;
  overflow-y: auto;
  box-shadow: -20px 0 60px -40px rgba(0,0,0,.5);
}
.mobile-panel.open { transform: translateX(0); }
.mobile-panel .mp-close { background: none; border: none; font-size: 30px; color: var(--ink); cursor: pointer; float: right; line-height: 1; }
.mobile-panel nav { margin-top: 60px; display: flex; flex-direction: column; }
.mobile-panel nav a { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 1.1rem; font-family: var(--serif); }
.mobile-panel .mp-sub a { font-size: .98rem; font-family: var(--sans); padding-left: 16px; color: var(--ink-soft); }
.mobile-panel .mp-phone { margin-top: 30px; }
.overlay-bg { position: fixed; inset: 0; background: rgba(35,40,30,.5); z-index: 150; opacity: 0; visibility: hidden; transition: .4s; }
.overlay-bg.show { opacity: 1; visibility: visible; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual .img-main { height: 420px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media { order: 0; }
  .split-media img { height: 380px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .band .grid-4 .stat-box:nth-child(2) { border-right: none; }
  .band .grid-4 .stat-box { border-bottom: 1px solid rgba(246,241,231,.14); }
  .process-row { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .svc-layout { grid-template-columns: 1fr; }
  .svc-side { position: static; flex-direction: row; flex-wrap: wrap; }
  .svc-side .side-card { flex: 1; min-width: 260px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 70px 0; }
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 30px; }
  .process-row { grid-template-columns: 1fr; }
  .band .grid-4 { grid-template-columns: 1fr; }
  .band .stat-box { border-right: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-visual .img-badge { left: 0; }
  .container { padding: 0 22px; }
  .detail-block { grid-template-columns: 1fr; gap: 8px; }
}
