    :root {
      --navy: #0B2D4E;
      --navy-deep: #071d33;
      --cyan: #00B4D8;
      --cyan-deep: #0077A8;
      --sand: #F4E9DA;
      --cream: #FAF7F2;
      --ink: #1A2634;
      --muted: #64748b;
      --radius: 24px;
      --font-display: 'Syne', sans-serif;
      --font-body: 'DM Sans', system-ui, sans-serif;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      color: var(--ink);
      background: var(--cream);
      overflow-x: hidden;
    }

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

    .container { max-width: 1240px; margin: 0 auto; padding: 0 6vw; }

    /* ---------- NAV ---------- */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 6vw;
      background: rgba(11, 45, 78, 0.55);
      backdrop-filter: blur(16px) saturate(160%);
      -webkit-backdrop-filter: blur(16px) saturate(160%);
      border-bottom: 1px solid rgba(255,255,255,0.08);
      transition: background .3s ease, padding .3s ease;
    }
    .nav.scrolled { background: rgba(7, 29, 51, 0.92); padding: 12px 6vw; }

    .brand { display: flex; align-items: center; gap: 12px; }
    .brand img { width: 42px; height: 42px; border-radius: 50%; }
    .brand span {
      font-family: var(--font-display); font-weight: 800; color: #fff;
      font-size: 1.05rem; letter-spacing: 0.02em;
    }
    .brand small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 0.62rem; color: var(--sand); letter-spacing: 0.12em; }

    .nav-right { display: flex; align-items: center; gap: 26px; }
    .nav-links { display: flex; align-items: center; gap: 30px; }
    .nav-links a {
      color: rgba(255,255,255,0.85); font-size: 0.88rem; font-weight: 500;
      position: relative; transition: color .2s;
    }
    .nav-links a::after {
      content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
      background: var(--cyan); transition: width .25s ease;
    }
    .nav-links a:hover { color: #fff; }
    .nav-links a:hover::after { width: 100%; }

    .lang-switch {
      display: flex; align-items: center; background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.18); border-radius: 999px; padding: 3px;
    }
    .lang-switch button {
      border: none; background: transparent; color: rgba(255,255,255,0.65);
      font-family: var(--font-body); font-weight: 700; font-size: 0.75rem;
      padding: 6px 13px; border-radius: 999px; cursor: pointer; transition: all .2s;
      letter-spacing: 0.03em;
    }
    .lang-switch button.active { background: var(--cyan); color: #fff; }

    .btn-portal {
      background: linear-gradient(135deg, var(--cyan), var(--cyan-deep));
      color: #fff !important; padding: 11px 22px; border-radius: 999px;
      font-weight: 700; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 8px;
      box-shadow: 0 8px 20px rgba(0,180,216,0.35); white-space: nowrap;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .btn-portal:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,180,216,0.45); }

    .nav-toggle { display: none; }

    /* ---------- HERO ---------- */
    .hero {
      min-height: 100vh;
      display: flex; align-items: center;
      background:
        linear-gradient(180deg, rgba(7,29,51,0.55) 0%, rgba(7,29,51,0.75) 55%, var(--navy-deep) 100%),
        url('picts/DSCF3934.jpg') center 30%/cover no-repeat;
      position: relative;
    }
    .hero::after {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse at 30% 20%, rgba(0,180,216,0.18), transparent 55%);
      pointer-events: none;
    }
    .hero-inner { position: relative; z-index: 2; padding-top: 90px; }
    .eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      color: var(--sand); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em;
      text-transform: uppercase; margin-bottom: 22px;
      background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
      padding: 8px 16px; border-radius: 999px; backdrop-filter: blur(6px);
    }
    .eyebrow i { color: var(--cyan); }

    .hero h1 {
      font-family: var(--font-display); font-weight: 800; color: #fff;
      font-size: clamp(2.6rem, 6.2vw, 5.4rem); line-height: 1.03; letter-spacing: -0.01em;
      max-width: 16ch;
    }
    .hero h1 em { font-style: normal; color: var(--cyan); }

    .hero p {
      color: rgba(255,255,255,0.82); font-size: clamp(1rem, 1.6vw, 1.2rem);
      max-width: 46ch; margin-top: 24px; line-height: 1.65;
    }

    .hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }
    .btn-primary {
      background: var(--cyan); color: #fff; font-weight: 700; padding: 16px 30px;
      border-radius: 14px; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 10px;
      box-shadow: 0 12px 30px rgba(0,180,216,0.35);
      transition: transform .2s ease;
    }
    .btn-primary:hover { transform: translateY(-3px); }
    .btn-ghost {
      color: #fff; font-weight: 600; padding: 16px 26px; border-radius: 14px;
      border: 1.5px solid rgba(255,255,255,0.35); font-size: 0.95rem;
      display: inline-flex; align-items: center; gap: 10px; transition: all .2s ease;
    }
    .btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

    .hero-stats {
      display: flex; gap: 48px; margin-top: 72px; flex-wrap: wrap;
    }
    .hero-stats div strong {
      font-family: var(--font-display); font-size: 2rem; color: #fff; display: block;
    }
    .hero-stats div span { color: rgba(255,255,255,0.6); font-size: 0.8rem; letter-spacing: 0.04em; }

    .scroll-cue {
      position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
      color: rgba(255,255,255,0.6); font-size: 1.3rem;
      animation: bob 2s ease-in-out infinite;
    }
    @keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

    /* ---------- MARQUEE STRIP ---------- */
    .strip {
      background: var(--navy-deep); color: var(--sand); padding: 14px 0; overflow: hidden;
      border-top: 1px solid rgba(255,255,255,0.07); border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .strip-track { display: flex; gap: 60px; white-space: nowrap; animation: scroll-x 28s linear infinite; width: max-content; }
    .strip-track span { font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 0.08em; opacity: 0.85; display: inline-flex; align-items: center; gap: 10px; }
    .strip-track span i { color: var(--cyan); }
    @keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ---------- SECTION HEADERS ---------- */
    .kicker {
      color: var(--cyan-deep); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.16em;
      text-transform: uppercase; margin-bottom: 12px; display: block;
    }
    .sec-title {
      font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 3.6vw, 2.8rem);
      color: var(--navy); line-height: 1.1; max-width: 20ch;
    }
    .sec-sub { color: var(--muted); font-size: 1.02rem; max-width: 60ch; margin-top: 16px; line-height: 1.7; }

    /* ---------- WELCOME / ABOUT ---------- */
    .about {
      padding: 130px 0 100px;
      display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 70px; align-items: center;
    }
    .about-media { position: relative; }
    .about-media img {
      border-radius: var(--radius); box-shadow: 0 30px 60px rgba(11,45,78,0.22);
    }
    .about-badge {
      position: absolute; bottom: -26px; left: -26px; background: #fff; border-radius: 18px;
      padding: 18px 22px; box-shadow: 0 20px 40px rgba(11,45,78,0.18);
      display: flex; align-items: center; gap: 14px; max-width: 240px;
    }
    .about-badge .ic {
      width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg,var(--cyan),var(--cyan-deep));
      display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.1rem; flex-shrink: 0;
    }
    .about-badge strong { font-family: var(--font-display); color: var(--navy); font-size: 1rem; display: block; }
    .about-badge span { font-size: 0.78rem; color: var(--muted); }

    .about-text p { color: var(--muted); margin-top: 22px; line-height: 1.75; font-size: 1rem; }
    .about-text p strong { color: var(--navy); }

    /* ---------- AMENITIES ---------- */
    .amenities { padding: 100px 0; background: var(--navy); position: relative; overflow: hidden; }
    .amenities::before {
      content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%;
      background: radial-gradient(circle, rgba(0,180,216,0.18), transparent 70%);
      top: -200px; right: -200px;
    }
    .amenities .kicker { color: var(--cyan); }
    .amenities .sec-title { color: #fff; max-width: 22ch; }
    .amenities .sec-sub { color: rgba(255,255,255,0.6); }

    .amen-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px;
      position: relative; z-index: 1;
    }
    .amen-card {
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 20px; padding: 30px 24px; transition: all .25s ease; backdrop-filter: blur(6px);
    }
    .amen-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-6px); border-color: rgba(0,180,216,0.4); }
    .amen-card i { font-size: 1.7rem; color: var(--cyan); margin-bottom: 18px; display: block; }
    .amen-card h3 { font-family: var(--font-display); color: #fff; font-size: 1.05rem; margin-bottom: 8px; }
    .amen-card p { color: rgba(255,255,255,0.55); font-size: 0.86rem; line-height: 1.55; }

    /* ---------- GALLERY ---------- */
    .gallery { padding: 110px 0; }
    .gallery-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; margin-bottom: 50px; }
    .gal-grid {
      display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px;
    }
    .gal-item { border-radius: 16px; overflow: hidden; aspect-ratio: 1/1.1; position: relative; }
    .gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
    .gal-item:hover img { transform: scale(1.12); }
    .gal-item::after {
      content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(11,45,78,0.55));
      opacity: 0; transition: opacity .3s;
    }
    .gal-item:hover::after { opacity: 1; }

    /* ---------- BOARD / INFO CARDS ---------- */
    .info-band { padding: 0 0 110px; }
    .info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
    .info-card {
      background: #fff; border-radius: 20px; padding: 34px 28px; box-shadow: 0 16px 40px rgba(11,45,78,0.08);
      border: 1px solid rgba(11,45,78,0.06); transition: transform .25s ease, box-shadow .25s ease;
    }
    .info-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(11,45,78,0.14); }
    .info-card .ic {
      width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, var(--sand), #fff);
      display: flex; align-items: center; justify-content: center; color: var(--cyan-deep); font-size: 1.3rem; margin-bottom: 20px;
    }
    .info-card h3 { font-family: var(--font-display); color: var(--navy); font-size: 1.15rem; margin-bottom: 10px; }
    .info-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.65; }
    .info-card a.link { color: var(--cyan-deep); font-weight: 700; font-size: 0.85rem; margin-top: 14px; display: inline-flex; align-items: center; gap: 6px; }

    /* ---------- CTA BANNER ---------- */
    .cta-banner {
      margin: 0 6vw 110px; border-radius: 32px; padding: 70px 60px;
      background: linear-gradient(120deg, var(--navy) 0%, var(--cyan-deep) 130%);
      position: relative; overflow: hidden;
      display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
    }
    .cta-banner::before {
      content: ''; position: absolute; width: 400px; height: 400px; background: rgba(255,255,255,0.06);
      border-radius: 50%; right: -120px; bottom: -160px;
    }
    .cta-text h2 { font-family: var(--font-display); color: #fff; font-size: clamp(1.6rem, 3vw, 2.3rem); max-width: 18ch; position: relative; z-index: 1; }
    .cta-text p { color: rgba(255,255,255,0.75); margin-top: 14px; max-width: 40ch; position: relative; z-index: 1; }
    .cta-banner .btn-primary { background: #fff; color: var(--navy); position: relative; z-index: 1; box-shadow: 0 16px 34px rgba(0,0,0,0.2); }

    /* ---------- FOOTER ---------- */
    .footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); padding: 70px 0 30px; }
    .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
    .footer-brand img { width: 38px; height: 38px; border-radius: 50%; }
    .footer-brand span { font-family: var(--font-display); font-weight: 800; color: #fff; }
    .footer p.desc { font-size: 0.88rem; line-height: 1.7; max-width: 32ch; }
    .footer h4 { color: #fff; font-family: var(--font-display); font-size: 0.95rem; margin-bottom: 18px; }
    .footer ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
    .footer ul a, .footer ul li { font-size: 0.87rem; transition: color .2s; }
    .footer ul a:hover { color: var(--cyan); }
    .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; }
    .footer-social { display: flex; gap: 12px; }
    .footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; transition: background .2s; }
    .footer-social a:hover { background: var(--cyan); color: #fff; }

    /* ---------- RESPONSIVE ---------- */
    @media (max-width: 980px) {
      .nav-links { display: none; }
      .nav-toggle { display: block; color: #fff; font-size: 1.4rem; background: none; border: none; cursor: pointer; }
      .about { grid-template-columns: 1fr; padding-top: 110px; }
      .about-media { order: -1; }
      .amen-grid { grid-template-columns: repeat(2, 1fr); }
      .info-grid { grid-template-columns: 1fr; }
      .gal-grid { grid-template-columns: repeat(3, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 560px) {
      .container { padding: 0 22px; }
      .gal-grid { grid-template-columns: repeat(2, 1fr); }
      .cta-banner { padding: 44px 28px; }
      .footer-grid { grid-template-columns: 1fr; }
      .brand small { display: none; }
    }

    /* ---------- INNER PAGE HERO ---------- */
    .page-hero {
      min-height: 46vh; display: flex; align-items: flex-end;
      background:
        linear-gradient(180deg, rgba(7,29,51,0.55) 0%, rgba(7,29,51,0.85) 100%),
        url('picts/DSCF3934.jpg') center 30%/cover no-repeat;
      padding: 150px 0 60px;
    }
    .page-hero .kicker { color: var(--sand); }
    .page-hero h1 {
      font-family: var(--font-display); font-weight: 800; color: #fff;
      font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.05;
    }
    .page-hero p { color: rgba(255,255,255,0.75); margin-top: 14px; max-width: 60ch; font-size: 1.02rem; }
    .breadcrumb { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.55); font-size: 0.82rem; margin-bottom: 18px; }
    .breadcrumb a { color: rgba(255,255,255,0.75); }
    .breadcrumb a:hover { color: var(--cyan); }

    /* ---------- CONTENT PAGES ---------- */
    .page-content { padding: 90px 0 110px; }
    .page-content .lead { color: var(--muted); font-size: 1.05rem; max-width: 70ch; line-height: 1.75; margin-bottom: 50px; }

    /* Documents list */
    .doc-list { display: flex; flex-direction: column; gap: 16px; }
    .doc-row {
      display: flex; align-items: center; gap: 22px; background: #fff; border-radius: 18px;
      padding: 22px 26px; box-shadow: 0 12px 30px rgba(11,45,78,0.07); border: 1px solid rgba(11,45,78,0.06);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .doc-row:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(11,45,78,0.13); }
    .doc-row .doc-ic {
      width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, #fdecec, #fff);
      color: #d64545; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0;
    }
    .doc-row .doc-info { flex: 1; min-width: 0; }
    .doc-row h3 { font-family: var(--font-display); color: var(--navy); font-size: 1.05rem; margin-bottom: 4px; }
    .doc-row p { color: var(--muted); font-size: 0.88rem; }
    .doc-row .doc-dl {
      background: var(--sand); color: var(--navy); font-weight: 700; font-size: 0.82rem;
      padding: 10px 20px; border-radius: 10px; white-space: nowrap; display: inline-flex; align-items: center; gap: 8px;
      transition: background .2s ease;
    }
    .doc-row .doc-dl:hover { background: var(--cyan); color: #fff; }

    /* Board cards */
    .board-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .board-card {
      background: #fff; border-radius: 20px; padding: 30px 26px; text-align: center;
      box-shadow: 0 14px 34px rgba(11,45,78,0.08); border: 1px solid rgba(11,45,78,0.06);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .board-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(11,45,78,0.13); }
    .board-card .avatar {
      width: 74px; height: 74px; border-radius: 50%; margin: 0 auto 18px;
      background: linear-gradient(135deg, var(--cyan), var(--cyan-deep)); color: #fff;
      display: flex; align-items: center; justify-content: center; font-size: 1.6rem; font-family: var(--font-display); font-weight: 800;
    }
    .board-card .role { color: var(--cyan-deep); font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
    .board-card h3 { font-family: var(--font-display); color: var(--navy); font-size: 1.1rem; margin-bottom: 6px; }
    .board-card .unit { color: var(--muted); font-size: 0.86rem; }
    .board-note {
      margin-top: 40px; background: var(--sand); border-radius: 16px; padding: 20px 24px;
      color: var(--navy); font-size: 0.88rem; display: flex; align-items: center; gap: 14px; line-height: 1.6;
    }
    .board-note i { font-size: 1.3rem; color: var(--cyan-deep); flex-shrink: 0; }

    /* Newsletter card */
    .newsletter-card {
      background: #fff; border-radius: 24px; overflow: hidden; box-shadow: 0 20px 50px rgba(11,45,78,0.1);
      border: 1px solid rgba(11,45,78,0.06); max-width: 800px;
    }
    .newsletter-card .nl-head {
      background: linear-gradient(120deg, var(--navy), var(--cyan-deep)); padding: 34px 40px; color: #fff;
    }
    .newsletter-card .nl-head span { font-size: 0.8rem; opacity: 0.75; letter-spacing: 0.06em; text-transform: uppercase; }
    .newsletter-card .nl-head h2 { font-family: var(--font-display); font-size: 1.6rem; margin-top: 6px; }
    .newsletter-card .nl-body { padding: 40px; }
    .newsletter-card .nl-body p { color: var(--muted); line-height: 1.75; margin-bottom: 14px; font-size: 0.98rem; }
    .newsletter-card ul.nl-points { margin: 18px 0; padding-left: 22px; color: var(--ink); }
    .newsletter-card ul.nl-points li { margin-bottom: 10px; line-height: 1.6; }
    .newsletter-empty {
      text-align: center; padding: 60px 30px; color: var(--muted); background: #fff; border-radius: 20px;
      border: 1px dashed rgba(11,45,78,0.15);
    }
    .newsletter-empty i { font-size: 2.2rem; color: var(--cyan); margin-bottom: 16px; display: block; }

    @media (max-width: 980px) {
      .board-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 640px) {
      .board-grid { grid-template-columns: 1fr; }
      .doc-row { flex-wrap: wrap; }
      .newsletter-card .nl-head, .newsletter-card .nl-body { padding: 26px; }
    }
