:root {
  --bg: #0c0f0e;
  --bg-elevated: #141917;
  --fg: #f2efe8;
  --muted: #a7b0aa;
  --line: rgba(242, 239, 232, 0.12);
  --copper: #d08a4c;
  --copper-deep: #a8642f;
  --mint: #6fcfba;
  --font-display: "Syne", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Manrope", ui-sans-serif, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.03em; line-height: 1.08; }

.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

/* Atmosphere */
.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 45% at 85% -10%, rgba(208, 138, 76, 0.22), transparent 55%),
    radial-gradient(ellipse 55% 40% at 0% 30%, rgba(111, 207, 186, 0.1), transparent 50%),
    var(--bg);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(12, 15, 14, 0.72);
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}
.brand img {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.55rem;
  object-fit: cover;
}
.nav {
  display: none;
  gap: 1.35rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}
.nav a:hover { color: var(--fg); }
@media (min-width: 800px) { .nav { display: flex; } }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-copper {
  background: linear-gradient(135deg, var(--copper), var(--copper-deep));
  color: #1a120c;
}
.btn-ghost {
  border-color: var(--line);
  color: var(--fg);
  background: transparent;
}
.btn-ghost:hover { background: rgba(242, 239, 232, 0.05); }

/* Hero — full-bleed visual plane */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 15, 14, 0.35) 0%, rgba(12, 15, 14, 0.55) 42%, rgba(12, 15, 14, 0.94) 100%),
    linear-gradient(90deg, rgba(12, 15, 14, 0.7) 0%, transparent 55%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding: 7rem 0 4.5rem;
  max-width: 38rem;
}
.eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(208, 138, 76, 0.45);
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  font-weight: 750;
  margin-bottom: 1rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--copper);
}
.hero-lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 34rem;
  margin-bottom: 1.6rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }

.section {
  padding: 5rem 0;
}
.section-head {
  max-width: 40rem;
  margin-bottom: 2.4rem;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 0.7rem;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }

.services {
  display: grid;
  gap: 1.1rem;
}
@media (min-width: 860px) {
  .services { grid-template-columns: repeat(3, 1fr); }
}
.service {
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  overflow: hidden;
  background: rgba(20, 25, 23, 0.7);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.service:hover {
  transform: translateY(-4px);
  border-color: rgba(208, 138, 76, 0.4);
}
.service img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.service-body { padding: 1.25rem 1.3rem 1.45rem; }
.service-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
}
.service-body p {
  color: var(--muted);
  font-size: 0.95rem;
}

.method {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .method { grid-template-columns: repeat(4, 1fr); }
}
.step {
  border-top: 2px solid var(--copper);
  padding-top: 1rem;
}
.step-num {
  color: var(--mint);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.55rem;
}
.step h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.step p { color: var(--muted); font-size: 0.92rem; }

.cta {
  margin: 1rem 0 5rem;
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(208, 138, 76, 0.18), rgba(111, 207, 186, 0.08)),
    var(--bg-elevated);
  padding: 2.6rem 1.5rem;
  text-align: center;
}
@media (min-width: 760px) { .cta { padding: 3.4rem; } }
.cta h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 0.7rem;
}
.cta p {
  color: var(--muted);
  max-width: 34rem;
  margin: 0 auto 1.4rem;
}
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.6rem 0 2rem;
}
.footer-grid {
  display: grid;
  gap: 1.6rem;
  margin-bottom: 1.8rem;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}
.footer-brand p {
  color: var(--muted);
  margin-top: 0.75rem;
  max-width: 22rem;
  font-size: 0.92rem;
}
.footer-col h3 {
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}
.footer-col a, .footer-col li {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}
.footer-col a:hover { color: var(--fg); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  color: var(--muted);
  font-size: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: space-between;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
