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


  :root {
    --gold: #B8912A;
    --gold-light: #D4AB4E;
    --gold-pale: #F5EDD5;
    --dark: #1A1208;
    --warm-brown: #4A2E10;
    --cream: #FAF6EE;
    --rose: #C47B6A;
    --rose-light: #E8C2B8;
    --green: #2D5A3D;
    --green-light: #4A8C63;
    --text: #2C1F0E;
    --muted: #6B5240;
  }


  html { 
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
  }


  body {
    font-family: 'Lato', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100vh;
  }

 a {
    text-decoration: none;
    color: inherit;   
  }


  /* ── HERO ── */
  
  .hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(160deg, #1A0E06 0%, #2D1A08 40%, #3D2510 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px 60px;
    overflow: hidden;
  }

  .hero-video-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
  }

  .hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
  }


  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 40% at 20% 80%, rgba(180,120,60,0.18) 0%, transparent 60%),
      radial-gradient(ellipse 50% 35% at 80% 20%, rgba(184,145,42,0.12) 0%, transparent 55%),
      radial-gradient(ellipse 40% 50% at 50% 50%, rgba(90,40,10,0.25) 0%, transparent 70%);
    pointer-events: none;
  }


  /* Decorative corner borders */
  .hero::after {
    content: '';
    position: absolute;
    top: 20px; left: 20px; right: 20px; bottom: 20px;
    border: 1px solid rgba(184,145,42,0.3);
    pointer-events: none;
  }


  .corner {
    position: absolute;
    width: 28px; height: 28px;
    border-color: var(--gold);
    border-style: solid;
    opacity: 0.7;
  }
  .corner.tl { top: 14px; left: 14px; border-width: 2px 0 0 2px; }
  .corner.tr { top: 14px; right: 14px; border-width: 2px 2px 0 0; }
  .corner.bl { bottom: 14px; left: 14px; border-width: 0 0 2px 2px; }
  .corner.br { bottom: 14px; right: 14px; border-width: 0 2px 2px 0; }


  .hero-eyebrow {
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }


  .hero-logo {
    margin: 0 auto 28px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }


  .hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(40px, 7vw, 72px);
    color: #FDF8EF;
    line-height: 1.1;
    font-weight: 400;
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
  }


  .hero-subtitle-dept {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(13px, 2.5vw, 18px);
    color: var(--gold-light);
    font-style: italic;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    letter-spacing: 0.04em;
  }


  .hero-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 28px;
    position: relative;
    z-index: 1;
  }


  .hero-motto {
    font-size: 14px;
    font-weight: 300;
    color: rgba(253,248,239,0.8);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
  }


  .hero-motto-hawaiian {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-style: italic;
    color: var(--gold-light);
    position: relative;
    z-index: 1;
  }


  .hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 0;
    right: 0;
    width: fit-content;
    margin: 0 auto;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.5;
    animation: bob 2s ease-in-out infinite;
  }


  @keyframes bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
  }


  .hero-scroll span {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
  }


  .scroll-line {
    width: 1px;
    height: 28px;
    background: linear-gradient(180deg, var(--gold-light), transparent);
  }


  /* ── NAV ── */
  nav {
    background: var(--dark);
    border-bottom: 1px solid rgba(184,145,42,0.25);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 clamp(16px, 5vw, 80px);
  }


  .nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 54px;
  }


  .nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    color: var(--gold-light);
    font-style: italic;
    white-space: nowrap;
  }


  .nav-links {
    display: flex;
    gap: clamp(16px, 3vw, 36px);
    list-style: none;
  }


  .nav-links a {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(253,248,239,0.6);
    text-decoration: none;
    transition: color 0.2s;
  }


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


  /* Hamburger Menu */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .hamburger-line {
    width: 100%;
    height: 2px;
    background: var(--gold-light);
    transition: all 0.3s ease;
    transform-origin: center;
  }

  .hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }


  /* ── SECTION WRAPPER ── */
  .section {
    max-width: 1100px;
    margin: 0 auto;
    padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 60px);
    background: #fff;
  }


  .section-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
  }


  .section-eyebrow::before, .section-eyebrow::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    max-width: 60px;
    opacity: 0.5;
  }
  .section-eyebrow::before { max-width: 20px; }


  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 400;
    color: var(--warm-brown);
    line-height: 1.2;
    margin-bottom: 16px;
  }


  .section-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 640px;
  }


  /* ── INTRO ── */
  #intro {
    background: #FFF9F1;
    border-bottom: 1px solid rgba(184,145,42,0.12);
  }


  .intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }


  @media (max-width: 700px) { .intro-grid { grid-template-columns: 1fr; gap: 36px; } }


  .intro-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 3.5vw, 26px);
    font-style: italic;
    color: var(--warm-brown);
    line-height: 1.5;
    border-left: 3px solid var(--gold);
    padding-left: 24px;
    margin: 28px 0;
  }


  .director-card {
    background: var(--dark);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }


  .director-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(184,145,42,0.15), transparent 60%);
    pointer-events: none;
  }


  .director-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--rose));
    border-radius: 50%;
    margin: 0 auto 16px;
    border: 3px solid rgba(184,145,42,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #FFF;
    position: relative;
    z-index: 1;
  }


  .director-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #FDF8EF;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
  }


  .director-role {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-light);
    position: relative;
    z-index: 1;
  }


  .director-message {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(253,248,239,0.65);
    margin-top: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
  }


  /* ── KULEANA VALUES ── */
  #kuleana {
    background: var(--cream);
  }


  .kuleana-header {
    text-align: center;
    margin-bottom: 48px;
  }


  .kuleana-header .section-eyebrow { justify-content: center; }


  .mission-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }


  @media (max-width: 600px) { .mission-row { grid-template-columns: 1fr; } }


  .mission-pill {
    background: white;
    border: 1px solid rgba(184,145,42,0.2);
    border-radius: 12px;
    padding: 20px 24px;
    text-align: center;
  }


  .mission-pill-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
  }


  .mission-pill-value {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-style: italic;
    color: var(--warm-brown);
  }


  .mission-full {
    background: var(--warm-brown);
    border-radius: 12px;
    padding: 24px 28px;
    text-align: center;
    margin-bottom: 56px;
  }


  .mission-full-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 10px;
  }


  .mission-full-value {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(253,248,239,0.85);
  }


  .imua-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }


  @media (max-width: 700px) {
    .imua-grid { grid-template-columns: repeat(2, 1fr); }
  }


  .imua-card {
    background: white;
    border: 1px solid rgba(184,145,42,0.15);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: default;
  }


  .imua-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(90,40,10,0.1);
  }


  .imua-letter {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 12px;
  }


  .imua-word {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-style: italic;
    color: var(--warm-brown);
    margin-bottom: 10px;
  }


  .imua-desc {
    font-size: 12px;
    line-height: 1.65;
    color: var(--muted);
  }


  /* ── VENUES ── */
  #venues {
    background: var(--dark);
    position: relative;
    overflow: hidden;
  }


  #venues::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 70% 50% at 10% 30%, rgba(184,145,42,0.08), transparent 55%),
      radial-gradient(ellipse 60% 40% at 90% 70%, rgba(196,123,106,0.08), transparent 55%);
    pointer-events: none;
  }


  #venues .section-title { color: #FDF8EF; }
  #venues .section-body { color: rgba(253,248,239,0.6); }
  #venues .section-eyebrow { color: var(--gold-light); }
  #venues .section { background: transparent; }


  .venues-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 48px;
  }


  @media (max-width: 700px) { .venues-grid { grid-template-columns: 1fr; } }


  .venue-card {
    border: 1px solid rgba(184,145,42,0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: border-color 0.25s, background 0.25s;
    background-color: #1A1208;
    background: linear-gradient(180deg, rgba(26,18,8,0.98) 0%, rgba(35,22,14,0.98) 100%);
    color: #FDF8EF;
  }


  .venue-card:hover {
    border-color: rgba(184,145,42,0.5);
    background: linear-gradient(180deg, rgba(35,24,15,1) 0%, rgba(45,30,20,1) 100%);
  }


  .venue-link {
    display: block;
    color: inherit;
    text-decoration: none;
  }


  .gateway-card {
    background: linear-gradient(180deg, rgba(32,58,53,0.92) 0%, rgba(40,68,61,0.92) 100%);
    border-color: rgba(88,110,103,0.22);
  }


  .gateway-card:hover {
    background: linear-gradient(180deg, rgba(34,60,55,1) 0%, rgba(42,72,65,1) 100%);
    border-color: rgba(88,110,103,0.45);
  }


  .venue-header {
    padding: 32px 32px 24px;
    position: relative;
    border-bottom: 1px solid rgba(184,145,42,0.12);
  }


  .venue-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 14px;
  }


  .venue-tag.alii { background: rgba(184,145,42,0.15); color: var(--gold-light); }
  .venue-tag.gateway { background: rgba(95,128,111,0.24); color: #A0B8A6; }


  .venue-name {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: #FDF8EF;
    margin-bottom: 6px;
  }


  .venue-tagline {
    font-size: 13px;
    font-style: italic;
    color: rgba(253,248,239,0.5);
  }


  .venue-body {
    padding: 24px 32px;
  }


  .venue-desc {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(253,248,239,0.65);
    margin-bottom: 24px;
  }


  .venue-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }


  .role-chip {
    font-size: 11px;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(184,145,42,0.25);
    color: rgba(253,248,239,0.55);
  }


  /* ── STANDARDS ── */
  #standards {
    background: #FFF9F1;
  }


  .standards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
  }


  @media (max-width: 750px) {
    .standards-grid { grid-template-columns: 1fr; }
  }


  .standard-card {
    background: white;
    border: 1px solid rgba(184,145,42,0.12);
    border-radius: 16px;
    padding: 28px 24px;
    position: relative;
  }


  .standard-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 20px;
  }


  .standard-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--warm-brown);
    margin-bottom: 10px;
  }


  .standard-desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--muted);
  }


  /* ── FOOTER ── */
  footer {
    background: var(--dark);
    border-top: 1px solid rgba(184,145,42,0.2);
    padding: 48px clamp(20px, 5vw, 60px);
    text-align: center;
  }


  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--gold-light);
    font-style: italic;
    margin-bottom: 8px;
  }


  .footer-sub {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(253,248,239,0.35);
    margin-bottom: 28px;
  }


  .footer-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 28px;
  }


  .footer-copy {
    font-size: 12px;
    color: rgba(253,248,239,0.25);
  }


  /* Fade-in on scroll */
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: none;
  }
  
  


  /* ── MOBILE NAV ── */
  @media (max-width: 768px) {
    .hamburger {
      display: flex;
    }

    .nav-links {
      position: fixed;
      top: 0;
      right: 0;
      width: 280px;
      height: 100vh;
      background: var(--dark);
      border-left: 1px solid rgba(184,145,42,0.25);
      flex-direction: column;
      gap: 0;
      padding: 80px 0 40px;
      transform: translateX(100%);
      opacity: 1;
      visibility: hidden;
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 99;
      box-shadow: -4px 0 20px rgba(0,0,0,0.3);
    }

    .nav-links.active {
      transform: translateX(0);
      visibility: visible;
    }

    .nav-links li {
      text-align: center;
      border-bottom: 1px solid rgba(184,145,42,0.1);
    }

    .nav-links li:last-child {
      border-bottom: none;
    }

    .nav-links a {
      display: block;
      padding: 20px 24px;
      font-size: 16px;
      letter-spacing: 0.1em;
      transition: all 0.2s ease;
    }

    .nav-links a:hover {
      background: rgba(184,145,42,0.1);
      color: var(--gold-light);
      transform: translateX(8px);
    }
  }
