:root {
  --ink: #17120d;
  --paper: #f5efe4;
  --panel: #fffaf2;
  --gold: #c59a4a;
  --green: #0f6b4f;
  --charcoal: #29231e;
  --muted: #766b61;
  --line: rgba(23, 18, 13, 0.14);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(197,154,74,0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(197,154,74,0.08) 1px, transparent 1px),
    var(--paper);
  background-size: 52px 52px;
  font-family: Inter, Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
.shell {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 58px);
  background: rgba(245, 239, 228, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand { font-size: 13px; font-weight: 900; letter-spacing: 0.16em; }
nav { display: flex; gap: 18px; color: var(--muted); font-size: 13px; font-weight: 800; }
.top-action, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 900;
}
.top-action, .primary { background: var(--green); color: #fff; }
.ghost { border: 1px solid var(--line); }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.85fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  min-height: calc(100vh - 79px);
  padding: clamp(42px, 7vw, 90px) clamp(18px, 5vw, 70px);
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
h1, h2 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-weight: 800;
  line-height: 0.98;
}
h1 { max-width: 850px; font-size: clamp(48px, 8vw, 106px); }
h2 { font-size: clamp(36px, 5.5vw, 72px); }
.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.phone-card {
  max-width: 500px;
  margin-left: auto;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 34px;
  background: var(--charcoal);
  color: #fff;
  box-shadow: 0 36px 90px rgba(28, 20, 12, 0.3);
}
.phone-bar { width: 96px; height: 6px; margin: 4px auto 16px; border-radius: 100px; background: rgba(255,255,255,0.25); }
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.before-after div { position: relative; overflow: hidden; border-radius: 20px; background: #111; aspect-ratio: 0.75; }
.before-after img { width: 100%; height: 100%; object-fit: cover; display: block; }
.before-after span {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 1;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(0,0,0,0.5);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.status-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(15, 107, 79, 0.25);
}
.status-line small { color: #c8d8d0; }
.studio, .dashboard, .sell { padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 70px); }
.studio {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
}
.panel, .steps article, .admin-window, .sell {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,250,242,0.9);
}
.panel { padding: clamp(24px, 4vw, 42px); }
.panel p:not(.eyebrow), .sell p { color: var(--muted); line-height: 1.65; font-size: 18px; }
.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.steps article { padding: 24px; }
.steps strong { color: var(--gold); font-size: 13px; letter-spacing: 0.16em; }
.steps h3 { margin: 22px 0 8px; font-size: 24px; }
.steps p { color: var(--muted); line-height: 1.5; }
.dashboard { background: #19130f; }
.admin-window {
  max-width: 1180px;
  margin: auto;
  overflow: hidden;
  box-shadow: 0 32px 90px rgba(0,0,0,0.28);
}
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}
.tabs span {
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(23,18,13,0.06);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.tabs .active { background: var(--green); color: #fff; }
.admin-grid {
  display: grid;
  grid-template-columns: 210px 1fr 300px;
  gap: 18px;
  padding: 18px;
}
aside { display: grid; align-content: start; gap: 10px; }
button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  font-weight: 900;
  cursor: default;
}
button.gold { background: var(--gold); color: #17120d; border: 0; }
label { display: block; margin: 12px 0 6px; color: var(--muted); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.input, .sizes span, .publish {
  padding: 14px;
  border-radius: 7px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 800;
}
.input.small { max-width: 170px; }
.sizes { display: flex; flex-wrap: wrap; gap: 8px; }
.sizes span { padding: 10px 12px; }
.publish { margin-top: 16px; color: var(--green); }
.preview-card { padding: 14px; border-radius: 8px; background: #fff; }
.preview-card img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 7px; }
.preview-card h3 { margin-bottom: 8px; }
.preview-card strong { font-size: 22px; }
.sell { max-width: 900px; margin: clamp(54px, 7vw, 92px) auto; text-align: center; }
@media (max-width: 900px) {
  nav { display: none; }
  .hero, .studio, .admin-grid { grid-template-columns: 1fr; }
  .phone-card { margin: 0; }
  .steps { grid-template-columns: 1fr; }
}
