/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0B1D3A;
  --navy-deep:   #060F1E;
  --navy-mid:    #0F2749;
  --gold:        #C9A84C;
  --gold-light:  #D4B96A;
  --gold-dim:    #A8893A;
  --cream:       #F5F0E8;
  --cream-dim:   #E8DFD0;
  --white:       #FFFFFF;
  --text:        #C8C0B0;
  --text-dim:    #8A8078;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, sans-serif;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--navy-deep);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.3s var(--ease); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ───────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 24px;
}

.gold-text { color: var(--gold); }

.section-sub {
  font-size: 1.1rem;
  color: var(--text);
  max-width: 560px;
  line-height: 1.8;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  text-decoration: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
  color: var(--navy-deep);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(201, 168, 76, 0.5);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline-light:hover {
  border-color: var(--white);
  color: var(--white);
}

.btn-full { width: 100%; }

/* ── Navigation ───────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(6, 15, 30, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.1);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 2px;
  text-decoration: none;
}
.nav-logo-mark {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.3s var(--ease);
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  padding: 10px 24px !important;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
  color: var(--navy-deep) !important;
  border-radius: 4px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.nav-toggle.active .nav-toggle-bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .nav-toggle-bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(6, 15, 30, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cream);
  padding: 8px;
}
.mobile-menu-links { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.mobile-menu-links a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--cream);
  transition: color 0.3s var(--ease);
}
.mobile-menu-links a:hover { color: var(--gold); }

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6, 15, 30, 0.7) 0%,
    rgba(6, 15, 30, 0.5) 40%,
    rgba(6, 15, 30, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.hero-badge-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
  max-width: 800px;
  margin-bottom: 28px;
}
.hero-headline em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-meta { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.hero-meta-item svg { color: var(--gold); flex-shrink: 0; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--gold);
  opacity: 0.6;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Story ────────────────────────────────────────── */
.story {
  padding: 120px 0;
  background: var(--navy-deep);
}

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

.story-images { position: relative; }

.story-img-main {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.story-img-main img { width: 100%; height: 480px; object-fit: cover; }

.story-img-accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 55%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  border: 3px solid var(--navy-mid);
}
.story-img-accent img { width: 100%; height: 220px; object-fit: cover; }

.story-img-badge {
  position: absolute;
  top: -24px;
  left: -24px;
  background: var(--navy-mid);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 8px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.story-badge-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.story-badge-text {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.4;
}

.story-content .section-title { margin-bottom: 24px; }
.story-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 20px;
}

.story-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}
.story-stat { text-align: center; flex: 1; }
.story-stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.story-stat-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.story-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(201, 168, 76, 0.2);
}

/* ── Experience ───────────────────────────────────── */
.experience {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
}
.experience::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}

.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-sub { margin: 0 auto; }

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.exp-card {
  background: var(--navy-deep);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border-color: rgba(201, 168, 76, 0.25);
}

.exp-card-img { overflow: hidden; height: 280px; }
.exp-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.exp-card:hover .exp-card-img img { transform: scale(1.05); }

.exp-card-body { padding: 36px; }
.exp-card-icon { margin-bottom: 20px; }
.exp-card-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}
.exp-card-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
}
.exp-card-list { display: flex; flex-direction: column; gap: 10px; }
.exp-card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}
.exp-card-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Menu ─────────────────────────────────────────── */
.menu {
  padding: 120px 0;
  background: var(--navy-deep);
}

.menu-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}

.menu-sidebar { position: sticky; top: 120px; }
.menu-sidebar p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 32px;
}

.menu-tabs { display: flex; gap: 8px; margin-bottom: 32px; }
.menu-tab {
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: transparent;
  border: 1.5px solid rgba(201, 168, 76, 0.3);
  border-radius: 4px;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.menu-tab:hover { border-color: var(--gold); color: var(--gold); }
.menu-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}

.menu-panel { display: none; flex-direction: column; gap: 0; }
.menu-panel.active { display: flex; }

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  gap: 16px;
}
.menu-item:last-child { border-bottom: none; }
.menu-item-info { flex: 1; }
.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 6px;
}
.menu-item-desc {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ── Visit ────────────────────────────────────────── */
.visit {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
}
.visit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.visit-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 40px;
}

.visit-details { display: flex; flex-direction: column; gap: 24px; }
.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.visit-detail-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 8px;
  flex-shrink: 0;
}
.visit-detail strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.visit-detail span, .visit-detail a {
  font-size: 1rem;
  color: var(--text);
}
.visit-detail a:hover { color: var(--gold-light); }

/* Form */
.visit-form-wrap { padding-top: 8px; }
.visit-form-card {
  background: var(--navy-deep);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 12px;
  padding: 40px;
}
.visit-form-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}
.visit-form-sub {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 32px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--navy-mid);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 6px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--cream);
  transition: border-color 0.3s var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-group textarea { resize: vertical; min-height: 80px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 40px 20px;
}
.form-success.show { display: flex; }
.form-success-icon { color: var(--gold); margin-bottom: 8px; }
.form-success-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cream);
}
.form-success-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}
.form-success-text a { color: var(--gold); }

/* ── Map Strip ────────────────────────────────────── */
.map-strip {
  background: var(--navy-deep);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  padding: 40px 24px;
}
.map-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.map-strip-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.map-strip-text p {
  font-size: 1rem;
  color: var(--text);
}
.map-strip-text { display: flex; flex-direction: column; }

/* ── Footer ───────────────────────────────────────── */
.footer {
  padding: 80px 0 0;
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-logo { display: flex; align-items: center; gap: 2px; margin-bottom: 16px; text-decoration: none; }
.footer-logo-mark {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
}
.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-dim);
  max-width: 320px;
}

.footer-links strong,
.footer-contact strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links ul,
.footer-contact ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a,
.footer-contact li {
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact a { color: var(--text); }
.footer-contact a:hover { color: var(--gold); }
.footer-contact svg { flex-shrink: 0; color: var(--gold); opacity: 0.7; }

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-dim); }

/* ── Scroll Animations ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .story-grid { grid-template-columns: 1fr; gap: 80px; }
  .story-img-accent { right: 0; }
  .menu-layout { grid-template-columns: 1fr; }
  .menu-sidebar { position: static; }
  .visit-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  
  .hero-headline { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-meta { flex-direction: column; gap: 12px; }
  
  .story { padding: 80px 0; }
  .story-img-main img { height: 360px; }
  .story-img-accent { position: relative; bottom: auto; right: auto; width: 100%; margin-top: -20px; }
  .story-img-accent img { height: 200px; }
  .story-img-badge { position: relative; top: auto; left: auto; margin-bottom: 24px; }
  .story-stats { flex-direction: column; gap: 20px; }
  .story-stat-divider { width: 48px; height: 1px; }
  
  .experience { padding: 80px 0; }
  .experience-grid { grid-template-columns: 1fr; }
  
  .menu { padding: 80px 0; }
  .menu-tabs { flex-wrap: wrap; }
  
  .visit { padding: 80px 0; }
  .visit-form-card { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  
  .map-strip-inner { flex-direction: column; text-align: center; }
  
  .footer { padding: 60px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-content { padding: 100px 20px 60px; }
  .section-title { font-size: 1.8rem; }
  .exp-card-body { padding: 24px; }
}
