
:root {
  --green: #1e3d32;
  --parchment: #f4f0e6;
  --ink: #1a1a18;
  --surface: #faf8f3;
  --muted: #5c5a54;
  --line: #d8d2c4;
  --accent: #2d5a48;
  --serif: Georgia, 'Times New Roman', 'Palatino Linotype', serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--serif);
  background: var(--parchment);
  color: var(--ink);
  line-height: 1.72;
  font-size: 17px;
}
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { width: min(980px, 90%); margin: 0 auto; }

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.15rem 5%;
  background: var(--surface);
  border-bottom: 2px solid var(--green);
}
.logo {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: .05em;
  font-size: 1.3rem;
  color: var(--ink);
  text-decoration: none;
}
.logo:hover { text-decoration: none; color: var(--green); }
nav { display: flex; flex-wrap: wrap; gap: .65rem 1rem; align-items: center; }
nav a {
  color: var(--ink);
  opacity: .72;
  font-size: .86rem;
  text-decoration: none;
  font-family: 'Segoe UI', system-ui, sans-serif;
  letter-spacing: .03em;
  text-transform: uppercase;
}
nav a:hover { opacity: 1; color: var(--green); text-decoration: none; }

.hero-editorial {
  padding: 4.5rem 5% 4rem;
  background: var(--green);
  color: var(--parchment);
  border-bottom: 1px solid var(--accent);
}
.hero-editorial .tag {
  display: inline-block;
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--parchment);
  opacity: .65;
  margin-bottom: 1rem;
}
.hero-editorial h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1.14;
  margin-bottom: .85rem;
}
.hero-editorial .lead {
  font-size: 1.08rem;
  opacity: .88;
  max-width: 44ch;
  font-style: italic;
  margin-bottom: 1.75rem;
}
.hero-editorial .hero-detail {
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: .85rem;
  opacity: .65;
  margin-top: 1.75rem;
  letter-spacing: .02em;
}

.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.25rem; }
.btn {
  display: inline-block;
  padding: .8rem 1.5rem;
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: .82rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none !important;
  background: var(--parchment);
  color: var(--green);
  border: 1px solid var(--parchment);
  transition: background .2s, color .2s;
}
.btn:hover { background: transparent; color: var(--parchment); text-decoration: none; }
.btn-ghost {
  background: transparent;
  border-color: var(--parchment);
  color: var(--parchment);
}
.btn-ghost:hover { background: var(--parchment); color: var(--green); border-color: var(--parchment); }
.btn-dark {
  background: var(--green);
  border-color: var(--green);
  color: var(--parchment);
}
.btn-dark:hover { background: var(--ink); border-color: var(--ink); color: var(--parchment); }

.section { padding: 4rem 0; }
.section h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  margin-bottom: .85rem;
  letter-spacing: .02em;
  color: var(--green);
}
.section .intro { color: var(--muted); max-width: 58ch; margin-bottom: 1.75rem; }

.layout-sidebar {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 280px;
  align-items: start;
}
.layout-sidebar.reverse { grid-template-columns: 280px 1fr; }
.main-col { min-width: 0; }

.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--green);
  padding: 1.35rem 1.25rem;
  margin-bottom: 1rem;
  font-size: .94rem;
}
.sidebar-card h3 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--green);
  margin-bottom: .5rem;
  letter-spacing: .02em;
}
.sidebar-card p { color: var(--muted); font-size: .9rem; margin-bottom: .4rem; }
.sidebar-card .price-tag {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
  margin-top: .5rem;
}

.grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--surface);
  padding: 1.65rem;
  border: 1px solid var(--line);
  border-top: 2px solid var(--green);
  text-align: left;
}
.card h3 {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 400;
  margin-bottom: .55rem;
  color: var(--green);
}
.card p { color: var(--muted); font-size: .95rem; }

.band {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.band-green {
  background: var(--green);
  color: var(--parchment);
}
.band-green a { color: inherit; }
.band-green .intro { color: inherit; opacity: .88; }
.band-green .sidebar-card {
  background: rgba(244,240,230,.08);
  border-color: rgba(244,240,230,.2);
  border-left-color: var(--parchment);
  color: inherit;
}
.band-green .sidebar-card h3 { color: var(--parchment); }
.band-green .sidebar-card p { color: inherit; opacity: .82; }

.pullquote {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.42;
  color: var(--green);
  font-style: italic;
  max-width: 34ch;
  margin: 0 auto;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.editorial-bg {
  position: relative;
  overflow: hidden;
}
.editorial-bg .watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  user-select: none;
}
.editorial-bg .watermark span {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 12vw, 9rem);
  color: var(--green);
  opacity: .06;
  white-space: nowrap;
  font-style: italic;
  letter-spacing: .06em;
}
.editorial-bg .wrap { position: relative; z-index: 1; }

.split {
  display: grid;
  gap: 2.25rem;
  align-items: start;
  grid-template-columns: 1fr 1fr;
}

.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td {
  text-align: left;
  padding: .95rem .75rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
}
.price-table th { font-weight: 400; color: var(--green); }

.muted { color: var(--muted); }
.text-center { text-align: center; }

.contact-block {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 280px;
}
form label {
  display: block;
  margin: .7rem 0 .3rem;
  font-size: .86rem;
  font-family: 'Segoe UI', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
}
form input, form textarea, form select {
  width: 100%;
  padding: .7rem .85rem;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font: inherit;
}
form button { margin-top: 1rem; }

.site-footer {
  padding: 3rem 0 2.5rem;
  background: var(--ink);
  color: var(--parchment);
  font-size: .88rem;
  font-family: 'Segoe UI', system-ui, sans-serif;
}
.footer-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  width: min(980px, 90%);
  margin: 0 auto;
}
.site-footer a { color: inherit; opacity: .78; }
.site-footer a:hover { opacity: 1; }
.footer-tagline {
  margin-top: 1.5rem;
  width: min(980px, 90%);
  margin-left: auto;
  margin-right: auto;
  opacity: .55;
  font-style: italic;
  font-family: var(--serif);
  text-align: center;
}

.legal {
  font-size: .93rem;
  color: var(--muted);
  max-width: 72ch;
  font-family: 'Segoe UI', system-ui, sans-serif;
  line-height: 1.65;
}
.legal h2 {
  color: var(--green);
  margin: 2rem 0 .7rem;
  font-size: 1.25rem;
  font-family: var(--serif);
  font-weight: 400;
}
.legal h3 {
  color: var(--ink);
  margin: 1.4rem 0 .45rem;
  font-size: 1.02rem;
  font-family: var(--serif);
}
.legal p, .legal li { margin-bottom: .7rem; }
.legal ul { padding-left: 1.25rem; margin-bottom: 1rem; }

.steps { max-width: 620px; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem;
  align-items: start;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.step .num {
  font-family: var(--serif);
  color: var(--green);
  font-size: 1.35rem;
  min-width: 1.75rem;
}

.faq details { border-bottom: 1px solid var(--line); padding: 1rem 0; text-align: left; }
.faq summary { cursor: pointer; font-family: var(--serif); font-size: 1.04rem; color: var(--green); }
.faq details p { margin-top: .6rem; color: var(--muted); font-family: 'Segoe UI', system-ui, sans-serif; font-size: .94rem; }

.list-plain { list-style: none; text-align: left; }
.list-plain li { padding: .45rem 0; border-bottom: 1px solid var(--line); }

.page-hero {
  padding: 3rem 0 2.25rem;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400;
  margin-bottom: .45rem;
  color: var(--green);
}
.breadcrumb { font-size: .8rem; color: var(--muted); margin-bottom: .65rem; font-family: 'Segoe UI', system-ui, sans-serif; }

.portfolio-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: repeat(3, 1fr);
}
.portfolio-grid .card:nth-child(2) { margin-top: 1.25rem; }
.portfolio-grid .card:nth-child(3) { margin-top: 2.5rem; }

.sitemap-list { columns: 2; gap: 2rem; text-align: left; font-family: 'Segoe UI', system-ui, sans-serif; font-size: .91rem; }
.sitemap-list li { break-inside: avoid; margin-bottom: .45rem; }

.service-hero-price {
  display: inline-block;
  margin-top: .85rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--green);
}

.prose p { margin-bottom: 1rem; color: var(--muted); }
.prose h2 { margin-top: 2rem; }

@media (max-width: 768px) {
  .split, .layout-sidebar, .layout-sidebar.reverse, .contact-block { grid-template-columns: 1fr; }
  .site-header { flex-direction: column; align-items: center; text-align: center; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-grid .card:nth-child(2),
  .portfolio-grid .card:nth-child(3) { margin-top: 0; }
  .sitemap-list { columns: 1; }
}
