
:root {
  --bg: #ebe6de;
  --surface: #f5f2ec;
  --text: #1b1916;
  --muted: #6b645c;
  --accent: #c9923a;
  --accent-dark: #a8762e;
  --accent2: #1b1916;
  --line: #d8d2c8;
  --hero-bg: #1b1916;
  --hero-text: #ebe6de;
}
* { 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.7;
  font-size: 17px;
}
a { color: var(--accent-dark); 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.35rem 4%;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.logo {
  font-weight: 600;
  letter-spacing: .06em;
  font-size: 1.15rem;
  color: inherit;
  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: inherit; opacity: .82; font-size: .9rem; text-decoration: none; }
nav a:hover { opacity: 1; color: var(--accent-dark); text-decoration: none; }

.hero {
  position: relative;
  padding: 5.5rem 4% 5rem;
  background: var(--hero-bg);
  color: var(--hero-text);
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 3.5rem;
  align-items: end;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(201, 146, 58, .18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 35% at 10% 80%, rgba(201, 146, 58, .08) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: .5;
}
.hero > * { position: relative; z-index: 1; }
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.08;
  font-weight: 300;
  letter-spacing: -.02em;
  max-width: 14ch;
}
.hero p.lead {
  font-size: 1.1rem;
  opacity: .78;
  max-width: 40ch;
  margin-top: 1.5rem;
  font-weight: 400;
}
.hero-meta {
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
  align-self: center;
}
.hero-meta p { opacity: .75; font-size: .92rem; }
.hero-meta strong { display: block; color: var(--accent); font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .65rem; font-weight: 600; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.btn {
  display: inline-block;
  padding: .85rem 1.45rem;
  border: 1px solid transparent;
  font-size: .92rem;
  cursor: pointer;
  text-decoration: none !important;
  background: var(--accent);
  color: var(--hero-bg);
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: .03em;
}
.btn:hover { background: var(--accent-dark); color: var(--hero-bg); }
.btn-ghost {
  background: transparent;
  border-color: rgba(235, 230, 222, .35);
  color: inherit;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: transparent; }

.section { padding: 5rem 0; }
.section h2 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  margin-bottom: 1.25rem;
  font-weight: 300;
  letter-spacing: -.01em;
}
.section .intro { color: var(--muted); max-width: 58ch; margin-bottom: 2rem; }

.grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.grid-asymmetric {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.4fr .85fr;
  align-items: start;
}
.grid-asymmetric.reverse { grid-template-columns: .85fr 1.4fr; }

.card {
  background: var(--surface);
  padding: 1.75rem;
  border-left: 3px solid var(--accent);
  box-shadow: 0 12px 40px rgba(27, 25, 22, .06);
}
.card h3 {
  font-size: 1.15rem;
  margin-bottom: .65rem;
  font-weight: 600;
}
.card p { color: var(--muted); font-size: .96rem; line-height: 1.65; }

.split {
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: 1.15fr .85fr;
}

.pullquote {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  line-height: 1.4;
  color: var(--accent-dark);
  border-top: 2px solid var(--accent);
  padding-top: 1.5rem;
  max-width: 28ch;
  font-weight: 300;
}

.band {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.band-dark {
  background: var(--hero-bg);
  color: var(--hero-text);
}
.band-dark .intro { color: rgba(235, 230, 222, .75); }
.band-dark a { color: var(--accent); }
.band-accent {
  background: var(--accent);
  color: var(--hero-bg);
}
.band-accent a { color: inherit; font-weight: 600; }
.band-accent .card {
  background: rgba(27, 25, 22, .12);
  border-left-color: var(--hero-bg);
  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: 1.1rem .85rem;
  border-bottom: 1px solid var(--line);
}
.price-table th { font-weight: 600; }
.price-table td:last-child { font-weight: 600; color: var(--accent-dark); white-space: nowrap; }

.muted { color: var(--muted); }
.contact-block {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
}
form label { display: block; margin: .85rem 0 .4rem; font-size: .88rem; font-weight: 600; letter-spacing: .02em; }
form input, form textarea, form select {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font: inherit;
  border-radius: 2px;
}
form button { margin-top: 1.25rem; }

.site-footer {
  padding: 3rem 0;
  background: var(--accent2);
  color: var(--bg);
  font-size: .92rem;
}
.footer-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  width: min(1120px, 92%);
  margin: 0 auto;
}
.site-footer a { color: inherit; opacity: .85; }
.site-footer a:hover { opacity: 1; color: var(--accent); }

.legal { font-size: .95rem; color: var(--muted); max-width: 75ch; }
.legal h2 { color: var(--text); margin: 2rem 0 .85rem; font-size: 1.3rem; font-weight: 600; }
.legal h3 { color: var(--text); margin: 1.5rem 0 .5rem; font-size: 1.05rem; font-weight: 600; }
.legal p, .legal li { margin-bottom: .85rem; }
.legal ul { padding-left: 1.25rem; margin-bottom: 1rem; }

.steps { display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}
.step .num {
  font-weight: 600;
  color: var(--accent);
  font-size: 1.35rem;
  min-width: 2.5rem;
}
.step p { color: var(--muted); }

.faq details { border-bottom: 1px solid var(--line); padding: 1.15rem 0; }
.faq summary { cursor: pointer; font-weight: 600; }
.faq details p { margin-top: .75rem; color: var(--muted); }

.list-plain { list-style: none; }
.list-plain li { padding: .65rem 0; border-bottom: 1px solid var(--line); }

.page-hero {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 2px solid var(--accent);
  background: var(--surface);
}
.page-hero h1 {
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  margin-bottom: .65rem;
  font-weight: 300;
  letter-spacing: -.01em;
}
.breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: .85rem; }

.tag {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .85rem;
  font-weight: 600;
}

.portfolio-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(3, 1fr);
}
.portfolio-grid .card:nth-child(2) { margin-top: 2rem; }
.portfolio-grid .card:nth-child(3) { margin-top: 4rem; }

.scene-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.scene-visual {
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--hero-bg) 0%, #2a2620 100%);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.scene-visual::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 40%;
  bottom: 15%;
  left: 20%;
  background: radial-gradient(ellipse, rgba(201, 146, 58, .45) 0%, rgba(201, 146, 58, .08) 70%, transparent 100%);
  border-radius: 50%;
  filter: blur(20px);
}

.sitemap-list { columns: 2; gap: 2rem; list-style: none; }
.sitemap-list li { break-inside: avoid; margin-bottom: .65rem; }

@media (max-width: 800px) {
  .split, .grid-asymmetric, .grid-asymmetric.reverse, .scene-block { 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; }
}
