:root {
  --bg: #f6e9e2;
  --bg-2: #ebd1cd;
  --panel: rgba(255, 250, 246, 0.78);
  --panel-strong: rgba(255, 245, 239, 0.92);
  --line: rgba(150, 94, 94, 0.18);
  --text: #4d2d2e;
  --muted: #7b5b5d;
  --accent: #f2d9ca;
  --accent-2: #d8a1a3;
  --accent-3: #7c1f2f;
  --heading: #7b1e3a;
  --success: #cfe4d1;
  --shine: rgba(255, 255, 255, 0.72);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow: 0 22px 80px rgba(119, 68, 68, 0.14);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 20%),
    radial-gradient(circle at 82% 12%, rgba(216, 161, 163, 0.28), transparent 24%),
    radial-gradient(circle at 18% 82%, rgba(123, 30, 58, 0.08), transparent 22%),
    linear-gradient(180deg, #f8eeea 0%, #f3e1da 45%, #ecd4cf 100%);
  color: var(--text);
  min-height: 100vh;
  position: relative;
}

a { color: inherit; text-decoration: none; }
button, select { font: inherit; }
button { cursor: pointer; border: 0; }

.page-shell {
  width: min(100%, calc(var(--max) + 48px));
  margin: 0 auto;
  padding: 24px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 12px 0 28px;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--heading);
}

.eyebrow,
.section-label,
.sidebar-label,
.status-label,
.draft-label,
.sidebar-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--muted);
}

.topnav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.topnav a {
  color: var(--text);
  font-size: 0.95rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: 24px;
  align-items: flex-start;
}

.glass-card {
  background: linear-gradient(180deg, rgba(255, 252, 249, 0.84), rgba(245, 224, 220, 0.72));
  border: 1px solid rgba(150, 94, 94, 0.18);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-panel,
.feature-card,
.portal-section,
.flow-copy,
.voice-composer {
  padding: clamp(22px, 4vw, 34px);
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--heading);
}

h1 { font-size: clamp(3rem, 8vw, 5.9rem); margin: 14px 0 20px; max-width: 9ch; }
h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); margin: 10px 0 16px; }
h3 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 10px 0 14px; }
h4 { font-size: clamp(1.4rem, 2vw, 1.9rem); margin: 8px 0 10px; }

.lead, p, li, label, small, select { color: var(--muted); line-height: 1.6; }
.lead { max-width: 58ch; font-size: 1.05rem; }

.glass-card,
.value-points li,
.small-panel,
.status-panel,
.content-card,
.unlock-pill,
.mode-toggle,
.chip,
.timeline-item,
.generated-draft,
.sidebar-link,
.sidebar,
.welcome-card,
.portal-main,
.sidebar-block,
.mini-stat,
.timeline-card,
.list-item {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.glass-card::before,
.value-points li::before,
.small-panel::before,
.status-panel::before,
.content-card::before,
.unlock-pill::before,
.mode-toggle::before,
.chip::before,
.timeline-item::before,
.generated-draft::before,
.sidebar-link::before,
.sidebar::before,
.welcome-card::before,
.portal-main::before,
.sidebar-block::before,
.mini-stat::before,
.timeline-card::before,
.list-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.52) 0%, rgba(255,255,255,0.14) 22%, rgba(255,255,255,0) 48%),
    radial-gradient(circle at top right, rgba(255,255,255,0.55), rgba(255,255,255,0) 34%);
  opacity: 0.75;
  pointer-events: none;
  z-index: 0;
}

.glass-card > *,
.value-points li > *,
.small-panel > *,
.status-panel > *,
.content-card > *,
.unlock-pill > *,
.mode-toggle > *,
.chip > *,
.timeline-item > *,
.generated-draft > *,
.sidebar-link > *,
.sidebar > *,
.welcome-card > *,
.portal-main > *,
.sidebar-block > *,
.mini-stat > *,
.timeline-card > *,
.list-item > * {
  position: relative;
  z-index: 1;
}

.cta-row,
.value-points,
.chip-row,
.split-grid,
.section-grid,
.cards-grid,
.admin-grid,
.studio-flow,
.composer-grid,
.release-meta,
.portal-header,
.timeline-head,
.mini-stat,
.welcome-card,
.portal-shell {
  display: grid;
}

.cta-row {
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 12px;
  margin: 26px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 600;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-1px); }
.button-primary {
  background: linear-gradient(135deg, #fff7f2 0%, #f3d4cf 44%, #d7a1a3 100%);
  color: #5a2330;
  box-shadow: 0 14px 30px rgba(160, 99, 107, 0.18);
}
.button-secondary {
  background: rgba(255,255,255,0.56);
  color: var(--text);
  border: 1px solid rgba(150, 94, 94, 0.16);
}
.button-ghost {
  background: rgba(255,255,255,0.28);
  color: var(--heading);
  border: 1px solid rgba(123,30,58,0.18);
}
.button-small { padding: 11px 15px; font-size: 0.95rem; }

.value-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}

.value-points li,
.small-panel,
.status-panel,
.content-card,
.unlock-pill,
.mode-toggle,
.chip,
.timeline-item,
.generated-draft,
.sidebar-link,
.sidebar,
.welcome-card,
.portal-main,
.sidebar-block,
.mini-stat {
  border: 1px solid rgba(150, 94, 94, 0.16);
  background: linear-gradient(180deg, rgba(255, 251, 247, 0.82), rgba(245, 225, 220, 0.66));
  border-radius: var(--radius-lg);
}

.value-points li { padding: 14px 16px; }
.hero-copy,
.hero-panel,
.portal-section {
  position: relative;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -28px;
  top: 44px;
  width: 180px;
  height: 180px;
  border-radius: 46px 46px 46px 120px;
  background: linear-gradient(180deg, rgba(123, 30, 58, 0.76), rgba(214, 155, 153, 0.55));
  box-shadow:
    inset 0 0 0 3px rgba(255, 230, 220, 0.72),
    inset 0 -20px 40px rgba(74, 10, 20, 0.18),
    0 25px 40px rgba(123, 30, 58, 0.14);
  opacity: 0.92;
  pointer-events: none;
}

.hero-panel::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 26px;
  height: 112px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(123, 30, 58, 0.72), rgba(214, 155, 153, 0.5));
  box-shadow:
    inset 0 0 0 3px rgba(255, 233, 224, 0.76),
    inset 0 -18px 34px rgba(74, 10, 20, 0.16);
  opacity: 0.36;
  pointer-events: none;
}

.portal-section::after {
  content: "";
  position: absolute;
  right: 26px;
  top: 18px;
  width: 140px;
  height: 54px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0.46), rgba(255,255,255,0));
  pointer-events: none;
  opacity: 0.9;
}

.hero-panel { gap: 16px; align-content: start; }
.mini-stat { padding: 18px; gap: 6px; }
.mini-stat strong { font-size: 1.05rem; }

.section-grid {
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  margin: 24px 0;
}

.split-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.split-grid ul { margin: 12px 0 0; padding-left: 18px; }
.accent-card { background: linear-gradient(180deg, rgba(167,119,131,0.22), rgba(255,248,244,0.06)); }
.chip-row { grid-auto-flow: column; grid-auto-columns: max-content; gap: 10px; align-items: center; }
.chip-row.compact { align-items: start; }
.chip { padding: 9px 12px; border-radius: 999px; font-size: 0.86rem; color: var(--text); }
.chip.selectable { background: transparent; }
.chip.selectable.active { background: rgba(239,212,178,0.16); border-color: rgba(239,212,178,0.34); }

.portal-section { margin: 24px 0; }
.portal-header {
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
}

.toggle-wrap {
  display: inline-flex;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px;
}

.mode-toggle {
  padding: 10px 16px;
  color: var(--muted);
  background: transparent;
  border-radius: 999px;
}
.mode-toggle.active {
  background: linear-gradient(135deg, rgba(239,212,178,0.20), rgba(217,156,164,0.20));
  color: var(--text);
}

.portal-shell {
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.sidebar {
  padding: 18px;
  gap: 18px;
  position: sticky;
  top: 20px;
}

.sidebar h3 { font-size: 2rem; }
.sidebar-block { padding: 12px; display: grid; gap: 10px; }
.sidebar-link { padding: 12px 14px; color: var(--muted); }
.sidebar-link.active { background: rgba(239,212,178,0.12); color: var(--text); }
.unlock-pill { padding: 12px 14px; font-size: 0.95rem; }
.portal-main { gap: 18px; background: transparent; border: 0; }
.welcome-card {
  grid-template-columns: 1.4fr 0.6fr;
  gap: 14px;
  padding: 18px;
}
.status-panel { padding: 16px; align-content: start; gap: 6px; }
.status-panel strong { font-size: 1.25rem; }

.cards-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.content-card { padding: 18px; }
.content-card.featured { background: linear-gradient(180deg, rgba(255, 247, 241, 0.94), rgba(236, 201, 198, 0.78)); }
.content-card.locked { opacity: 0.9; }
.content-type {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.content-type.paid { background: rgba(123, 30, 58, 0.12); color: #7b1e3a; }
.content-type.free { background: rgba(212, 192, 181, 0.4); color: #6b4f4f; }
.content-type.admin { background: rgba(216, 161, 163, 0.2); color: #8a324b; }
.release-meta { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 16px 0 18px; font-size: 0.9rem; }

.admin-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.small-panel { padding: 16px; }
.small-panel strong { display: block; margin: 8px 0 6px; }

.timeline-card { padding: 18px; border-radius: var(--radius-lg); background: rgba(255,248,244,0.04); border: 1px solid rgba(255,243,235,0.12); }
.timeline-head { grid-template-columns: 1fr auto; gap: 18px; align-items: center; }
.timeline { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-top: 18px; }
.timeline-item { padding: 16px; min-height: 170px; }
.timeline-item strong { display: block; font-size: 1.1rem; margin: 10px 0 8px; color: var(--text); }
.timeline-item span { color: var(--accent); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; }

.studio-flow { grid-template-columns: 0.92fr 1.08fr; gap: 24px; margin: 24px 0 48px; }
.flow-list { margin: 18px 0 0; padding-left: 18px; }
.flow-list li { margin-bottom: 10px; }

.composer-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.draft-badge {
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(239,212,178,0.12);
  color: var(--accent);
  border: 1px solid rgba(239,212,178,0.24);
  font-size: 0.86rem;
}

.composer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label { display: grid; gap: 8px; color: var(--heading); }
select,
input,
textarea {
  width: 100%;
  background: rgba(255,255,255,0.72);
  color: var(--text);
  border: 1px solid rgba(150,94,94,0.18);
  border-radius: 16px;
  padding: 14px 16px;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.generated-draft { margin-top: 18px; padding: 18px; }
.hidden { display: none !important; }

.page-shell-app main {
  display: grid;
  gap: 24px;
}

.linklike {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 0;
  cursor: pointer;
}

.auth-grid,
.admin-grid-forms,
.admin-bottom-grid,
.cards-grid-wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-grid-wide {
  display: grid;
  gap: 18px;
}

.stack-form {
  display: grid;
  gap: 14px;
}

.helper-copy {
  margin-top: 14px;
  font-size: 0.92rem;
}

.list-stack {
  display: grid;
  gap: 12px;
}

.list-item {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,243,235,0.12);
  background: rgba(255,248,244,0.04);
}

.list-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.list-item p {
  margin: 8px 0 0;
}

.payment-shell {
  max-width: 860px;
  margin: 0 auto;
}

.payment-card {
  display: grid;
  gap: 16px;
}

.editorial-home {
  display: grid;
  gap: 0;
  border: 1px solid rgba(126, 74, 76, 0.16);
  background: #f8eee7;
  box-shadow: 0 24px 80px rgba(101, 56, 58, 0.12);
}

.editorial-hero {
  padding: 28px 28px 0;
}

.editorial-topline {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  color: #9b7e74;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
}

.editorial-right {
  text-align: right;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 18px;
  align-items: end;
  padding: 10px 0 0;
}

.editorial-copy {
  padding: 10px 0 24px;
}

.editorial-kicker {
  color: #9a7b71;
  margin-bottom: 14px;
}

.editorial-wordmark {
  font-size: clamp(5.4rem, 15vw, 10rem);
  line-height: 0.82;
  letter-spacing: 0.02em;
  color: #5b2329;
  margin: 0;
  max-width: none;
}

.editorial-subtitle {
  margin: 16px 0 18px;
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  color: #9c7d74;
  text-transform: uppercase;
}

.editorial-lead {
  max-width: 36ch;
  color: #5d4442;
  font-size: 1.04rem;
}

.editorial-signature {
  margin: 22px 0 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-style: italic;
  color: #caa895;
}

.editorial-location {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: #9b7e74;
}

.editorial-cta {
  margin-top: 22px;
}

.editorial-portrait {
  display: grid;
  justify-items: end;
}

.portrait-arch {
  position: relative;
  width: min(100%, 420px);
  min-height: 500px;
  border-radius: 220px 220px 0 0;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.72), rgba(255,255,255,0) 24%),
    linear-gradient(180deg, #6d2a34 0%, #542028 100%);
  overflow: hidden;
}

.portrait-glow {
  position: absolute;
  inset: 26px 26px auto 26px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,0.34), rgba(255,255,255,0) 70%);
}

.portrait-figure,
.contact-portrait-figure {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 72%;
  height: 82%;
  border-radius: 46% 46% 10% 10% / 30% 30% 10% 10%;
  background:
    radial-gradient(circle at 56% 18%, rgba(239, 205, 184, 0.88), rgba(239,205,184,0) 14%),
    radial-gradient(circle at 52% 24%, rgba(72, 33, 28, 0.9), rgba(72,33,28,0) 18%),
    radial-gradient(circle at 50% 38%, rgba(237, 198, 177, 0.98), rgba(237,198,177,0.82) 22%, rgba(237,198,177,0) 24%),
    linear-gradient(180deg, rgba(74, 27, 31, 0.12) 0%, rgba(250, 242, 235, 0) 14%),
    linear-gradient(180deg, #f9f1eb 0%, #ebddd3 44%, #cba99a 100%);
  box-shadow: inset 0 14px 40px rgba(255,255,255,0.26);
}

.portrait-flower {
  position: absolute;
  right: 34px;
  bottom: 82px;
  font-size: 2rem;
  color: rgba(242, 218, 206, 0.88);
}

.featured-strip {
  background: linear-gradient(180deg, #5b2028 0%, #4b171f 100%);
  color: #f2e4dc;
  padding: 14px 28px 26px;
}

.featured-strip-head,
.section-title-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
}

.featured-strip-head {
  margin-bottom: 16px;
}

.featured-strip-head p,
.section-title-line h2,
.section-title-line h3 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.9rem;
  color: inherit;
}

.featured-strip-head span,
.section-title-line span {
  display: block;
  height: 1px;
  background: currentColor;
  opacity: 0.24;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.showcase-card {
  display: grid;
  gap: 12px;
}

.showcase-thumb {
  aspect-ratio: 1.3 / 1;
  border: 1px solid rgba(255,255,255,0.16);
  display: grid;
  place-items: center;
  padding: 20px;
  text-align: center;
}

.showcase-thumb span {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
}

.tone-burgundy {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.16), rgba(255,255,255,0) 36%),
    linear-gradient(180deg, #7a3340 0%, #56222a 100%);
}

.tone-blush {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.26), rgba(255,255,255,0) 34%),
    linear-gradient(180deg, #dcc0b4 0%, #b7897f 100%);
}

.showcase-copy h4,
.showcase-copy p,
.showcase-copy .showcase-meta,
.showcase-copy .button {
  color: #f2e4dc;
}

.showcase-copy h4 {
  font-size: 1.35rem;
}

.showcase-copy p {
  margin: 8px 0 12px;
  min-height: 52px;
}

.showcase-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  color: rgba(242, 228, 220, 0.78);
}

.showcase-card .button-secondary,
.showcase-card .button-ghost,
.showcase-card .button-primary {
  width: auto;
}

.showcase-card .button-ghost {
  color: #f5e6de;
  border-color: rgba(245,230,222,0.32);
  background: rgba(255,255,255,0.08);
}

.editorial-columns {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 28px;
  padding: 28px;
}

.editorial-divider {
  background: linear-gradient(180deg, rgba(112, 66, 68, 0), rgba(112, 66, 68, 0.28), rgba(112, 66, 68, 0));
}

.editorial-column {
  display: grid;
  gap: 18px;
}

.service-row,
.achievement-row {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
}

.service-icon,
.achievement-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(126, 74, 76, 0.22);
  display: grid;
  place-items: center;
  color: #9e7267;
}

.service-row strong,
.achievement-row strong {
  display: block;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  color: #5d2b32;
}

.service-row p,
.achievement-row p {
  margin: 0;
  color: #6d5552;
}

.brand-band {
  padding: 0 28px 28px;
}

.centered {
  margin-bottom: 18px;
}

.brand-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  text-align: center;
  color: #9b7e74;
  letter-spacing: 0.16em;
  font-size: 0.9rem;
}

.contact-band {
  display: grid;
  grid-template-columns: 260px 1fr 0.9fr;
  gap: 28px;
  padding: 24px 28px 28px;
  background: linear-gradient(180deg, #5b2028 0%, #4b171f 100%);
  color: #f3e6df;
}

.contact-portrait-card {
  display: grid;
  align-items: end;
}

.contact-portrait-arch {
  position: relative;
  min-height: 220px;
  border-radius: 160px 160px 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, #74404a 0%, #4e1c24 100%);
}

.contact-portrait-figure {
  width: 64%;
  height: 82%;
}

.contact-main h2,
.contact-quote {
  color: #f3e6df;
}

.contact-main h2 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.contact-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: #f3e6df;
}

.contact-list strong,
.contact-list small {
  display: block;
}

.contact-list small {
  color: rgba(243, 230, 223, 0.76);
}

.contact-quote {
  margin: 0;
  align-self: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  line-height: 1.3;
  border-left: 1px solid rgba(243, 230, 223, 0.18);
  padding-left: 24px;
}

.notice-success {
  border-radius: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(164, 214, 179, 0.32);
  background: rgba(164, 214, 179, 0.12);
  color: #dff5e6;
}

.cta-row form {
  display: inline-flex;
}

@media (max-width: 980px) {
  .hero,
  .section-grid,
  .studio-flow,
  .portal-shell,
  .welcome-card,
  .cards-grid,
  .admin-grid,
  .timeline,
  .composer-grid,
  .split-grid,
  .editorial-grid,
  .featured-grid,
  .editorial-columns,
  .contact-band,
  .brand-row {
    grid-template-columns: 1fr;
  }

  .editorial-divider,
  .contact-quote {
    border-left: 0;
    padding-left: 0;
  }

  .editorial-divider {
    height: 1px;
    width: 100%;
  }

  .portal-header,
  .timeline-head,
  .topbar,
  .composer-head,
  .editorial-topline,
  .featured-strip-head,
  .section-title-line {
    grid-template-columns: 1fr;
    display: grid;
  }

  .topbar { padding-bottom: 18px; }
  .topnav { gap: 12px; }
  .cta-row,
  .chip-row,
  .value-points { grid-auto-flow: row; grid-auto-columns: unset; }
  .sidebar { position: static; }
  .editorial-right,
  .editorial-portrait { text-align: left; justify-items: start; }
  .portrait-arch { width: 100%; min-height: 420px; }
}

@media (max-width: 640px) {
  .page-shell { padding: 18px; }
  h1 { max-width: none; }
  .button { width: 100%; }
  .toggle-wrap { width: 100%; justify-content: space-between; }
  .mode-toggle { flex: 1; }
  .editorial-hero,
  .featured-strip,
  .editorial-columns,
  .brand-band,
  .contact-band { padding-left: 18px; padding-right: 18px; }
  .editorial-wordmark { font-size: clamp(4rem, 22vw, 5.4rem); }
  .editorial-subtitle { letter-spacing: 0.16em; }
  .contact-main h2 { font-size: 2rem; }
}
