/* Base */
:root {
  --bg: #F7F5F0;
  --bg-alt: #EDEAE4;
  --fg: #1C1A17;
  --fg-muted: #6B6659;
  --accent: #B87333;
  --accent-light: #D4956A;
  --border: #D9D4CA;
  --white: #FFFFFF;
  --hero-grid-1: #2C2419;
  --hero-grid-2: #8A7B6A;
  --hero-grid-3: #4A3F33;
  --hero-grid-4: #C4A882;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.8rem, 6vw, 4.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.25rem; font-family: 'DM Sans', sans-serif; font-weight: 600; letter-spacing: 0; }

p { color: var(--fg-muted); }

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}

.section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero */
.hero {
  padding: 6rem 2rem 5rem;
  max-width: 1160px;
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1.5rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

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

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 420px;
}

.hero-right { }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  height: 420px;
}

.hero-img {
  border-radius: 4px;
  overflow: hidden;
}

.hero-img-1 { background: var(--hero-grid-1); }
.hero-img-2 { background: var(--hero-grid-2); }
.hero-img-3 { background: var(--hero-grid-3); }
.hero-img-4 { background: var(--hero-grid-4); }

/* Portfolio */
.portfolio {
  background: var(--fg);
  color: var(--white);
  padding: 6rem 0;
}

.portfolio .section-label { color: var(--accent-light); }

.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  color: var(--white);
  max-width: 500px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.portfolio-card {
  background: #2C2419;
  border-radius: 6px;
  padding: 2rem;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
}

.portfolio-card-large {
  grid-column: span 2;
  min-height: 280px;
}

.portfolio-card-tall {
  grid-row: span 2;
  min-height: 320px;
}

.portfolio-client {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-light);
  display: block;
  margin-bottom: 0.75rem;
}

.portfolio-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* Services */
.services {
  padding: 6rem 0;
}

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

.service-item {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}

.service-icon {
  color: var(--accent);
  margin-bottom: 1rem;
}

.service-item h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.service-item p {
  font-size: 0.88rem;
  line-height: 1.65;
}

/* Process */
.process {
  background: var(--bg-alt);
  padding: 6rem 0;
}

.process h2 {
  margin: 1rem 0 3.5rem;
  max-width: 480px;
}

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

.step {
  position: relative;
  padding-top: 2.5rem;
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2.5rem;
  height: 1px;
  background: var(--accent);
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 0.7rem;
  color: var(--fg-muted);
  display: block;
  margin-bottom: 1rem;
  font-weight: 400;
}

.step h4 {
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step p {
  font-size: 0.85rem;
  line-height: 1.65;
}

/* Closing */
.closing {
  padding: 8rem 0 7rem;
  text-align: center;
}

.closing h2 {
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.closing p {
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
}

.closing-cta {
  display: inline-block;
  margin-bottom: 3rem;
  padding: 0.9rem 2.5rem;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 4px;
  transition: background 0.2s;
}

.closing-cta:hover { background: var(--accent-light); }

.closing-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
}

.closing-dot {
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

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

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

.footer-name {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.25rem;
}

.footer-tagline {
  font-size: 0.78rem;
  color: var(--fg-muted);
}

.footer-meta {
  display: flex;
  gap: 2rem;
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-right { display: none; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-card-large { grid-column: span 2; }
  .portfolio-card-tall { grid-row: span 1; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 600px) {
  h1 { font-size: 2.4rem; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card-large { grid-column: span 1; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-meta { flex-direction: column; gap: 0.5rem; }
}