/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --gold:        #B8963E;
  --gold-light:  #D4B068;
  --gold-pale:   #F5EDD6;
  --navy:        #0F1B2D;
  --navy-mid:    #1C3050;
  --slate:       #4A5568;
  --mist:        #F7F8FA;
  --white:       #FFFFFF;
  --border:      #E2E8F0;
  --text:        #1A202C;
  --text-muted:  #718096;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  --radius:  6px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.10);

  --transition: .25s ease;
  --max-w: 1140px;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── UTILITY ────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
h1,h2,h3,h4,h5 { font-family: var(--ff-display); line-height: 1.25; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: 1.3rem; font-weight: 600; }
p  { color: var(--slate); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold-pale); }
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover { background: var(--navy-mid); transform: translateY(-1px); }

.divider {
  width: 48px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 16px 0 28px;
}

/* ─── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.navbar-logo {
  display: flex; align-items: center; gap: 10px;
}
.navbar-logo img { height: 44px; width: auto; }
.navbar-logo .logo-text {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
}
.navbar-logo .logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--slate);
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #243B55 100%);
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/hero-pattern.svg') center/cover no-repeat;
  opacity: .06;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(184,150,62,.15);
  border: 1px solid rgba(184,150,62,.3);
  color: var(--gold-light);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hero h1 {
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.15;
}
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat-num {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat-label { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: 4px; }

/* Hero visual panel */
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-card-stack { position: relative; width: 100%; max-width: 400px; margin: 0 auto; }
.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
}
.hero-card-float {
  position: absolute;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(184,150,62,.25);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: .82rem;
  color: rgba(255,255,255,.8);
  display: flex; align-items: center; gap: 10px;
}
.hero-card-float .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ADE80; flex-shrink: 0; }
.hero-card-float.f1 { top: -20px; right: -24px; }
.hero-card-float.f2 { bottom: -20px; left: -24px; }
.service-pill {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.service-pill:last-child { border-bottom: none; padding-bottom: 0; }
.pill-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(184,150,62,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.pill-name { font-size: .85rem; color: rgba(255,255,255,.85); font-weight: 500; }
.pill-sector { font-size: .72rem; color: rgba(255,255,255,.4); }

/* ─── ABOUT STRIP ────────────────────────────────────────── */
.about-strip {
  background: var(--mist);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge strong { display: block; font-family: var(--ff-display); font-size: 2rem; line-height: 1; }
.about-badge span { font-size: .75rem; opacity: .9; }
.about-text { padding-left: 16px; }
.about-text p { margin-bottom: 20px; }
.about-vals { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.about-val {
  display: flex; gap: 14px;
  align-items: flex-start;
}
.about-val-icon {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.about-val-body h4 { font-family: var(--ff-body); font-size: .9rem; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.about-val-body p  { font-size: .85rem; margin: 0; }

/* ─── SERVICES ───────────────────────────────────────────── */
.services-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.svc-num {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--transition);
}
.service-card:hover .svc-num { color: var(--gold-light); }
.svc-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.service-card:hover .svc-icon { background: var(--gold); }
.service-card h3 { color: var(--navy); margin-bottom: 12px; }
.service-card p  { font-size: .9rem; margin-bottom: 24px; }
.svc-link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .05em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--transition);
}
.svc-link:hover { gap: 10px; }

/* ─── WHY US ─────────────────────────────────────────────── */
.why-section { background: var(--navy); }
.why-header { text-align: center; max-width: 560px; margin: 0 auto 64px; }
.why-header .tag { color: var(--gold-light); }
.why-header h2 { color: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
}
.why-card:hover { background: rgba(184,150,62,.08); border-color: rgba(184,150,62,.25); }
.why-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}
.why-card h3 { color: var(--white); font-family: var(--ff-body); font-size: 1.05rem; font-weight: 600; margin-bottom: 12px; }
.why-card p  { color: rgba(255,255,255,.5); font-size: .9rem; }

/* ─── GALLERY ────────────────────────────────────────────── */
.gallery-header { text-align: center; max-width: 560px; margin: 0 auto 48px; }
.gallery-tabs {
  display: flex; justify-content: center; gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.gallery-tab {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--slate);
  transition: var(--transition);
}
.gallery-tab.active, .gallery-tab:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  color: var(--navy);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,27,45,.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex; align-items: flex-end;
  padding: 16px;
  color: var(--white);
  font-size: .82rem;
  font-weight: 500;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonials-section { background: var(--mist); }
.testimonials-header { text-align: center; max-width: 500px; margin: 0 auto 56px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}
.testi-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.testi-card blockquote {
  font-size: .92rem;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-weight: 700;
  color: var(--gold);
  font-size: .95rem;
  flex-shrink: 0;
}
.testi-name { font-size: .875rem; font-weight: 600; color: var(--navy); }
.testi-role { font-size: .78rem; color: var(--text-muted); }

/* ─── CONTACT ────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p  { margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
}
.contact-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-item strong { display: block; font-size: .82rem; color: var(--navy); font-weight: 600; margin-bottom: 2px; }
.contact-item span  { font-size: .88rem; color: var(--slate); }

/* Form */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--navy); letter-spacing: .03em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,62,.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-msg { padding: 12px 16px; border-radius: var(--radius); font-size: .88rem; margin-bottom: 16px; display: none; }
.form-msg.success { background: #F0FDF4; border: 1px solid #BBF7D0; color: #166534; display: block; }
.form-msg.error   { background: #FEF2F2; border: 1px solid #FECACA; color: #991B1B; display: block; }

/* ─── BOOKING ────────────────────────────────────────────── */
.booking-section { background: var(--mist); }
.booking-inner {
  max-width: 760px; margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 52px;
  box-shadow: var(--shadow-sm);
}
.booking-inner .section-title { text-align: center; margin-bottom: 36px; }

/* ─── CTA BAND ───────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 80px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(184,150,62,.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p  { color: rgba(255,255,255,.6); max-width: 500px; margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer { background: #070E18; padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand p { color: rgba(255,255,255,.45); font-size: .875rem; margin-top: 16px; max-width: 260px; line-height: 1.8; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.footer-logo img { height: 36px; }
.footer-logo span { font-family: var(--ff-display); font-size: 1.1rem; color: var(--white); font-weight: 700; }
.footer-logo em { color: var(--gold); font-style: normal; }
.footer-col h4 { font-family: var(--ff-body); font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: .875rem; color: rgba(255,255,255,.45); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}
.footer-bottom a { color: var(--gold); }

/* ─── LIGHTBOX ───────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); object-fit: contain; }
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  font-size: 2rem; color: var(--white);
  cursor: pointer; opacity: .7;
  transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 1; }

/* ─── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 140px 0 80px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 14px; font-size: clamp(1.8rem,4vw,2.8rem); }
.page-hero p  { color: rgba(255,255,255,.55); max-width: 500px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: .8rem; color: rgba(255,255,255,.4); margin-top: 20px; }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* ─── SCROLL REVEAL ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-grid       { grid-template-columns: 1fr; }
  .hero-visual     { display: none; }
  .about-grid      { grid-template-columns: 1fr; gap: 48px; }
  .about-text      { padding-left: 0; }
  .about-badge     { bottom: 12px; right: 12px; }
  .services-grid   { grid-template-columns: 1fr; }
  .why-grid        { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid    { grid-template-columns: 1fr; }
  .gallery-grid    { grid-template-columns: repeat(2,1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section   { padding: 64px 0; }
  .nav-links { display: none; flex-direction: column; position: fixed; inset: 70px 0 0; background: var(--white); padding: 32px 24px; gap: 24px; border-top: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-links .nav-cta { margin-left: 0; }
  .hamburger { display: flex; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .form-row   { grid-template-columns: 1fr; }
  .why-grid   { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .booking-inner { padding: 28px 20px; }
}
