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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  color: #1a2a3a;
  background: #ffffff;
  line-height: 1.7;
  font-size: 15px;
}

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(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10, 22, 40, 0.06);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 1px 20px rgba(10, 22, 40, 0.06);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-mark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: #0a1628;
  letter-spacing: -0.02em;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #0a1628;
  border-radius: 8px;
}

.nav-logo-text {
  font-size: 14px;
  font-weight: 500;
  color: #0a1628;
  letter-spacing: 0.01em;
}

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

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: #3d5a78;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #a8e6cf;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #0a1628;
}

.nav-links a:hover::after {
  width: 100%;
}

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

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: #ffffff;
  overflow: hidden;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #a8e6cf;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 1.15;
  color: #0a1628;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-headline em {
  font-style: italic;
  color: #1a6b4a;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.8;
  color: #4a6278;
  max-width: 460px;
  margin-bottom: 40px;
}

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

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6b8299;
  font-weight: 400;
}

.trust-item svg {
  color: #a8e6cf;
}

/* Hero image */
.hero-image {
  position: relative;
}

.hero-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(10, 22, 40, 0.12);
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-img-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 1.5px solid #a8e6cf;
  border-radius: 16px;
  z-index: -1;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 8px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: #0a1628;
  color: #ffffff;
  border-color: #0a1628;
}

.btn-primary:hover {
  background: #132238;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.2);
}

.btn-ghost {
  background: transparent;
  color: #0a1628;
  border-color: rgba(10, 22, 40, 0.2);
}

.btn-ghost:hover {
  border-color: #0a1628;
  transform: translateY(-1px);
}

.btn-mint {
  background: #a8e6cf;
  color: #0a1628;
  border-color: #a8e6cf;
}

.btn-mint:hover {
  background: #7bc8a8;
  border-color: #7bc8a8;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(168, 230, 207, 0.3);
}

.btn-outline-light {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
}

/* ── SECTION COMMON ── */
.section-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #a8e6cf;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  color: #0a1628;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-title em {
  font-style: italic;
  color: #1a6b4a;
}

/* ── SERVICES ── */
.services {
  padding: 120px 0;
  background: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  padding: 40px;
  border: 1px solid rgba(10, 22, 40, 0.07);
  border-radius: 16px;
  transition: all 0.3s ease;
  background: #ffffff;
}

.service-card:hover {
  border-color: #a8e6cf;
  box-shadow: 0 16px 48px rgba(10, 22, 40, 0.06);
  transform: translateY(-2px);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--icon-bg, rgba(168, 230, 207, 0.15));
  color: #1a6b4a;
  margin-bottom: 24px;
}

.service-card:nth-child(2) .service-icon { --icon-bg: rgba(10, 22, 40, 0.06); }
.service-card:nth-child(3) .service-icon { --icon-bg: rgba(168, 230, 207, 0.2); }
.service-card:nth-child(4) .service-icon { --icon-bg: rgba(10, 22, 40, 0.04); }

.service-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: #0a1628;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 15px;
  line-height: 1.75;
  color: #4a6278;
}

/* ── ABOUT ── */
.about {
  padding: 120px 0;
  background: var(--bg-alt, #f7faf8);
}

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

.about-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(10, 22, 40, 0.08);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.about-text {
  font-size: 16px;
  line-height: 1.85;
  color: #4a6278;
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(10, 22, 40, 0.07);
}

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

.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 600;
  color: #0a1628;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b8299;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(10, 22, 40, 0.1);
}

/* ── CTA BANNER ── */
.cta-banner {
  padding: 100px 0;
  background: #0a1628;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(168, 230, 207, 0.08);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(168, 230, 207, 0.06);
}

.cta-inner {
  position: relative;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.cta-title em {
  font-style: italic;
  color: #a8e6cf;
}

.cta-desc {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
}

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

/* ── VISIT ── */
.visit {
  padding: 120px 0;
  background: #ffffff;
}

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

.visit-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.visit-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.visit-block-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(168, 230, 207, 0.15);
  color: #1a6b4a;
}

.visit-block-title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a1628;
  margin-bottom: 6px;
}

.visit-block p {
  font-size: 15px;
  line-height: 1.7;
  color: #4a6278;
}

.visit-block a {
  color: #1a6b4a;
  text-decoration: none;
  border-bottom: 1px solid rgba(26, 107, 74, 0.2);
  transition: border-color 0.2s ease;
}

.visit-block a:hover {
  border-color: #1a6b4a;
}

.visit-map {
  border-radius: 16px;
  overflow: hidden;
  min-height: 380px;
  box-shadow: 0 16px 48px rgba(10, 22, 40, 0.08);
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
}

/* ── CONTACT ── */
.contact {
  padding: 120px 0;
  background: var(--bg-alt, #f7faf8);
}

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

.contact-content .section-title {
  margin-bottom: 20px;
}

.contact-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #4a6278;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #0a1628;
  padding: 16px 20px;
  border: 1px solid rgba(10, 22, 40, 0.07);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.contact-detail:hover {
  border-color: #a8e6cf;
  background: rgba(168, 230, 207, 0.05);
}

.contact-detail svg {
  color: #a8e6cf;
  flex-shrink: 0;
}

/* Form */
.contact-form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 16px 48px rgba(10, 22, 40, 0.06);
  border: 1px solid rgba(10, 22, 40, 0.05);
}

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

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3d5a78;
  margin-bottom: 8px;
}

.form-optional {
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  color: #8fa3b8;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #0a1628;
  background: #f7faf8;
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: 10px;
  outline: none;
  transition: all 0.2s ease;
  line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a0b4c8;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #a8e6cf;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(168, 230, 207, 0.15);
}

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

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(168, 230, 207, 0.12);
  border: 1px solid rgba(168, 230, 207, 0.3);
  border-radius: 10px;
  color: #1a6b4a;
  font-size: 14px;
  font-weight: 400;
  margin-top: 16px;
}

.form-success.show {
  display: flex;
}

.form-success svg {
  flex-shrink: 0;
}

/* ── FOOTER ── */
.footer {
  padding: 64px 0 40px;
  background: #0a1628;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo-mark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: #a8e6cf;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(168, 230, 207, 0.3);
  border-radius: 10px;
}

.footer-logo-text {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.01em;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: -4px;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

/* ── MOBILE NAV ── */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }

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

  .nav-links a {
    font-size: 15px;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-image {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .about-image {
    max-width: 480px;
    margin: 0 auto;
  }

  .visit-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-links {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

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

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

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

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

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  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);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
