  :root {
    --cream: #FDF6ED;
    --blush: #F2C4B8;
    --sage: #B8D4C0;
    --lavender: #C8BDE8;
    --dusty-rose: #E8A8B0;
    --mint: #A8D8C8;
    --periwinkle: #A8B8E8;
    --text: #2D2820;
    --text-muted: #7A6E65;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--cream);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2.5rem;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(10px);
    color: var(--cream);
  }
  .nav-logo {
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--cream);
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .nav-links {
    display: flex; gap: 2rem; list-style: none;
  }
  .nav-links a {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute; bottom: -3px; left: 0; right: 0;
    height: 2px;
    background: rgba(255,255,255,0.8);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  .nav-links a:hover::after { transform: scaleX(1); }

  /* HERO */
  #hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.15)), url("North Norfolk - 13 May (163).JPG") center 55% / cover no-repeat;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.35));
    pointer-events: none;
  }

  .hero-text {
    position: relative;
    z-index: 1;
    max-width: 780px;
    padding: 8rem 4rem 6rem;
    color: #fff;
  }

  .hero-text .eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
  }

  .hero-text h1 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(4rem, 8vw, 7rem);
    line-height: 0.95;
    margin: 0;
  }

  .hero-text p {
    max-width: 680px;
    margin: 2rem 0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--text);
    padding: 1rem 2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s ease;
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    background: #f4f1ed;
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    color: #fff;
    padding: 1rem 2rem;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s ease, background 0.2s ease;
  }
  .btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.2);
  }

  .section {
    padding: 6rem 4rem;
  }
  .section-recordings {
    padding-top: 2rem;
  }

  .section-inner {
    max-width: 1180px;
    margin: 0 auto;
  }

  .section-label {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  .section h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.05;
    margin: 0 0 1.5rem;
  }

  .section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 72ch;
  }

  .section-about .section-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 0.9fr);
    gap: 3rem;
    align-items: start;
    max-width: 1180px;
  }

  .about-copy {
    padding-right: 2rem;
  }

  .about-image {
    min-height: 420px;
    border-radius: 32px;
    overflow: hidden;
    background: transparent;
    border: none;
  }

  .about-summary p {
    margin: 0 0 1rem;
    font-weight: 500;
    line-height: 1.75;
  }

  .section-recordings .section-header,
  .section-press .section-header,
  .section-contact .section-header {
    max-width: 680px;
    margin-bottom: 3rem;
  }

  .recording-grid,
  .press-grid {
    display: grid;
    gap: 1.5rem;
  }

  .recording-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }

  .recording-card,
  .press-card,
  .contact-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    padding: 1.75rem;
    border: 1px solid rgba(45,40,32,0.08);
    text-decoration: none;
    color: inherit;
  }

  .recording-preview {
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    margin-bottom: 1.25rem;
  }
  .recording-preview iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }
  .recording-content {
    display: grid;
    gap: 0.5rem;
  }
  .recording-type {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.75;
  }

  .recording-card h3,
  .press-card h3 {
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
  }
  .section p + p {
    margin-top: 1.4rem;
  }

  .recording-card p,
  .press-card p {
    margin: 0;
    color: var(--text-muted);
  }

  .press-grid {
    grid-template-columns: repeat(3, minmax(210px, 1fr));
  }

  .press-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--cream);
  }

  .press-card:hover {
    transform: translateY(-4px);
    transition: transform 0.2s ease;
    background: rgba(255,255,255,0.13);
  }

  .section-contact {
    background: var(--text);
    color: var(--cream);
    padding: 6rem 4rem;
    position: relative;
    overflow: hidden;
    border-radius: 32px 32px 0 0;
  }

  .section-contact .section-label {
    color: rgba(255,255,255,0.75);
  }

  .press-kit-block {
    margin-top: 2.5rem;
  }

  .press-kit-block .press-grid {
    margin-top: 1rem;
  }

  .contact-inner {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 2rem;
    align-items: start;
  }

  .contact-link {
    color: var(--text);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(45,40,32,0.15);
  }
  .contact-link:hover {
    color: var(--text);
    text-decoration: none;
    border-bottom-color: var(--text);
  }

  .contact-card p {
    margin: 0 0 1rem;
    line-height: 1.8;
  }

  footer {
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    background: #fff;
    border-top: 1px solid rgba(45,40,32,0.08);
  }

  footer span {
    font-size: 0.88rem;
  }

  @media (max-width: 900px) {
    .nav-links { gap: 1rem; }
    .hero-text { padding: 6rem 2rem 5rem; }
    .section { padding: 4rem 2rem; }
    .section-about .section-inner,
    .contact-inner { grid-template-columns: 1fr; }
    .recording-grid,
    .press-grid { grid-template-columns: 1fr; }
    .footer { flex-direction: column; gap: 0.75rem; text-align: center; }
  }

  @media (max-width: 600px) {
    #hero { background-position: 28% 55%; }
    .hero-text h1 { font-size: clamp(3rem, 11vw, 4rem); }
    .nav { padding: 1rem 1rem; }
    .hero-actions { flex-direction: column; }
  }

  /* Fun fact cards */
  .fact-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem 1.8rem;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .fact-card:hover { transform: translateY(-4px) rotate(0.5deg); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }

  .fact-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
  }
  .fact-card:nth-child(1) .fact-icon { background: #ff3b3f; }
  .fact-card:nth-child(2) .fact-icon { background: var(--blush); }
  .fact-card:nth-child(3) .fact-icon { background: var(--mint); }
  .fact-card:nth-child(4) .fact-icon { background: var(--lavender); }

  .fact-content h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
  }
  .fact-content p {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-muted);
  }

  /* PORTFOLIO / PERFORMANCES */
  #portfolio {
    padding: 7rem 4rem;
    background: var(--cream);
  }

  .portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
  }

  .section-title {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 700;
    line-height: 1;
  }
  .section-title .ampersand {
    font-style: normal;
    font-weight: 600;
    display: inline-block;
    margin: 0 0.2rem;
  }
  .section-title span {
    display: block;
    font-style: italic;
    font-weight: 300;
    color: var(--text-muted);
  }

  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
    grid-auto-rows: 1fr;
    align-items: stretch;
  }

  .perf-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: stretch;
  }
  .perf-card:hover { transform: scale(1.02); }

  .perf-card-inner {
    padding: 1.5rem 1.5rem;
    height: 100%;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    gap: 0.75rem;
  }

  /* Make video containers consistent across all cards */
  .perf-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1rem;
    z-index: 0;
    flex: 0 0 auto;
  }
  .perf-video iframe { width: 100%; height: 100%; display: block; }

  .perf-card:nth-child(1) .perf-card-inner {
    background: linear-gradient(145deg, var(--lavender), var(--periwinkle));
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 1.2rem;
  }
  .perf-card:nth-child(1) .perf-content {
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 0;
    border-radius: 0;
    max-width: none;
    box-shadow: none;
    margin: 0;
  }
  /*
  .perf-card:nth-child(2) .perf-card-inner { background: linear-gradient(145deg, var(--blush), var(--dusty-rose)); }
  .perf-card:nth-child(3) .perf-card-inner { background: linear-gradient(145deg, var(--dusty-rose), var(--lavender)); }
  .perf-card:nth-child(4) .perf-card-inner { background: linear-gradient(145deg, var(--mint), var(--sage)); }
  .perf-card:nth-child(5) .perf-card-inner { background: linear-gradient(145deg, var(--blush), var(--lavender)); }
  */

  /* Ensure uniform card sizing even when some media elements are hidden */
  .perf-card:nth-child(1) { grid-row: auto; }

  .perf-emoji {
    font-size: 2.6rem;
    position: absolute;
    top: auto;
    bottom: 1.5rem;
    right: 1.5rem;
    opacity: 0.95;
    z-index: 2;
    background: rgba(255,255,255,0.7);
    padding: 0.12rem 0.4rem;
    border-radius: 8px;
  }

  .perf-type {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 0.5rem;
  }

  .perf-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.4rem;
  }
  /* Use consistent title sizing for all cards */

  .perf-venue {
    font-size: 0.85rem;
    opacity: 0.75;
  }

  /* Staggered animation on scroll */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* TESTIMONIALS / PRESS */
  #press {
    background: transparent;
    padding: 0;
    position: static;
    overflow: visible;
  }

  .press-bg-text {
    position: absolute;
    font-family: 'Fraunces', serif;
    font-size: 18rem;
    font-weight: 700;
    opacity: 0.05;
    top: -2rem; left: -1rem;
    line-height: 1;
    user-select: none;
  }

  .press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
  }

  .quote-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    transition: transform 0.2s;
  }
  .quote-card:hover { transform: rotate(-1deg) translateY(-4px); }
  .quote-card:nth-child(2):hover { transform: rotate(1deg) translateY(-4px); }
  .quote-card:nth-child(3):hover { transform: rotate(-0.5deg) translateY(-4px); }

  .quote-mark {
    font-family: 'Fraunces', serif;
    font-size: 4rem;
    color: var(--blush);
    line-height: 0.5;
    margin-bottom: 1rem;
  }

  .quote-text {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text);
  }

  .quote-author {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  /* SKILLS / REPERTOIRE */
  #repertoire {
    padding: 6rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  .rep-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 2.5rem;
  }

  .rep-category {
    margin-bottom: 2rem;
  }

  .rep-category-label {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
  }

  .rep-bar-bg {
    height: 8px;
    background: #E8E0D8;
    border-radius: 100px;
    overflow: hidden;
  }

  .rep-bar {
    height: 100%;
    border-radius: 100px;
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .rep-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1rem;
  }

  .rep-tag {
    background: var(--cream);
    border: 1.5px solid #DDD5CB;
    border-radius: 100px;
    padding: 0.4rem 1.1rem;
    font-size: 0.82rem;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    cursor: default;
  }
  .rep-tag:hover { background: var(--lavender); border-color: var(--lavender); transform: translateY(-2px); }

  .skills-right { padding-top: 1rem; }

  .skill-pill-grid {
    display: flex; flex-wrap: wrap; gap: 1rem;
    margin-top: 2rem;
  }

  .skill-pill {
    display: flex; align-items: center; gap: 0.6rem;
    background: var(--cream);
    border: 1.5px solid #DDD5CB;
    border-radius: 16px;
    padding: 0.8rem 1.3rem;
    font-size: 0.88rem;
    transition: all 0.2s;
  }
  .skill-pill:hover { background: var(--sage); border-color: var(--sage); transform: translateY(-2px); }
  .skill-pill .sp-icon { font-size: 1.2rem; }

  /* CONTACT */
  #contact {
    background: var(--text);
    color: var(--cream);
    padding: 6rem 4rem;
    position: relative;
    overflow: hidden;
    border-radius: 32px 32px 0 0;
  }

  .contact-bg {
    position: absolute;
    width: 500px; height: 500px;
    background: var(--lavender);
    opacity: 0.1;
    border-radius: 50%;
    top: -100px; right: -100px;
    filter: blur(60px);
  }
  .contact-bg2 {
    position: absolute;
    width: 400px; height: 400px;
    background: var(--blush);
    opacity: 0.1;
    border-radius: 50%;
    bottom: -80px; left: -60px;
    filter: blur(80px);
  }

  .contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    position: relative;
    z-index: 1;
  }

  .contact-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1.5rem;
  }
  .contact-title em { color: var(--blush); font-style: italic; font-weight: 300; }

  .contact-desc {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.7;
    margin-bottom: 3rem;
    max-width: 380px;
  }

  .contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .contact-link {
    display: flex; align-items: center; gap: 1rem;
    color: var(--cream);
    text-decoration: none;
    font-size: 1rem;
    padding: 1.2rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    transition: background 0.2s, border-color 0.2s, transform 0.2s, color 0.2s;
  }
  .contact-link:hover {
    color: var(--cream);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.3);
    transform: translateX(4px);
  }
  .contact-link-icon { font-size: 1.3rem; }
  .contact-link-text { flex: 1; }
  .contact-link-label { font-size: 0.72rem; opacity: 0.5; letter-spacing: 0.08em; text-transform: uppercase; }
  .contact-link-value { font-weight: 500; }

  /* Form */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .form-group label {
    font-size: 0.78rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    opacity: 0.6;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    background: rgba(255,255,255,0.07);
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    resize: none;
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder { opacity: 0.4; }
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: var(--blush);
    background: rgba(255,255,255,0.1);
  }
  .form-group select option { background: #2D2820; color: var(--cream); }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

  .btn-submit {
    background: var(--blush);
    color: var(--text);
    border: none;
    border-radius: 100px;
    padding: 1rem 2.5rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    width: fit-content;
  }
  .btn-submit:hover { transform: translateY(-2px); background: var(--dusty-rose); }

  /* FOOTER */
  footer {
    background: var(--text);
    color: var(--cream);
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.7;
    font-size: 0.82rem;
  }

  footer a {
    color: var(--cream);
  }
  footer a:hover {
    color: #fff;
    text-decoration: none;
  }

  /* ANIMATIONS */
  @keyframes floatIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Wavy divider */
  .wavy {
    overflow: hidden;
    line-height: 0;
    margin-bottom: -2px;
  }
  .wavy svg { display: block; }

  /* Responsive basics */
  @media (max-width: 900px) {
    #hero, #about, .contact-inner, #repertoire {
      grid-template-columns: 1fr;
    }
    .hero-right { min-height: 60vw; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .perf-card:nth-child(1) { grid-row: auto; }
    .press-grid { grid-template-columns: 1fr; }
    nav { padding: 1.2rem 1.5rem; }
    #portfolio, #press, #contact { padding: 4rem 1.5rem; }
    #repertoire { padding: 4rem 1.5rem; gap: 3rem; }
    #about {
      grid-template-columns: 1fr;
    }
    #about .about-left, #about .about-right { padding: 3rem 1.5rem; }
    #about .about-right { display: none; }
    #about .section-label { display: none; }
    footer { flex-direction: column; gap: 0.5rem; text-align: center; }
  }