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

  :root {
    --gold: #4DED8A;
    --gold-light: #80F5AE;
    --gold-dim: #29a860;
    --gold-rgb: 77, 237, 138;
    --black: #2A2A2E;
    --dark: #323236;
    --dark2: #3A3A3E;
    --dark3: #424246;
    --text: #F0F0F0;
    --text-muted: #888890;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --section-pad: clamp(5rem, 10vw, 8.5rem);
  }

  html { scroll-behavior: smooth; }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }

  body {
    background: var(--black);
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
  }

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

  .scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    z-index: 101;
    background: linear-gradient(90deg, var(--gold-dim), var(--gold));
    transition: width 0.08s linear;
  }

  body.is-loading {
    overflow: hidden;
  }

  /* ── PAGE LOADER ── */
  .page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    overflow: hidden;
    background: var(--black);
    transition: opacity 0.55s ease, visibility 0.55s ease;
  }

  .page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .page-loader__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }

  .page-loader__photo {
    position: absolute;
    inset: -24px;
    background: url('hero-bg.png') center 35% / cover no-repeat;
    filter: blur(10px) brightness(0.42) saturate(1.1);
    transform: scale(1.06);
    animation: loader-ken-burns 7s ease-in-out infinite alternate;
  }

  .page-loader__glow {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 55% 45% at 25% 35%, rgba(77, 237, 138, 0.22) 0%, transparent 55%),
      radial-gradient(ellipse 50% 40% at 78% 68%, rgba(77, 237, 138, 0.12) 0%, transparent 50%);
    animation: loader-glow-shift 5s ease-in-out infinite alternate;
  }

  .page-loader__glow::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(77, 237, 138, 0.06) 0%, transparent 42%);
    animation: loader-glow-pulse 3.5s ease-in-out infinite;
  }

  .page-loader__overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(165deg, rgba(42, 42, 46, 0.82) 0%, rgba(42, 42, 46, 0.72) 45%, rgba(42, 42, 46, 0.9) 100%),
      radial-gradient(ellipse 90% 70% at 50% 100%, rgba(0, 0, 0, 0.35) 0%, transparent 55%),
      radial-gradient(ellipse 70% 50% at 50% 0%, rgba(77, 237, 138, 0.04) 0%, transparent 60%);
  }

  .page-loader__logo,
  .page-loader__indicator {
    position: relative;
    z-index: 1;
  }

  .page-loader__logo {
    height: clamp(120px, 28vw, 200px);
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.45));
    animation: loader-fade-in 0.6s ease forwards;
  }

  @keyframes loader-ken-burns {
    from { transform: scale(1.04); }
    to { transform: scale(1.1); }
  }

  @keyframes loader-glow-shift {
    from { opacity: 0.75; transform: scale(1); }
    to { opacity: 1; transform: scale(1.04); }
  }

  @keyframes loader-glow-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
  }

  .page-loader__indicator {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
    height: 28px;
  }

  .page-loader__bar {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: loader-bar 0.9s ease-in-out infinite;
  }

  .page-loader__bar:nth-child(1) { animation-delay: 0s; }
  .page-loader__bar:nth-child(2) { animation-delay: 0.12s; }
  .page-loader__bar:nth-child(3) { animation-delay: 0.24s; }
  .page-loader__bar:nth-child(4) { animation-delay: 0.36s; }
  .page-loader__bar:nth-child(5) { animation-delay: 0.48s; }

  @keyframes loader-bar {
    0%, 100% { height: 8px; opacity: 0.35; }
    50% { height: 28px; opacity: 1; }
  }

  @keyframes loader-fade-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 4rem;
    background: rgba(42, 42, 46, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(var(--gold-rgb), 0.08);
    transition: padding 0.35s var(--ease-out), background 0.35s var(--ease-out), border-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  }

  nav.is-scrolled {
    padding: 0.65rem 4rem;
    background: rgba(42, 42, 46, 0.94);
    border-bottom-color: rgba(var(--gold-rgb), 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  }

  nav.is-scrolled .nav-logo .site-logo {
    height: 64px;
    transition: height 0.35s var(--ease-out);
  }

  .site-logo {
    display: block;
    width: auto;
    object-fit: contain;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    grid-column: 2;
    justify-self: center;
  }

  .nav-logo .site-logo {
    height: 88px;
    transition: height 0.35s var(--ease-out);
  }

  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    justify-self: start;
    grid-column: 1;
    flex-wrap: wrap;
  }

  .nav-actions {
    justify-self: end;
    grid-column: 3;
    display: flex;
    align-items: center;
  }

  nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  nav ul a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s;
    position: relative;
  }

  nav ul a:hover { color: var(--gold); }

  nav ul a.is-active {
    color: var(--text);
  }

  nav ul a.is-active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
  }

  nav ul a:focus-visible,
  .nav-cta:focus-visible,
  .nav-toggle:focus-visible,
  .btn-primary:focus-visible,
  .btn-ghost:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
  }

  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 1px solid rgba(var(--gold-rgb), 0.25);
    border-radius: 2px;
    cursor: pointer;
    grid-column: 1;
    justify-self: start;
  }

  .nav-toggle__line {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--text);
    transition: transform 0.25s var(--ease-out), opacity 0.2s;
  }

  nav.is-menu-open .nav-toggle__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  nav.is-menu-open .nav-toggle__line:nth-child(2) {
    opacity: 0;
  }

  nav.is-menu-open .nav-toggle__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-drawer {
    position: fixed;
    inset: 0;
    z-index: 99;
    pointer-events: none;
    visibility: hidden;
    transition: visibility 0.35s;
  }

  .nav-drawer.is-open {
    pointer-events: auto;
    visibility: visible;
  }

  .nav-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 12, 0.65);
    opacity: 0;
    transition: opacity 0.35s var(--ease-out);
  }

  .nav-drawer.is-open .nav-drawer__backdrop {
    opacity: 1;
  }

  .nav-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    height: 100%;
    background: var(--dark2);
    border-left: 1px solid rgba(var(--gold-rgb), 0.2);
    padding: 5.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
  }

  .nav-drawer.is-open .nav-drawer__panel {
    transform: translateX(0);
  }

  .nav-drawer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .nav-drawer__links a {
    color: var(--text);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .nav-drawer__links a:hover,
  .nav-drawer__links a.is-active {
    color: var(--gold);
  }

  .nav-drawer__cta {
    width: 100%;
    margin-top: auto;
  }

  .nav-cta {
    background: var(--gold);
    color: var(--black) !important;
    padding: 0.55rem 1.4rem;
    border-radius: 2px;
    font-weight: 500 !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase;
    transition: background 0.2s !important;
    border: none;
    cursor: pointer;
    font-family: inherit;
  }

  .nav-cta:hover { background: var(--gold-light) !important; color: var(--black) !important; }

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

  .hero-photo {
    position: absolute;
    inset: 0;
    background: url('hero-bg.png') center 35% / cover no-repeat;
    opacity: 0.45;
    filter: grayscale(10%) contrast(1.08);
    will-change: transform;
    transform: scale(1.06);
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(180deg, rgba(42,42,46,0.45) 0%, rgba(42,42,46,0.72) 100%),
      radial-gradient(ellipse 60% 50% at 70% 50%, rgba(var(--gold-rgb),0.07) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 20% 80%, rgba(var(--gold-rgb),0.04) 0%, transparent 60%);
  }

  .hero-line {
    width: 3px;
    height: 80px;
    background: var(--gold);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
  }

  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 9vw, 8rem);
    line-height: 0.9;
    letter-spacing: 0.03em;
    color: var(--text);
    max-width: 900px;
    position: relative;
    z-index: 2;
  }

  .hero h1 em {
    font-style: normal;
    color: var(--gold);
  }

  .hero-sub {
    margin-top: 2.5rem;
    max-width: 480px;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    position: relative;
    z-index: 2;
  }

  .hero-actions {
    margin-top: 3rem;
    display: flex;
    gap: 1.2rem;
    align-items: center;
    position: relative;
    z-index: 2;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--black);
    padding: 0.85rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }

  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

  button.btn-primary,
  button.btn-ghost {
    border: none;
    cursor: pointer;
    font-family: inherit;
  }

  .btn-ghost {
    color: var(--text);
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid rgba(240,237,230,0.3);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
  }

  .btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

  .hero-strip {
    position: absolute;
    bottom: 0; right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, transparent 40%, rgba(var(--gold-rgb),0.04) 100%);
    pointer-events: none;
    z-index: 1;
  }

  /* ── LEGACY BAND ── */
  .legacy-band {
    background: var(--dark2);
    border-top: 1px solid rgba(var(--gold-rgb),0.2);
    border-bottom: 1px solid rgba(var(--gold-rgb),0.2);
    padding: 1.5rem 4rem;
    display: flex;
    align-items: center;
    gap: 3rem;
  }

  .legacy-tag {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
  }

  .legacy-text {
    font-size: 0.88rem;
    color: var(--text-muted);
  }

  .legacy-text strong { color: var(--text); font-weight: 400; }

  /* ── SECTION SHARED ── */
  section { padding: var(--section-pad) clamp(2rem, 5vw, 4rem); }

  .section-label {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .section-label::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--gold);
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5rem);
    letter-spacing: 0.04em;
    line-height: 1;
    margin-bottom: 1.5rem;
  }

  /* ── ABOUT ── */
  .about {
    background: var(--dark);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .about-text p {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    font-size: 0.98rem;
    line-height: 1.9;
  }

  .about-text p strong { color: var(--text); font-weight: 400; }

  .about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }

  .stat-box {
    background: var(--dark3);
    padding: 2.2rem 1.8rem;
    position: relative;
    overflow: hidden;
  }

  .stat-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 100%;
    background: var(--gold);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .stat-box:hover::before { opacity: 1; }

  .stat-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    letter-spacing: 0.05em;
    color: var(--gold);
    line-height: 1;
    display: block;
  }

  .stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.5rem;
    display: block;
  }

  /* ── SERVICES ── */
  .services { background: var(--black); }

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

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2px;
  }

  .service-card {
    background: var(--dark2);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: background 0.35s var(--ease-out), transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
    cursor: default;
  }

  .service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  }

  .service-card > * {
    position: relative;
    z-index: 1;
  }

  .service-card--draping {
    min-height: 300px;
  }

  .service-card--draping::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
      linear-gradient(180deg, rgba(42,42,46,0.9) 0%, rgba(42,42,46,0.78) 100%),
      url('service-draping-bg.png') center / cover no-repeat;
    transition: filter 0.3s;
  }

  .service-card--draping:hover { background: var(--dark2); }
  .service-card--draping:hover::before { filter: brightness(1.08); }

  .service-card--rendering {
    min-height: 300px;
  }

  .service-card--rendering::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
      linear-gradient(180deg, rgba(42,42,46,0.9) 0%, rgba(42,42,46,0.78) 100%),
      url('service-3d-rendering-bg.png') center / cover no-repeat;
    transition: filter 0.3s;
  }

  .service-card--rendering:hover { background: var(--dark2); }
  .service-card--rendering:hover::before { filter: brightness(1.08); }

  .service-card--production {
    min-height: 300px;
  }

  .service-card--production::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
      linear-gradient(180deg, rgba(42,42,46,0.9) 0%, rgba(42,42,46,0.78) 100%),
      url('service-event-production-bg.png') center / cover no-repeat;
    transition: filter 0.3s;
  }

  .service-card--production:hover { background: var(--dark2); }
  .service-card--production:hover::before { filter: brightness(1.08); }

  .service-card--decor {
    min-height: 300px;
  }

  .service-card--decor::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
      linear-gradient(180deg, rgba(42,42,46,0.9) 0%, rgba(42,42,46,0.78) 100%),
      url('service-decor-champagne-bg.png') center / cover no-repeat;
    transition: filter 0.3s;
  }

  .service-card--decor:hover { background: var(--dark2); }
  .service-card--decor:hover::before { filter: brightness(1.08); }

  .service-card--builds {
    min-height: 300px;
  }

  .service-card--builds::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
      linear-gradient(180deg, rgba(42,42,46,0.9) 0%, rgba(42,42,46,0.78) 100%),
      url('service-custom-builds-bg.png') center / cover no-repeat;
    transition: filter 0.3s;
  }

  .service-card--builds:hover { background: var(--dark2); }
  .service-card--builds:hover::before { filter: brightness(1.08); }

  .service-card--management {
    min-height: 300px;
  }

  .service-card--management::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
      linear-gradient(180deg, rgba(42,42,46,0.92) 0%, rgba(42,42,46,0.82) 100%),
      url('service-project-management-bg.png') center 55% / min(55%, 200px) no-repeat;
    transition: filter 0.3s;
    opacity: 1;
  }

  .service-card--management:hover { background: var(--dark2); }
  .service-card--management:hover::before { filter: brightness(1.15); }

  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  }

  .service-card:not([class*="service-card--"]):hover { background: var(--dark3); }
  .service-card:hover::after { transform: scaleX(1); }

  .service-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: rgba(var(--gold-rgb),0.12);
    line-height: 1;
    margin-bottom: 1.5rem;
    transition: color 0.3s;
  }

  .service-card:hover .service-num { color: rgba(var(--gold-rgb),0.25); }

  .service-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
    color: var(--text);
  }

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

  /* ── STORY ── */
  .story {
    background: var(--dark2);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    align-items: start;
  }

  .story-timeline {
    padding-top: 0.5rem;
  }

  .timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
  }

  .timeline-item::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 36px;
    bottom: -3rem;
    width: 1px;
    background: rgba(var(--gold-rgb),0.2);
  }

  .timeline-item:last-child::before { display: none; }

  .timeline-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: var(--gold);
  }

  .timeline-content h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    color: var(--text);
    margin-bottom: 0.4rem;
  }

  .timeline-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.8;
  }

  .story-right p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 1.5rem;
  }

  .story-right p strong { color: var(--text); font-weight: 400; }

  .story-quote {
    border-left: 3px solid var(--gold);
    padding-left: 1.5rem;
    margin-top: 2.5rem;
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.7;
    font-style: italic;
    font-weight: 300;
  }

  /* ── D3 DRAPING HISTORY ── */
  .history {
    background: var(--black);
  }

  .history-intro {
    max-width: 720px;
    margin-bottom: 3rem;
  }

  .history-intro p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.9;
    margin-top: 1.2rem;
  }

  .history-feature {
    background: var(--dark2);
    border-left: 3px solid var(--gold);
    padding: 1.75rem 2rem;
    margin-bottom: 3rem;
    max-width: 620px;
  }

  .history-feature h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.06em;
    color: var(--text);
    margin: 0.5rem 0 0.75rem;
  }

  .history-feature p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
  }

  .events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2px;
  }

  .event-item {
    background: var(--dark2);
    padding: 1.35rem 1.5rem;
    font-family: var(--font-display);
    font-size: 1.05rem;
    letter-spacing: 0.05em;
    color: var(--text);
    line-height: 1.3;
    transition: background 0.25s;
  }

  .event-item:hover {
    background: var(--dark3);
  }

  .event-item .event-region {
    display: block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 0.45rem;
  }

  /* ── CTA ── */
  .cta {
    background: var(--black);
    text-align: center;
    padding: 7rem 4rem;
    position: relative;
    overflow: hidden;
  }

  .cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(var(--gold-rgb),0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta .section-label { justify-content: center; }

  .cta-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6.5rem);
    letter-spacing: 0.04em;
    line-height: 1;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
  }

  .cta-sub {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
  }

  .cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--dark2);
    border-top: 1px solid rgba(var(--gold-rgb),0.15);
    padding: 3rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-logo .site-logo {
    height: 56px;
    margin: 0 auto;
  }

  .footer-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
  }

  .footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  .footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--gold); }

  /* ── PROJECT MODAL ── */
  .project-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease-out), visibility 0.35s;
  }

  .project-modal.is-open {
    opacity: 1;
    visibility: visible;
  }

  .project-modal__panel {
    background: var(--dark2);
    border: 1px solid rgba(var(--gold-rgb), 0.22);
    width: min(560px, 100%);
    max-height: min(92vh, 900px);
    overflow-y: auto;
    padding: 2.5rem 2rem 2rem;
    position: relative;
    transform: translateY(20px) scale(0.98);
    transition: transform 0.4s var(--ease-out);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  }

  .project-modal.is-open .project-modal__panel {
    transform: translateY(0) scale(1);
  }

  .project-modal__success {
    text-align: center;
    padding: 1rem 0 0.5rem;
  }

  .project-modal__success-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: rgba(var(--gold-rgb), 0.12);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
  }

  .project-modal__success h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
  }

  .project-modal__success p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
  }

  .field-error {
    display: none;
    font-size: 0.8rem;
    color: #f08080;
    margin-top: 0.45rem;
    letter-spacing: 0.02em;
    text-transform: none;
  }

  .field.is-invalid .field-error {
    display: block;
  }

  .field.is-invalid input,
  .field.is-invalid textarea,
  .field.is-invalid .service-options {
    border-color: rgba(240, 128, 128, 0.55);
  }

  .field.is-invalid .service-options {
    outline: 1px solid rgba(240, 128, 128, 0.35);
    border-radius: 2px;
    padding: 0.5rem;
  }

  .project-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    transition: color 0.2s;
  }

  .project-modal__close:hover { color: var(--gold); }

  .project-modal__title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    letter-spacing: 0.06em;
    margin-bottom: 0.35rem;
  }

  .project-modal__sub {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 2rem;
    line-height: 1.7;
  }

  .project-form label,
  .project-form .label-text,
  .project-form legend {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }

  .project-form legend {
    width: 100%;
    padding: 0;
  }

  .project-form .field {
    margin-bottom: 1.35rem;
  }

  .project-form input[type="text"],
  .project-form input[type="email"],
  .project-form input[type="tel"],
  .project-form input[type="date"],
  .project-form textarea,
  .project-form select {
    width: 100%;
    background: var(--dark3);
    border: 1px solid rgba(240, 240, 240, 0.12);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    border-radius: 2px;
    transition: border-color 0.2s;
  }

  .project-form input:focus,
  .project-form textarea:focus,
  .project-form select:focus {
    outline: none;
    border-color: var(--gold);
  }

  .project-form textarea {
    min-height: 88px;
    resize: vertical;
  }

  .service-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .service-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
  }

  .service-option input {
    accent-color: var(--gold);
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
  }

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

  .contact-grid .field.full {
    grid-column: 1 / -1;
  }

  .project-form .btn-primary {
    width: 100%;
    margin-top: 0.5rem;
    text-align: center;
  }

  @media (max-width: 600px) {
    .service-options { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
  }

  /* ── LEADERSHIP ── */
  .leadership {
    background: var(--dark);
  }

  .leadership-header {
    max-width: 640px;
    margin-bottom: 3.5rem;
  }

  .leadership-header p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.9;
    margin-top: 1.2rem;
  }

  .leadership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }

  .leader-card {
    background: var(--dark2);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
  }

  .leader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gold);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .leader-card:hover::before { opacity: 1; }

  .leader-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
  }

  .leader-name {
    font-family: var(--font-display);
    font-size: 2.4rem;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .leader-role {
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
  }

  .leader-card h4 {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 1.25rem 0 0.6rem;
  }

  .leader-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 0.9rem;
  }

  .leader-card p:last-child { margin-bottom: 0; }

  /* ── SCROLL ANIMATIONS ── */
  .fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition:
      opacity 0.75s var(--ease-out),
      transform 0.75s var(--ease-out);
    transition-delay: var(--fade-delay, 0ms);
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav {
      padding: 0.85rem 1.5rem;
      grid-template-columns: auto 1fr auto;
      justify-items: center;
    }

    nav.is-scrolled {
      padding: 0.55rem 1.5rem;
    }

    .nav-toggle { display: flex; }

    .nav-links,
    .nav-actions { display: none; }

    .nav-logo {
      grid-column: 2;
      justify-self: center;
    }

    .nav-logo .site-logo { height: 72px; }

    nav.is-scrolled .nav-logo .site-logo { height: 56px; }

    .hero { padding: 7rem 2rem 4rem; }
    .about, .story { grid-template-columns: 1fr; gap: 3rem; }
    .leadership-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .legacy-band { flex-direction: column; gap: 0.5rem; padding: 1.5rem 2rem; }
    footer { flex-direction: column; gap: 1.5rem; text-align: center; }
    .services-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  }

  @media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .events-grid { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: column; }
    .rentals-promo { flex-direction: column; align-items: flex-start; }
  }

  /* ── RENTALS PROMO (homepage) ── */
  .rentals-promo {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
  }

  .rentals-promo__btn {
    flex-shrink: 0;
    white-space: nowrap;
  }

  /* ── RENTALS PAGE ── */
  .rentals-page-hero {
    padding: 10rem clamp(2rem, 5vw, 4rem) 4rem;
    background: var(--black);
    position: relative;
    overflow: hidden;
  }

  .rentals-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(42, 42, 46, 0.55) 0%, rgba(42, 42, 46, 0.92) 100%),
      radial-gradient(ellipse 60% 50% at 70% 40%, rgba(var(--gold-rgb), 0.07) 0%, transparent 70%);
    pointer-events: none;
  }

  .rentals-page-hero > * {
    position: relative;
    z-index: 1;
    max-width: 720px;
  }

  .rentals-page-hero .section-title {
    margin-bottom: 1rem;
  }

  .rentals-page-hero p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 560px;
  }

  .rentals-catalog {
    background: var(--dark);
    display: flex;
    flex-direction: column;
    gap: 5.5rem;
  }

  .rental-category {
    margin-bottom: 0;
    width: 100%;
  }

  .rental-category__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2rem);
    letter-spacing: 0.08em;
    color: var(--text);
    margin: 0 0 2.25rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(var(--gold-rgb), 0.2);
  }

  .rentals-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 3rem;
    align-items: stretch;
    width: 100%;
  }

  .rental-card {
    background: var(--dark2);
    height: 100%;
    min-height: 8.5rem;
    padding: 1.75rem 1.75rem 1.85rem;
    cursor: default;
    border-left: 2px solid rgba(var(--gold-rgb), 0.15);
    transition: background 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow: hidden;
  }

  .rental-card:hover {
    background: var(--dark3);
    border-left-color: var(--gold);
  }

  .rental-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    color: var(--text);
    margin: 0 0 0.75rem;
    line-height: 1.25;
  }

  .rental-card__desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
    flex: 1;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
  }

  .rentals-quote {
    background: var(--black);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .rentals-quote .cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(var(--gold-rgb), 0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .rentals-quote__inner {
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin: 0 auto;
  }

  .rentals-quote__inner p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
  }

  @media (max-width: 900px) {
    .rentals-grid {
      grid-template-columns: 1fr;
      gap: 1.25rem;
    }

    .rentals-catalog {
      gap: 4rem;
    }
  }

  nav .nav-links a[href="rentals.html"].is-active,
  .nav-drawer__links a[href="rentals.html"].is-active {
    color: var(--gold);
  }
