* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Playfair Display', serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  background-color: #111;
  background-image: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url('../img/background.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  color: white;
}

body.menu-open {
  overflow: hidden;
}

a {
  transition: color 0.3s ease, opacity 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

img {
  max-width: 100%;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  z-index: 1000;
  border-bottom: 0.2px solid rgba(0, 0, 0, 0.9);
}

.logo a,
.footer-logo a {
  display: inline-block;
}

.logo img {
  height: 40px;
  display: block;
}

nav {
  display: flex;
  gap: 40px;
  margin-left: auto;
}

nav a {
  text-decoration: none;
  color: black;
  font-size: 16px;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: black;
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a:focus-visible::after {
  width: 100%;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  background: transparent;
  border: 0;
  padding: 4px;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: black;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* MOBILE MENU */
.menu-mobile {
  position: fixed;
  inset: 0;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: 999;
}

.menu-mobile.active {
  transform: translateY(0);
}

.menu-mobile a {
  font-size: 30px;
  text-decoration: none;
  color: black;
}

/* HERO */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 80px;
  margin-top: 0;
}

.hero-text {
  max-width: 900px;
  text-align: center;
}

.hero-text h1 {
  font-size: clamp(48px, 9vw, 80px);
  line-height: 1.12;
}

/* CONTACT */
.contact-info {
  background: #f5f5f5;
  color: #333;
  padding: 70px 20px;
  text-align: center;
  margin-bottom: 14px;
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
}

.email {
  font-size: 18px;
  line-height: 1.6;
}

.email a {
  color: #c42d4b;
  text-decoration: none;
}

/* FOOTER */
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 60px 20px 40px;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer-logo img {
  max-width: 140px;
  margin-bottom: 20px;
}

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

/* BIO PAGE */
.bio {
  padding: 160px 20px 100px;
  background: white;
  color: black;
}

.bio-container {
  max-width: 700px;
  margin: 0 auto;
}

.bio h1 {
  font-size: 48px;
  margin-bottom: 40px;
}

.bio h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.bio p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.bio ul {
  padding-left: 20px;
}

.bio li {
  margin-bottom: 10px;
}

/* ===== BIO EXPANDED PAGE ===== */
.bio-hero-wide {
  position: relative;
  min-height: 92vh;
  background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.45)), url('../img/bio-hero.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 30px 80px;
}

.bio-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.18));
  pointer-events: none;
}

.bio-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.bio-kicker,
.section-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.bio-hero-wide h1 {
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.1;
  margin-bottom: 16px;
  color: white;
}

.bio-subtitle {
  font-size: 17px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}

.bio-expanded {
  background: white;
  color: black;
}

.bio-intro-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 110px 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 90px;
  align-items: center;
}

.bio-intro-text p,
.bio-two-columns p,
.bio-feature-text p,
.bio-cta-panel p {
  font-size: 18px;
  line-height: 1.85;
  color: #222;
  margin-bottom: 22px;
}

.bio-intro-image,
.bio-feature-image {
  display: flex;
  justify-content: center;
}

.bio-intro-image img,
.bio-feature-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.bio-intro-image img {
  max-width: 520px;
  aspect-ratio: 4 / 5;
  object-position: center top;
}

.bio-quote-band {
  background: #111;
  color: white;
  padding: 100px 30px;
  text-align: center;
}

.bio-quote-band blockquote {
  max-width: 900px;
  margin: 0 auto;
  font-size: 34px;
  line-height: 1.4;
  font-style: italic;
}

.bio-two-columns {
  max-width: 1280px;
  margin: 0 auto;
  padding: 110px 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
  background: white;
}

.bio-two-columns h2,
.bio-feature-text h2,
.bio-cta-panel h2 {
  font-size: 34px;
  margin-bottom: 20px;
  color: #111;
}

.bio-feature-split {
  background: #f7f7f7;
  padding: 110px 40px;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.bio-cta-panel {
  background: #f3f3f3;
  color: #111;
  padding: 120px 30px;
  text-align: center;
}

.bio-cta-panel > div {
  max-width: 820px;
  margin: 0 auto 22px;
}

.bio-cta-panel h2,
.bio-cta-panel .section-label,
.bio-cta-panel p {
  color: #111;
}

.bio-cta-button {
  display: inline-block;
  margin-top: 12px;
  padding: 14px 34px;
  border: 1px solid #111;
  color: #111;
  background: transparent;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.bio-cta-button:hover {
  background: #111;
  color: #fff;
}

/* ACCESSIBILITY */
nav a:focus-visible,
.menu-mobile a:focus-visible,
.bio-cta-button:focus-visible,
.email a:focus-visible,
.hamburger:focus-visible {
  outline: 2px solid #c42d4b;
  outline-offset: 4px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .bio-intro-grid,
  .bio-two-columns,
  .bio-feature-split {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .bio-intro-grid,
  .bio-two-columns,
  .bio-feature-split {
    padding: 90px 30px;
  }

  .bio-intro-grid {
    max-width: 820px;
  }

  .bio-intro-image {
    order: -1;
  }

  .bio-intro-image img {
    max-width: 560px;
    aspect-ratio: 4 / 4.8;
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  header {
    padding: 20px;
  }

  .menu-mobile a {
    font-size: 26px;
  }

  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 120px 20px 70px;
  }

  .bio-hero-wide {
    min-height: 68vh;
    padding: 120px 20px 56px;
  }

  .bio-hero-wide h1 {
    font-size: clamp(34px, 9vw, 42px);
    margin-bottom: 0;
  }

  .bio-intro-grid,
  .bio-two-columns,
  .bio-feature-split,
  .bio-cta-panel {
    padding: 56px 20px;
  }

  .bio-intro-grid {
    gap: 34px;
  }

  .bio-intro-text p,
  .bio-two-columns p,
  .bio-feature-text p,
  .bio-cta-panel p,
  .email {
    font-size: 17px;
    line-height: 1.75;
  }

  .bio-quote-band {
    padding: 70px 20px;
  }

  .bio-quote-band blockquote {
    font-size: 26px;
  }

  .bio-two-columns h2,
  .bio-feature-text h2,
  .bio-cta-panel h2 {
    font-size: 28px;
  }

  .bio-intro-image img {
    max-width: 100%;
  }
}


@media (max-width: 768px) {
  body {
    background-attachment: scroll;
    -webkit-overflow-scrolling: touch;
  }

  .hero {
    justify-content: center;
  }
}



@media (max-width: 768px) {
  .bio-intro-image img,
  .bio-feature-image img {
    max-width: 100%;
    aspect-ratio: auto;
  }

  .bio-quote-band blockquote br {
    display: none;
  }
}

/* ===== NEWS PAGE (SCOPED, NO CONFLICTS) ===== */
body.news-page {
  background: #ffffff;
  background-image: none;
  color: #111111;
}

.news-page .news-hero {
  padding: 190px 24px 80px;
  background: #ffffff;
  color: #111111;
  text-align: center;
}

.news-page .news-hero-inner {
  max-width: 860px;
  margin: 0 auto;
}

.news-page .news-hero h1 {
  font-size: clamp(56px, 9vw, 110px);
  line-height: 1;
  color: #111111;
  margin-bottom: 18px;
}

.news-page .news-hero .section-label {
  color: rgba(17, 17, 17, 0.56);
}

.news-page .news-hero-text {
  max-width: 640px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(17,17,17,0.78);
}

.news-page .news-main {
  background: #ffffff;
  color: #111111;
  padding: 0 24px 120px;
}

.news-page .news-featured,
.news-page .news-grid-section,
.news-page .news-cta-strip {
  max-width: 1280px;
  margin: 0 auto;
}

.news-page .news-featured {
  margin-bottom: 90px;
}

.news-page .news-feature-card {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 0.95fr);
  background: #f6f4f1;
  border: 1px solid rgba(17,17,17,0.08);
  overflow: hidden;
  min-height: 520px;
}

.news-page .news-feature-media,
.news-page .news-card-media {
  position: relative;
}

.news-page .news-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ece7df, #d9d0c5);
  color: rgba(17,17,17,0.55);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.news-page .news-feature-content {
  padding: 54px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-page .news-grid-header {
  margin-bottom: 34px;
  text-align: center;
}

.news-page .news-grid-header .section-label,
.news-page .news-meta {
  color: rgba(17,17,17,0.56);
}

.news-page .news-grid-header h2 {
  font-size: clamp(34px, 4vw, 54px);
  color: #111111;
}

.news-page .news-meta {
  margin-bottom: 16px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.news-page .news-feature-content h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  margin-bottom: 20px;
  color: #111111;
}

.news-page .news-feature-content p,
.news-page .news-card-body p,
.news-page .news-cta-strip p {
  font-size: 18px;
  line-height: 1.85;
  color: #222222;
}

.news-page .news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.news-page .news-card {
  background: #ffffff;
  border: 1px solid rgba(17,17,17,0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.news-page .news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.08);
  border-color: rgba(17,17,17,0.14);
}

.news-page .news-card-media {
  aspect-ratio: 4 / 3;
}

.news-page .news-card-body {
  padding: 28px 24px 30px;
}

.news-page .news-card-body h3 {
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 14px;
  color: #111111;
}

.news-page .news-read-more {
  display: inline-block;
  margin-top: 18px;
  text-decoration: none;
  color: #111111;
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  border-bottom: 1px solid #111111;
  padding-bottom: 4px;
}

.news-page .news-cta-strip {
  margin-top: 90px;
  padding: 70px 24px 0;
  text-align: center;
  border-top: 1px solid rgba(17,17,17,0.1);
}

.news-page .news-cta-strip > div {
  max-width: 760px;
  margin: 0 auto;
}

.news-page .news-cta-strip h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  margin-bottom: 18px;
  color: #111111;
}

.news-page .news-cta-strip .bio-cta-button {
  margin-top: 10px;
}

@media (max-width: 1100px) {
  .news-page .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-page .news-feature-card {
    grid-template-columns: 1fr;
  }

  .news-page .news-feature-media .news-image-placeholder {
    min-height: 360px;
  }
}

@media (max-width: 768px) {
  .news-page .news-hero {
    padding: 150px 20px 60px;
  }

  .news-page .news-main {
    padding: 0 20px 90px;
  }

  .news-page .news-featured {
    margin-bottom: 70px;
  }

  .news-page .news-feature-content {
    padding: 34px 24px 38px;
  }

  .news-page .news-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .news-page .news-card-body h3 {
    font-size: 24px;
  }

  .news-page .news-feature-content p,
  .news-page .news-card-body p,
  .news-page .news-cta-strip p,
  .news-page .news-hero-text {
    font-size: 17px;
    line-height: 1.75;
  }

  .news-page .news-cta-strip {
    margin-top: 70px;
    padding: 56px 18px 0;
  }
}
