*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1B2A4A;
  background: #FAF6F0;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.0);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(27, 42, 74, 0.08);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: #1B2A4A;
  transition: opacity 0.3s;
}

.nav-logo:hover { opacity: 0.7; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1B2A4A;
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #D4A84B;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link--cta {
  background: #1B2A4A;
  color: #fff;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.85rem;
  transition: background 0.3s, transform 0.2s;
}

.nav-link--cta::after { display: none; }
.nav-link--cta:hover { background: #2A3F6B; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #1B2A4A;
  padding: 4px;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  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(27, 42, 74, 0.72) 0%,
    rgba(27, 42, 74, 0.45) 50%,
    rgba(27, 42, 74, 0.30) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  padding: 0 24px;
  animation: heroFadeUp 1s ease both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #D4A84B;
  background: rgba(212, 168, 75, 0.15);
  border: 1px solid rgba(212, 168, 75, 0.4);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
}

.hero-accent {
  color: #D4A84B;
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

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

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

.scroll-dot {
  animation: dotMove 2s ease-in-out infinite;
}

@keyframes dotMove {
  0%, 100% { cy: 10; opacity: 1; }
  50% { cy: 18; opacity: 0.4; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 16px 32px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn--gold {
  background: #D4A84B;
  color: #1B2A4A;
  border-color: #D4A84B;
}

.btn--gold:hover {
  background: #E8C46E;
  border-color: #E8C46E;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 168, 75, 0.35);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn--navy {
  background: #1B2A4A;
  color: #fff;
  border-color: #1B2A4A;
}

.btn--navy:hover {
  background: #2A3F6B;
  border-color: #2A3F6B;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 42, 74, 0.3);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ── SECTIONS ── */
.section {
  padding: 120px 0;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D4A84B;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: #1B2A4A;
  margin-bottom: 24px;
}

.text-gold { color: #D4A84B; }

.section-sub {
  font-size: 1.1rem;
  color: #4A5568;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.mb-16 { margin-bottom: 64px; }

/* ── ABOUT ── */
.about {
  background: #FAF6F0;
}

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

.about-images {
  position: relative;
  height: 600px;
}

.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(27, 42, 74, 0.12);
}

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

.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(27, 42, 74, 0.15);
  border: 6px solid #FAF6F0;
}

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

.about-badge {
  position: absolute;
  top: -20px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 14px 20px;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(27, 42, 74, 0.1);
  font-size: 0.85rem;
  font-weight: 600;
  color: #1B2A4A;
}

.about-text p {
  color: #4A5568;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(27, 42, 74, 0.1);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1B2A4A;
}

.stat-label {
  font-size: 0.8rem;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── CARDS ── */
.what-we-carry {
  background: linear-gradient(180deg, #FAF6F0 0%, #F3EDE3 100%);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(27, 42, 74, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(27, 42, 74, 0.12);
}

.card-img {
  height: 240px;
  overflow: hidden;
}

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

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

.card-body {
  padding: 32px;
}

.card-body h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1B2A4A;
  margin-bottom: 12px;
}

.card-body p {
  color: #4A5568;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── VISIT ── */
.visit {
  background: #fff;
}

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

.visit-detail {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.visit-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #FAF6F0, #F3EDE3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visit-detail strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #718096;
  margin-bottom: 4px;
}

.visit-detail p {
  color: #1B2A4A;
  font-size: 1rem;
  line-height: 1.6;
}

.visit-detail a {
  color: #1B2A4A;
  transition: color 0.3s;
}

.visit-detail a:hover { color: #D4A84B; }

.visit-map {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(27, 42, 74, 0.12);
  aspect-ratio: 7/5.5;
}

.visit-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visit-map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
  animation: pinBounce 2s ease-in-out infinite;
}

@keyframes pinBounce {
  0%, 100% { transform: translate(-50%, -100%); }
  50% { transform: translate(-50%, -110%); }
}

/* ── CONTACT ── */
.contact {
  background: linear-gradient(135deg, #1B2A4A 0%, #2A3F6B 100%);
  color: #fff;
}

.contact .section-label { color: #D4A84B; }
.contact .section-title { color: #fff; }
.contact .section-title .text-gold { color: #D4A84B; }

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

.contact-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-direct {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-direct-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s;
}

.contact-direct-item:hover { color: #D4A84B; }

.contact-direct-sep {
  color: rgba(255, 255, 255, 0.3);
}

.contact-form-wrap {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(8px);
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s, background 0.3s;
  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: #D4A84B;
  background: rgba(255, 255, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(212, 168, 75, 0.15);
  border: 1px solid rgba(212, 168, 75, 0.3);
  border-radius: 12px;
  color: #D4A84B;
  font-weight: 500;
  font-size: 0.95rem;
}

/* ── FOOTER ── */
.footer {
  background: #131F36;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

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

.footer-brand p {
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-brand .nav-logo {
  color: #fff;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links strong,
.footer-contact strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #D4A84B;
  margin-bottom: 4px;
}

.footer-links a {
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-links a:hover { color: #D4A84B; }

.footer-contact p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-contact a {
  transition: color 0.3s;
}

.footer-contact a:hover { color: #D4A84B; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ── MOBILE NAV ── */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(250, 246, 240, 0.98);
  backdrop-filter: blur(12px);
  padding: 24px;
  gap: 20px;
  border-bottom: 1px solid rgba(27, 42, 74, 0.08);
  box-shadow: 0 16px 32px rgba(27, 42, 74, 0.08);
}

.nav-toggle.open svg line {
  stroke: #1B2A4A;
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid,
  .visit-grid,
  .contact-grid {
    gap: 48px;
  }

  .about-images { height: 450px; }
  .about-img-float { right: -20px; bottom: -20px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }

  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }

  .section { padding: 80px 0; }

  .about-grid,
  .visit-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-images { height: 380px; }
  .about-img-float { right: -10px; bottom: -16px; }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .form-row { grid-template-columns: 1fr; }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .contact-form-wrap { padding: 28px; }
}

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