:root {
      --black: #4A3728;
      --charcoal: #FDF8F3;
      --dark: #F5EDE4;
      --mid: #E8DDD3;
      --muted: #7A6455;
      --silver: #6B5B4E;
      --light: #4A3728;
      --offwhite: #FDF8F3;
      --white: #4A3728;
      --gold: #D4856A;
      --gold-light: #E8A992;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Montserrat', sans-serif;
      background: #FDF8F3;
      color: var(--light);
      line-height: 1.7; font-weight: 300;
      -webkit-font-smoothing: antialiased;
    }

    /* NAV */
    nav {
      position: fixed; top: 0; width: 100%; z-index: 100;
      background: rgba(253,248,243,0.92);
      backdrop-filter: blur(20px);
      padding: 16px 50px;
      display: flex; align-items: center; justify-content: space-between;
      border-bottom: 1px solid rgba(74,55,40,0.08);
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem; font-weight: 500; letter-spacing: 1px;
      color: #4A3728; text-decoration: none;
    }
    .nav-links { display: flex; align-items: center; gap: 32px; }
    .nav-links a {
      text-decoration: none; color: var(--silver);
      font-size: 0.72rem; font-weight: 500; letter-spacing: 2px;
      text-transform: uppercase; transition: color 0.3s;
    }
    .nav-links a:hover { color: var(--gold); }
    .lang-toggle { display: flex; gap: 4px; margin-left: 16px; }
    .lang-btn {
      padding: 4px 14px; border-radius: 2px;
      border: 1px solid var(--mid);
      background: transparent; color: var(--silver); cursor: pointer;
      font-size: 0.7rem; font-family: 'Montserrat', sans-serif;
      font-weight: 500; letter-spacing: 1px; transition: all 0.3s;
    }
    .lang-btn.active { background: var(--gold); color: #fff; border-color: var(--gold); }

    /* HAMBURGER */
    .hamburger {
      display: none; flex-direction: column; justify-content: center;
      gap: 5px; width: 28px; height: 28px;
      background: none; border: none; cursor: pointer; padding: 0; z-index: 101;
    }
    .hamburger span {
      display: block; width: 100%; height: 1.5px;
      background: var(--light); transition: transform 0.3s, opacity 0.3s;
      transform-origin: center;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* HERO */
    .hero {
      height: 100vh; position: relative; overflow: hidden;
      display: flex; align-items: flex-end;
      background: #5C4A3A;
    }
    .hero-slide {
      position: absolute; inset: 0;
      opacity: 0; transition: opacity 1.2s ease-in-out;
      will-change: opacity;
    }
    .hero-slide.active { opacity: 1; }
    .hero-img, .hero-slide picture, .hero-slide img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center center;
      display: block;
    }
    .hero-slide picture {
      position: absolute; inset: 0;
    }
    .hero-slide::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(
        to top,
        rgba(74,55,40,0.85) 0%,
        rgba(74,55,40,0.5) 30%,
        rgba(74,55,40,0.1) 60%,
        rgba(74,55,40,0.2) 100%
      );
    }
    .hero-dots {
      position: absolute; bottom: 70px; left: 50%; transform: translateX(-50%);
      z-index: 2; display: flex; gap: 10px;
    }
    .hero-dot {
      width: 8px; height: 8px; border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.5); background: transparent;
      cursor: pointer; transition: background 0.3s, border-color 0.3s; padding: 0;
    }
    .hero-dot.active { background: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.9); }
    .hero-dot:hover { background: rgba(255,255,255,0.6); }
    .hero-content {
      position: relative; z-index: 1;
      padding: 0 60px 80px; max-width: 800px;
    }
    .hero-tag {
      font-size: 0.7rem; color: #FFFFFF;
      letter-spacing: 4px; text-transform: uppercase;
      font-weight: 500; margin-bottom: 16px;
    }
    .hero-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3.5rem, 8vw, 6rem);
      font-weight: 700; color: #FFFFFF;
      line-height: 1.0; margin-bottom: 20px;
    }
    .hero-sub {
      font-size: 0.95rem; color: rgba(255,255,255,0.85);
      font-weight: 300; max-width: 450px; margin-bottom: 36px;
    }
    .hero-cta {
      display: inline-block; padding: 14px 42px;
      border: 1px solid rgba(255,255,255,0.7); color: #FFFFFF;
      text-decoration: none; font-size: 0.72rem;
      font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
      transition: all 0.3s;
    }
    .hero-cta:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
    .hero-scroll {
      position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
      z-index: 1; color: rgba(255,255,255,0.5); font-size: 0.65rem;
      letter-spacing: 3px; text-transform: uppercase;
      display: flex; flex-direction: column; align-items: center; gap: 8px;
    }
    .hero-scroll span { display: block; width: 1px; height: 30px; background: rgba(255,255,255,0.4); }

    /* SECTIONS */
    section { padding: 45px 60px; }
    .container { max-width: 1100px; margin: 0 auto; }
    .section-label {
      font-size: 1rem; color: var(--gold);
      letter-spacing: 5px; text-transform: uppercase;
      font-weight: 500; margin-bottom: 18px;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 300; color: var(--white);
      margin-bottom: 50px; line-height: 1.15;
    }
    .divider {
      width: 40px; height: 1px; background: var(--gold);
      margin-bottom: 20px;
    }

    /* BIO */
    .bio-section { background: var(--charcoal); }
    .bio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
    .bio-text p { margin-bottom: 18px; font-size: 0.92rem; color: var(--silver); line-height: 1.85; }
    .bio-text strong { color: var(--white); font-weight: 500; }
    .bio-text em { font-style: italic; color: var(--gold-light); }
    .bio-links { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
    .bio-link {
      display: inline-block; padding: 10px 24px;
      border: 1px solid var(--mid); color: var(--silver);
      text-decoration: none; font-size: 0.72rem;
      font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
      transition: all 0.3s;
    }
    .bio-link:hover { border-color: var(--gold); color: #fff; background: var(--gold); }
    .bio-photo { overflow: hidden; display: flex; justify-content: center; }
    .bio-photo img {
      max-width: 100%; width: auto;
      max-height: 520px; height: auto;
      display: block; border-radius: 4px;
    }
    .bio-milestones { margin-top: 40px; }
    .milestone {
      display: flex; gap: 16px; align-items: baseline;
      padding: 14px 0; border-bottom: 1px solid rgba(74,55,40,0.1);
    }
    .milestone-year {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem; color: var(--gold); min-width: 50px;
    }
    .milestone-text { font-size: 0.82rem; color: var(--silver); }

    /* STATS BAR */
    .stats-bar {
      display: flex;
      justify-content: center;
      gap: 60px;
      padding: 50px 30px;
      background: var(--mid);
    }
    .stat { text-align: center; }
    .stat-num {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.5rem;
      font-weight: 600;
      color: var(--gold);
      line-height: 1;
    }
    .stat-label {
      display: block;
      margin-top: 8px;
      font-size: 0.65rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--muted);
    }

    /* REPERTOIRE */
    .rep-section { background: var(--black); }
    .rep-table {
      max-width: 800px;
      margin: 0 auto;
    }
    .rep-row {
      display: flex;
      align-items: baseline;
      gap: 16px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(253,248,243,0.08);
    }
    .rep-row:last-child { border-bottom: none; }
    .rep-role {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem; font-weight: 500; color: var(--charcoal);
      min-width: 180px;
    }
    .rep-opera {
      flex: 1;
      font-size: 0.82rem; color: rgba(253,248,243,0.6); font-weight: 300;
    }
    .rep-composer { font-size: 0.7rem; color: rgba(253,248,243,0.35); letter-spacing: 0.5px; }

    .rep-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 2px;
    }
    .rep-card { background: #fff; }
    .rep-card-head {
      list-style: none; cursor: pointer;
      padding: 28px 30px;
      display: flex; align-items: baseline; gap: 16px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem; color: var(--gold); font-weight: 400;
      transition: background 0.3s, padding-left 0.3s;
    }
    .rep-card-head::-webkit-details-marker { display: none; }
    .rep-card[open] .rep-card-head,
    .rep-card-head:hover { padding-left: 38px; }
    .rep-card-name { flex: 1; }
    .rep-card-count {
      font-family: 'Inter', sans-serif;
      font-size: 0.7rem; letter-spacing: 2px;
      color: var(--silver);
    }
    .rep-card-head::after {
      content: '+';
      font-size: 1.2rem; color: var(--gold);
      transition: transform 0.3s;
    }
    .rep-card[open] .rep-card-head::after { content: '−'; }
    .rep-card-roles {
      list-style: none; margin: 0;
      padding: 0 30px 24px;
    }
    .rep-card-roles li {
      display: flex; align-items: baseline; gap: 12px;
      padding: 10px 0;
      border-top: 1px solid rgba(74,55,40,0.1);
    }
    .rep-card-roles .rep-role {
      min-width: 140px; font-size: 1rem; color: var(--black); font-weight: 500;
    }
    .rep-card-roles .rep-opera { flex: 1; color: var(--muted); font-size: 0.85rem; }

    /* MEDIA */
    .media-section { background: var(--charcoal); }
    .media-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
    .video-wrap {
      background: #fff; overflow: hidden;
    }
    .video-wrap iframe {
      width: 100%; aspect-ratio: 16/9; display: block; border: 0;
    }
    .vid-caption {
      padding: 16px 20px; font-size: 0.8rem; color: var(--muted);
      border-top: 1px solid rgba(74,55,40,0.08);
    }

    /* AWARDS */
    .awards-section { background: var(--black); }
    .awards-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 2px;
    }
    .award-item {
      background: #fff; padding: 28px 30px;
      display: flex; align-items: baseline; gap: 16px;
    }
    .award-yr {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem; color: var(--gold); font-weight: 400;
      min-width: 55px;
    }
    .award-desc { font-size: 0.85rem; color: var(--silver); font-weight: 300; }

    /* 404 */
    .error-page {
      min-height: 80vh; background: var(--charcoal);
      display: flex; align-items: center; padding: 120px 60px;
    }
    .error-code {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(6rem, 18vw, 14rem);
      color: var(--gold); line-height: 1; margin-bottom: 16px;
    }
    .error-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      color: var(--black); font-weight: 300; margin: 0 0 16px;
    }
    .error-text {
      color: var(--muted); max-width: 480px; margin-bottom: 36px;
    }

    /* REVIEWS */
    .reviews-section { background: var(--charcoal); }
    .reviews-list {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 2px;
    }
    .review-card {
      background: #fff; padding: 28px 30px;
      display: flex; flex-direction: column; gap: 8px;
      text-decoration: none; color: inherit;
      transition: background 0.3s, padding-left 0.3s;
    }
    .review-card:hover { padding-left: 38px; background: var(--dark); }
    .review-source {
      font-size: 0.7rem; color: var(--gold);
      letter-spacing: 3px; text-transform: uppercase; font-weight: 500;
    }
    .review-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem; color: var(--black); font-weight: 500;
      line-height: 1.35;
    }
    .review-date {
      font-size: 0.75rem; color: var(--muted); letter-spacing: 1px;
    }
    .review-meta {
      margin-top: 10px; display: flex; justify-content: space-between;
      align-items: baseline; gap: 12px;
      font-size: 0.72rem; color: var(--muted); letter-spacing: 1px;
    }
    .review-cta {
      color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase;
      font-weight: 500;
    }

    /* REVIEWS — per-opera page */
    .reviews-page {
      background: var(--charcoal);
      min-height: 100vh;
      padding: 140px 60px 80px;
    }
    .reviews-page .post-back {
      display: inline-block; margin-bottom: 40px;
      font-size: 0.8rem; letter-spacing: 2px;
      color: var(--silver); text-decoration: none;
      text-transform: uppercase;
    }
    .reviews-page .post-back:hover { color: var(--gold); }
    .reviews-page-header { margin-bottom: 50px; }
    .reviews-page-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 5vw, 3.4rem);
      font-weight: 300; color: var(--black);
      line-height: 1.1; margin: 8px 0 0;
    }
    .reviews-page-summary {
      margin: 14px 0 0; max-width: 680px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem; font-style: italic;
      color: var(--muted); line-height: 1.5;
    }
    .reviews-page-list {
      list-style: none; padding: 0; margin: 0;
      display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 2px;
    }
    .reviews-page-list li { margin: 0; }

    /* CONTACT */
    .contact-section { background: var(--charcoal); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px; }
    .contact-card {
      background: #fff; padding: 40px 30px; text-align: center;
    }
    .contact-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem; color: var(--white); font-weight: 400;
      margin-bottom: 10px;
    }
    .contact-card p { font-size: 0.85rem; color: var(--muted); }
    .contact-card a { color: var(--gold); text-decoration: none; }
    .contact-card a:hover { text-decoration: underline; }
    .presskit-btn {
      display: inline-block; margin-top: 16px; padding: 10px 24px;
      border: 1px solid var(--gold); color: var(--gold);
      text-decoration: none; font-size: 0.68rem;
      font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
      transition: all 0.3s;
    }
    .presskit-btn:hover { background: var(--gold); color: #fff; }

    /* FOOTER */
    footer {
      background: #4A3728; padding: 50px 60px;
      border-top: 1px solid rgba(74,55,40,0.1);
      display: flex; justify-content: space-between; align-items: center;
    }
    .footer-left {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem; color: var(--white); font-weight: 400;
    }
    .footer-socials { display: flex; gap: 20px; }
    .footer-socials a { display: block; }
    .footer-socials svg {
      width: 22px; height: 22px; fill: rgba(245,237,228,0.6);
      transition: fill 0.3s;
    }
    .footer-socials a:hover svg { fill: #fff; }
    .footer-socials a:hover svg circle { stroke: #fff; }
    .footer-socials a:hover svg text { fill: #fff; }
    .footer-copy { font-size: 0.7rem; color: var(--mid); letter-spacing: 0.5px; margin-top: 6px; }

    /* ANIMATIONS */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    @keyframes slideRight {
      from { opacity: 0; transform: translateX(-30px); }
      to { opacity: 1; transform: translateX(0); }
    }
    @keyframes growLine {
      from { width: 0; }
      to { width: 40px; }
    }
    @keyframes scrollPulse {
      0%, 100% { opacity: 0.4; height: 30px; }
      50% { opacity: 1; height: 45px; }
    }
    @keyframes heroZoom {
      from { transform: scale(1.08); }
      to { transform: scale(1); }
    }
    @keyframes navSlide {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Hero entrance sequence */

    /* Scroll reveal */
    .reveal.hidden {
      opacity: 0; transform: translateY(35px);
    }
    .reveal {
      transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    }
    .reveal.visible {
      opacity: 1; transform: translateY(0);
    }
    .reveal-left.hidden {
      opacity: 0; transform: translateX(-30px);
    }
    .reveal-left {
      transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    }
    .reveal-left.visible {
      opacity: 1; transform: translateX(0);
    }
    .divider.hidden {
      width: 0;
    }
    .divider {
      transition: width 0.6s ease-out 0.2s;
    }
    .divider.visible { width: 40px; }

    /* Staggered children */
    .stagger .reveal { transition-delay: calc(var(--i, 0) * 0.08s); }

    /* Hover micro-interactions */
    .award-item {
      transition: background 0.3s, padding-left 0.3s;
    }
    .award-item:hover {
      background: #fff;
      padding-left: 38px;
    }
    .contact-card {
      transition: background 0.3s, transform 0.3s;
    }
    .contact-card:hover {
      transform: translateY(-4px);
      background: var(--mid);
    }
    .milestone {
      transition: padding-left 0.3s, border-color 0.3s;
    }
    .milestone:hover {
      padding-left: 12px;
      border-bottom-color: var(--gold);
    }
    .video-wrap {
      transition: transform 0.4s, box-shadow 0.4s;
    }
    .video-wrap:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(74,55,40,0.15);
    }
    .footer-socials a {
      transition: transform 0.3s;
    }
    .footer-socials a:hover { transform: translateY(-3px); }

    /* GALLERY */
    .gallery-section { background: var(--charcoal); }
    .gallery-grid {
      columns: 3;
      column-gap: 16px;
    }
    .gallery-item {
      break-inside: avoid;
      margin-bottom: 16px;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      border-radius: 2px;
    }
    .gallery-item img {
      width: 100%;
      display: block;
      transition: transform 0.5s ease;
    }
    .gallery-item:hover img { transform: scale(1.04); }
    .gallery-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 10px 14px;
      background: linear-gradient(to top, rgba(74,55,40,0.75), transparent);
      color: #fff;
      font-size: 0.72rem;
      letter-spacing: 1px;
      font-weight: 400;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .gallery-item:hover .gallery-caption { opacity: 1; }
    .gallery-credit {
      position: absolute;
      top: 8px; right: 10px;
      font-size: 0.55rem;
      letter-spacing: 1px;
      color: rgba(255,255,255,0.5);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .gallery-item:hover .gallery-credit { opacity: 1; }

    /* LIGHTBOX */
    .lightbox {
      display: none;
      position: fixed; inset: 0; z-index: 999;
      background: rgba(74,55,40,0.92);
      align-items: center; justify-content: center;
      flex-direction: column;
      padding: 40px;
    }
    .lightbox.open { display: flex; }
    .lightbox img {
      max-width: 90vw;
      max-height: 80vh;
      object-fit: contain;
      border-radius: 2px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    }
    .lightbox-caption {
      margin-top: 16px;
      color: rgba(255,255,255,0.75);
      font-size: 0.8rem;
      letter-spacing: 1.5px;
      text-align: center;
    }
    .lightbox-close {
      position: absolute; top: 24px; right: 32px;
      background: none; border: none;
      color: rgba(255,255,255,0.7);
      font-size: 1.6rem; cursor: pointer;
      line-height: 1; transition: color 0.2s;
    }
    .lightbox-close:hover { color: #fff; }
    .lightbox-prev, .lightbox-next {
      position: absolute; top: 50%; transform: translateY(-50%);
      background: none; border: none;
      color: rgba(255,255,255,0.6); font-size: 3rem;
      cursor: pointer; padding: 20px; transition: color 0.2s;
      z-index: 2; line-height: 1; user-select: none;
    }
    .lightbox-prev { left: 16px; }
    .lightbox-next { right: 16px; }
    .lightbox-prev:hover, .lightbox-next:hover { color: #fff; }
    .lightbox-counter {
      margin-top: 8px; color: rgba(255,255,255,0.4);
      font-size: 0.7rem; letter-spacing: 2px; text-align: center;
    }

    /* PRESS QUOTES */
    .quotes-section {
      padding: 60px 60px 0;
      text-align: center;
    }
    .pull-quote {
      max-width: 800px;
      margin: 0 auto 40px;
      padding: 0 20px;
    }
    .pull-quote p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-style: italic;
      font-weight: 400;
      line-height: 1.6;
      color: var(--silver);
    }
    .pull-quote p::before { content: "\201C"; }
    .pull-quote p::after { content: "\201D"; }
    .pull-quote cite {
      display: block;
      margin-top: 16px;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.75rem;
      font-style: normal;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
    }
    .pull-quote cite a {
      color: var(--gold);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s;
    }
    .pull-quote cite a:hover {
      border-bottom-color: var(--gold);
    }

    /* NEWS / BLOG FEED */
    .news-section { padding: 45px 60px; }
    .news-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      margin-top: 20px;
    }
    .news-card {
      text-decoration: none;
      color: inherit;
      background: var(--dark);
      overflow: hidden;
      transition: transform 0.3s;
    }
    .news-card:hover { transform: translateY(-4px); }
    .news-image {
      width: 100%;
      aspect-ratio: 16/10;
      overflow: hidden;
    }
    .news-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s;
    }
    .news-card:hover .news-image img { transform: scale(1.05); }
    .news-body { padding: 20px 24px 24px; }
    .news-date {
      font-size: 0.65rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
    }
    .news-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem;
      font-weight: 500;
      margin-top: 8px;
      line-height: 1.3;
      color: var(--light);
    }
    .news-excerpt {
      font-size: 0.8rem;
      color: var(--muted);
      margin-top: 8px;
      line-height: 1.6;
    }

    /* BLOG POST PAGE */
    .post-page {
      padding: 120px 30px 80px;
      min-height: 100vh;
    }
    .post-container {
      max-width: 720px;
      margin: 0 auto;
    }
    .post-back {
      display: inline-block;
      font-size: 0.7rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
      margin-bottom: 40px;
      transition: color 0.2s;
    }
    .post-back:hover { color: var(--gold-light); }
    .post-header { margin-bottom: 40px; }
    .post-date {
      font-size: 0.7rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted);
    }
    .post-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.5rem;
      font-weight: 500;
      line-height: 1.2;
      color: var(--light);
      margin-top: 12px;
    }
    .post-featured-image {
      margin-bottom: 40px;
    }
    .post-featured-image img {
      width: 100%;
      height: auto;
    }
    .post-video {
      position: relative;
      padding-bottom: 56.25%;
      margin-bottom: 40px;
    }
    .post-video iframe {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      border: none;
    }
    .post-content {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--silver);
    }
    .post-content p { margin-bottom: 1.5em; }
    .post-content img {
      max-width: 100%;
      height: auto;
      margin: 2em 0;
    }
    .post-content a {
      color: var(--gold);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .post-content h2, .post-content h3 {
      font-family: 'Cormorant Garamond', serif;
      color: var(--light);
      margin: 2em 0 0.5em;
    }

    /* CALENDAR */
    .calendar-section {
      padding: 100px 60px;
      background: var(--dark);
    }
    .events-list {
      max-width: 900px;
      margin: 0 auto;
    }
    .event-row {
      display: flex;
      align-items: center;
      gap: 32px;
      padding: 24px 0;
      border-bottom: 1px solid var(--mid);
    }
    .event-row:last-child { border-bottom: none; }
    .event-date {
      min-width: 90px;
      text-align: center;
    }
    .event-day {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--gold);
      text-transform: capitalize;
    }
    .event-year {
      display: block;
      font-size: 0.65rem;
      letter-spacing: 2px;
      color: var(--muted);
    }
    .event-details { flex: 1; }
    .event-role {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 500;
      color: var(--light);
    }
    .event-role em { font-style: italic; }
    .event-venue {
      font-size: 0.75rem;
      letter-spacing: 1px;
      color: var(--muted);
      margin-top: 4px;
    }
    .event-ticket {
      font-size: 0.65rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--gold);
      border: 1px solid var(--gold);
      padding: 8px 20px;
      transition: all 0.3s;
      white-space: nowrap;
    }
    .event-ticket:hover {
      background: var(--gold);
      color: #fff;
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      section { padding: 70px 30px; }
      nav { padding: 14px 20px; }
      .hero-content { padding: 0 30px 60px; }
      .bio-grid { grid-template-columns: 1fr; }
      .media-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .gallery-grid { columns: 2; }
      .quotes-section { padding: 40px 30px 0; }
      .pull-quote p { font-size: 1.3rem; }
      .news-grid { grid-template-columns: 1fr; }
      .calendar-section { padding: 70px 30px; }
      .event-row { gap: 20px; }
    }
    @media (max-width: 600px) {
      .hamburger { display: flex; }
      .nav-links {
        display: none; position: fixed; inset: 0;
        background: rgba(253,248,243,0.98); backdrop-filter: blur(20px);
        flex-direction: column; align-items: center; justify-content: center;
        gap: 0; z-index: 100;
      }
      .nav-links.open { display: flex; }
      .nav-links a {
        display: block; font-size: 0.9rem; letter-spacing: 3px;
        padding: 16px 0; color: var(--light);
      }
      .nav-links .lang-toggle { margin-left: 0; margin-top: 24px; }
      .hero-name { font-size: 3rem; }
      .event-row { flex-wrap: wrap; gap: 12px; }
      .event-date { min-width: auto; text-align: left; }
      .event-ticket { margin-top: 4px; }
      .stats-bar { gap: 30px; padding: 40px 20px; }
      .stat-num { font-size: 2rem; }
      .rep-row { flex-wrap: wrap; gap: 4px; }
      .rep-role { min-width: auto; width: 100%; }
      footer { flex-direction: column; text-align: center; gap: 20px; }
      .gallery-grid { columns: 1; }
      .lightbox-prev { left: 4px; font-size: 2rem; padding: 12px; }
      .lightbox-next { right: 4px; font-size: 2rem; padding: 12px; }
    }