:root {
  --bg: #F4EDE4;
  --bg-alt: #EBE3D8;
  --fg: #2C2417;
  --fg-light: #5A4A38;
  --accent: #B8976A;
  --accent-dark: #96784D;
  --stone-dark: #3D322A;
  --border: #D4C8B8;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Figtree', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--space-lg) var(--space-md);
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.hero-text {
  grid-column: 1;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: var(--space-md);
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--fg-light);
  max-width: 38ch;
  line-height: 1.7;
}

.hero-visual {
  grid-column: 2;
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  padding-left: var(--space-md);
}

.stone-block {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.stone-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(184, 151, 106, 0.08) 100%);
}

.stone-grain {
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    92deg,
    transparent,
    transparent 40px,
    rgba(44, 36, 23, 0.03) 40px,
    rgba(44, 36, 23, 0.03) 41px
  );
}

.block-large {
  width: 140px;
  height: 260px;
}

.block-medium {
  width: 100px;
  height: 200px;
}

.block-small {
  width: 70px;
  height: 140px;
}

/* SECTION LABEL */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: var(--space-sm);
}

/* SERVICES */
.services {
  padding: var(--space-xl) var(--space-md);
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: var(--space-lg);
}

.services-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--fg);
}

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

.service-card {
  background: var(--bg-alt);
  padding: var(--space-lg) var(--space-md);
}

.service-number {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
  color: var(--fg);
}

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

/* MATERIALS */
.materials {
  padding: var(--space-xl) var(--space-md);
  border-bottom: 1px solid var(--border);
}

.materials-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.materials-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--fg);
  margin-top: var(--space-sm);
}

.materials-right p {
  color: var(--fg-light);
  margin-bottom: var(--space-md);
  font-size: 1rem;
  line-height: 1.8;
}

.material-list {
  list-style: none;
}

.material-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--fg);
}

.material-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* PROCESS */
.process {
  padding: var(--space-xl) var(--space-md);
  background: var(--stone-dark);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.process .section-label {
  color: var(--accent);
  margin-bottom: var(--space-lg);
}

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

.step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  position: relative;
}

.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  padding-top: 0.35rem;
}

.marker-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.marker-line {
  width: 1px;
  height: 100%;
  background: rgba(184, 151, 106, 0.3);
  margin: 0.4rem 0;
  min-height: 40px;
}

.step:last-child .marker-line {
  display: none;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: #F4EDE4;
  margin-bottom: 0.75rem;
}

.step-content p {
  font-size: 0.875rem;
  color: rgba(244, 237, 228, 0.6);
  line-height: 1.7;
}

/* CRAFT QUOTE */
.craft {
  padding: var(--space-xl) var(--space-md);
  background: var(--bg);
}

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

.craft-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--fg);
  font-style: italic;
  margin-bottom: var(--space-md);
}

.craft-attribution {
  font-size: 0.875rem;
  color: var(--fg-light);
}

/* CLOSING */
.closing {
  padding: var(--space-xl) var(--space-md);
  background: var(--accent);
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.2;
  color: #2C2417;
  margin-bottom: var(--space-md);
}

.closing p {
  font-size: 1.1rem;
  color: rgba(44, 36, 23, 0.75);
  max-width: 50ch;
  margin: 0 auto;
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: var(--space-lg) var(--space-md);
  background: var(--stone-dark);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: #F4EDE4;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(244, 237, 228, 0.5);
}

.footer-meta p {
  font-size: 0.8rem;
  color: rgba(244, 237, 228, 0.4);
  max-width: 40ch;
  text-align: right;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: var(--space-lg) var(--space-sm);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .hero-text {
    grid-column: 1;
  }

  .hero-visual {
    grid-column: 1;
    padding-left: 0;
    justify-content: center;
  }

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

  .materials-inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .step-marker {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .footer-meta p {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .block-large { width: 100px; height: 180px; }
  .block-medium { width: 70px; height: 140px; }
  .block-small { width: 50px; height: 100px; }
}