:root {
  --bg: #f4efe7;
  --surface: #fffdf9;
  --surface-alt: #f8f2ea;
  --ink: #1e1915;
  --muted: #625b53;
  --line: #ded3c2;
  --accent: #8a5a34;
  --accent-dark: #613c21;
  --shadow: 0 20px 50px rgba(34, 25, 17, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f6f1ea 0%, #f4efe7 100%);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.narrow { width: min(760px, calc(100% - 2rem)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(244, 239, 231, 0.88);
  border-bottom: 1px solid rgba(138, 90, 52, 0.12);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}
.brand {
  text-decoration: none;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
nav { display: flex; gap: 1rem; flex-wrap: wrap; }
nav a { text-decoration: none; color: var(--muted); font-weight: 600; }
.hero { padding: 5rem 0 3rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 2rem;
  align-items: center;
}
.eyebrow {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent);
}
h1, h2, h3 { line-height: 1.08; margin-top: 0; }
h1 { font-size: clamp(2.5rem, 6vw, 4.9rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.8rem, 3.8vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.lead {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 58ch;
}
.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}
.button.primary { background: var(--accent); color: white; }
.button.secondary { background: var(--surface); border: 1px solid var(--line); }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}
.hero-points span {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 0.8rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.hero-image-card,
.card,
.project,
.project-text,
.about-note,
.contact-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.hero-image-card { overflow: hidden; }
.hero-image-card img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.section { padding: 2rem 0 4rem; }
.section-heading { margin-bottom: 1.5rem; }
.section-note { color: var(--muted); max-width: 64ch; }
.intro p, .card p, .project p, .project-text p, .about-grid p, .contact-box p { color: var(--muted); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.card { padding: 1.25rem; }
.project-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.project {
  overflow: hidden;
}
.project img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.project-feature {
  grid-row: span 2;
}
.project-feature img {
  aspect-ratio: 4 / 4.2;
}
.project-copy {
  padding: 1rem 1rem 1.2rem;
}
.project-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.project-text {
  padding: 1.1rem 1.15rem;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 1rem;
  align-items: start;
}
.about-note {
  padding: 1.25rem;
  background: var(--surface-alt);
}
.about-note ul {
  margin: 0;
  padding-left: 1.15rem;
}
.contact-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  padding: 2rem;
}
.contact-details a {
  text-decoration: none;
  color: var(--accent-dark);
  font-weight: 700;
}
@media (max-width: 960px) {
  .hero-grid,
  .cards,
  .project-grid,
  .project-list,
  .about-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 3rem; }
  .project-feature { grid-row: auto; }
  .hero-image-card img { min-height: 280px; }
}
