:root {
  color-scheme: light;
  --bg: #f8fbff;
  --surface: #ffffff;
  --surface-strong: #edf6ff;
  --text: #1b1c3a;
  --muted: #5b5f7a;
  --accent: #1d8f5d;
  --accent-soft: #dcf6e7;
  --border: rgba(27, 28, 58, 0.12);
  --shadow: 0 24px 80px rgba(27, 28, 58, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, rgba(29, 143, 93, 0.08), transparent 28%),
    linear-gradient(180deg, #f3fbff 0%, #fcfff8 100%);
  color: var(--text);
  line-height: 1.6;
}

body.home-page {
  background: radial-gradient(circle at top left, rgba(39, 129, 188, 0.18), transparent 28%),
    linear-gradient(180deg, #e8f7fd 0%, #fcfff8 100%);
}

body.about-page {
  background: radial-gradient(circle at top right, rgba(159, 77, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #fef7ff 0%, #fffdfb 100%);
}

body.gallery-page {
  background: radial-gradient(circle at top left, rgba(243, 135, 168, 0.16), transparent 25%),
    linear-gradient(180deg, #fff9f5 0%, #f8fbff 100%);
}

body.fashion-page {
  background: radial-gradient(circle at top right, rgba(255, 175, 93, 0.18), transparent 25%),
    linear-gradient(180deg, #fff9f1 0%, #fcfff8 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
.button {
  border: none;
  cursor: pointer;
  font: inherit;
}

.page-wrapper {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(27, 28, 58, 0.08);
  backdrop-filter: blur(12px);
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.nav-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: var(--accent-soft);
  color: var(--accent);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 2.5rem;
  min-height: calc(100vh - 82px);
  padding: 3rem 1.5rem 2rem;
  background: radial-gradient(circle at top left, rgba(29, 143, 93, 0.18), transparent 32%),
    radial-gradient(circle at bottom right, rgba(31, 100, 210, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.85));
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(29, 143, 93, 0.12);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 205, 86, 0.18), transparent 28%),
    radial-gradient(circle at 80% 80%, rgba(29, 143, 93, 0.14), transparent 25%);
  pointer-events: none;
}

.hero-copy,
.hero-media {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(29, 143, 93, 0.16);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 0.95;
}

.hero-copy p {
  margin: 1.5rem 0;
  font-size: 1.05rem;
  max-width: 44ch;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #1d8f5d;
  color: white;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 18px 40px rgba(29, 143, 93, 0.18);
}

.hero-media {
  min-height: 420px;
  display: grid;
  place-items: center;
}

.hero-media img {
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(27, 28, 58, 0.08);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-page .hero {
  background: linear-gradient(135deg, rgba(237, 237, 255, 0.95), rgba(255, 246, 255, 0.82));
  border-color: rgba(159, 77, 255, 0.18);
}

.about-page .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(159, 77, 255, 0.2), transparent 24%),
    radial-gradient(circle at 80% 75%, rgba(249, 168, 212, 0.12), transparent 22%);
  pointer-events: none;
}

.about-page .eyebrow {
  background: rgba(159, 77, 255, 0.16);
  color: #6f2fa0;
}

.about-page .section-card,
.about-page .feature-card {
  border-color: rgba(159, 77, 255, 0.14);
}

.gallery-page .section-card {
  border-color: rgba(243, 135, 168, 0.14);
  background: rgba(255, 250, 250, 0.96);
}

.gallery-page .gallery-card {
  border-color: rgba(243, 135, 168, 0.1);
  background: rgba(255, 255, 255, 0.95);
}

.fashion-page .section-card {
  border-color: rgba(255, 175, 93, 0.18);
  background: rgba(255, 250, 240, 0.96);
}

.fashion-page .fashion-card {
  border-color: rgba(255, 175, 93, 0.12);
  background: rgba(255, 255, 255, 0.95);
}

.section-card,
.feature-card,
.gallery-card,
.profile-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.section-card h2,
.feature-card h2,
.profile-card h2 {
  margin-top: 0;
  color: #13253d;
}

.section-card p,
.feature-card p,
.profile-card p {
  color: var(--muted);
}

.intro,
.page-section {
  padding: 3rem 1.5rem;
}

.profile-grid,
.info-grid,
.gallery-grid,
.fashion-grid {
  display: grid;
  gap: 1.5rem;
}

.profile-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin: 0 1.5rem 2rem;
}

.feature-grid,
.info-grid,
.gallery-grid,
.fashion-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.profile-card {
  text-align: center;
  padding-top: 1rem;
}

.profile-card img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 26px;
  margin: 0 auto 1.3rem;
}

.profile-card .profile-title {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.35rem;
  color: #15213d;
}

.profile-card small {
  display: block;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1rem;
}

.profile-meta {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.profile-meta p {
  margin: 0;
}

.story-section {
  padding: 0 1.5rem 3rem;
}

.story-section .section-card {
  max-width: 940px;
  margin: 0 auto;
}

.site-footer {
  padding: 2rem 1.5rem 3rem;
  text-align: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.88);
  border-top: 1px solid rgba(29, 143, 93, 0.12);
}

.gallery-grid {
  padding: 0;
  list-style: none;
  margin: 0;
}

.gallery-card img {
  border-radius: 20px;
  object-fit: cover;
  height: 220px;
}

.gallery-card h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.1rem;
}

.fashion-grid {
  margin: 0 1.5rem 3rem;
}

.fashion-card {
  padding: 1.5rem;
  text-align: center;
}

.fashion-card img {
  border-radius: 18px;
  margin-bottom: 1.1rem;
}

.fashion-card h3 {
  margin-bottom: 0.5rem;
}

.fashion-card p {
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-media,
  .hero-copy {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    gap: 1.5rem;
  }

  .hero-copy h1 {
    font-size: 2.6rem;
  }
}
