/* ─── RESET & BASE ─── */
*, *::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;
  font-size: 1rem;
  line-height: 1.65;
  color: #1a2744;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; }
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #0d9488;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0f2b4c;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: #4a5f7f;
  max-width: 560px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-sub { margin: 0 auto; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: .938rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--accent {
  background: #0d9488;
  color: #fff;
  border-color: #0d9488;
}
.btn--accent:hover { background: #0f766e; border-color: #0f766e; box-shadow: 0 8px 24px rgba(13,148,136,.3); }
.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn--outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn--mint {
  background: #6ee7b7;
  color: #0f2b4c;
  border-color: #6ee7b7;
}
.btn--mint:hover { background: #34d399; border-color: #34d399; box-shadow: 0 8px 24px rgba(110,231,183,.35); }
.btn--sm { padding: 10px 20px; font-size: .875rem; }
.btn--full { width: 100%; }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 43, 76, .95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .3s;
}
.nav__inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -.01em;
}
.nav__logo-icon { color: #6ee7b7; }
.nav__logo-text { font-family: 'Playfair Display', serif; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav__links a {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: color .2s, background .2s;
}
.nav__links a:not(.btn):hover { color: #fff; background: rgba(255,255,255,.08); }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) { transform: translateY(7px) 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(-7px) rotate(-45deg); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0f2b4c;
  padding-top: 72px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/5994630/pexels-photo-5994630.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1600&h=900') center/cover no-repeat;
  transform: scale(1.05);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,43,76,.92) 0%, rgba(15,43,76,.7) 50%, rgba(15,43,76,.5) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 48px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero__eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #6ee7b7;
  margin-bottom: 16px;
}
.hero__headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero__accent { color: #6ee7b7; }
.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
}
.hero__image-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,.3);
  aspect-ratio: 520/640;
}
.hero__image-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ─── SERVICES ─── */
.services {
  padding: 100px 0;
  background: #f8fafc;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 28px;
  border: 1px solid #e8edf5;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15,43,76,.1);
  border-color: #6ee7b7;
}
.card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #0f2b4c;
  color: #6ee7b7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card__title {
  font-size: 1.2rem;
  color: #0f2b4c;
  margin-bottom: 10px;
}
.card__body {
  font-size: .938rem;
  color: #4a5f7f;
  line-height: 1.65;
}

/* ─── ABOUT ─── */
.about {
  padding: 100px 0;
  background: #fff;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__media { position: relative; }
.about__media img {
  border-radius: 16px;
  width: 100%;
  aspect-ratio: 560/480;
  object-fit: cover;
  box-shadow: 0 24px 48px rgba(15,43,76,.12);
}
.about__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #0f2b4c;
  color: #fff;
  padding: 16px 24px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: .938rem;
  box-shadow: 0 12px 32px rgba(15,43,76,.25);
}
.about__text {
  font-size: 1rem;
  color: #4a5f7f;
  margin-bottom: 16px;
  line-height: 1.75;
}
.about__list { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.about__list li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .938rem;
  font-weight: 500;
  color: #1a2744;
}

/* ─── BANNER ─── */
.banner {
  background: #0f2b4c;
  padding: 80px 0;
}
.banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.banner__title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: #fff;
  margin-bottom: 12px;
}
.banner__body {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  max-width: 560px;
  line-height: 1.7;
}

/* ─── LOCATION ─── */
.location {
  padding: 100px 0;
  background: #f8fafc;
}
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.location__map {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15,43,76,.1);
  aspect-ratio: 640/400;
}
.location__map img { width: 100%; height: 100%; object-fit: cover; }
.location__map-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-align: center;
}
.location__map-overlay svg { color: #6ee7b7; filter: drop-shadow(0 4px 8px rgba(0,0,0,.3)); }
.location__map-overlay span {
  background: rgba(15,43,76,.85);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
}
.location__details { display: flex; flex-direction: column; gap: 20px; }
.location__info-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px 28px;
  border: 1px solid #e8edf5;
}
.location__info-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #0d9488;
  margin-bottom: 8px;
}
.location__info-card p {
  font-size: .938rem;
  color: #1a2744;
  line-height: 1.6;
}
.location__info-card a {
  color: #0f766e;
  font-weight: 500;
  transition: color .2s;
}
.location__info-card a:hover { color: #0d9488; }
.location__hours-note {
  font-size: .813rem !important;
  color: #4a5f7f !important;
  margin-top: 4px;
}

/* ─── CONTACT ─── */
.contact {
  padding: 100px 0;
  background: #fff;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact__text {
  font-size: 1rem;
  color: #4a5f7f;
  margin-bottom: 32px;
  line-height: 1.75;
}
.contact__details { display: flex; flex-direction: column; gap: 20px; }
.contact__details li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: .938rem;
  color: #1a2744;
}
.contact__details svg { flex-shrink: 0; color: #0d9488; margin-top: 2px; }
.contact__details a { color: #0f766e; font-weight: 500; transition: color .2s; }
.contact__details a:hover { color: #0d9488; }
.contact__details span { color: #4a5f7f; line-height: 1.6; }

/* ─── FORM ─── */
.contact__form {
  background: #f8fafc;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid #e8edf5;
}
.form__group { margin-bottom: 20px; }
.form__group label {
  display: block;
  font-size: .813rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #0f2b4c;
  margin-bottom: 8px;
}
.form__group input,
.form__group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #d1dbe8;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: .938rem;
  color: #1a2744;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form__group input:focus,
.form__group textarea:focus {
  border-color: #0d9488;
  box-shadow: 0 0 0 3px rgba(13,148,136,.12);
}
.form__group input::placeholder,
.form__group textarea::placeholder { color: #9fb0c8; }
.form__privacy {
  font-size: .813rem;
  color: #9fb0c8;
  text-align: center;
  margin-top: 12px;
}
.form__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 32px;
  text-align: center;
  animation: fadeIn .3s ease;
}
.form__success strong { font-size: 1.1rem; color: #0f2b4c; }
.form__success span { font-size: .938rem; color: #4a5f7f; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ─── FOOTER ─── */
.footer {
  background: #0a1f36;
  color: rgba(255,255,255,.6);
  padding: 56px 0 32px;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}
.footer__logo svg { color: #6ee7b7; }
.footer__tagline { font-size: .875rem; }
.footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 24px; }
.footer__links a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer__links a:hover { color: #6ee7b7; }
.footer__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}
.footer__contact a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer__contact a:hover { color: #6ee7b7; }
.footer__copy { font-size: .813rem; color: rgba(255,255,255,.35); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr 360px; gap: 32px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(15,43,76,.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    transform: translateY(-120%);
    transition: transform .35s ease;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { width: 100%; text-align: center; padding: 12px; }
  .nav__toggle { display: flex; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__image-wrap { display: none; }
  .hero__sub { margin: 0 auto 36px; }
  .hero__actions { justify-content: center; }
  .hero__trust { justify-content: center; }
  .services__grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__badge { right: 0; }
  .banner__inner { flex-direction: column; text-align: center; }
  .location__grid { grid-template-columns: 1fr; }
  .location__map { aspect-ratio: 16/9; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__form { padding: 28px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding-top: 72px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .services, .about, .location, .contact { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
}
