:root {
  --ivory: #fff8fb;
  --paper: #ffffff;
  --wine: #b00068;
  --berry: #d477ab;
  --ink: #30322f;
  --muted: #686a66;
  --line: #ead9e3;
}

* { box-sizing: border-box; }

html { background: var(--ivory); }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(176, 0, 104, 0.035) 50%, transparent 50.1%),
    var(--ivory);
  font-family: "DM Sans", system-ui, sans-serif;
}

.page-shell {
  min-height: 100svh;
  padding: clamp(22px, 4vw, 56px);
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 24px;
}

.editorial-card {
  width: min(1180px, 100%);
  margin: auto;
  min-height: min(690px, calc(100svh - 150px));
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(420px, 1.28fr);
  background: var(--paper);
  border: 1px solid var(--line);
}

.brand-block {
  position: relative;
  padding: clamp(38px, 6vw, 78px);
  color: var(--ink);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.brand-block::after {
  content: "";
  width: 290px;
  height: 290px;
  position: absolute;
  right: -170px;
  bottom: -120px;
  border: 1px solid rgba(176, 0, 104, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 36px rgba(176, 0, 104, 0.025), 0 0 0 72px rgba(176, 0, 104, 0.018);
}

.brand-kicker,
.eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.brand-kicker { color: var(--wine); }

.brand-logo {
  margin: 80px 0 0;
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}

.content-block {
  padding: clamp(52px, 9vw, 124px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.motif {
  width: 76px;
  height: 24px;
  margin-bottom: 46px;
  border-top: 1px solid var(--berry);
  position: relative;
}

.motif::before,
.motif::after,
.motif span {
  content: "";
  position: absolute;
  top: -4px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--berry);
  background: var(--paper);
  transform: rotate(45deg);
}

.motif::before { left: 0; }
.motif span { left: 34px; }
.motif::after { right: 0; }

.eyebrow { color: var(--wine); }

h1 {
  max-width: 650px;
  margin: 20px 0 26px;
  font-family: "Italiana", Georgia, serif;
  font-size: clamp(3.4rem, 7vw, 6.7rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.intro {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

.sign-off {
  margin: 38px 0 0;
  color: var(--wine);
  font-weight: 600;
}

footer {
  text-align: center;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .page-shell { padding: 14px; gap: 18px; }

  .editorial-card {
    min-height: calc(100svh - 76px);
    grid-template-columns: 1fr;
    grid-template-rows: minmax(205px, 31svh) 1fr;
  }

  .brand-block { padding: 28px; }
  .brand-logo { margin-top: 20px; width: min(100%, 350px); }
  .content-block { padding: 46px 28px 52px; }
  .motif { margin-bottom: 30px; }
  h1 { margin-top: 16px; font-size: clamp(3.1rem, 16vw, 5.2rem); }
  .intro { line-height: 1.65; }
  .sign-off { margin-top: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; }
}
