:root {
  --bg: #0f1115;
  --panel: #161a20;
  --panel-soft: #1b2028;
  --text: #eef1f5;
  --muted: #aeb7c2;
  --line: rgba(255,255,255,0.08);
  --accent: #b08b48;
  --accent-strong: #d3a95b;
  --shadow: 0 18px 48px rgba(0,0,0,0.28);
  --radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at top, rgba(176,139,72,0.14), transparent 32%),
    var(--bg);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1120px, calc(100% - 1.5rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(15,17,21,0.82);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: linear-gradient(145deg, var(--accent-strong), #7c6030);
  color: #111;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong { font-size: 0.98rem; }
.brand small { color: var(--muted); margin-top: 0.2rem; }

.header-actions,
.hero-cta-row,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.solid-button,
.ghost-button {
  min-height: 44px;
  padding: 0.82rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  transition: filter 160ms ease, transform 160ms ease, background 160ms ease;
}

.solid-button {
  background: var(--accent);
  color: #111;
}

.ghost-button {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--text);
}

.solid-button:hover,
.ghost-button:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.hero,
.value-strip,
.services,
.about,
.contact {
  padding: 1.3rem 0 1.1rem;
}

.hero { padding-top: 1.4rem; }

.hero-grid,
.services-grid {
  display: grid;
  gap: 1rem;
}

.hero-copy,
.hero-media,
.about-card,
.contact-card,
.value-grid article,
.service-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 1.35rem;
}

.hero-media,
.services-media {
  display: grid;
  align-items: stretch;
}

.eyebrow {
  margin: 0 0 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent-strong);
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-size: clamp(1.65rem, 5.3vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  max-width: 12ch;
  margin-bottom: 0.85rem;
}

.lead {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  max-width: 58ch;
}

.hero-meta {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
}

.hero-meta strong { color: var(--text); }

.value-grid {
  display: grid;
  gap: 0.9rem;
}

.value-grid article,
.service-card,
.about-card,
.contact-card {
  padding: 1.15rem;
}

.services-copy h2,
.about-card h2,
.contact-card h2,
.value-grid h2 {
  font-size: clamp(1.35rem, 4.2vw, 2.15rem);
  line-height: 1.1;
}

.service-cards {
  display: grid;
  gap: 0.9rem;
}

.service-card p,
.value-grid p,
.about-card p,
.contact-card p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.image-slot {
  min-height: 240px;
  border: 1.5px dashed rgba(255,255,255,0.2);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  color: var(--muted);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .hero,
  .value-strip,
  .services,
  .about,
  .contact {
    padding: 2rem 0 1.4rem;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
  }

  .services-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
  }

  .value-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
