  :root {
    --bg:        #100a02;
    --bg-soft:   #1a1305;
    --line:      #2a2010;
    --ink:       #f4ead6;
    --ink-mute:  #b8a888;
    --ink-dim:   #6f5b3e;
    --gold:      #c9962b;
    --gold-soft: #a07a23;
    --gold-glow: #fec202;
    --serif: 'Cormorant Garamond', 'Times New Roman', serif;
    --sans:  'Inter', -apple-system, system-ui, sans-serif;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    overflow-x: hidden;
    text-wrap: pretty;
  }
  ::selection { background: var(--gold); color: var(--bg); }
  ::-webkit-scrollbar { width: 8px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: var(--ink-dim); }

  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; }

  .wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
  @media (max-width: 640px) { .wrap { padding: 0 20px; } }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(16, 10, 2, 0.72);
    border-bottom: 1px solid transparent;
    transition: border-color .3s ease;
  }
  nav.scrolled { border-bottom-color: var(--line); }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 32px; max-width: 1280px; margin: 0 auto;
  }
  @media (max-width: 480px) { .nav-inner { padding: 14px 16px; } }
  .brand { display: flex; align-items: center; gap: 14px; }
  .brand-mark { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
  .brand-text {
    font-family: var(--serif); font-weight: 600;
    font-size: 22px; letter-spacing: 0.08em; color: var(--ink);
  }
  .brand-text em { font-style: normal; color: var(--gold); }
  .nav-right { display: flex; align-items: center; gap: 28px; }
  .nav-links { display: flex; gap: 28px; align-items: center; }
  .nav-links a {
    font-size: 13px; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--ink-mute);
    transition: color .2s ease;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    padding: 10px 22px; border: 1px solid var(--gold-soft);
    color: var(--gold); font-size: 12px; letter-spacing: 0.18em;
    text-transform: uppercase; transition: all .25s ease;
  }
  .nav-cta:hover { background: var(--gold); color: var(--bg); }

  .lang-switch {
    display: flex; align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 3px;
  }
  .lang-switch button {
    background: transparent; border: 0;
    color: var(--ink-dim); cursor: pointer;
    font-family: var(--sans);
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.16em;
    padding: 6px 12px; border-radius: 999px;
    transition: all .2s ease;
  }
  .lang-switch button:hover { color: var(--ink-mute); }
  .lang-switch button.active {
    background: var(--gold); color: var(--bg);
  }

  /* DROPDOWN */
  .nav-more { position: relative; }
  .nav-more-btn {
    display: flex; align-items: center; gap: 5px;
    background: none; border: 0; cursor: pointer;
    padding: 0;
    font-family: var(--sans); font-size: 13px; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--ink-mute); transition: color .2s ease;
  }
  .nav-more-btn:hover, .nav-more-btn.open { color: var(--gold); }
  .nav-more-arrow { stroke: currentColor; fill: none; stroke-width: 2; transition: transform .25s ease; }
  .nav-more-btn.open .nav-more-arrow { transform: rotate(180deg); }
  .nav-dropdown {
    position: absolute; top: 100%; right: 0;
    margin-top: 12px;
    min-width: 200px;
    background: rgba(16, 10, 2, 0.96);
    backdrop-filter: blur(20px);
    border: 1px solid var(--line);
    padding: 8px 0;
    opacity: 0; visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    z-index: 52;
  }
  .nav-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-dropdown a {
    display: block; padding: 12px 24px;
    font-size: 13px; letter-spacing: 0.1em;
    color: var(--ink-mute); transition: color .2s ease, background .2s ease;
    white-space: nowrap; text-transform: uppercase;
  }
  .nav-dropdown a:hover { color: var(--gold); background: rgba(201, 150, 43, 0.06); }

  @media (max-width: 920px) {
    .nav-more-btn { display: none; }
    .nav-more { display: contents; }
    .nav-dropdown {
      display: contents;
    }
    .nav-dropdown a {
      padding: 10px 0;
      font-size: 13px; letter-spacing: 0.14em;
      border-bottom: 1px solid var(--line);
      color: var(--ink-mute);
    }
    .nav-right { gap: 14px; }
  }

  .nav-burger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: 0; cursor: pointer;
    padding: 8px; z-index: 51;
  }
  .nav-burger span {
    display: block; width: 22px; height: 1.5px;
    background: var(--ink); border-radius: 1px;
    transition: transform .3s ease, opacity .2s ease;
  }
  .nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  @media (max-width: 920px) {
    .nav-burger { display: flex; }
    .nav-right {
      position: fixed; top: 0; right: -100%; bottom: 0;
      width: 100vw; flex-direction: column;
      justify-content: flex-start; align-items: stretch;
      padding: 90px 36px 36px;
      background: rgba(16, 10, 2, 0.97);
      backdrop-filter: blur(24px);
      transition: right .35s ease; gap: 24px;
      overflow-y: auto;
    }
    .nav-right.open { right: 0; }
    .nav-links {
      display: flex; flex-direction: column; gap: 0;
      align-items: stretch;
    }
    .nav-links a {
      display: block; padding: 11px 0;
      font-size: 14px; letter-spacing: 0.12em;
      border-bottom: 1px solid var(--line);
    }
    .nav-cta {
      margin-top: 8px; text-align: center;
      padding: 14px 22px; font-size: 13px;
    }
    .lang-switch { align-self: center; margin-top: 12px; }
    .lang-switch button { padding: 6px 12px; font-size: 11px; }
  }

  /* HERO */
  .hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(16,10,2,0.86) 0%, rgba(16,10,2,0.78) 55%, rgba(16,10,2,0.95) 100%),
      radial-gradient(ellipse at 20% 30%, rgba(201, 150, 43, 0.12), transparent 55%),
      radial-gradient(ellipse at 80% 70%, rgba(201, 150, 43, 0.06), transparent 50%),
      url('IMG_1588.png') center/cover no-repeat,
      var(--bg);
    filter: saturate(0.7);
  }
  .hero-pattern {
    position: absolute; inset: 0; opacity: 0.06;
    background-image:
      linear-gradient(var(--gold) 1px, transparent 1px),
      linear-gradient(90deg, var(--gold) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  }
  .hero-inner {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1.4fr 1fr;
    gap: 80px; align-items: center;
  }
  @media (max-width: 920px) {
    .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  }
  @media (max-width: 480px) {
    .hero { min-height: auto; padding: 120px 0 64px; }
    .hero-inner { gap: 40px; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn-primary,
    .hero-ctas .btn-ghost { text-align: center; width: 100%; }
    .crest { max-width: 240px; }
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 12px; letter-spacing: 0.32em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 32px;
  }
  .hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--gold-soft); }
  h1.hero-title {
    font-family: var(--serif); font-weight: 500;
    font-size: clamp(48px, 7vw, 96px);
    line-height: 0.95; letter-spacing: -0.02em;
    color: var(--ink);
  }
  h1.hero-title em { font-style: italic; color: var(--gold); font-weight: 400; }
  .hero-rule { width: 80px; height: 1px; background: var(--gold); margin: 36px 0 32px; }
  .hero-lede {
    font-size: 18px; line-height: 1.65;
    color: var(--ink-mute); max-width: 540px;
    margin-bottom: 44px;
  }
  .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    padding: 16px 32px;
    background: var(--gold); color: var(--bg);
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    transition: all .25s ease;
    border: 1px solid var(--gold);
  }
  .btn-primary:hover { background: var(--gold-glow); border-color: var(--gold-glow); }
  .btn-ghost {
    padding: 16px 32px;
    border: 1px solid var(--ink-dim); color: var(--ink);
    font-size: 13px; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase;
    transition: all .25s ease;
  }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

  .crest-wrap { display: flex; justify-content: center; align-items: center; position: relative; }
  .crest {
    width: 100%; max-width: 380px; aspect-ratio: 1;
    border: 1px solid var(--gold-soft);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    background: radial-gradient(circle at center, rgba(201, 150, 43, 0.08), transparent 70%);
  }
  .crest::before, .crest::after {
    content: ''; position: absolute; inset: 14px;
    border: 1px solid var(--ink-dim); border-radius: 50%;
  }
  .crest::after { inset: 28px; border-style: dashed; opacity: 0.4; }
  .crest-inner { text-align: center; padding: 40px; z-index: 2; }
  .crest-inner .placeholder-label {
    font-size: 10px; letter-spacing: 0.32em;
    color: var(--ink-dim); text-transform: uppercase;
    margin-bottom: 14px;
  }
  .crest-inner .placeholder-arabic {
    font-family: var(--serif); font-size: 56px;
    color: var(--gold); line-height: 1; margin-bottom: 10px;
  }
  .crest-inner .placeholder-name {
    font-family: var(--serif); font-style: italic;
    font-size: 15px; color: var(--ink-mute);
    letter-spacing: 0.16em;
  }
  .crest--image { padding: 0; overflow: hidden; }
  .crest--image::before, .crest--image::after { display: none; }
  .crest--image img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: drop-shadow(0 12px 40px rgba(201, 150, 43, 0.18));
  }

  section { padding: 120px 0; position: relative; }
  @media (max-width: 768px) { section { padding: 80px 0; } }
  @media (max-width: 480px) { section { padding: 64px 0; } }

  .section-head { margin-bottom: 72px; max-width: 720px; }
  .section-eyebrow {
    font-size: 11px; letter-spacing: 0.32em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 14px;
  }
  .section-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
  h2.section-title {
    font-family: var(--serif); font-weight: 500;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.05; letter-spacing: -0.015em;
    color: var(--ink); margin-bottom: 24px;
  }
  h2.section-title em { font-style: italic; color: var(--gold); }
  .section-lede { font-size: 17px; color: var(--ink-mute); line-height: 1.7; }

  .manifesto {
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  }
  .manifesto-quote {
    font-family: var(--serif); font-style: italic;
    font-size: clamp(28px, 4vw, 44px); line-height: 1.35;
    color: var(--ink); max-width: 980px;
    margin: 0 auto; text-align: center;
    text-wrap: balance;
  }
  .manifesto-quote .open, .manifesto-quote .close {
    color: var(--gold); font-size: 1.5em;
    line-height: 0; vertical-align: -0.2em; margin: 0 0.1em;
  }
  .manifesto-attr {
    margin-top: 48px; text-align: center;
    font-size: 11px; letter-spacing: 0.32em;
    color: var(--ink-dim); text-transform: uppercase;
  }

  .era-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px; background: var(--line);
    border: 1px solid var(--line);
  }
  @media (max-width: 820px) { .era-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 480px) { .era-grid { grid-template-columns: 1fr; } }
  .era-cell { background: var(--bg); padding: 40px 28px; transition: background .3s ease; }
  @media (max-width: 480px) { .era-cell { padding: 28px 20px; } .era-cell .stat { font-size: 36px; } }
  .era-cell:hover { background: var(--bg-soft); }
  .era-cell .num { font-family: var(--serif); font-size: 14px; color: var(--gold); letter-spacing: 0.2em; margin-bottom: 16px; }
  .era-cell .stat { font-family: var(--serif); font-weight: 500; font-size: 44px; color: var(--ink); line-height: 1; margin-bottom: 12px; }
  .era-cell .label { font-size: 13px; color: var(--ink-mute); line-height: 1.5; }

  .era-prose { margin-top: 72px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; }
  @media (max-width: 820px) { .era-prose { grid-template-columns: 1fr; gap: 40px; } }
  .era-prose h3 { font-family: var(--serif); font-size: 28px; font-weight: 500; line-height: 1.2; color: var(--ink); }
  .era-prose p { font-size: 16px; color: var(--ink-mute); line-height: 1.75; margin-bottom: 18px; }
  .era-prose p:last-child { margin-bottom: 0; }

  .gallery {
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
  .gallery-grid .tile {
    background: var(--bg); border: 2px solid var(--line);
    border-radius: 4px;
    position: relative; overflow: hidden;
    aspect-ratio: 4 / 5;
    display: flex; align-items: center; justify-content: center;
    transition: border-color .3s ease;
  }
  .gallery-grid .tile:hover { border-color: var(--gold-soft); }
  .tile.span-6 { grid-column: span 6; aspect-ratio: 4 / 3; }
  .tile.span-4 { grid-column: span 4; }
  .tile.span-3 { grid-column: span 3; }
  .tile.span-8 { grid-column: span 8; aspect-ratio: 16 / 9; }
  @media (max-width: 820px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .tile.span-6, .tile.span-4, .tile.span-3, .tile.span-8 { grid-column: span 1; aspect-ratio: 4/5; }
  }
  @media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; gap: 12px; }
    .tile { aspect-ratio: 3/4; }
  }
  .tile-placeholder {
    text-align: center; padding: 24px;
    display: flex; flex-direction: column; align-items: center; gap: 14px;
  }
  .tile-placeholder svg { width: 32px; height: 32px; stroke: var(--ink-dim); fill: none; stroke-width: 1; opacity: 0.7; }
  .tile-placeholder .ph-label { font-size: 10px; letter-spacing: 0.28em; color: var(--ink-dim); text-transform: uppercase; }
  .tile-placeholder .ph-name { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--ink-mute); }
  .tile-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.92) contrast(1.02); transition: transform .9s ease, filter .6s ease; }
  .gallery-grid .tile:hover .tile-photo { transform: scale(1.03); filter: saturate(1) contrast(1.05); }
  .tile-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 20px; display: flex; flex-direction: column; gap: 6px; background: linear-gradient(to top, rgba(16,10,2,0.88) 0%, rgba(16,10,2,0.55) 55%, rgba(16,10,2,0) 100%); pointer-events: none; }
  .tile-caption .ph-label { font-size: 10px; letter-spacing: 0.28em; color: var(--gold); text-transform: uppercase; }
  .tile-caption .ph-name { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--ink); line-height: 1.2; }

  .disciplines-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
  @media (max-width: 820px) { .disciplines-grid { grid-template-columns: 1fr; } }
  .discipline { border-top: 1px solid var(--gold); padding-top: 28px; }
  .discipline .roman { font-family: var(--serif); font-size: 14px; color: var(--gold); letter-spacing: 0.32em; margin-bottom: 18px; }
  .discipline h3 { font-family: var(--serif); font-size: 30px; font-weight: 500; color: var(--ink); margin-bottom: 16px; line-height: 1.2; }
  .discipline p { font-size: 15px; color: var(--ink-mute); line-height: 1.7; }

  .events { border-top: 1px solid var(--line); background: var(--bg-soft); }
  .events-list { display: flex; flex-direction: column; }
  .event {
    display: grid; grid-template-columns: 110px 1fr 200px auto;
    gap: 40px; align-items: center;
    padding: 32px 0;
    border-bottom: 1px solid var(--line);
    transition: padding .25s ease;
  }
  .event:hover { padding-left: 12px; }
  .event:hover .event-title { color: var(--gold); }
  @media (max-width: 820px) {
    .event { grid-template-columns: 1fr; gap: 10px; padding: 24px 0; }
    .event:hover { padding-left: 0; }
    .event-title { font-size: 20px; }
    .event-status { justify-self: start; }
  }
  .event-date { font-family: var(--serif); font-size: 14px; color: var(--gold); letter-spacing: 0.2em; }
  .event-title { font-family: var(--serif); font-size: 24px; color: var(--ink); transition: color .2s ease; }
  .event-place { font-size: 13px; letter-spacing: 0.16em; color: var(--ink-mute); text-transform: uppercase; }
  .event-status {
    font-size: 11px; letter-spacing: 0.24em;
    text-transform: uppercase; color: var(--ink-dim);
    padding: 6px 14px; border: 1px solid var(--ink-dim);
  }
  .event-status.open { color: var(--gold); border-color: var(--gold-soft); }

  .cta { text-align: center; border-top: 1px solid var(--line); }
  .cta h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(36px, 5vw, 60px); line-height: 1.1; margin-bottom: 24px; text-wrap: balance; }
  .cta h2 em { color: var(--gold); font-style: italic; }
  .cta p { color: var(--ink-mute); font-size: 17px; max-width: 580px; margin: 0 auto 44px; line-height: 1.7; }

  footer { border-top: 1px solid var(--line); padding: 64px 0 40px; }
  .foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 56px; }
  @media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
  @media (max-width: 480px) { .foot-grid { grid-template-columns: 1fr; gap: 32px; } .foot-base { flex-direction: column; text-align: center; } }
  .foot-brand p { color: var(--ink-mute); font-size: 14px; line-height: 1.7; margin-top: 18px; max-width: 320px; }
  .foot-col h4 { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
  .foot-col a, .foot-col li {
    display: block; font-size: 14px;
    color: var(--ink-mute); margin-bottom: 10px;
    transition: color .2s ease; list-style: none;
  }
  .foot-col a:hover { color: var(--gold); }
  .foot-icons { display: flex; flex-direction: row; gap: 16px; }
  .icon-link {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 14px; color: var(--ink-mute);
    transition: color .2s ease;
  }
  .icon-link:hover { color: var(--gold); }
  .icon-link svg { width: 18px; height: 18px; flex-shrink: 0; }
  @media (max-width: 480px) {
    .foot-icons { gap: 20px; }
    .icon-link svg { width: 22px; height: 22px; }
  }
  .foot-base {
    padding-top: 32px; border-top: 1px solid var(--line);
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 16px;
    font-size: 12px; letter-spacing: 0.16em;
    color: var(--ink-dim); text-transform: uppercase;
  }

  .reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  [data-i18n-html] em { font-style: italic; color: var(--gold); font-weight: 400; }

  /* LIGHTBOX */
  .lightbox-overlay {
    position: fixed; inset: 0; z-index: 100;
    background: rgba(8, 5, 1, 0.94);
    backdrop-filter: blur(16px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity .35s ease;
    cursor: zoom-out;
  }
  .lightbox-overlay.open { opacity: 1; pointer-events: auto; }
  .lightbox-img {
    max-width: 92vw; max-height: 88vh;
    object-fit: contain; cursor: default;
    border: 1px solid var(--line);
    transform: scale(0.94);
    transition: transform .4s cubic-bezier(.22,.61,.36,1);
  }
  .lightbox-overlay.open .lightbox-img { transform: scale(1); }
  .lightbox-close, .lightbox-prev, .lightbox-next {
    position: fixed; z-index: 101;
    background: none; border: 0; cursor: pointer;
    color: var(--ink-mute); transition: color .2s ease;
  }
  .lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { color: var(--gold); }
  .lightbox-close {
    top: 24px; right: 24px;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; font-family: var(--serif); line-height: 1;
  }
  .lightbox-prev, .lightbox-next {
    top: 50%; transform: translateY(-50%);
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
  }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-prev svg, .lightbox-next svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1; }
  @media (max-width: 640px) {
    .lightbox-close { top: 12px; right: 12px; width: 38px; height: 38px; font-size: 24px; }
    .lightbox-prev, .lightbox-next { width: 40px; height: 40px; }
    .lightbox-prev svg, .lightbox-next svg { width: 22px; height: 22px; }
  }

  /* CONTACT FORM */
  .contact-form {
    max-width: 520px; margin: 0 auto; text-align: left;
    display: flex; flex-direction: column; gap: 20px;
  }
  .field-group { display: flex; flex-direction: column; gap: 6px; }
  .field-group label {
    font-size: 11px; letter-spacing: 0.24em;
    text-transform: uppercase; color: var(--gold);
  }
  .field-group input, .field-group select, .field-group textarea {
    background: var(--bg); border: 1px solid var(--line);
    color: var(--ink); padding: 14px 16px;
    font-family: var(--sans); font-size: 15px;
    transition: border-color .25s ease;
    resize: vertical;
  }
  .field-group input:focus, .field-group select:focus, .field-group textarea:focus {
    outline: none; border-color: var(--gold-soft);
  }
  .field-group textarea { min-height: 120px; }
  .field-group select { appearance: none; cursor: pointer; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  @media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
  .form-submit {
    padding: 16px 32px; cursor: pointer;
    background: var(--gold); color: var(--bg);
    font-family: var(--sans); font-size: 13px; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    border: 1px solid var(--gold);
    transition: all .25s ease;
    margin-top: 8px;
  }
  .form-submit:hover { background: var(--gold-glow); border-color: var(--gold-glow); }
  .form-feedback {
    text-align: center; font-size: 14px; padding: 10px;
    display: none;
  }
  .form-feedback.success { display: block; color: var(--gold); }
  .form-feedback.error { display: block; color: #c44; }

  /* GLOSSARY */
  .glossary-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
  @media (max-width: 820px) { .glossary-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 480px) { .glossary-grid { grid-template-columns: 1fr; } }
  .gloss-card {
    background: var(--bg); padding: 32px 28px;
    transition: background .3s ease;
  }
  .gloss-card:hover { background: var(--bg-soft); }
  .gloss-card .term {
    font-family: var(--serif); font-size: 22px; font-weight: 500;
    color: var(--ink); margin-bottom: 6px; line-height: 1.2;
  }
  .gloss-card .arabic {
    font-size: 13px; color: var(--gold); letter-spacing: 0.12em;
    margin-bottom: 14px; font-family: var(--serif);
  }
  .gloss-card .def {
    font-size: 14px; color: var(--ink-mute); line-height: 1.6;
  }

  /* BACK TO TOP */
  .btt {
    position: fixed; bottom: 28px; right: 28px; z-index: 60;
    width: 44px; height: 44px;
    border: 1px solid var(--gold-soft);
    background: rgba(16, 10, 2, 0.85);
    backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    opacity: 0; visibility: hidden;
    transform: translateY(12px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s ease, border-color .2s ease;
  }
  .btt.visible { opacity: 1; visibility: visible; transform: translateY(0); }
  .btt:hover { border-color: var(--gold); }
  .btt svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
  @media (max-width: 480px) { .btt { bottom: 16px; right: 16px; width: 40px; height: 40px; } }

  /* JSON-LD */
  .jsonld { display:none; }

  /* INSTAGRAM STRIP */
  .instagram-strip {
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    text-align: center;
    padding: 80px 0;
  }
  .ig-cta {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 16px 32px;
    border: 1px solid var(--gold-soft);
    color: var(--gold); font-family: var(--sans);
    font-size: 16px; font-weight: 500;
    letter-spacing: 0.04em;
    transition: all .25s ease;
    margin-bottom: 20px;
  }
  .ig-cta:hover { background: var(--gold); color: var(--bg); }
  .ig-cta svg { flex-shrink: 0; }
  .ig-note {
    color: var(--ink-mute); font-size: 14px;
    max-width: 480px; margin: 0 auto;
  }
  @media (max-width: 480px) {
    .instagram-strip { padding: 56px 0; }
    .ig-cta { font-size: 14px; padding: 14px 24px; }
  }

  /* BLOG */
  .blog-list { max-width: 720px; }
  .blog-empty {
    padding: 56px 0;
    text-align: center;
    color: var(--ink-dim);
    font-family: var(--serif); font-style: italic;
    font-size: 20px; line-height: 1.6;
    border: 1px dashed var(--line);
  }
  @media (max-width: 480px) {
    .blog-empty { font-size: 17px; padding: 40px 20px; }
  }

  /* BLOG CARDS & POST */
  .blog-list { display: flex; flex-direction: column; gap: 28px; }
  .blog-card {
    display: block; text-decoration: none; color: inherit;
    border: 1px solid var(--line);
    transition: border-color .25s ease, transform .25s ease;
    overflow: hidden;
  }
  .blog-card:hover { border-color: var(--gold-soft); transform: translateY(-2px); }
  .blog-card-cover { width: 100%; height: 260px; object-fit: cover; display: block; }
  .blog-card-body { padding: 28px 32px; }
  .blog-card-date {
    font-family: var(--sans); font-size: 12px; letter-spacing: .14em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 10px;
  }
  .blog-card-title {
    font-family: var(--serif); font-weight: 600;
    font-size: 28px; line-height: 1.2; color: var(--ink);
    margin: 0 0 10px;
  }
  .blog-card-excerpt { color: var(--ink-dim); font-size: 15.5px; line-height: 1.7; margin: 0; }
  .blog-back {
    font-family: var(--sans); font-size: 12px; letter-spacing: .14em;
    text-transform: uppercase; color: var(--gold); text-decoration: none;
  }
  .blog-back::before { content: '← '; }
  .blog-back:hover { color: var(--ink); }
  #blog-post { max-width: 720px; }
  .blog-post-title {
    font-family: var(--serif); font-weight: 600;
    font-size: clamp(32px, 5vw, 48px); line-height: 1.15;
    color: var(--ink); margin: 10px 0 28px;
  }
  .blog-post-cover { width: 100%; display: block; margin: 0 0 32px; border: 1px solid var(--line); }
  .blog-post-body p { color: var(--ink-dim); font-size: 17px; line-height: 1.85; margin: 0 0 20px; }
  @media (max-width: 480px) {
    .blog-card-body { padding: 22px 20px; }
    .blog-card-title { font-size: 23px; }
    .blog-card-cover { height: 200px; }
  }

  /* GLOSSARY SEARCH */
  .glossary-search { margin-bottom: 40px; }
  .glossary-search input {
    width: 100%; max-width: 480px;
    padding: 14px 20px;
    background: var(--bg); border: 1px solid var(--line);
    color: var(--ink); font-family: var(--sans);
    font-size: 16px; outline: none;
    transition: border-color .25s ease;
  }
  .glossary-search input:focus { border-color: var(--gold-soft); }
  .glossary-search input::placeholder { color: var(--ink-dim); }
  @media (max-width: 480px) {
    .glossary-search input { font-size: 14px; padding: 12px 16px; }
  }

	  /* COUNTDOWN */
	  .countdown-strip {
	    border-top: 1px solid var(--line);
	    border-bottom: 1px solid var(--line);
	    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 50%, var(--bg) 100%);
	    position: relative; overflow: hidden;
	  }
	  .countdown-strip::before {
	    content: ''; position: absolute; inset: 0; opacity: 0.04;
	    background: radial-gradient(ellipse at center, var(--gold) 0%, transparent 70%);
	  }
	  .countdown-inner {
	    position: relative; z-index: 1;
	    text-align: center; padding: 72px 32px;
	  }
	  @media (max-width: 480px) { .countdown-inner { padding: 48px 16px; } }
	  .countdown-eyebrow {
	    font-size: 11px; letter-spacing: 0.32em;
	    text-transform: uppercase; color: var(--gold);
	    margin-bottom: 16px;
	  }
	  .countdown-label {
	    font-family: var(--serif); font-size: 28px; font-weight: 500;
	    color: var(--ink); margin-bottom: 40px; letter-spacing: 0.04em;
	  }
	  .countdown-boxes {
	    display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
	  }
	  .countdown-box {
	    background: var(--bg); border: 1px solid var(--line);
	    min-width: 100px; padding: 24px 20px;
	    text-align: center;
	    transition: border-color .3s ease;
	  }
	  .countdown-box:hover { border-color: var(--gold-soft); }
	  .countdown-box .num {
	    font-family: var(--serif); font-size: clamp(40px, 6vw, 64px);
	    font-weight: 600; color: var(--gold); line-height: 1;
	    margin-bottom: 8px;
	  }
	  .countdown-box .unit {
	    font-size: 11px; letter-spacing: 0.24em;
	    text-transform: uppercase; color: var(--ink-dim);
	  }
	  @media (max-width: 480px) {
	    .countdown-boxes { gap: 12px; }
	    .countdown-box { min-width: 68px; padding: 18px 12px; }
	    .countdown-label { font-size: 22px; margin-bottom: 28px; }
	  }

	  /* TEAM */
	  .team { border-top: 1px solid var(--line); background: var(--bg); }
	  .team-grid {
	    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
	  }
	  @media (max-width: 820px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
	  @media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }
	  .team-card {
	    background: var(--bg-soft); border: 1px solid var(--line);
	    padding: 32px; text-align: center;
	    transition: border-color .3s ease;
	  }
	  .team-card:hover { border-color: var(--gold-soft); }
	  .team-avatar {
	    width: 100%; aspect-ratio: 3 / 4; height: auto;
	    object-fit: contain; object-position: center;
	    margin: 0 0 20px;
	    border: 1px solid var(--line);
	    background: var(--bg);
	  }
	  .team-avatar-placeholder {
	    width: 100%; aspect-ratio: 3 / 4; height: auto;
	    margin: 0 0 20px;
	    border: 1px solid var(--line);
	    background: var(--bg);
	    display: flex; align-items: center; justify-content: center;
	  }
	  .team-avatar-placeholder svg { width: 48px; height: 48px; stroke: var(--ink-dim); fill: none; stroke-width: 1; }
	  .team-card .member-name {
	    font-family: var(--serif); font-size: 24px; font-weight: 500;
	    color: var(--ink); margin-bottom: 6px; line-height: 1.2;
	  }
	  .team-card .member-role {
	    font-size: 11px; letter-spacing: 0.24em;
	    text-transform: uppercase; color: var(--gold);
	    margin-bottom: 14px;
	  }
	  .team-card .member-bio {
	    font-size: 14px; color: var(--ink-mute); line-height: 1.6;
	  }

	  /* TIMELINE */
	  .timeline { border-top: 1px solid var(--line); }
	  .timeline-wrap { position: relative; max-width: 900px; margin: 0 auto; }
	  .timeline-wrap::before {
	    content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
	    width: 1px; background: var(--line);
	    transform: translateX(-50%);
	  }
	  @media (max-width: 768px) {
	    .timeline-wrap::before { left: 20px; }
	  }
	  .tl-item {
	    position: relative; display: flex; align-items: flex-start;
	    margin-bottom: 64px;
	  }
	  .tl-item:last-child { margin-bottom: 0; }
	  .tl-item:nth-child(odd) { flex-direction: row; }
	  .tl-item:nth-child(even) { flex-direction: row-reverse; }
	  @media (max-width: 768px) {
	    .tl-item, .tl-item:nth-child(odd), .tl-item:nth-child(even) {
	      flex-direction: row; padding-left: 52px;
	    }
	  }
	  .tl-dot {
	    position: absolute; left: 50%; top: 16px;
	    width: 13px; height: 13px; border-radius: 50%;
	    background: var(--gold);
	    border: 2px solid var(--bg);
	    transform: translateX(-50%);
	    z-index: 2;
	  }
	  @media (max-width: 768px) {
	    .tl-dot { left: 20px; }
	  }
	  .tl-content {
	    width: 46%; background: var(--bg-soft);
	    border: 1px solid var(--line);
	    padding: 28px 32px;
	    transition: border-color .3s ease;
	  }
	  .tl-item:nth-child(odd) .tl-content { margin-right: auto; }
	  .tl-item:nth-child(even) .tl-content { margin-left: auto; }
	  @media (max-width: 768px) {
	    .tl-content, .tl-item:nth-child(odd) .tl-content, .tl-item:nth-child(even) .tl-content {
	      width: 100%; margin: 0;
	    }
	  }
	  .tl-content:hover { border-color: var(--gold-soft); }
	  .tl-year {
	    font-family: var(--serif); font-size: 14px; font-weight: 600;
	    color: var(--gold); letter-spacing: 0.2em; margin-bottom: 10px;
	  }
	  .tl-event {
	    font-family: var(--serif); font-size: 22px; font-weight: 500;
	    color: var(--ink); margin-bottom: 10px; line-height: 1.2;
	  }
	  .tl-desc {
	    font-size: 14px; color: var(--ink-mute); line-height: 1.65;
	  }
	  @media (max-width: 480px) {
	    .tl-item { margin-bottom: 40px; padding-left: 42px; }
	    .tl-content { padding: 20px 18px; }
	    .tl-event { font-size: 18px; }
	    .tl-dot { width: 10px; height: 10px; }
	  }

	  /* FAQ */
	  .faq { border-top: 1px solid var(--line); background: var(--bg-soft); }
	  .faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
	  .faq-item { border-bottom: 1px solid var(--line); }
	  .faq-q {
	    width: 100%; background: none; border: 0; cursor: pointer;
	    display: flex; align-items: center; justify-content: space-between; gap: 20px;
	    padding: 28px 0;
	    font-family: var(--serif); font-size: 20px; font-weight: 500;
	    color: var(--ink); text-align: left;
	    transition: color .25s ease;
	  }
	  .faq-q:hover { color: var(--gold); }
	  .faq-q .plus {
	    width: 24px; height: 24px; flex-shrink: 0;
	    position: relative;
	  }
	  .faq-q .plus::before, .faq-q .plus::after {
	    content: ''; position: absolute; background: var(--gold);
	    transition: transform .3s ease;
	  }
	  .faq-q .plus::before { top: 11px; left: 0; width: 24px; height: 1.5px; }
	  .faq-q .plus::after { top: 0; left: 11px; width: 1.5px; height: 24px; }
	  .faq-item.open .faq-q .plus::after { transform: rotate(90deg); }
	  .faq-a {
	    max-height: 0; overflow: hidden;
	    transition: max-height .4s ease, padding .3s ease;
	  }
	  .faq-item.open .faq-a { max-height: 300px; padding-bottom: 28px; }
	  .faq-a p { font-size: 15px; color: var(--ink-mute); line-height: 1.7; }
	  @media (max-width: 480px) {
	    .faq-q { font-size: 17px; padding: 20px 0; }
	    .faq-item.open .faq-a { padding-bottom: 20px; }
	    .faq-a p { font-size: 14px; }
	  }

	  /* JSON-LD */
	  .jsonld { display:none; }
