:root {
  --forest: #123425;
  --forest-2: #0c2419;
  --leaf: #6f8e35;
  --sage: #a8c66c;
  --sand: #f4e4be;
  --stone: #e8dfcf;
  --cream: #faf6ee;
  --paper: #fffdf8;
  --ink: #17221b;
  --muted: #657064;
  --line: rgba(23, 34, 27, 0.12);
  --shadow: 0 24px 70px rgba(18, 52, 37, 0.14);
  --container: 1160px;
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
img { display: block; width: 100%; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin: 0; }
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
  letter-spacing: -0.035em;
}
ul { list-style: none; margin: 0; padding: 0; }
.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}
.section { padding: 6rem 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 238, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(23,34,27,0.08);
}
.header-grid {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 1.4rem;
  padding: 0.95rem 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.brand-mark {
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  flex: 0 0 auto;
}
.brand-mark svg { width: 100%; height: 100%; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-text strong { font-weight: 900; letter-spacing: 0.08em; }
.brand-text small { color: var(--muted); font-size: 0.82rem; }
.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  position: relative;
}
.site-nav a:hover { color: var(--forest); }
.header-phone {
  color: var(--forest);
  border: 1px solid var(--line);
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.5);
  font-weight: 750;
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--forest);
  font-weight: 800;
  font-size: 1rem;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-photo,
.hero-photo img,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-photo img {
  height: 100%;
  object-fit: cover;
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(12,36,25,0.86) 0%, rgba(12,36,25,0.55) 42%, rgba(12,36,25,0.15) 100%),
    linear-gradient(0deg, rgba(12,36,25,0.62), transparent 52%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 4rem;
  display: grid;
  grid-template-columns: 1fr 20rem;
  gap: 2rem;
  align-items: end;
}
.kicker {
  color: var(--sage);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.kicker.dark { color: var(--leaf); }
.kicker.light { color: var(--sand); }
.hero h1 {
  color: #fffdf8;
  max-width: 11ch;
  font-size: clamp(3.2rem, 8vw, 7rem);
}
.hero p {
  margin-top: 1.35rem;
  color: rgba(255,253,248,0.84);
  max-width: 62ch;
  line-height: 1.85;
  font-size: 1.08rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 1rem 1.35rem;
  border: 1px solid transparent;
  font-weight: 850;
  transition: transform 0.2s ease, background 0.2s ease;
}
.button:hover { transform: translateY(-1px); }
.primary {
  background: var(--sage);
  color: var(--forest-2);
}
.glass {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
  color: #fffdf8;
}
.full { width: 100%; }
.hero-panel {
  padding: 1.15rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
  color: #fffdf8;
}
.hero-panel span {
  display: block;
  color: var(--sand);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.hero-panel strong { line-height: 1.5; }

.intro-grid {
  display: grid;
  grid-template-columns: 16rem 1fr;
  gap: 2rem;
  align-items: start;
}
.section-label {
  display: grid;
  gap: 0.4rem;
  color: var(--leaf);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}
.section-label span {
  font-family: Georgia, serif;
  color: var(--forest);
  font-size: 3.6rem;
  line-height: 1;
}
.intro-copy h2,
.consult-card h2,
.services-heading h2,
.portfolio-copy h2,
.detail-copy h2,
.main-process h2,
.contact-copy h2 {
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  max-width: 12ch;
}
.intro-copy p,
.consult-card p,
.consult-card li,
.service-row p,
.portfolio-copy p,
.detail-copy p,
.step p,
.contact-copy p,
.contact-list strong,
.form-note,
.footer-brand p,
.footer-contact,
.footer-nav {
  color: var(--muted);
  line-height: 1.82;
}
.intro-copy p { margin-top: 1rem; max-width: 62ch; }

.consultation-section {
  padding-top: 0;
}
.consultation-grid,
.detail-grid,
.contact-grid,
.process-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
  align-items: stretch;
}
.consult-photo,
.detail-photo {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 34rem;
  box-shadow: var(--shadow);
}
.consult-photo img,
.detail-photo img {
  height: 100%;
  object-fit: cover;
}
.consult-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  align-content: center;
}
.consult-card p { margin-top: 1rem; }
.consult-card ul {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.3rem;
}
.consult-card li {
  position: relative;
  padding-left: 1.15rem;
}
.consult-card li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--leaf);
  position: absolute;
  left: 0;
  top: 0.68rem;
}

.services-section {
  background: var(--forest);
  color: #fffdf8;
}
.services-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 3rem;
}
.services-heading {
  position: sticky;
  top: 7rem;
  align-self: start;
}
.services-heading h2 { color: #fffdf8; }
.service-list {
  display: grid;
}
.service-row {
  display: grid;
  grid-template-columns: auto 0.65fr 1fr;
  gap: 1rem;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.service-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.14); }
.service-row span {
  color: var(--sage);
  font-weight: 900;
  letter-spacing: 0.12em;
}
.service-row h3 {
  font-size: 1.6rem;
  color: #fffdf8;
}
.service-row p { color: rgba(255,253,248,0.7); }

.portfolio-split {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  min-height: 38rem;
}
.portfolio-image img {
  height: 100%;
  object-fit: cover;
}
.portfolio-copy {
  background: var(--sand);
  padding: 4rem;
  display: grid;
  align-content: center;
}
.portfolio-copy p { margin-top: 1rem; }

.detail-copy {
  display: grid;
  align-content: center;
  padding: 2rem;
}
.detail-copy p { margin-top: 1rem; }

.process-section {
  background: var(--stone);
}
.main-process {
  background: var(--forest-2);
  color: #fffdf8;
  border-radius: var(--radius);
  padding: 2rem;
  display: grid;
  align-content: center;
}
.main-process h2 { color: #fffdf8; }
.process-steps {
  display: grid;
  gap: 1rem;
}
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.2rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.step > span {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--sage);
  color: var(--forest-2);
  font-weight: 900;
}
.step h3 { font-size: 1.5rem; margin-bottom: 0.45rem; }

.contact-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.6rem;
}
.contact-list a,
.contact-list div {
  display: block;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.58);
  border-radius: 18px;
  padding: 1rem;
}
.contact-list span {
  display: block;
  color: var(--leaf);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
  margin-bottom: 0.45rem;
}
.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.35rem;
  display: grid;
  gap: 1rem;
}
.contact-form label {
  display: grid;
  gap: 0.45rem;
}
.contact-form span {
  font-weight: 850;
  color: var(--forest);
  font-size: 0.92rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(23,34,27,0.14);
  background: #fffdf8;
  color: var(--ink);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font: inherit;
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(111,142,53,0.48);
}

.site-footer {
  background: var(--forest-2);
  color: #fffdf8;
  padding: 3rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.6fr 1fr;
  gap: 1rem;
}
.footer-logo {
  display: block;
  font-family: Georgia, serif;
  font-size: 3rem;
  color: var(--sage);
  margin-bottom: 0.75rem;
}
.footer-brand p,
.footer-nav a,
.footer-contact a,
.footer-contact span {
  color: rgba(255,253,248,0.72);
}
.footer-nav,
.footer-contact {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

@media (max-width: 980px) {
  .header-grid {
    grid-template-columns: auto auto;
  }
  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }
  .site-nav,
  .header-phone { display: none; }
  .site-nav.open {
    display: grid;
    grid-column: 1 / -1;
    justify-self: stretch;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255,253,248,0.96);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .hero-content,
  .intro-grid,
  .consultation-grid,
  .services-layout,
  .portfolio-split,
  .detail-grid,
  .process-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .services-heading {
    position: static;
  }
  .service-row {
    grid-template-columns: auto 1fr;
  }
  .service-row p {
    grid-column: 2;
  }
  .portfolio-copy {
    padding: 2rem 1rem;
  }
  .consult-photo,
  .detail-photo {
    min-height: 24rem;
  }
}

@media (max-width: 680px) {
  .section { padding: 4.5rem 0; }
  .hero {
    min-height: auto;
    padding-top: 16rem;
  }
  .hero-content { padding-bottom: 2rem; }
  .hero h1 { max-width: none; }
  .hero-panel { max-width: none; }
}
