:root {
  --bg: #0e0f12;
  --bg-soft: #14161b;
  --text: #e8e8e8;
  --text-muted: #a0a4ad;
  --accent: #c9a24d;
  --border: #23262d;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto; /* JS handles smooth scroll */
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-muted {
  color: var(--text-muted);
}

.maxw {
  max-width: 720px;
}

.note {
  margin-top: 32px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Subtle film grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.04'/></svg>");
  opacity: 0.35;
  mix-blend-mode: overlay;
}

/* Header / Hero */
header {
  padding: 80px 0 120px;
  background: radial-gradient(ellipse at top, #1b1e26 0%, var(--bg) 60%);
  border-bottom: 1px solid var(--border);
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  max-width: 900px;
  margin-bottom: 18px;
}

.hero .lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 760px;
}

.hero .sublead {
  margin-top: 14px;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 760px;
}

.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* Buttons */
.btn {
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 500;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.primary {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  opacity: 0.95;
}

/* Sections + reveal animation */
section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

/* Layout blocks */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.list {
  margin-top: 22px;
}

.list li {
  list-style: none;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.callout {
  margin-top: 28px;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--accent);
}

.visual {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.card {
  padding: 32px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Process */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.step {
  padding: 22px;
  border-left: 2px solid var(--accent);
  color: var(--text-muted);
}

.step span {
  display: block;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Pricing accent line */
.accent-line {
  margin-top: 16px;
  color: var(--accent);
}

/* Form */
.consultation-form {
  max-width: 640px;
  margin-top: 32px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.consultation-form input,
.consultation-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
}

.consultation-form input:focus,
.consultation-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

/* Keep grain overlay above content but don't block clicks */
.consultation-form,
footer,
main,
header {
  position: relative;
  z-index: 1;
}

.form-note {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Footer */
footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

/* Responsive */
@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}
