/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0a1628;
  --navy-light: #132240;
  --gold: #B8860B;
  --gold-light: #d4a017;
  --gold-pale: #fdf3d7;
  --cream: #f5f0e8;
  --cream-light: #faf7f2;
  --white: #ffffff;
  --text: #1a1a2e;
  --text-light: #555570;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 8px rgba(10,22,40,0.06);
  --shadow-md: 0 8px 30px rgba(10,22,40,0.10);
  --shadow-lg: 0 16px 50px rgba(10,22,40,0.14);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; color: var(--navy); }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }

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

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(10,22,40,0.06);
  transition: var(--transition);
}

.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
}

.nav-logo-text { font-family: 'Playfair Display', Georgia, serif; }

.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }

.nav-links a {
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-light);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--navy); background: var(--cream); }

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
}

.nav-cta:hover { background: var(--navy-light) !important; color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: -2; }

.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a1628 0%, #132240 35%, #1a3060 60%, #0d1f3c 100%);
}

.hero-pattern { position: absolute; inset: 0; z-index: -1; }

.hero-content { position: relative; z-index: 1; max-width: 780px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,134,11,0.15);
  border: 1px solid rgba(184,134,11,0.3);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.15;
}

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

.hero-desc {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

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

.hero-stats { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }

.hero-stat { text-align: center; }

.stat-number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-light);
}

.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.55); font-weight: 600; }

.hero-stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  align-self: stretch;
}

.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; z-index: 2; }

.hero-wave svg { display: block; width: 100%; height: 80px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,134,11,0.3); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}

.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,134,11,0.3); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}

.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-2px); }

.btn-large { padding: 18px 40px; font-size: 1rem; }

/* ===== SECTION COMMON ===== */
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

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

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

/* ===== PRODUCTS ===== */
.products {
  padding: 100px 24px;
  background: var(--cream);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-img img { transform: scale(1.06); }

.product-card-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--navy);
  color: var(--gold-light);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-card-body { padding: 24px; }

.product-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
}

.product-card-body p { font-size: 0.92rem; color: var(--text-light); line-height: 1.7; }

/* ===== ABOUT ===== */
.about {
  padding: 100px 24px;
  background: var(--cream-light);
}

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

.about-images { position: relative; }

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-img-float {
  position: absolute;
  bottom: -30px; right: -20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about-img-float img { width: 100%; height: 100%; object-fit: cover; }

.about-badge {
  position: absolute;
  top: -16px; left: -16px;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-md);
}

.about-content .section-title { margin-bottom: 24px; }

.about-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-features { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-feature-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-feature strong { display: block; font-size: 0.95rem; color: var(--navy); }
.about-feature span { font-size: 0.85rem; color: var(--text-light); }

/* ===== VISIT ===== */
.visit {
  padding: 100px 24px;
  background: var(--cream);
}

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

.visit-info { display: flex; flex-direction: column; }
.visit-info .section-title { margin-bottom: 16px; }
.visit-info .section-tag { margin-bottom: 12px; }
.visit-desc { font-size: 1rem; color: var(--text-light); line-height: 1.8; margin-bottom: 36px; }

.visit-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; flex: 1; }

.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.visit-detail-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.visit-detail strong { display: block; font-size: 0.95rem; color: var(--navy); margin-bottom: 2px; }
.visit-detail span { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }
.visit-detail a { color: var(--gold); font-weight: 700; transition: var(--transition); }
.visit-detail a:hover { color: var(--gold-light); }

.visit-map { min-height: 400px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }

/* ===== CTA ===== */
.cta {
  position: relative;
  padding: 100px 24px;
  overflow: hidden;
}

.cta-bg { position: absolute; inset: 0; z-index: -2; }

.cta-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a1628 0%, #132240 50%, #1a3060 100%);
}

.cta-pattern { position: absolute; inset: 0; z-index: -1; }

.cta-content { text-align: center; max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }

.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-desc { font-size: 1.05rem; color: rgba(255,255,255,0.7); margin-bottom: 40px; line-height: 1.8; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  padding: 64px 24px 0;
  color: rgba(255,255,255,0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-logo-text { font-family: 'Playfair Display', Georgia, serif; }

.footer-tagline { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }

.footer-col strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 16px;
  font-weight: 800;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  font-size: 0.82rem;
}

.footer-bottom a { color: var(--gold-light); transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ===== ANIMATIONS ===== */
[data-anim] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-anim].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .about-grid, .visit-grid { grid-template-columns: 1fr; }
  .about-images { max-width: 500px; margin: 0 auto; }
  .about-img-float { right: -10px; bottom: -20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(10,22,40,0.06);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a { width: 100%; text-align: center; padding: 12px; }

  .nav-toggle { display: flex; }

  .hero { min-height: auto; padding: 140px 24px 100px; }
  .hero-stats { gap: 20px; }
  .hero-stat-divider { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }

  .products, .about, .visit { padding: 72px 24px; }
  .cta { padding: 72px 24px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .about-img-float { display: none; }
}
