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

:root {
  --bg: #f8f7f4;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --accent: #2a2a2a;
  --border: #e0ddd8;
  --card-bg: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

.grain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  z-index: 9999;
}

/* Nav */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248, 247, 244, 0.85);
  backdrop-filter: blur(12px);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  text-decoration: none;
  color: var(--text);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--text);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 4rem;
  max-width: 900px;
}

.hero-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
}

.hero-sub {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 400px;
}

.cta {
  display: inline-block;
  text-decoration: none;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--text);
  transition: opacity 0.3s ease;
}

.cta:hover {
  opacity: 0.6;
}

/* Sections */
section {
  padding: 8rem 4rem;
}

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-weight: 400;
}

/* About */
.about {
  border-top: 1px solid var(--border);
}

.about-content p {
  font-size: 1.35rem;
  line-height: 1.8;
  max-width: 650px;
  color: var(--text);
  font-weight: 300;
}

/* Services */
.services {
  border-top: 1px solid var(--border);
}

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

.service-card {
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--card-bg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.service-number {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

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

/* Contact */
.contact {
  border-top: 1px solid var(--border);
}

.contact-content p {
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.email-link {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--text);
  text-decoration: none;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0.25rem;
  transition: border-color 0.3s ease;
}

.email-link:hover {
  border-color: var(--text);
}

/* Footer */
footer {
  padding: 3rem 4rem;
  border-top: 1px solid var(--border);
}

footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    padding: 1.5rem 2rem;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .hero {
    padding: 0 2rem;
  }

  section {
    padding: 5rem 2rem;
  }

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

  footer {
    padding: 2rem;
  }
}
