:root {
  --bg: #f2eef8;
  --panel: rgba(255, 255, 255, 0.84);
  --text: #191627;
  --muted: #6d667f;
  --line: rgba(25, 22, 39, 0.1);
  --accent: #6648b7;
  --accent-soft: #e4dcfb;
  --shell: min(1180px, calc(100vw - 32px));
  --radius: 28px;
  --shadow: 0 24px 80px rgba(68, 48, 108, 0.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Manrope, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(102, 72, 183, 0.12), transparent 24%),
    radial-gradient(circle at 84% 12%, rgba(228, 220, 251, 0.9), transparent 24%),
    linear-gradient(180deg, #fffdfd 0%, var(--bg) 48%, #ece5fb 100%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.shell { width: var(--shell); margin: 0 auto; }
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
}
.brand {
  max-width: 420px;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.35;
}
.nav { display: flex; gap: 22px; color: var(--muted); }
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.hero {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 18px;
  align-items: stretch;
}
.hero-image {
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
  min-height: 640px;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-copy {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .74rem;
  font-weight: 700;
  color: var(--accent);
}
h1, h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -.04em;
}
h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 6.8vw, 5.8rem);
  line-height: .94;
}
h2 {
  max-width: 12ch;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: .96;
}
h3 { margin: 0; font-size: 1.18rem; }
.lead, .editorial-card p, .contact p { color: var(--muted); line-height: 1.85; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .95rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
}
.primary { background: #191627; color: #fff; }
.ghost { background: rgba(255,255,255,.5); border-color: var(--line); }
.section { margin-top: 24px; }
.studio {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 18px;
}
.studio-copy { padding: 30px; }
.studio-aside {
  overflow: hidden;
  min-height: 360px;
}
.studio-aside img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.editorial {
  display: grid;
  grid-template-columns: .9fr .9fr 1.2fr;
  gap: 18px;
}
.editorial-card {
  min-height: 250px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.editorial-card.accent {
  background: linear-gradient(180deg, #f7f4ff 0%, #e8e0fd 100%);
}
.no {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: .82rem;
  font-weight: 800;
  line-height: 40px;
  text-align: center;
}
.image-card {
  padding: 0;
  overflow: hidden;
}
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 18px;
  padding: 28px;
}
.form { display: grid; gap: 14px; }
.row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 8px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  color: var(--text);
  border-radius: 16px;
  padding: .95rem 1rem;
  font: inherit;
}
textarea { resize: vertical; }
.footer {
  padding: 18px 0 30px;
  text-align: center;
  color: var(--muted);
  font-size: .92rem;
}
.footer p { margin: 0; }
.reveal { opacity: 0; transform: translateY(14px); transition: .42s ease; }
.reveal.in-view { opacity: 1; transform: none; }
@media (max-width: 980px) {
  .topbar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero, .studio, .editorial, .contact, .row.two { grid-template-columns: 1fr; }
  .hero-image { min-height: 360px; }
}
