:root {
  color-scheme: light;
  --bg: #f7f4ef;
  --paper: #fffdf9;
  --ink: #201c18;
  --muted: #70675e;
  --line: #ddd4ca;
  --accent: #8d5845;
  --soft: #e9dfd2;
  --sage: #77826c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

.page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 64px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 32px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumb strong {
  color: var(--ink);
  font-weight: 700;
}

.divider {
  color: var(--accent);
}

.profile {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding-bottom: 54px;
  border-bottom: 1px solid var(--line);
}

.portrait,
.creation-card {
  margin: 0;
}

.portrait-image {
  display: block;
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--soft);
}

.portrait-placeholder {
  aspect-ratio: 4 / 5;
  width: 100%;
  background:
    linear-gradient(135deg, rgba(119, 130, 108, 0.28), rgba(141, 88, 69, 0.16)),
    var(--soft);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.portrait-placeholder::before {
  content: "Lena";
  color: rgba(32, 28, 24, 0.55);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 7vw, 74px);
}

figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.bio {
  padding-top: 8px;
}

.kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}

.bio p:not(.kicker) {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.brand-mark {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.brand-mark img {
  display: block;
  width: min(220px, 58vw);
  height: auto;
}

.creations {
  padding-top: 46px;
}

.section-heading {
  margin-bottom: 24px;
}

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

.creation-card figcaption {
  margin-top: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.creation-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--paper);
}

.image-placeholder {
  aspect-ratio: 4 / 5;
  min-height: 220px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(141, 88, 69, 0.08), rgba(119, 130, 108, 0.18)),
    var(--paper);
  color: rgba(32, 28, 24, 0.54);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .page {
    width: min(100% - 24px, 680px);
    padding-top: 24px;
  }

  .profile {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-bottom: 42px;
  }

  .bio p:not(.kicker) {
    font-size: 16px;
    line-height: 1.6;
  }

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

  .image-placeholder {
    min-height: 0;
  }
}

@media (max-width: 460px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .breadcrumb {
    font-size: 12px;
  }
}
