/* ── Reset & Base ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { min-height: 100vh; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: #0d9488; color: #fff; padding: .5rem 1rem;
  border-radius: 0 0 .5rem .5rem; z-index: 200; font-weight: 600;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ── Navigation ─────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(248,250,252,0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(148,163,184,0.15);
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(248,250,252,0.95);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.nav__inner { display: flex; align-items: center; height: 72px; }
.nav__brand {
  display: flex; align-items: center; gap: .6rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700; font-size: 1.15rem; color: #0f766e;
}
.nav__logo { color: #0d9488; }
.nav__name { color: #1e293b; }

.nav__toggle {
  display: none; background: none; border: none; padding: .5rem;
  color: #334155; margin-left: auto;
}
.nav__menu { margin-left: auto; }
.nav__list { display: flex; gap: .25rem; align-items: center; }
.nav__link {
  padding: .5rem .875rem; border-radius: .5rem;
  font-size: .9rem; font-weight: 500; color: #475569;
  transition: color .2s, background .2s;
}
.nav__link:hover { color: #0d9488; background: rgba(13,148,136,0.07); }
.nav__link--cta {
  background: #0d9488; color: #fff; margin-left: .5rem;
}
.nav__link--cta:hover { background: #0f766e; color: #fff; }

@media (max-width: 767px) {
  .nav__toggle { display: flex; align-items: center; justify-content: center; }
  .nav__menu {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(248,250,252,0.98); backdrop-filter: blur(16px);
    padding: 2rem; transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
  }
  .nav__menu.open { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: .5rem; align-items: stretch; }
  .nav__link { display: block; padding: .875rem 1rem; font-size: 1.05rem; }
  .nav__link--cta { margin-left: 0; text-align: center; }
}

/* ── Hero ───────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh; display: flex;
  align-items: center; justify-content: center; text-align: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    url('https://images.pexels.com/photos/15105621/pexels-photo-15105621.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero.loaded .hero__bg { transform: scale(1); }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(4,47,46,0.82) 0%,
    rgba(15,118,110,0.72) 40%,
    rgba(30,41,59,0.78) 100%
  );
}
.hero__content {
  position: relative; z-index: 2; max-width: 780px;
  padding: 2rem; color: #fff;
}
.hero__eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  padding: .4rem 1rem; border-radius: 100px; margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}
.hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 1.25rem;
}
.hero__title-accent {
  background: linear-gradient(135deg, #5eead4, #2dd4bf, #99f6e4);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem); line-height: 1.7;
  color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 2.5rem;
}
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,0.6);
  animation: bobble 2s ease-in-out infinite;
}
@keyframes bobble {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; padding: .875rem 1.75rem; border-radius: .75rem;
  font-weight: 600; font-size: .95rem; border: none;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: #0d9488; color: #fff;
  box-shadow: 0 4px 14px rgba(13,148,136,0.35);
}
.btn--primary:hover { background: #0f766e; box-shadow: 0 6px 20px rgba(13,148,136,0.45); }
.btn--ghost {
  background: rgba(255,255,255,0.12); color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.2); }
.btn--full { width: 100%; }

/* ── Section Shared ─────────────────────────────────── */
.section { padding: 6rem 0; }
.section--dark { background: #0f172a; color: #f8fafc; }
.section--teal {
  background: linear-gradient(135deg, #042f2e 0%, #134e4a 50%, #1e293b 100%);
  color: #f8fafc;
}
.section-eyebrow {
  display: inline-block; font-size: .75rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: #0d9488;
  margin-bottom: .75rem;
}
.section-eyebrow--light { color: #5eead4; }
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 700; line-height: 1.15; color: #0f172a; margin-bottom: 1.25rem;
}
.section-title--light { color: #f8fafc; }
.section-body {
  font-size: 1.05rem; line-height: 1.8; color: #475569;
}
.section-body--light { color: rgba(248,250,252,0.75); }

/* ── About ──────────────────────────────────────────── */
.about__stats { display: flex; gap: 3rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; gap: .25rem; }
.stat__number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem; font-weight: 700; color: #0d9488;
}
.stat__label { font-size: .85rem; color: #64748b; font-weight: 500; }

.about__image-grid {
  position: relative; height: 640px;
}
.about__img {
  position: absolute; object-fit: cover; border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.about__img:hover { transform: scale(1.02); }
.about__img--primary { width: 320px; height: 400px; top: 0; left: 0; z-index: 2; }
.about__img--secondary { width: 260px; height: 195px; top: 160px; right: 0; z-index: 3; }
.about__img--tertiary { width: 220px; height: 110px; bottom: 40px; left: 60px; z-index: 4; }

@media (max-width: 1023px) {
  .about__image-grid { height: 420px; }
  .about__img--primary { width: 240px; height: 300px; }
  .about__img--secondary { width: 200px; height: 150px; }
  .about__img--tertiary { width: 170px; height: 85px; }
}
@media (max-width: 767px) {
  .about__image-grid { display: none; }
}

/* ── Menu ───────────────────────────────────────────── */
.menu__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.menu__category {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem; padding: 2rem;
  transition: background .2s, border-color .2s, transform .2s;
}
.menu__category:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(45,212,191,0.3);
  transform: translateY(-4px);
}
.menu__cat-icon {
  width: 52px; height: 52px; border-radius: .75rem;
  background: rgba(13,148,136,0.2); color: #2dd4bf;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.menu__cat-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem; font-weight: 700; color: #f8fafc;
  margin-bottom: 1.25rem;
}
.menu__items { display: flex; flex-direction: column; gap: .875rem; }
.menu__item-name {
  display: block; font-weight: 600; font-size: .95rem; color: #e2e8f0;
}
.menu__item-desc {
  display: block; font-size: .82rem; color: #94a3b8; margin-top: .15rem;
}
.menu__note { font-size: .85rem; color: #64748b; font-style: italic; }

/* ── Gallery ────────────────────────────────────────── */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem; margin-top: 3rem;
}
.gallery__item {
  border-radius: 1rem; overflow: hidden;
  aspect-ratio: 3/2;
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.gallery__item:hover img { transform: scale(1.06); }
@media (max-width: 639px) {
  .gallery__grid { grid-template-columns: 1fr; }
}

/* ── Visit ──────────────────────────────────────────── */
.visit__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.visit__details { display: flex; flex-direction: column; gap: 1rem; }
.visit__card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: .875rem; padding: 1.25rem 1.5rem;
  transition: background .2s;
}
.visit__card:hover { background: rgba(255,255,255,0.1); }
.visit__card-icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: .625rem;
  background: rgba(45,212,191,0.15); color: #2dd4bf;
  display: flex; align-items: center; justify-content: center;
}
.visit__card-label { font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #5eead4; margin-bottom: .25rem; }
.visit__card-value { font-size: .95rem; color: #f1f5f9; line-height: 1.6; }
.visit__card-value a { color: #f1f5f9; text-decoration: underline; text-underline-offset: 3px; opacity: .85; transition: opacity .2s; }
.visit__card-value a:hover { opacity: 1; }
@media (max-width: 991px) {
  .visit__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── Contact ────────────────────────────────────────── */
.contact__info { display: flex; flex-direction: column; gap: .75rem; }
.contact__link {
  display: inline-flex; align-items: center; gap: .625rem;
  font-size: .95rem; font-weight: 500; color: #334155;
  padding: .625rem 0; border-bottom: 1px solid #e2e8f0;
  transition: color .2s, border-color .2s;
}
.contact__link:hover { color: #0d9488; border-color: #0d9488; }
.contact__link svg { color: #0d9488; flex-shrink: 0; }

.contact__form { display: flex; flex-direction: column; gap: 1.25rem; }
.form__label {
  display: block; font-size: .82rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; color: #475569;
  margin-bottom: .375rem;
}
.form__input {
  width: 100%; padding: .875rem 1rem;
  border: 1.5px solid #e2e8f0; border-radius: .75rem;
  font-size: .95rem; font-family: inherit; color: #1e293b;
  background: #f8fafc; transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form__input:focus { border-color: #0d9488; box-shadow: 0 0 0 3px rgba(13,148,136,0.12); }
.form__input::placeholder { color: #94a3b8; }
.form__textarea { resize: vertical; min-height: 120px; }
.form__success {
  display: flex; align-items: center; gap: .625rem;
  margin-top: .75rem; padding: 1rem 1.25rem;
  background: rgba(13,148,136,0.08); border: 1px solid rgba(13,148,136,0.2);
  border-radius: .75rem; color: #0d9488; font-weight: 500; font-size: .9rem;
}
.form__success svg { flex-shrink: 0; }

/* ── Footer ─────────────────────────────────────────── */
.footer {
  background: #0f172a; color: #94a3b8; padding: 4rem 0 2rem;
}
.footer__top {
  display: grid; grid-template-columns: 1fr auto; gap: 3rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(148,163,184,0.12);
}
.footer__logo {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700; font-size: 1.1rem; color: #f8fafc; margin-bottom: .75rem;
}
.footer__logo svg { color: #0d9488; }
.footer__tagline { font-size: .9rem; color: #64748b; max-width: 280px; line-height: 1.6; }
.footer__nav ul { display: flex; gap: .25rem; flex-wrap: wrap; }
.footer__nav a {
  padding: .5rem .875rem; border-radius: .5rem; font-size: .88rem;
  font-weight: 500; color: #94a3b8; transition: color .2s, background .2s;
}
.footer__nav a:hover { color: #2dd4bf; background: rgba(45,212,191,0.08); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; padding-top: 2rem;
  font-size: .82rem; color: #64748b;
}
.footer__bottom a { color: #94a3b8; transition: color .2s; }
.footer__bottom a:hover { color: #2dd4bf; }
@media (max-width: 767px) {
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ── Reveal Animations ──────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-100 { transition-delay: .1s; }
.delay-200 { transition-delay: .2s; }
.delay-300 { transition-delay: .3s; }
.hidden { display: none; }
