/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ── Utility ──────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: #1a2744;
  margin-bottom: 20px;
}

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-gold {
  background: #c9a84c;
  color: #1a2744;
  border: 2px solid #c9a84c;
}
.btn-gold:hover { background: #b8922e; border-color: #b8922e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-navy {
  background: #1a2744;
  color: #fff;
  border: 2px solid #1a2744;
}
.btn-navy:hover { background: #0f1a2e; border-color: #0f1a2e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,39,68,0.35); }
.btn-full { width: 100%; }

/* ── Nav ──────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(253,249,240,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(26,39,68,0.08);
  padding: 12px 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  transition: color 0.3s ease;
}
.nav.scrolled .nav-logo { color: #1a2744; }
.nav-exhale { font-style: italic; font-weight: 400; opacity: 0.8; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s ease;
  position: relative;
}
.nav.scrolled .nav-links a { color: #1a2744; }
.nav-links a:hover { color: #c9a84c; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #c9a84c;
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 24px !important;
  border-radius: 100px;
  background: rgba(255,255,255,0.15) !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
  color: #fff !important;
  transition: all 0.3s ease !important;
}
.nav-cta:hover { background: rgba(255,255,255,0.25) !important; }
.nav-cta::after { display: none !important; }
.nav.scrolled .nav-cta {
  background: #1a2744 !important;
  border-color: #1a2744 !important;
  color: #fff !important;
}
.nav.scrolled .nav-cta:hover { background: #0f1a2e !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  color: #fff;
  transition: color 0.3s ease;
}
.nav.scrolled .nav-toggle { color: #1a2744; }
.nav-toggle .close-icon { display: none; }
.nav-toggle.active .hamburger { display: none; }
.nav-toggle.active .close-icon { display: block; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(15,26,46,0.97);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { text-align: center; display: flex; flex-direction: column; gap: 24px; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  transition: color 0.3s ease;
}
.mobile-menu a:hover { color: #c9a84c; }

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: 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(15,26,46,0.82) 0%,
    rgba(26,39,68,0.70) 50%,
    rgba(15,26,46,0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  padding: 0 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d4b45a;
  margin-bottom: 24px;
  padding: 8px 20px;
  border: 1px solid rgba(212,180,90,0.3);
  border-radius: 100px;
  background: rgba(212,180,90,0.08);
}
.hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
}
.hero-headline-accent {
  font-style: italic;
  font-weight: 400;
  color: #d4b45a;
  display: block;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── About ────────────────────────────────────────────── */
.about { background: #fdf9f0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(26,39,68,0.15);
}
.about-img-main img { width: 100%; height: 450px; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -30px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(26,39,68,0.2);
  border: 4px solid #fdf9f0;
}
.about-img-float img { width: 100%; height: 200px; object-fit: cover; }
.about-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  background: #1a2744;
  color: #fff;
  padding: 20px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(26,39,68,0.3);
}
.about-accent-number {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #d4b45a;
  line-height: 1;
}
.about-accent-text { font-size: 0.8rem; opacity: 0.8; }
.about-text { padding: 20px 0; }
.about-text p { color: #4a5568; margin-bottom: 16px; font-size: 1.02rem; }
.about-values { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.value-item { display: flex; gap: 16px; align-items: flex-start; }
.value-icon { color: #c9a84c; flex-shrink: 0; margin-top: 2px; }
.value-item strong { display: block; color: #1a2744; font-size: 1rem; margin-bottom: 2px; }
.value-item span { color: #6b7280; font-size: 0.9rem; }

/* ── Products ─────────────────────────────────────────── */
.products { background: #fff; }
.section-header { margin-bottom: 60px; }
.section-header p { color: #6b7280; max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: #fdf9f0;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(26,39,68,0.12); }
.product-img { position: relative; overflow: hidden; }
.product-img img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #1a2744;
  color: #d4b45a;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}
.product-info { padding: 24px; }
.product-info h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a2744;
  margin-bottom: 8px;
}
.product-info p { color: #6b7280; font-size: 0.92rem; line-height: 1.65; }

/* ── Testimonials ─────────────────────────────────────── */
.testimonials { background: #1a2744; }
.testimonials .section-label { color: #d4b45a; }
.testimonials .section-title { color: #fff; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 36px;
  transition: background 0.3s ease;
}
.testimonial-card:hover { background: rgba(255,255,255,0.1); }
.testimonial-quote { margin-bottom: 20px; color: #1a2744; }
.testimonial-card p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { border-radius: 50%; overflow: hidden; }
.testimonial-avatar img { width: 40px; height: 40px; object-fit: cover; }
.testimonial-author span { color: rgba(255,255,255,0.6); font-size: 0.88rem; }

/* ── Visit ────────────────────────────────────────────── */
.visit { background: #fdf9f0; }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.visit-info p { color: #6b7280; font-size: 1.02rem; margin-bottom: 36px; }
.visit-details { display: flex; flex-direction: column; gap: 24px; }
.visit-detail { display: flex; gap: 16px; align-items: flex-start; }
.visit-icon { color: #c9a84c; flex-shrink: 0; margin-top: 2px; }
.visit-detail strong { display: block; color: #1a2744; font-size: 0.95rem; margin-bottom: 4px; }
.visit-detail span, .visit-detail a { color: #6b7280; font-size: 0.92rem; }
.visit-detail a:hover { color: #c9a84c; }
.visit-map .map-placeholder {
  background: #e8ede4;
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.map-pin { color: #1a2744; margin-bottom: 8px; }
.map-placeholder p { color: #1a2744; font-size: 1.05rem; line-height: 1.6; }
.map-placeholder strong { font-size: 1.2rem; }

/* ── Contact ──────────────────────────────────────────── */
.contact { background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-text p { color: #6b7280; font-size: 1.02rem; margin-bottom: 28px; }
.contact-direct { display: flex; flex-direction: column; gap: 12px; }
.contact-direct-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1a2744;
  font-weight: 500;
  transition: color 0.3s ease;
}
.contact-direct-item:hover { color: #c9a84c; }
.contact-direct-item svg { color: #c9a84c; }

/* Form */
.contact-form-wrap {
  background: #fdf9f0;
  border-radius: 20px;
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #1a2744;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #1a2744;
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #c9a84c;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9ca3af; }
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 16px 20px;
  background: #e8ede4;
  border-radius: 12px;
  color: #1a2744;
  font-size: 0.92rem;
}
.form-success svg { color: #4ade80; flex-shrink: 0; }

/* ── Footer ───────────────────────────────────────────── */
.footer { background: #0f1a2e; color: rgba(255,255,255,0.7); 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-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}
.footer-exhale { font-style: italic; font-weight: 400; opacity: 0.7; }
.footer-brand p { font-size: 0.92rem; line-height: 1.7; }
.footer-links strong, .footer-contact strong {
  display: block;
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.9rem; transition: color 0.3s ease; }
.footer-links a:hover { color: #d4b45a; }
.footer-contact p { font-size: 0.9rem; margin-bottom: 8px; line-height: 1.6; }
.footer-contact a { transition: color 0.3s ease; }
.footer-contact a:hover { color: #d4b45a; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ── Reveal Animations (progressive enhancement) ─────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Fallback: always visible if JS is disabled or reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .products-grid,
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .about-grid,
  .visit-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-float { right: 0; bottom: -30px; }
  .about-accent { left: 0; top: -16px; }
  .products-grid,
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-headline { font-size: clamp(2.4rem, 10vw, 3.6rem); }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .contact-form-wrap { padding: 24px; }
}
