:root {
  --bg: #0b0b0b;
  --panel: #111;
  --muted: #1b1b1b;
  --text: #f2f2f2;
  --sub: #cfcfcf;
  --line: #272727;
  --accent: #ffffff;
  --glass: rgba(255, 255, 255, 0.03);
  --blur: 12px;
  --radius: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Work Sans', system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.04), transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.03), transparent 30%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding: 28px clamp(16px, 5vw, 54px);
  min-height: 100vh;
}

.background-texture {
  position: fixed;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 40%),
    linear-gradient(260deg, rgba(255, 255, 255, 0.04), transparent 35%);
  pointer-events: none;
  opacity: 0.6;
}

a { color: inherit; text-decoration: none; }

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass);
  backdrop-filter: blur(var(--blur));
  position: sticky;
  top: 16px;
  z-index: 10;
}

.logo {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: 22px;
  letter-spacing: 0.6px;
}

.nav { display: flex; gap: 16px; }
.nav a { padding: 8px 12px; border-radius: 10px; transition: background 0.2s; }
.nav a:hover { background: var(--muted); }

.cta {
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid var(--text);
  transition: background 0.2s, color 0.2s;
}
.cta:hover { background: var(--text); color: #0b0b0b; }

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  padding: 48px 0 32px;
  align-items: center;
}

.hero__content h1 {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.05;
  margin: 10px 0 14px;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sub);
}

.lede { color: var(--sub); }

.hero__actions { display: flex; gap: 12px; margin: 18px 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  transition: transform 0.18s ease, background 0.2s, border 0.2s;
  font-weight: 600;
}

.btn.primary { background: var(--text); color: #0b0b0b; border-color: var(--text); }
.btn.primary:hover { transform: translateY(-2px); }

.btn.ghost { background: transparent; color: var(--text); }
.btn.ghost:hover { border-color: var(--text); }

.btn.full { width: 100%; }

.hero__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.meta__label { display: block; color: var(--sub); font-size: 13px; }
.meta__value { font-weight: 600; }

.hero__card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  display: grid;
  gap: 12px;
}

.hero__card ul { padding-left: 18px; color: var(--sub); }
.hero__card li { margin-bottom: 8px; }

.badge {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.section { padding: 26px 0 12px; }
.section__header { max-width: 720px; }
.section__header h2 { font-size: clamp(26px, 4vw, 40px); margin: 10px 0; font-family: 'Cormorant Garamond', serif; }
.section__lede { color: var(--sub); }

.grid { display: grid; gap: 16px; }
.services__grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass);
  backdrop-filter: blur(var(--blur));
  display: grid;
  gap: 10px;
  min-height: 200px;
  transition: transform 0.2s ease, border 0.2s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--text); }

.card__icon { font-size: 22px; font-weight: 600; color: var(--sub); }
.card p { color: var(--sub); }

.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tags span {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--sub);
  font-size: 13px;
}

.method__grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.method__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--muted);
  transition: border 0.2s;
}
.method__step:hover { border-color: var(--text); }

.step__number {
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.contact__card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
}

.contact__form form { display: grid; gap: 12px; }
label { display: grid; gap: 6px; font-size: 14px; color: var(--sub); }
input, select, textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #0f0f0f;
  color: var(--text);
  font-family: inherit;
}
input:focus, select:focus, textarea:focus { outline: 1px solid var(--text); }

.microcopy { color: var(--sub); font-size: 13px; margin-top: 8px; }

.footer {
  margin-top: 36px;
  padding: 16px 0 12px;
  border-top: 1px solid var(--line);
  color: var(--sub);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

.footer__links { display: flex; gap: 12px; flex-wrap: wrap; }
.footer__links a:hover { color: var(--text); }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 720px) {
  body { padding: 18px; }
  .topbar { position: static; }
  .hero__actions { flex-wrap: wrap; }
}
