:root {
  --stone-50: #f7f5f2;
  --stone-100: #ede9e3;
  --stone-200: #d9d3c8;
  --stone-400: #a89f90;
  --stone-600: #6b5f50;
  --stone-800: #2c2419;
  --charcoal: #1a1714;
  --sienna: #b85c38;
  --sienna-light: #d4785a;
  --cream: #faf8f4;

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

  --max-w: 1100px;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ── */
.nav {
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--stone-200);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--sienna);
}

.nav-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--stone-600);
  letter-spacing: 0.01em;
}

/* ── Hero ── */
.hero {
  position: relative;
  padding: 7rem 2.5rem 6rem;
  max-width: var(--max-w);
  margin: 0 auto;
  overflow: hidden;
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 79px,
      rgba(44,36,25,0.03) 79px,
      rgba(44,36,25,0.03) 80px
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 780px;
}

.hero-overline {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sienna);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1.75rem;
  font-style: italic;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--stone-600);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-accent-line {
  width: 3rem;
  height: 3px;
  background: var(--sienna);
}

/* ── Philosophy ── */
.philosophy {
  background: var(--stone-800);
  padding: 5rem 2.5rem;
}

.philosophy-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.philosophy-rule {
  width: 2rem;
  height: 2px;
  background: var(--sienna);
  margin-bottom: 2rem;
}

.philosophy-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--stone-100);
  font-style: italic;
  max-width: 800px;
  margin-bottom: 1.5rem;
}

.philosophy-attr {
  font-size: 0.8125rem;
  color: var(--stone-400);
  letter-spacing: 0.05em;
}

/* ── Services ── */
.services {
  padding: 6rem 2.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 3rem;
  line-height: 1.2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--stone-200);
  border: 1px solid var(--stone-200);
}

.service-card {
  background: var(--cream);
  padding: 2.25rem 2rem;
  transition: background 0.2s;
}

.service-card:hover {
  background: var(--stone-50);
}

.service-icon {
  color: var(--sienna);
  margin-bottom: 1.25rem;
  display: flex;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--stone-600);
  line-height: 1.6;
}

/* ── Process ── */
.process {
  background: var(--stone-100);
  padding: 6rem 2.5rem;
}

.process-header {
  max-width: var(--max-w);
  margin: 0 auto 3.5rem;
}

.process-steps {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}

.process-step {
  padding: 0 1.5rem;
}

.process-step:first-child {
  padding-left: 0;
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--stone-200);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--stone-600);
  line-height: 1.55;
}

.process-divider {
  width: 1px;
  height: 100%;
  background: var(--stone-300);
  align-self: stretch;
  margin: 0 0.5rem;
  min-height: 120px;
}

/* ── Closing ── */
.closing {
  background: var(--charcoal);
  padding: 6rem 2.5rem;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.closing-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  color: var(--stone-100);
  line-height: 1.6;
  font-style: italic;
}

/* ── Footer ── */
.footer {
  background: var(--stone-800);
  padding: 3rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--sienna);
}

.footer-name {
  font-size: 0.875rem;
  color: var(--stone-400);
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--stone-400);
  margin-bottom: 0.25rem;
}

.footer-location {
  font-size: 0.75rem;
  color: var(--stone-400);
  opacity: 0.6;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero { padding: 4rem 1.5rem 3.5rem; }
  .services { padding: 4rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-divider { width: 2rem; height: 1px; min-height: unset; margin: 1.5rem 0; }
  .process-step { padding: 0; }
  .philosophy { padding: 4rem 1.5rem; }
  .closing { padding: 4rem 1.5rem; }
  .footer { padding: 2.5rem 1.5rem; }
  .nav { padding: 1rem 1.5rem; }
}