:root {

  --bg-top: #173B6C;
  --bg-bottom: #123663;

  --glass: rgba(255, 255, 255, 0.18);
  --glass-strong: rgba(255, 255, 255, 0.25);
  --glass-border: rgba(255, 255, 255, 0.35);

  --text: #FFFFFF;
  --muted: rgba(255, 255, 255, 0.78);

  --radius: 24px;
  --max: 1200px;

  --gold-dark: #B8912E;
  --gold: #D4AF37;
  --gold-light: #F1D76A;

  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.25);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;

  display: flex;
  flex-direction: column;

  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);

  background: var(--bg-bottom);
}

main {
  flex: 1;
}

a,
a:visited,
a:active {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: none;
  box-shadow: var(--focus);
  border-radius: 10px;
}

/* Containers */
.container {
  width: min(92%, var(--max));
  margin: 0 auto;
}


.container--wide {
  width: min(96%, 1600px);
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 999;

  padding: 18px 0;

  background: rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand,
.nav-link{
  color: #0A1F3D;
  font-weight: 800;
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: linear-gradient(135deg, #ffd34d, #3b82f6);
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-link:hover {
  opacity: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  padding: 8px 10px;
  border-radius: 12px;
}

.mobile-nav {
  display: none;
  padding: 10px 0 16px;
}

.mobile-nav .nav-link {
  display: block;
  padding: 10px 0;
}

/* Hero */
.hero {
  height: 78vh;
  min-height: 620px;

  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;

  margin-top: -80px;
  padding: 120px 6vw 0;

  background: transparent;
  overflow: hidden;
}

.hero-bg{
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 1;

  background:
    /* fade into your bottom blue */
    linear-gradient(
      to bottom,
      rgba(10, 25, 55, 0.00) 0%,
      rgba(10, 25, 55, 0.18) 55%,
      rgba(10, 25, 55, 0.55) 78%,
      var(--bg-bottom) 100%
    ),
    /* subtle dark overlay for readability */
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.18) 0%,
      rgba(0,0,0,0.34) 100%
    ),
    /* soft glow */
    radial-gradient(800px 400px at 20% 30%, rgba(255, 255, 255, 0.10), transparent 60%),
    radial-gradient(700px 380px at 80% 50%, rgba(255, 255, 255, 0.07), transparent 55%),
    /* image */
    url("../assets/hero.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-center{
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-card{
  width: min(1040px, 94vw);
  padding: 90px 80px 70px;

  position: relative;
  z-index: 1;

  background: var(--glass-strong);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(20px);
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-title {
  margin: 0;
  font-size: clamp(44px, 6vw, 64px);
  letter-spacing: 0.5px;
}

.hero-subtitle {
  margin: 14px 0 0;
  font-weight: 700;
  color: var(--muted);
}

.mark {
  display: inline-flex;
  gap: 10px;
  margin-top: 14px;
  opacity: 0.9;
}

.mark span {
  width: 36px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
}

.mark span:first-child {
  transform: rotate(14deg);
}

.mark span:last-child {
  transform: rotate(-14deg);
  margin-left: -10px;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-btn {
  padding: 16px 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.14);
  color: white;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: all 180ms ease;
}

.hero-btn:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
} 

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.2px;

  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);

  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-primary {
  background: rgba(255, 255, 255, 0.16);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
}

.hero-arrow {
  width: 52px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.10);
}

.hero-arrow span {
  font-size: 30px;
  line-height: 1;
  transform: translateX(1px);
}

/* Sections */
.section {
  padding: 70px 0;
}

.section-head {
  margin-bottom: 22px;
}

.section-title {
  margin: 0;
  font-size: 28px;
}

.section-subtitle {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 70ch;
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tile {
  padding: 22px 20px;

  background: var(--glass-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);

  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.tile:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.30);
}

.tile-title {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.tile-desc {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.tile-cta {
  display: inline-block;
  margin-top: 14px;
  font-weight: 900;
  opacity: 0.95;
}

/* Contact (right aligned) */
.contact-inner {
  display: flex;
  justify-content: flex-end;
}

.contact-card {
  width: min(520px, 100%);
  padding: 0;
  background: none;
  border: none;
}

.contact-title {
  margin: 0 0 18px;
  font-size: 26px;
}

.contact-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.label {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
}

.value {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
}

.social {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.chip {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0.9;
  transition: opacity 160ms ease;
}

.chip:hover {
  opacity: 1;
}

/* Pages */
.page-hero {
  padding: 90px 0 70px;
}

.page-title {
  margin: 0;
  font-size: 54px;
}

.page-lead {
  margin: 14px 0 0;
  color: var(--muted);
  max-width: 80ch;
}

.panel {
  margin-top: 26px;
  padding: 22px 20px;

  background: var(--glass-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
}

.panel-title {
  margin: 0 0 10px;
  font-size: 20px;
}

.page-body {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

/* ===== Acting page image layout ===== */
.acting-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  column-gap: 48px;
}

.acting-text {
  max-width: 860px;
}

.acting-image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 140px;
}

.acting-image img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
}

.acting-text h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 24px;
}

.acting-text h3 {
  margin-top: 30px;
  margin-bottom: 16px;
  font-size: 22px;
}

.acting-text p {
  line-height: 1.7;
  margin-bottom: 18px;
}

/* Footer (frosted gold) */
.site-footer{
  position: relative;
  padding: 32px 0;

  /* Frosted gold that DOESN’T let the blue leak through */
  background: linear-gradient(
    90deg,
    rgba(212, 175, 55, 0.98),
    rgba(241, 215, 106, 0.82),
    rgba(212, 175, 55, 0.98)
  );

  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);

  border-top: 1px solid rgba(255, 255, 255, 0.20);
}

.footer-inner{
  color: #0A1F3D;
  font-weight: 900;
  letter-spacing: 0.3px;
}

.site-footer a{
  color: inherit;
}

/* Responsive */
@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    display: none;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    justify-content: center;
  }

  .page-title {
    font-size: 44px;
  }

  .acting-layout {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .acting-image {
    justify-content: center;
    padding-top: 0;
  }

  .acting-image img {
    max-width: 260px;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .tile,
  .btn {
    transition: none;
  }
}

/* ================= MOBILE FIXES ================= */
@media (max-width: 768px) {
  /* Header */
  .site-header {
    padding: 12px 0;
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .brand {
    font-size: 16px;
    gap: 8px;
  }

  .brand-dot {
    width: 10px;
    height: 10px;
  }

  /* Hide desktop nav on mobile */
  .nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 14px;
  }

  /* IMPORTANT: keep mobile nav hidden unless toggled by JS */
  .mobile-nav {
    display: none;
    padding: 10px 0 14px;
  }

  .mobile-nav[hidden] {
    display: none !important;
  }

  .mobile-nav:not([hidden]) {
    display: block;
  }

  .mobile-nav .nav-link {
    display: block;
    padding: 10px 0;
    font-size: 16px;
  }

  /* Hero */
  .hero {
    height: auto;
    min-height: 100svh;
    margin-top: 0;
    padding: 110px 16px 40px;
  }

  .hero-center {
    width: 100%;
    justify-content: center;
  }

  .hero-card {
    width: 100%;
    max-width: 100%;
    padding: 40px 24px 36px;
    border-radius: 24px;
    text-align: center;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.16em;
    margin-bottom: 10px;
  }

  .hero-title {
    font-size: clamp(42px, 12vw, 64px);
    line-height: 1.05;
    margin: 0;
  }

  .hero-subtitle {
    margin: 18px 0 0;
    font-size: 16px;
    line-height: 1.4;
  }

  .hero-actions {
    margin-top: 24px;
    justify-content: center;
  }

  .hero-btn,
  .btn,
  .btn-primary {
    width: auto;
    min-width: 130px;
    padding: 14px 26px;
    font-size: 16px;
  }

  /* Sections */
  .section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 22px;
  }

  .section-subtitle {
    font-size: 15px;
    line-height: 1.5;
  }

  /* Cards */
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tile {
    padding: 22px 18px;
  }

  .tile-title {
    font-size: 24px;
  }

  .tile-desc {
    font-size: 15px;
    line-height: 1.55;
  }

  /* Contact */
  .contact-inner {
    justify-content: center;
  }

  .contact-card {
    width: 100%;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  /* Inner pages */
  .page-hero {
    padding: 110px 0 48px;
  }

  .page-title {
    font-size: 38px;
  }

  .page-lead,
  .page-body,
  .panel p,
  .panel li {
    font-size: 15px;
    line-height: 1.7;
  }

  .panel {
    padding: 22px 18px;
  }

  /* Footer */
  .footer-inner {
    text-align: left;
    font-size: 15px;
  }
}