:root {
  --plum: #5B2A4E;
  --plum-dark: #3E1B36;
  --rose: #C2567A;
  --blush: #F3E6EC;
  --cream: #FBF7F4;
  --ink: #2B1F28;
  --muted: #8A7480;

  --maxw: 700px;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(43, 31, 40, 0.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.15;
}

img { max-width: 100%; }

a { color: var(--rose); }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(91, 42, 78, 0.92);
  backdrop-filter: saturate(150%) blur(8px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 6px 20px rgba(43,31,40,0.18);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  letter-spacing: 0.2px;
}
.nav-links a {
  color: var(--blush);
  text-decoration: none;
  margin-left: 26px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: #fff; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: var(--plum-dark) url("images/hero.jpg") center/cover no-repeat;
  padding: 40px 20px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% 20%, rgba(91,42,78,0.35), transparent 60%),
    linear-gradient(180deg, rgba(43,31,40,0.55), rgba(62,27,54,0.92));
}
.hero-content {
  position: relative;
  max-width: 820px;
  animation: rise 0.8s ease both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.78rem;
  color: var(--rose);
  font-weight: 600;
  margin-bottom: 14px;
}
.hero h1 { font-size: clamp(2.8rem, 7vw, 5rem); font-weight: 800; }
.subtitle {
  font-size: clamp(1.1rem, 2.6vw, 1.6rem);
  font-style: italic;
  margin-top: 16px;
  color: var(--blush);
}
.byline {
  margin-top: 22px;
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.82);
}
.hero-cta {
  display: inline-block;
  margin-top: 34px;
  padding: 12px 26px;
  border: 1.5px solid rgba(255,255,255,0.55);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.hero-cta:hover { background: var(--rose); border-color: var(--rose); }

/* ---------- SECTIONS ---------- */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 72px 24px;
}
.section--wide { max-width: 1000px; }

.kicker {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--rose);
  margin-bottom: 10px;
}
.section h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--plum);
  margin-bottom: 26px;
  position: relative;
  padding-bottom: 14px;
}
.section h2::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 64px; height: 3px;
  background: var(--rose);
  border-radius: 3px;
}
.section h3 {
  font-size: 1.45rem;
  color: var(--plum);
  margin: 40px 0 12px;
}
.section p {
  font-size: 1.15rem;
  margin-bottom: 18px;
}

.closing {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--plum);
  border-top: 2px solid var(--blush);
  padding-top: 24px;
  margin-top: 28px;
}

.placeholder {
  color: var(--muted);
  font-style: italic;
  background: var(--blush);
  border-left: 3px solid var(--rose);
  padding: 14px 18px;
  border-radius: 6px;
}

.lede {
  font-size: 1.2rem;
  color: var(--ink);
  max-width: 720px;
  margin-bottom: 36px;
}

/* ---------- CORE TEAM ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.member {
  background: #fff;
  border: 1px solid var(--blush);
  border-radius: var(--radius);
  padding: 28px 24px 26px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.member:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(43,31,40,0.16);
}
.avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  margin: 0 auto 16px;
  border: 4px solid var(--rose);
  background: var(--blush);
}
.member h3 {
  font-size: 1.2rem;
  color: var(--plum);
  margin-bottom: 12px;
  line-height: 1.25;
}
.member p {
  font-size: 0.98rem;
  color: var(--ink);
  margin: 0;
  line-height: 1.6;
}

/* ---------- ACHIEVEMENTS ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.stat {
  background: linear-gradient(135deg, var(--plum), var(--plum-dark));
  color: #fff;
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--rose);
}
.stat-period {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rose);
  margin-bottom: 12px;
}
.stat-title {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  line-height: 1.3;
  margin: 0;
}

/* ---------- PULL QUOTE ---------- */
.pullquote {
  margin: 40px 0;
  padding: 32px 34px;
  background: linear-gradient(135deg, var(--plum), var(--plum-dark));
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}
.pullquote::before {
  content: "\201C";
  font-family: "Playfair Display", serif;
  position: absolute;
  top: 6px; left: 18px;
  font-size: 4.5rem;
  color: rgba(255,255,255,0.18);
  line-height: 1;
}
.pullquote p {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  line-height: 1.45;
  margin: 0;
  position: relative;
}
.pullquote cite {
  display: block;
  margin-top: 16px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-style: normal;
  color: var(--blush);
}
.pullquote cite::before { content: "— "; }

/* ---------- GALLERY ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.grid figure {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.grid figure:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(43,31,40,0.16);
}
.grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  background: var(--blush);
}
.grid figcaption {
  padding: 14px 16px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ---------- CREDITS ---------- */
.credits { list-style: none; }
.credits li {
  padding: 12px 0;
  border-bottom: 1px solid var(--blush);
  font-size: 1.02rem;
}
.credits li:last-child { border-bottom: none; }
.credits strong { color: var(--plum); }

/* ---------- FOOTER ---------- */
.footer {
  background: linear-gradient(135deg, var(--plum), var(--plum-dark));
  color: var(--blush);
  text-align: center;
  padding: 32px 24px;
  font-size: 0.9rem;
  margin-top: 40px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 640px) {
  .section { padding: 56px 22px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--plum);
    flex-direction: column;
    padding: 12px 24px 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { margin: 10px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-content { animation: none; }
  .grid figure { transition: none; }
}
