/* ===================== SHARED STYLES ===================== */
:root {
  --navy:      #0b1f3a;
  --navy-mid:  #132d52;
  --teal:      #1a7a72;
  --teal-light:#22a89e;
  --gold:      #c9993a;
  --cream:     #f5f0e8;
  --white:     #ffffff;
  --text-dark: #1a1a2e;
  --text-mid:  #4a5568;
  --text-light:#8a9ab5;
  --shadow:    0 8px 40px rgba(11,31,58,.18);
  --radius:    4px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; font-weight: 400; color: var(--text-dark); background: var(--white); overflow-x: hidden; }
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; }

/* NAVBAR */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; display: flex; align-items: center; justify-content: space-between; padding: 0 48px; height: 72px; background: rgba(11,31,58,0.97); backdrop-filter: blur(12px); box-shadow: 0 2px 24px rgba(0,0,0,0.22); }
.navbar-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.navbar-logo .anchor-icon { width: 36px; height: 36px; fill: var(--gold); flex-shrink: 0; }
.navbar-logo span { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: var(--white); letter-spacing: .04em; }
.navbar-logo span em { font-style: italic; color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a { display: flex; align-items: center; gap: 6px; padding: 0 20px; height: 72px; color: rgba(255,255,255,.88); text-decoration: none; font-size: .88rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; transition: color .2s; }
.nav-links > li > a svg.chevron { width: 10px; height: 10px; stroke: currentColor; fill: none; stroke-width: 2.5; transition: transform .25s; }
.nav-links > li:hover > a { color: var(--gold); }
.nav-links > li:hover > a svg.chevron { transform: rotate(180deg); }
.nav-links > li > a.active { color: var(--gold); border-bottom: 2px solid var(--gold); }

/* Level 1 dropdown */
.dropdown { position: absolute; top: 72px; left: 50%; transform: translateX(-50%) translateY(8px); min-width: 200px; background: var(--navy-mid); border-top: 2px solid var(--gold); box-shadow: 0 16px 48px rgba(0,0,0,.4); border-radius: 0 0 var(--radius) var(--radius); opacity: 0; visibility: hidden; transition: opacity .22s, transform .22s, visibility .22s; pointer-events: none; }
.nav-links > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: all; }
.dropdown a { display: flex; align-items: center; padding: 13px 22px; color: rgba(255,255,255,.8); text-decoration: none; font-size: .85rem; font-weight: 400; letter-spacing: .04em; border-bottom: 1px solid rgba(255,255,255,.07); transition: background .15s, color .15s, padding-left .15s; }
.dropdown > a:last-child, .dropdown > .dropdown-item:last-child > a { border-bottom: none; }
.dropdown a:hover { background: rgba(201,153,58,.12); color: var(--gold); padding-left: 28px; }

/* Level 2 (nested) submenu */
.dropdown-item { position: relative; }
.chevron-right { width: 8px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2.5; margin-left: auto; transition: transform .25s; }
.submenu { position: absolute; top: 0; left: 100%; min-width: 200px; background: var(--navy-mid); border-top: 2px solid var(--gold); box-shadow: 0 16px 48px rgba(0,0,0,.4); opacity: 0; visibility: hidden; transition: opacity .22s, visibility .22s; }
.has-submenu:hover .submenu { opacity: 1; visibility: visible; }

.nav-cta { margin-left: 24px; padding: 10px 24px; background: var(--gold); color: var(--navy) !important; font-weight: 600 !important; letter-spacing: .06em !important; border-radius: var(--radius); height: auto !important; transition: background .2s, transform .15s !important; }
.nav-cta:hover { background: #e0b040 !important; transform: translateY(-1px); }

/* Nav social icons */
.nav-socials { display: flex; align-items: center; gap: 14px; margin-left: 20px; padding-left: 20px; border-left: 1px solid rgba(255,255,255,.15); }
.nav-socials a { display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); transition: color .2s, transform .15s; }
.nav-socials a:hover { color: var(--gold); transform: translateY(-2px); }
.nav-socials a svg { width: 18px; height: 18px; }

/* NAV HAMBURGER */
.nav-hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 40px; height: 40px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1100; }
.nav-hamburger span { display: block; width: 100%; height: 2px; background: var(--white); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* PAGE HERO BANNER */
.page-hero { padding-top: 72px; background: linear-gradient(135deg, rgba(5, 16, 29, 0.99) 0%, rgba(5,16,82,0.99) 60%, rgba(5,32,96,0.99) 100%); position: relative; overflow: hidden; }
.page-hero-particles { position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 80%, rgba(26,122,114,.25) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(201,153,58,.12) 0%, transparent 50%); }
.page-hero-content { position: relative; max-width: 1200px; margin: 0 auto; padding: 72px 48px 80px; }
.page-hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: rgba(201,153,58,.15); border: 1px solid rgba(201,153,58,.4); border-radius: 24px; color: var(--gold); font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 20px; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 4rem); color: var(--white); line-height: 1.1; margin-bottom: 18px; }
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255); max-width: 560px; line-height: 1.72; }
.page-hero-wave { display: block; width: 100%; height: 80px; }

/* CONTENT AREA */
.page-content { max-width: 1200px; margin: 0 auto; padding: 80px 48px; }
.section-label { display: inline-block; font-size: .75rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--navy); line-height: 1.18; margin-bottom: 20px; }
.section-title em { font-style: italic; color: var(--teal); }
.divider { width: 52px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--teal)); border-radius: 2px; margin-top: 20px; margin-bottom: 40px; }
.coming-soon-box { background: var(--cream); border-radius: 12px; padding: 72px 48px; text-align: center; border: 2px dashed rgba(11,31,58,.15); }
.coming-soon-box .icon { width: 72px; height: 72px; margin: 0 auto 28px; background: var(--navy); border-radius: 16px; display: flex; align-items: center; justify-content: center; }
.coming-soon-box .icon svg { width: 36px; height: 36px; stroke: var(--gold); fill: none; stroke-width: 1.6; }
.coming-soon-box h2 { font-size: 1.8rem; color: var(--navy); margin-bottom: 14px; }
.coming-soon-box p { color: var(--text-mid); max-width: 480px; margin: 0 auto 32px; line-height: 1.72; }
.btn-primary { display: inline-block; padding: 14px 32px; background: var(--gold); color: var(--navy); font-weight: 700; font-size: .9rem; letter-spacing: .06em; text-transform: uppercase; border: none; border-radius: var(--radius); cursor: pointer; text-decoration: none; transition: background .2s, transform .15s; }
.btn-primary:hover { background: #e0b040; transform: translateY(-2px); }
.btn-outline { display: inline-block; padding: 14px 32px; background: transparent; color: var(--navy); font-weight: 500; font-size: .9rem; letter-spacing: .06em; text-transform: uppercase; border: 1.5px solid var(--navy); border-radius: var(--radius); cursor: pointer; text-decoration: none; transition: all .2s; margin-left: 12px; }
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* Photo Gallery */
.gallery-section {
  background: var(--white);
}

.gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px;
}

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

.gallery-header .divider {
  margin: 20px auto 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--navy);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,31,58,0.55);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity .3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-left: 2px solid var(--gold);
  padding-left: 10px;
}

/* Responsive */
@media(max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-inner {
    padding: 64px 24px;
  }
}

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

/* Reusable Contact Form */
.contact-form-section {
  background: var(--cream);
}

.contact-form-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px;
}

.contact-form-header {
  text-align: center;
  margin-bottom: 56px;
}

.contact-form-header .divider {
  margin: 20px auto 0;
}

.contact-form-layout {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

/* Left details */
.contact-form-details {
  flex: 0 0 320px;
}

.contact-form-details > p {
  color: var(--text-mid);
  line-height: 1.72;
  margin-bottom: 36px;
}

.contact-detail-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
}

.contact-detail-row h4 {
  font-family: 'Barlow', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-detail-row p {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Right form box */
.contact-form-box {
  flex: 1;
  background: var(--white);
  border-radius: 12px;
  padding: 44px 40px;
  box-shadow: var(--shadow);
}

.cf-row {
  display: flex;
  gap: 20px;
}

.cf-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  margin-bottom: 20px;
}

.cf-group label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
}

.cf-group input,
.cf-group select,
.cf-group textarea {
  padding: 13px 16px;
  border: 1.5px solid #d8dde8;
  border-radius: var(--radius);
  font-family: 'Barlow', sans-serif;
  font-size: .93rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}

.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,122,114,.12);
  background: var(--white);
}

.cf-group textarea {
  resize: vertical;
  min-height: 120px;
}

.cf-submit {
  width: 100%;
  padding: 16px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .2s, transform .15s;
  margin-top: 8px;
}

.cf-submit:hover {
  background: var(--teal);
  transform: translateY(-2px);
}

.cf-success {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(26,122,114,.1);
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  color: var(--teal);
  font-size: .9rem;
  font-weight: 500;
  text-align: center;
}

@media(max-width: 900px) {
  .contact-form-inner {
    padding: 64px 24px;
  }

  .contact-form-layout {
    flex-direction: column;
    gap: 36px;
  }

  .contact-form-details {
    flex: none;
    width: 100%;
  }

  .contact-form-box {
    width: 100%;
    padding: 32px 24px;
  }

  .cf-row {
    flex-direction: column;
    gap: 0;
  }
}

/* Responsive */
@media(max-width: 900px) {
  .contact-form-layout {
    flex-direction: column;
  }

  .contact-form-details {
    flex: none;
    width: 100%;
  }

  .contact-form-inner {
    padding: 64px 24px;
  }
}

@media(max-width: 560px) {
  .cf-row {
    flex-direction: column;
    gap: 0;
  }

  .contact-form-box {
    padding: 32px 24px;
  }
}

/* BREADCRUMB */
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 48px; font-size: .82rem; }
.breadcrumb a { color: var(--teal); text-decoration: none; }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span { color: var(--text-light); }

/* FOOTER */
footer { background: var(--navy); color: rgba(255,255,255,.6); padding: 60px 48px 30px; }
.footer-top { display: flex; gap: 64px; margin-bottom: 48px; flex-wrap: wrap; }
.footer-brand { flex: 0 0 280px; }
.footer-brand .logo-text { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: white; margin-bottom: 14px; }
.footer-brand .logo-text em { color: var(--gold); font-style: italic; }
.footer-brand p { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.52); }
.footer-col h4 { font-family: 'Barlow', sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,.55); text-decoration: none; font-size: .88rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; font-size: .82rem; }
.footer-bottom a { color: rgba(255,255,255,.45); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* Three column section */
.three-col-section {
  background: var(--cream);
}

.three-col-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px;
}

.three-col-header {
  text-align: center;
  margin-bottom: 56px;
}

.three-col-header .divider {
  margin: 20px auto 0;
}

.three-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.three-col-card {
  background: var(--white);
  border-radius: 10px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(11,31,58,.08);
  transition: transform .22s, box-shadow .22s;
}

.three-col-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(11,31,58,.14);
}

.three-col-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 24px;
  background: var(--navy);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.three-col-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
}

.three-col-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 14px;
}

.three-col-card p {
  font-size: .93rem;
  color: var(--text-mid);
  line-height: 1.72;
}

/* Responsive */
@media(max-width: 768px) {
  .three-col-grid {
    grid-template-columns: 1fr;
  }

  .three-col-inner {
    padding: 64px 24px;
  }
}

/* Content split section */
.content-split {
  background: var(--white);
}

.content-split-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px;
  display: flex;
  gap: 72px;
  align-items: center;
}

.content-split-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
}

.content-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.content-split-text {
  flex: 1;
}

.content-split-text p {
  color: var(--text-mid);
  line-height: 1.72;
  font-size: 1rem;
}

/* Responsive — stacks on mobile */
@media(max-width: 768px) {
  .content-split-inner {
    flex-direction: column;
    padding: 64px 24px;
    gap: 36px;
  }
}

/* RESPONSIVE */
@media(max-width: 960px) {
  .navbar { padding: 0 24px; }
  .nav-hamburger { display: flex; }
  .nav-socials { display: none; }

  /* Slide-in mobile panel (hidden by default, shown via JS adding .open) */
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: fixed;
    top: 72px; left: 0; right: 0;
    height: calc(100vh - 72px);
    background: var(--navy-mid);
    overflow-y: auto;
    padding: 8px 0 24px;
    box-shadow: 0 16px 32px rgba(0,0,0,.4);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a { height: auto; padding: 16px 24px; justify-content: space-between; }
  .nav-cta { margin: 12px 24px 0; text-align: center; }

  /* Level 1 dropdown becomes an inline accordion */
  .nav-links > li:hover .dropdown { transform: none; }
  .dropdown {
    position: static;
    transform: none;
    width: 100%;
    min-width: 0;
    box-shadow: none;
    border-top: none;
    border-radius: 0;
    background: rgba(0,0,0,.15);
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    transition: max-height .3s ease;
  }
  .nav-links > li.dropdown-open > .dropdown { max-height: 1200px; pointer-events: all; }
  .nav-links > li.dropdown-open > a svg.chevron { transform: rotate(180deg); }

  /* Level 2 submenu becomes a further-indented inline accordion */
  .dropdown-item > a { padding-left: 36px; }
  .submenu {
    position: static;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    border-top: none;
    background: rgba(0,0,0,.15);
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    transition: max-height .3s ease;
  }
  .dropdown-item.submenu-open .submenu { max-height: 1200px; pointer-events: all; }
  .dropdown-item.submenu-open > a .chevron-right { transform: rotate(90deg); }
  .submenu a { padding-left: 52px; }
}
@media(max-width: 640px) { .page-hero-content { padding: 56px 24px 64px; } .page-content { padding: 48px 24px; } .coming-soon-box { padding: 48px 24px; } footer { padding: 48px 24px 24px; } .footer-top { flex-direction: column; gap: 32px; } }
