/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a2744;
  background: #fafbfc;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Color Tokens ── */
:root {
  --midnight: #0a1628;
  --midnight-light: #132240;
  --blue-mid: #1e3a5f;
  --blue-soft: #2d5a8a;
  --mint: #98e2c7;
  --mint-dark: #6bc9a8;
  --mint-light: #d4f5e8;
  --cream: #f7f9fb;
  --warm-white: #fafbfc;
  --text: #1a2744;
  --text-muted: #5a6f8a;
  --text-light: #8a9ab5;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(10,22,40,0.06);
  --shadow-md: 0 4px 20px rgba(10,22,40,0.08);
  --shadow-lg: 0 12px 40px rgba(10,22,40,0.12);
  --shadow-xl: 0 20px 60px rgba(10,22,40,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* ── Typography ── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.15; }
em { font-style: italic; }

/* ── Section Eyebrow ── */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mint-dark);
  margin-bottom: 12px;
}

/* ── Section Title ── */
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--midnight);
  margin-bottom: 20px;
}
.section-title em { color: var(--blue-soft); }

/* ── Section Sub ── */
.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Text Center ── */
.text-center { text-align: center; }

/* ── Icons ── */
.icon { width: 20px; height: 20px; flex-shrink: 0; }
.icon-lg { width: 24px; height: 24px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.btn-mint {
  background: var(--mint);
  color: var(--midnight);
  border: 2px solid var(--mint);
}
.btn-mint:hover {
  background: var(--mint-dark);
  border-color: var(--mint-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-full { width: 100%; }

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.0);
  backdrop-filter: blur(0px);
  transition: all 0.4s ease;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(152, 226, 199, 0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--mint);
  color: var(--midnight);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  font-style: italic;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.header.scrolled .logo-text { color: #fff; }
.nav ul { display: flex; align-items: center; gap: 8px; }
.nav a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-radius: 50px;
  transition: all 0.3s ease;
}
.nav a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.active .hamburger:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active .hamburger:nth-child(2) { opacity: 0; }
.nav-toggle.active .hamburger:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── 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(
    135deg,
    rgba(10, 22, 40, 0.88) 0%,
    rgba(10, 22, 40, 0.7) 50%,
    rgba(30, 58, 95, 0.6) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 140px 0 100px;
  max-width: 780px;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 600;
}
.hero-headline em {
  color: var(--mint);
  font-weight: 500;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}
.hero-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.hero-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.hero-detail .icon { color: var(--mint); }
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.5);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── MARQUEE ── */
.marquee {
  background: var(--midnight);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid rgba(152, 226, 199, 0.1);
  border-bottom: 1px solid rgba(152, 226, 199, 0.1);
}
.marquee-track {
  display: flex;
  gap: 24px;
  align-items: center;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}
.marquee span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}
.marquee .dot {
  color: var(--mint);
  font-size: 0.5rem;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── ABOUT ── */
.about {
  padding: 120px 0;
  background: var(--warm-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 600px;
}
.about-img-main {
  width: 75%;
  height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 6px solid var(--warm-white);
  box-shadow: var(--shadow-lg);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-accent {
  position: absolute;
  top: 40px;
  right: 40px;
  background: var(--midnight);
  color: #fff;
  padding: 24px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.accent-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--mint);
  line-height: 1;
}
.accent-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.about-content { padding: 20px 0; }
.about-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--midnight);
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ── PRODUCTS ── */
.products {
  padding: 120px 0;
  background: #fff;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 64px;
}
.product-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.product-img {
  height: 260px;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-img img { transform: scale(1.06); }
.product-body {
  padding: 32px;
}
.product-body h3 {
  font-size: 1.4rem;
  color: var(--midnight);
  margin-bottom: 12px;
}
.product-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── GALLERY ── */
.gallery {
  padding: 120px 0;
  background: var(--cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  margin-top: 64px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.gallery-item.large { grid-column: span 6; height: 360px; }
.gallery-item.tall { grid-column: span 3; height: 400px; }
.gallery-item { grid-column: span 3; height: 240px; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ── VISIT ── */
.visit {
  padding: 120px 0;
  background: #fff;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.visit-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}
.visit-details { display: flex; flex-direction: column; gap: 28px; }
.visit-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.visit-detail .icon { color: var(--mint-dark); width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.visit-detail strong {
  display: block;
  font-size: 0.95rem;
  color: var(--midnight);
  margin-bottom: 4px;
}
.visit-detail span {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 500px;
}
.map-placeholder { width: 100%; height: 100%; }

/* ── CONTACT ── */
.contact {
  padding: 120px 0;
  background: var(--midnight);
  color: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact .section-eyebrow { color: var(--mint); }
.contact .section-title { color: #fff; }
.contact .section-title em { color: var(--mint); }
.contact-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 40px;
}
.contact-methods { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  transition: color 0.3s ease;
}
.contact-method:hover { color: var(--mint); }
.contact-method .icon { color: var(--mint); }
.contact-form-wrapper {
  background: var(--midnight-light);
  border: 1px solid rgba(152, 226, 199, 0.15);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--mint);
  background: rgba(152, 226, 199, 0.06);
}
.form-group textarea { resize: vertical; }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(152, 226, 199, 0.12);
  border: 1px solid rgba(152, 226, 199, 0.3);
  border-radius: var(--radius-sm);
  color: var(--mint);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 16px;
}
.form-success.show { display: flex; }
.form-success .icon { color: var(--mint); }

/* ── CTA BANNER ── */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--blue-mid) 0%, var(--midnight) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(152,226,199,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 16px;
  position: relative;
}
.cta-headline {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}
.cta-headline em { color: var(--mint); }
.cta-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  position: relative;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

/* ── FOOTER ── */
.footer {
  background: #060e1a;
  color: rgba(255,255,255,0.6);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--mint); }
.footer-col address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.8;
}
.footer-col a { color: rgba(255,255,255,0.55); transition: color 0.3s ease; }
.footer-col a:hover { color: var(--mint); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MOBILE NAV OVERLAY ── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.nav-overlay.active { opacity: 1; pointer-events: all; }
.nav-overlay .nav ul {
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
.nav-overlay .nav a {
  font-size: 1.4rem;
  padding: 14px 28px;
  color: rgba(255,255,255,0.8);
}
.nav-overlay .nav a:hover { color: var(--mint); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid { gap: 48px; }
  .about-images { height: 480px; }
  .products-grid { gap: 24px; }
  .gallery-item.large { height: 280px; }
  .gallery-item.tall { height: 300px; }
  .gallery-item { height: 200px; }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 400px; order: -1; }
  .about-img-main { height: 320px; width: 80%; }
  .about-img-secondary { width: 55%; height: 200px; }
  .about-accent { top: 20px; right: 20px; padding: 18px 22px; }
  .products-grid { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { height: 360px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrapper { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item.large { grid-column: span 6; height: 260px; }
  .gallery-item.tall { grid-column: span 3; height: 220px; }
  .gallery-item { grid-column: span 3; height: 220px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .header-inner { height: 70px; }
  .hero-content { padding: 120px 0 80px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-details { flex-direction: column; gap: 16px; }
  .about { padding: 80px 0; }
  .about-images { height: 340px; }
  .about-img-main { height: 260px; }
  .about-stats { flex-direction: column; gap: 24px; }
  .products { padding: 80px 0; }
  .gallery { padding: 80px 0; }
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item.large { grid-column: span 4; height: 220px; }
  .gallery-item.tall { grid-column: span 2; height: 200px; }
  .gallery-item { grid-column: span 2; height: 200px; }
  .visit { padding: 80px 0; }
  .contact { padding: 80px 0; }
  .cta-banner { padding: 80px 0; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 280px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
