:root {
  --bg: #f5f0eb;
  --bg-alt: #1a1a1a;
  --fg: #1a1a1a;
  --fg-alt: #f5f0eb;
  --accent: #c85c2d;
  --accent-light: #e8704a;
  --muted: #7a6f68;
  --border: #e0d8d0;
  --card-bg: #ffffff;
}

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

html { scroll-behavior: smooth; }

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

/* ── Navigation ── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--border);
}

.nav__brand {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.nav__accent { color: var(--accent); }

.nav__tagline {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 88vh;
}

.hero__content {
  padding: 5rem 4rem 5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero__headline {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

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

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

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.hero__image {
  position: relative;
  overflow: hidden;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__image-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  background: rgba(0,0,0,0.5);
  padding: 0.4rem 0.8rem;
  border-radius: 0.25rem;
  backdrop-filter: blur(4px);
}

/* ── Stats ── */
.stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 3rem 3rem;
  background: var(--bg-alt);
  color: var(--fg-alt);
  gap: 2rem;
}

.stats__item { text-align: center; }

.stats__number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 0.4rem;
  color: var(--fg-alt);
}

.stats__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,235,0.5);
}

.stats__divider {
  width: 1px;
  height: 48px;
  background: rgba(245,240,235,0.15);
}

/* ── Manifesto ── */
.manifesto {
  padding: 5rem 3rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.manifesto__quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--fg);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.manifesto__quote::before {
  content: '\201C';
  font-size: 8rem;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: -2rem;
  left: -1rem;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.manifesto__attr {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ── Work ── */
.work {
  padding: 5rem 3rem;
  background: #fff8f0;
}

.work__heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: var(--fg);
}

.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.work__card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.work__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.work__card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.work__card-body {
  padding: 1.25rem 1.5rem;
}

.work__card-body h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--fg);
}

.work__card-body p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.work__meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
}

/* ── Closing ── */
.closing {
  background: var(--fg);
  color: var(--fg-alt);
  padding: 6rem 3rem;
  text-align: center;
}

.closing__inner { max-width: 600px; margin: 0 auto; }

.closing__headline {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1.25rem;
  color: var(--fg-alt);
  line-height: 1.1;
}

.closing__body {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245,240,235,0.65);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.closing__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.closing__phone {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg-alt);
  text-decoration: none;
}

.closing__phone:hover { color: var(--accent); }

.closing__sep {
  color: rgba(245,240,235,0.3);
  font-size: 0.9rem;
}

.closing__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.closing__link:hover { color: var(--accent-light); }

/* ── Footer ── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer__brand {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 0.25rem;
}

.footer__sub {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--muted);
}

.footer__right { text-align: right; }

.footer__detail {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav { padding: 1.25rem 1.5rem; }
  .nav__tagline { display: none; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__content { padding: 3rem 1.5rem; }
  .hero__headline { font-size: 2.8rem; }
  .hero__image { height: 50vw; }

  .stats { flex-wrap: wrap; padding: 2rem 1.5rem; gap: 1.5rem; }
  .stats__divider { display: none; }
  .stats__item { flex: 1 1 40%; }

  .manifesto { padding: 3rem 1.5rem; }

  .work { padding: 3rem 1.5rem; }
  .work__grid { grid-template-columns: 1fr; }

  .closing { padding: 4rem 1.5rem; }

  .footer { flex-direction: column; align-items: flex-start; padding: 2rem 1.5rem; }
  .footer__right { text-align: left; }
}

@media (max-width: 480px) {
  .stats__number { font-size: 2.2rem; }
  .hero__headline { font-size: 2.2rem; }
}
