:root {
  color-scheme: light;
  --bg: #f8f4ef;
  --surface: #ffffff;
  --surface-soft: #faf6f1;
  --text: #1e1b18;
  --muted: #6d6a66;
  --accent: #b65e4a;
  --accent-soft: #f7e4df;
  --border: #e4ddd6;
  --shadow: 0 18px 45px rgba(36, 28, 20, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
a {
  font: inherit;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(228, 221, 214, 0.9);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
}

.brand {
  text-decoration: none;
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--accent);
}

.page-hero {
  padding: 84px 0 40px;
  background: linear-gradient(180deg, rgba(246, 237, 231, 0.92) 0%, rgba(248, 244, 239, 0.98) 100%);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.8rem;
  color: var(--accent);
}

.page-hero h1 {
  margin: 0 0 24px;
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  line-height: 1.02;
}

.intro {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.model-album {
  padding: 32px 0 64px;
}

.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}

.section-meta {
  margin: 0 0 8px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.section-header h2 {
  margin: 0;
  font-size: 2.1rem;
}

.section-note {
  margin: 2px 0 0;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.8;
}

.model-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.profile-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.profile-media {
  min-height: 0;
  aspect-ratio: 4 / 3;
  background-color: #f3ece8;
  background-size: cover;
  background-position: center;
}

.profile-copy {
  padding: 26px;
  display: grid;
  gap: 18px;
}

.profile-copy h3 {
  margin: 0;
  font-size: 1.35rem;
}

.profile-description {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.profile-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  color: var(--accent);
  font-weight: 600;
}

.profile-meta li {
  padding: 8px 12px;
  background: var(--accent-soft);
  border-radius: 999px;
}

.site-footer {
  background: var(--surface-soft);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 32px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--accent);
}

@media (max-width: 840px) {
  .section-header {
    flex-direction: column;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    gap: 16px;
  }
}
