/* ─── Reset & Base ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:     #111110;
  --muted:   #888880;
  --subtle:  #e8e6e1;
  --bg:      #f9f8f5;
  --white:   #ffffff;
  --green:   #2d6a4f;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --max-w: 960px;
  --gap:   clamp(2rem, 6vw, 5rem);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* ─── Container ─────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
}

/* ─── Header ────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--subtle);
  padding: 1.25rem 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--ink);
}

nav { display: flex; gap: 2rem; }

nav a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

nav a:hover { color: var(--ink); }

/* ─── Hero ──────────────────────────────────────── */
.hero {
  padding: clamp(5rem, 14vw, 10rem) 0 clamp(4rem, 10vw, 7rem);
  border-bottom: 1px solid var(--subtle);
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 2rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--muted);
}

.tagline {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
  max-width: 36ch;
  margin-bottom: 2.5rem;
}

.cta {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  background: var(--ink);
  text-decoration: none;
  padding: 0.75rem 1.75rem;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}

.cta:hover {
  background: #2a2a28;
  transform: translateY(-1px);
}

/* ─── About ─────────────────────────────────────── */
.about {
  padding: var(--gap) 0;
  border-bottom: 1px solid var(--subtle);
}

.about-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2rem;
  align-items: start;
}

.about-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 0.3rem;
}

.about-body p {
  font-size: 1.05rem;
  color: var(--ink);
  max-width: 56ch;
  margin-bottom: 1rem;
  font-weight: 300;
  line-height: 1.75;
}

.about-body p:last-child { margin-bottom: 0; }

/* ─── Services ──────────────────────────────────── */
.services {
  padding: var(--gap) 0;
  border-bottom: 1px solid var(--subtle);
}

.section-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  border-top: 1px solid var(--subtle);
  border-left: 1px solid var(--subtle);
}

.service {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--subtle);
  border-bottom: 1px solid var(--subtle);
  transition: background 0.2s;
}

.service:hover { background: var(--white); }

.service-num {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 1rem;
}

.service h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ─── Contact ───────────────────────────────────── */
.contact {
  padding: var(--gap) 0;
  border-bottom: 1px solid var(--subtle);
}

.contact h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 3rem;
}

.contact-details { max-width: 560px; }

.contact-item {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--subtle);
}

.contact-item:last-child { border-bottom: none; }

.contact-key {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 100px;
  flex-shrink: 0;
}

.contact-val {
  font-size: 1rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 300;
}

a.contact-val:hover { text-decoration: underline; }

.available {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--green);
  font-weight: 400;
}

.available::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ─── Footer ────────────────────────────────────── */
.site-footer {
  padding: 1.75rem 0;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 300;
}

/* ─── Responsive ────────────────────────────────── */
@media (max-width: 600px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .contact-item {
    flex-direction: column;
    gap: 0.25rem;
  }

  .contact-key { min-width: unset; }

  .site-footer .container {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

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