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

  :root {
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --gold-pale: #F5E6B8;
    --gold-dark: #8B6914;
    --black: #0A0A0A;
    --black-soft: #111111;
    --black-card: #161616;
    --black-border: #1E1E1E;
    --white: #FAFAFA;
    --text-muted: #888880;
    --text-light: #CCCCCC;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  /* ── NOISE TEXTURE OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
  }

  /* ── NAVIGATION ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(10,10,10,0.95), transparent);
  }

  .nav-logo {
    font-family: 'Cinzel', 'Palatino Linotype', 'Georgia', serif;
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    font-variant: normal;
    font-variant-caps: normal;
  }

  .nav-cta {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    border: none;
    padding: 0.65rem 1.5rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
  }
  .nav-cta:hover { background: var(--gold-light); }

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.07) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 60%),
      radial-gradient(ellipse 30% 30% at 80% 20%, rgba(201,168,76,0.03) 0%, transparent 50%);
  }

  /* Decorative lines */
  .hero::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    border: 0.5px solid rgba(201,168,76,0.1);
    border-radius: 50%;
    pointer-events: none;
  }

  .hero-eyebrow {
    position: relative;
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    animation: fadeUp 1s ease both 0.2s;
  }
  .hero-eyebrow::before,
  .hero-eyebrow::after {
    content: '';
    width: 40px; height: 0.5px;
    background: var(--gold);
    opacity: 0.6;
  }

  .hero-title {
    position: relative;
    font-family: 'Cinzel', serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
    color: var(--white);
    margin-bottom: 0.3rem;
    animation: fadeUp 1s ease both 0.4s;
  }

  .hero-title span {
    color: var(--gold);
    display: block;
  }

  .hero-subtitle-location {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-style: italic;
    font-weight: 300;
    color: var(--gold-light);
    letter-spacing: 0.1em;
    margin-bottom: 2.5rem;
    animation: fadeUp 1s ease both 0.5s;
  }

  .hero-divider {
    width: 80px; height: 0.5px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 0 auto 2.5rem;
    animation: fadeUp 1s ease both 0.6s;
  }

  .hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-style: italic;
    font-weight: 300;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 3.5rem;
    animation: fadeUp 1s ease both 0.7s;
  }

  .hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: fadeUp 1s ease both 0.9s;
  }

  .btn-primary {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--black);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border: none;
    padding: 1.1rem 3rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    transition: left 0.4s ease;
  }
  .btn-primary:hover::before { left: 0; }
  .btn-primary span { position: relative; z-index: 1; }

  .hero-note {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    text-transform: uppercase;
  }

  /* ── PROGRAMME DETAILS STRIP ── */
  .details-strip {
    position: relative;
    border-top: 0.5px solid rgba(201,168,76,0.2);
    border-bottom: 0.5px solid rgba(201,168,76,0.2);
    background: rgba(201,168,76,0.04);
    padding: 2rem 4rem;
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
  }

  .detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
  }

  .detail-label {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
  }

  .detail-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--white);
  }

  /* ── SECTIONS ── */
  section {
    position: relative;
    padding: 7rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
  }

  .section-eyebrow {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    color: var(--gold);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .section-eyebrow::after {
    content: '';
    flex: 1;
    height: 0.5px;
    background: linear-gradient(to right, rgba(201,168,76,0.5), transparent);
    max-width: 120px;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1.5rem;
  }
  .section-title em {
    font-style: italic;
    color: var(--gold-light);
  }

  /* ── ABOUT ── */
  .about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .about-text p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.5rem;
  }
  .about-text p:last-child { margin-bottom: 0; }

  .about-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .diamond-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    width: 280px;
    height: 280px;
    transform: rotate(45deg);
    overflow: hidden;
    border: 1px solid rgba(201,168,76,0.3);
  }

  .diamond-cell {
    background: var(--black-card);
    border: 0.5px solid rgba(201,168,76,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .diamond-cell-gold {
    background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.05));
  }

  .diamond-inner {
    transform: rotate(-45deg);
    text-align: center;
  }

  .diamond-number {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
  }

  .diamond-label {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    text-transform: uppercase;
  }

  /* ── PILLARS ── */
  .pillars-section {
    background: var(--black-soft);
    max-width: 100%;
    padding: 3rem 2rem 5rem;
  }

  .pillars-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 4rem;
    border: 0.5px solid rgba(201,168,76,0.2);
  }

  .pillar-card {
    background: var(--black-card);
    padding: 3rem 2.5rem;
    position: relative;
    border-right: 0.5px solid rgba(201,168,76,0.1);
    transition: background 0.4s;
    overflow: hidden;
  }
  .pillar-card:last-child { border-right: none; }
  .pillar-card:hover { background: rgba(201,168,76,0.04); }

  .pillar-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s;
  }
  .pillar-card:hover::before { opacity: 1; }

  .pillar-number {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--gold-dark);
    margin-bottom: 1.5rem;
    display: block;
  }

  .pillar-icon {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    display: block;
    filter: sepia(1) saturate(2) hue-rotate(5deg);
  }

  .pillar-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .pillar-desc {
    font-size: 0.8rem;
    line-height: 1.8;
    color: var(--text-muted);
  }

  /* ── FOR WHOM ── */
  .whom-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3.5rem;
  }

  .whom-card {
    border: 0.5px solid rgba(201,168,76,0.2);
    padding: 2.5rem;
    position: relative;
    background: var(--black-card);
  }

  .whom-card-label {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.2rem;
  }

  .whom-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .whom-card p {
    font-size: 0.8rem;
    line-height: 1.9;
    color: var(--text-muted);
  }

  .whom-check-list {
    list-style: none;
    margin-top: 1.2rem;
  }
  .whom-check-list li {
    font-size: 0.8rem;
    color: var(--text-light);
    padding: 0.5rem 0;
    border-bottom: 0.5px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    line-height: 1.6;
  }
  .whom-check-list li::before {
    content: '◆';
    color: var(--gold);
    font-size: 0.4rem;
    margin-top: 0.35rem;
    flex-shrink: 0;
  }

  /* ── QUOTE BREAK ── */
  .quote-break {
    background: linear-gradient(135deg, #C9A84C, #E8C96A 50%, #A8861E);
    padding: 2rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .quote-break::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
    pointer-events: none;
  }

  .quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 4vw, 2.2rem);
    font-style: italic;
    font-weight: 300;
    color: #0A0A0A;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
    position: relative;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }

  .quote-mark {
    font-size: 3.5rem;
    color: rgba(10,10,10,0.2);
    line-height: 0;
    vertical-align: -0.9rem;
  }

  /* ── SIGNUP ── */
  .signup-section {
    background: var(--black-soft);
    padding: 7rem 2rem;
    text-align: center;
  }

  .signup-inner {
    max-width: 600px;
    margin: 0 auto;
  }

  .signup-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
  }

  .signup-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
  }

  .signup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .form-row {
    display: flex;
    gap: 1rem;
  }

  .form-input {
    flex: 1;
    background: rgba(255,255,255,0.03);
    border: 0.5px solid rgba(201,168,76,0.3);
    color: var(--white);
    padding: 1rem 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
    width: 100%;
  }
  .form-input::placeholder { color: var(--text-muted); font-style: italic; }
  .form-input:focus {
    border-color: var(--gold);
    background: rgba(201,168,76,0.04);
  }

  .form-select {
    flex: 1;
    background: rgba(255,255,255,0.03);
    border: 0.5px solid rgba(201,168,76,0.3);
    color: var(--text-muted);
    padding: 1rem 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    outline: none;
    cursor: pointer;
    transition: border-color 0.3s;
    width: 100%;
    appearance: none;
  }
  .form-select:focus { border-color: var(--gold); color: var(--white); }
  .form-select option { background: #111; }

  .btn-submit {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--black);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border: none;
    padding: 1.1rem 2rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
  }
  .btn-submit:hover { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--white); }
  .btn-submit:active { transform: scale(0.99); }

  .form-privacy {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    line-height: 1.6;
  }

  /* ── SUCCESS STATE ── */
  .success-state {
    display: none;
    text-align: center;
    padding: 3rem;
    border: 0.5px solid rgba(201,168,76,0.3);
    background: rgba(201,168,76,0.04);
  }
  .success-state.visible { display: block; }
  .success-icon { font-size: 2.5rem; margin-bottom: 1rem; }
  .success-title {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
  }
  .success-msg {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--text-muted);
  }

  /* ── FOOTER ── */
  footer {
    border-top: 0.5px solid rgba(201,168,76,0.15);
    padding: 3rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.15em;
  }
  .footer-logo span {
    display: block;
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    margin-top: 0.2rem;
  }

  .footer-copy {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
  }

  /* ── SCROLL ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  /* ── RESPONSIVE ── */
  .image-break { display: none; }
  .about-visual-desktop { display: block; }

  @media (max-width: 768px) {
    /* Nav */
    nav { padding: 1rem 1.2rem; }
    .nav-logo { font-size: 0.75rem; text-transform: uppercase; font-variant: normal; }
    .nav-cta { padding: 0.5rem 1rem; font-size: 0.75rem; }

    /* Hero */
    .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
    .hero-sub { font-size: 0.95rem; padding: 0 1rem; }
    .hero { padding: 6rem 1.2rem 3rem; min-height: 70vh; }

    /* Details strip */
    .details-strip { flex-wrap: wrap; gap: 1.5rem; padding: 1.8rem 1.2rem; justify-content: center; }
    .detail-item { min-width: 40%; text-align: center; }
    .detail-label { font-size: 0.6rem; }
    .detail-value { font-size: 0.85rem; }

    /* About */
    .about-layout { display: block !important; padding: 0 1.2rem; }
    .about-visual-desktop { display: none !important; }
    .image-break { display: block; }
    .about-visual { display: none; }
    .about-text { padding: 3rem 0; }
    .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    .about-text p { font-size: 0.95rem; line-height: 1.75; }

    /* Pillars */
    .pillars-grid { grid-template-columns: 1fr; }
    .pillar-card { border-right: none; border-bottom: 0.5px solid rgba(201,168,76,0.1); padding: 2rem 1.5rem; }
    .pillars-inner { padding: 0 1.2rem; }

    /* Quote bar */
    .quote-bar { font-size: clamp(1rem, 4vw, 1.4rem); padding: 1.5rem 1rem; }

    /* Who is it for */
    .whom-layout { grid-template-columns: 1fr; gap: 1.5rem; padding: 0 1.2rem; }
    .whom-card { padding: 2rem 1.5rem; }
    .whom-card li { font-size: 0.9rem; }

    /* Organisers */
    .organisers-grid { grid-template-columns: 1fr; gap: 2rem; padding: 0 1.2rem; }
    .organisers-section { padding: 3rem 0 2rem; }
    .organiser-photo { aspect-ratio: 3/4; max-height: 420px; }
    .organiser-body { padding: 1.5rem; }
    .organiser-name { font-size: 1.3rem; }
    .organiser-bio { font-size: 0.88rem; line-height: 1.75; }

    /* Form */
    .form-row { flex-direction: column; gap: 0; }
    .signup-inner { padding: 2rem 1.2rem; }
    .form-input, .form-select { font-size: 0.9rem; }

    /* Footer */
    footer { flex-direction: column; text-align: center; padding: 2rem 1.2rem; gap: 1rem; }
    .footer-links { flex-direction: column; gap: 0.5rem; }

    /* Sections general padding */
    section, .section-pad { padding: 3rem 1.2rem; }
  }

  @media (max-width: 420px) {
    .hero-title { font-size: 1.9rem; }
    .detail-item { min-width: 45%; }
    .organiser-photo { aspect-ratio: 1/1; }
  }

  /* ── ORNAMENTAL LINES ── */
  .ornament {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
  }
  .ornament-line {
    flex: 1;
    height: 0.5px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.4), transparent);
  }
  .ornament-diamond {
    width: 6px; height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
  }

  /* ── IMAGE SECTION ── */
  .image-break {
    width: 100%;
    height: 60vh;
    max-height: 60vh;
    overflow: hidden;
    position: relative;
    margin: 0;
  }
  .image-break img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
    background: #0A0A0A;
  }
  .image-break-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
      rgba(10,10,10,0.3) 0%,
      rgba(10,10,10,0.1) 40%,
      rgba(10,10,10,0.5) 100%
    );
  }
  .image-break-caption {
    position: absolute;
    bottom: 1.5rem; left: 50%;
    transform: translateX(-50%);
    text-align: center;
    white-space: nowrap;
  }
  .image-break-caption span {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    color: rgba(232,201,106,0.85);
    letter-spacing: 0.2em;
  }

  /* ── ORGANISERS ── */
  .organisers-section {
    background: var(--black);
    padding: 7rem 2rem;
  }
  .organisers-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .organisers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 4rem;
  }
  .organiser-card {
    background: var(--black-card);
    border: 0.5px solid rgba(201,168,76,0.15);
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: border-color 0.4s;
  }
  .organiser-card:hover {
    border-color: rgba(201,168,76,0.4);
  }
  .organiser-photo {
    width: 100%;
    aspect-ratio: 3/4;
    background: rgba(201,168,76,0.04);
    border-bottom: 0.5px solid rgba(201,168,76,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .organiser-photo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    opacity: 0.3;
  }
  .organiser-photo-placeholder-icon {
    width: 48px; height: 48px;
    border: 0.5px solid var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .organiser-photo-placeholder span {
    font-family: 'Cinzel', serif;
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
  }
  .organiser-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
  }
  .organiser-body {
    padding: 2rem 2rem 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .organiser-role {
    font-family: 'Cinzel', serif;
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.6rem;
  }
  .organiser-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 0.4rem;
    line-height: 1;
  }
  .organiser-divider {
    width: 30px; height: 0.5px;
    background: var(--gold);
    margin: 1rem 0;
    opacity: 0.6;
  }
  .organiser-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
  }
  .organiser-tag {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    color: var(--gold-dark);
    border: 0.5px solid rgba(201,168,76,0.25);
    padding: 0.25rem 0.5rem;
    background: rgba(201,168,76,0.04);
  }
  .organiser-bio {
    font-size: 0.78rem;
    line-height: 1.9;
    color: var(--text-muted);
    flex: 1;
  }
  .organiser-bio-placeholder {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(201,168,76,0.25);
    border: 0.5px dashed rgba(201,168,76,0.15);
    padding: 1.5rem;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  @media (max-width: 900px) {
    .organisers-grid { grid-template-columns: 1fr; }
    .organiser-photo { aspect-ratio: 3/4; }
  }


  /* ── CV UPLOAD ── */
  .file-upload-wrapper {
    position: relative;
    width: 100%;
  }
  .file-upload-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
  }
  .file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    padding: 1.1rem 1.2rem;
    background: rgba(255,255,255,0.03);
    border: 0.5px dashed rgba(201,168,76,0.4);
    color: var(--text-muted);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s;
  }
  .file-upload-label:hover {
    border-color: var(--gold);
    background: rgba(201,168,76,0.04);
    color: var(--gold-light);
  }
  .file-upload-label.has-file {
    border-color: var(--gold);
    color: var(--gold-light);
    background: rgba(201,168,76,0.06);
  }
  .file-upload-icon {
    font-size: 1rem;
    flex-shrink: 0;
  }
  .file-upload-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0.5rem 0;
  }
  .file-upload-divider-line {
    flex: 1;
    height: 0.5px;
    background: rgba(201,168,76,0.15);
  }
  .file-upload-divider-text {
    font-family: 'Cinzel', serif;
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    text-transform: uppercase;
  }


  /* ── PHOTO BREAK ── */
  .photo-break {
    width: 100%;
    background: var(--black);
    padding: 6rem 0;
    display: flex;
    justify-content: center;
  }
  .photo-break-inner {
    width: min(700px, 90vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .photo-break-img {
    width: 100%;
    height: auto;
    display: block;
    border: 0.5px solid rgba(201,168,76,0.15);
    box-shadow: 0 0 80px rgba(0,0,0,0.8);
  }
  .photo-break-caption {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    opacity: 0.75;
  }