:root {
  --bg: #faf7f2;
  --bg-alt: #f2ede6;
  --fg: #1a1a18;
  --fg-muted: #6b6560;
  --accent: #c9973d;
  --accent-dark: #a87a28;
  --surface: #ffffff;
  --border: #e4ddd4;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

img { display: block; max-width: 100%; }

/* HERO */
.hero {
  padding: 80px 48px 0;
  background: var(--bg);
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 5vw, 80px);
  font-weight: 700;
  line-height: 1.0;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-text h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 440px;
  line-height: 1.65;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 40px;
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--fg);
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* HERO VISUAL — gallery grid */
.hero-visual { position: relative; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-alt);
}
.gallery-item--tall {
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 180px;
}
.gallery-item--tall img { min-height: 380px; }
.gallery-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  color: var(--fg);
  letter-spacing: 0.04em;
}

.hero-bottom-bar {
  max-width: 1200px;
  margin: 48px auto 0;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  display: flex;
  justify-content: center;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 48px;
  background: var(--bg-alt);
}
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.manifesto blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-style: italic;
  color: var(--fg);
  line-height: 1.45;
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
}
.manifesto-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.pillar { text-align: left; }
.pillar-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 20px;
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.pillar p { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }

/* GALLERY SECTION */
.gallery-section {
  padding: 100px 48px;
  background: var(--bg);
}
.gallery-section-inner { max-width: 1200px; margin: 0 auto; }
.gallery-header {
  margin-bottom: 56px;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.gallery-header h2,
.process h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.1;
}
.style-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.style-card {
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.style-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.style-img-wrap { aspect-ratio: 3/4; overflow: hidden; }
.style-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.style-card:hover .style-img-wrap img { transform: scale(1.04); }
.style-card-body { padding: 20px; }
.style-card-body h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}
.style-card-body p { font-size: 13px; color: var(--fg-muted); line-height: 1.5; }

/* PROCESS */
.process {
  padding: 100px 48px;
  background: var(--fg);
  color: white;
}
.process-inner { max-width: 1200px; margin: 0 auto; }
.process .section-eyebrow { color: var(--accent); }
.process h2 { color: white; margin-bottom: 64px; }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 48px;
}
.step {
  flex: 1;
  padding: 0 32px;
}
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: white;
}
.step p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.65; }
.step-connector {
  width: 48px;
  flex-shrink: 0;
  align-self: center;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
  position: relative;
  margin-top: 24px;
}
.step-connector::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid rgba(255,255,255,0.3);
  border-bottom: 1.5px solid rgba(255,255,255,0.3);
  transform: rotate(-45deg);
}
.process-footer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

/* CLOSING */
.closing {
  padding: 100px 48px;
  background: var(--bg);
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.closing-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 24px;
  line-height: 1.15;
}
.closing-content p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.75;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--fg);
  line-height: 1.65;
  margin-bottom: 28px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
.testimonial-author span {
  display: block;
  font-size: 12px;
  color: var(--fg-muted);
}

/* FOOTER */
footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  display: block;
  margin-bottom: 8px;
}
.footer-brand p { font-size: 13px; color: var(--fg-muted); }
.footer-meta p { font-size: 13px; color: var(--fg-muted); }

/* MOBILE */
@media (max-width: 900px) {
  .hero { padding: 48px 24px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--tall { grid-row: span 1; }
  .gallery-item--tall img { min-height: 240px; }
  .hero-stats { gap: 28px; }
  .manifesto { padding: 72px 24px; }
  .manifesto-pillars { grid-template-columns: 1fr; gap: 36px; }
  .gallery-section { padding: 72px 24px; }
  .style-showcase { grid-template-columns: repeat(2, 1fr); }
  .process { padding: 72px 24px; }
  .process-steps { flex-direction: column; gap: 40px; }
  .step-connector { display: none; }
  .step { padding: 0; }
  .closing { padding: 72px 24px; }
  .closing-inner { grid-template-columns: 1fr; gap: 48px; }
  footer { padding: 36px 24px; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
}
@media (max-width: 480px) {
  .style-showcase { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-stats { gap: 20px; }
  .stat-number { font-size: 26px; }
}