:root {
  --bg: #0a0a0b;
  --bg-elevated: #141416;
  --bg-card: #1a1a1e;
  --fg: #e8e4df;
  --fg-muted: #9a9590;
  --accent: #c9a96e;
  --accent-dim: #8b7040;
  --accent-glow: rgba(201, 169, 110, 0.15);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Space Grotesk', system-ui, sans-serif;
  --radius: 2px;
  --max-width: 1100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: radial-gradient(ellipse at 50% 30%, rgba(201, 169, 110, 0.06) 0%, transparent 60%),
              var(--bg);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 40px 24px;
}

.hero-mark {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 32px;
  opacity: 0.7;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-accent {
  font-style: italic;
  color: var(--accent);
}

.hero-tagline {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.hero-sub {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto;
  font-style: italic;
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg));
}

/* PHILOSOPHY */
.philosophy {
  padding: 120px 0;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}

.philosophy-text h2 {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--fg);
  margin-bottom: 24px;
}

.philosophy-text p {
  color: var(--fg-muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.philosophy-text em {
  color: var(--accent);
  font-style: italic;
}

.philosophy-aside blockquote {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--fg);
  line-height: 1.5;
  border-left: 2px solid var(--accent-dim);
  padding-left: 24px;
}

.philosophy-aside cite {
  display: block;
  margin-top: 16px;
  font-size: 0.9rem;
  font-style: normal;
  font-family: var(--sans);
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* SERVICES */
.services {
  padding: 120px 0;
  background: var(--bg-elevated);
}

.services-title {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 64px;
  color: var(--fg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 169, 110, 0.08);
  padding: 40px 28px;
  border-radius: var(--radius);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  border-color: rgba(201, 169, 110, 0.25);
  transform: translateY(-2px);
}

.service-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* PROCESS */
.process {
  padding: 120px 0;
}

.process h2 {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 72px;
  color: var(--fg);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.process-step {
  position: relative;
}

.step-num {
  display: block;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.process-step h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 10px;
}

.process-step p {
  color: var(--fg-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* CLOSING */
.closing {
  padding: 140px 0;
  text-align: center;
  background: radial-gradient(ellipse at 50% 70%, rgba(201, 169, 110, 0.05) 0%, transparent 60%),
              var(--bg);
}

.closing-content h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--fg);
  margin-bottom: 20px;
}

.closing-content p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

/* FOOTER */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid rgba(201, 169, 110, 0.08);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--fg-muted);
}

.footer-location {
  font-size: 0.85rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }
}

@media (max-width: 480px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
  }
}
/* CTA BUTTON */
.hero-cta {
  display: inline-block;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 48px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.hero-cta:hover {
  background: var(--accent);
  color: var(--bg);
}
