
:root {
  --bg: #f4efe6;
  --surface: #faf7f2;
  --text: #1c1c1c;
  --muted: #5c5650;
  --accent: #b87333;
  --accent2: #1c1c1c;
  --line: #d9d0c4;
  --hero-bg: #1c1c1c;
  --hero-text: #f4efe6;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.wrap { width: min(1120px, 92%); margin: 0 auto; }

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 4%;
  background: var(--accent2);
  border-bottom: 4px solid var(--accent);
}
.logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  letter-spacing: .04em;
  font-size: 1.35rem;
  color: var(--hero-text);
  text-decoration: none;
  text-transform: uppercase;
}
.logo:hover { text-decoration: none; color: var(--accent); }
nav { display: flex; flex-wrap: wrap; gap: .85rem 1.25rem; align-items: center; }
nav a { color: var(--hero-text); opacity: .88; font-size: .92rem; text-decoration: none; }
nav a:hover { opacity: 1; color: var(--accent); text-decoration: none; }

.hero {
  padding: 4.5rem 4% 4rem;
  background: var(--hero-bg);
  color: var(--hero-text);
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 3rem;
  align-items: end;
}
.hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.02em;
  max-width: 14ch;
  text-transform: uppercase;
}
.hero p.lead {
  font-size: 1.12rem;
  opacity: .82;
  max-width: 40ch;
  margin-top: 1.25rem;
}
.hero-meta {
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
  align-self: center;
}
.hero-meta p { opacity: .8; font-size: .95rem; }
.hero-meta strong { display: block; color: var(--accent); font-size: 1.05rem; margin-bottom: .5rem; letter-spacing: .06em; text-transform: uppercase; }

.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }
.btn {
  display: inline-block;
  padding: .85rem 1.4rem;
  border: 1px solid transparent;
  font-size: .95rem;
  cursor: pointer;
  text-decoration: none !important;
  background: var(--accent);
  color: #fff;
  border-radius: 0;
  font-weight: 600;
  letter-spacing: .03em;
}
.btn-ghost {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.section { padding: 4.5rem 0; }
.section h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  margin-bottom: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.section .intro { color: var(--muted); max-width: 58ch; margin-bottom: 2rem; }

.grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.grid-asymmetric {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.4fr .85fr;
  align-items: start;
}
.grid-asymmetric.reverse { grid-template-columns: .85fr 1.4fr; }

.card {
  background: var(--surface);
  padding: 1.5rem;
  border-left: 4px solid var(--accent);
  box-shadow: 6px 6px 0 var(--line);
}
.card h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.2rem;
  margin-bottom: .5rem;
  font-weight: 400;
}
.card p { color: var(--muted); font-size: .98rem; }
.card .price {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  color: var(--accent);
  margin-top: .75rem;
  font-weight: 600;
}

.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  grid-template-columns: 1.15fr .85fr;
}

.pullquote {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  line-height: 1.35;
  color: var(--accent);
  border-top: 3px solid var(--accent);
  padding-top: 1.25rem;
  max-width: 28ch;
}

.band {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.band-dark {
  background: var(--accent2);
  color: var(--hero-text);
}
.band-dark h2 { color: var(--hero-text); }
.band-dark .intro { color: rgba(244,239,230,.75); }
.band-dark a { color: var(--accent); }
.band-accent {
  background: var(--accent);
  color: #fff;
}
.band-accent a { color: inherit; }
.band-accent .card {
  background: rgba(255,255,255,.1);
  border-left-color: #fff;
  box-shadow: none;
  color: inherit;
}
.band-accent .card p { color: inherit; opacity: .85; }

.offset-block { margin-left: clamp(0px, 8vw, 6rem); }
.offset-block-right { margin-right: clamp(0px, 8vw, 6rem); }

.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td {
  text-align: left;
  padding: 1rem .75rem;
  border-bottom: 1px solid var(--line);
}
.price-table th { font-weight: 600; font-family: Georgia, serif; }
.price-table td:last-child { font-family: Georgia, serif; color: var(--accent); font-weight: 600; }

.muted { color: var(--muted); }
.contact-block {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
}
form label { display: block; margin: .75rem 0 .35rem; font-size: .9rem; }
form input, form textarea, form select {
  width: 100%;
  padding: .75rem .85rem;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font: inherit;
}
form button { margin-top: 1rem; }

.site-footer {
  padding: 2.75rem 0;
  background: var(--accent2);
  color: var(--bg);
  font-size: .92rem;
}
.footer-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  width: min(1120px, 92%);
  margin: 0 auto;
}
.site-footer a { color: inherit; opacity: .85; }
.footer-tagline {
  margin-top: 1.25rem;
  width: min(1120px, 92%);
  margin-left: auto;
  margin-right: auto;
  opacity: .7;
}

.legal { font-size: .95rem; color: var(--muted); max-width: 75ch; }
.legal h2 { color: var(--text); margin: 2rem 0 .75rem; font-size: 1.35rem; font-family: Georgia, serif; font-weight: 400; }
.legal h3 { color: var(--text); margin: 1.5rem 0 .5rem; font-size: 1.1rem; }
.legal p, .legal li { margin-bottom: .75rem; }
.legal ul { padding-left: 1.25rem; margin-bottom: 1rem; }

.steps { display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}
.step .num {
  font-family: Georgia, serif;
  font-weight: 400;
  color: var(--accent);
  font-size: 1.5rem;
  min-width: 2.5rem;
}

.faq details { border-bottom: 1px solid var(--line); padding: 1rem 0; }
.faq summary { cursor: pointer; font-weight: 600; }
.faq details p { margin-top: .65rem; color: var(--muted); }

.list-plain { list-style: none; }
.list-plain li { padding: .5rem 0; border-bottom: 1px solid var(--line); }

.page-hero {
  padding: 3rem 0 2rem;
  border-bottom: 4px solid var(--accent);
  background: var(--accent2);
  color: var(--hero-text);
}
.page-hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  margin-bottom: .5rem;
  font-weight: 400;
  text-transform: uppercase;
}
.page-hero .muted { color: rgba(244,239,230,.65); }
.breadcrumb { font-size: .85rem; color: rgba(244,239,230,.65); margin-bottom: .75rem; }
.breadcrumb a { color: var(--accent); }

.tag {
  display: inline-block;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}

.portfolio-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}
.portfolio-grid .card:nth-child(2) { margin-top: 2rem; }
.portfolio-grid .card:nth-child(3) { margin-top: 4rem; }

.sitemap-list { columns: 2; gap: 2rem; }
.sitemap-list li { break-inside: avoid; margin-bottom: .5rem; }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.hours-table td { padding: .5rem 0; border-bottom: 1px solid var(--line); }

@media (max-width: 800px) {
  .split, .grid-asymmetric, .grid-asymmetric.reverse { grid-template-columns: 1fr; }
  .site-header { flex-direction: column; align-items: flex-start; }
  .hero { grid-template-columns: 1fr !important; }
  .offset-block, .offset-block-right { margin-left: 0; margin-right: 0; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-grid .card:nth-child(2),
  .portfolio-grid .card:nth-child(3) { margin-top: 0; }
  .contact-block { grid-template-columns: 1fr; }
  .sitemap-list { columns: 1; }
}
