/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #334155;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #0d9488; text-decoration: none; transition: color .2s; }
a:hover { color: #0f766e; }
ul { list-style: none; }
address { font-style: normal; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: 680px; }
.section { padding: 5rem 0; }
.section--alt { background: #f0fdfa; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #0d9488;
  margin-bottom: .75rem;
  background: #ccfbf1;
  padding: .35rem .85rem;
  border-radius: 50px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-header p { color: #64748b; font-size: 1.05rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  padding: .8rem 1.75rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .25s, color .25s, transform .15s, box-shadow .25s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); color: inherit; }
.btn--primary {
  background: #0d9488;
  color: #fff;
  border-color: #0d9488;
  box-shadow: 0 4px 14px rgba(13,148,136,.35);
}
.btn--primary:hover { background: #0f766e; border-color: #0f766e; box-shadow: 0 6px 20px rgba(13,148,136,.45); }
.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.7);
}
.btn--outline:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn--light {
  background: #fff;
  color: #0d9488;
  border-color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
}
.btn--light:hover { background: #f0fdfa; }
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn--ghost:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn--sm { padding: .55rem 1.25rem; font-size: .85rem; }
.btn--full { width: 100%; justify-content: center; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 800;
  font-size: 1.05rem;
  color: #1e293b;
  text-decoration: none;
}
.logo--light { color: #fff; }
.logo-icon { color: #0d9488; }
.logo--light .logo-icon { color: #fff; }
#mainNav ul { display: flex; align-items: center; gap: .25rem; }
#mainNav a {
  color: #475569;
  font-weight: 600;
  font-size: .9rem;
  padding: .45rem .85rem;
  border-radius: 50px;
  transition: background .2s, color .2s;
}
#mainNav a:hover { background: #f0fdfa; color: #0d9488; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
}
.hamburger, .hamburger::before, .hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: #334155;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.hamburger::before { content: ''; top: -7px; }
.hamburger::after { content: ''; bottom: -7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: translateX(-50%) rotate(45deg); top: 0; }
.nav-toggle[aria-expanded="true"] .hamburger::after { transform: translateX(-50%) rotate(-45deg); bottom: 0; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,.82) 0%, rgba(13,80,78,.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 72px;
  max-width: 700px;
}
.hero-eyebrow {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #5eead4;
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.25rem;
}
.text-teal { color: #5eead4; }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-images { position: relative; }
.about-images img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-images img:nth-child(2) {
  position: absolute;
  bottom: -2rem;
  right: -1.5rem;
  width: 60%;
  border: 5px solid #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #1e293b;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}
.about-text p { color: #64748b; margin-bottom: 1rem; }
.about-text p:last-child { margin-bottom: 0; }

/* ===== CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
  border: 1px solid rgba(0,0,0,.04);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.1); }
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #ccfbf1;
  color: #0d9488;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.card h3 {
  font-size: 1.15rem;
  color: #1e293b;
  margin-bottom: .6rem;
}
.card p { color: #64748b; font-size: .95rem; }
.cards-note { text-align: center; color: #64748b; font-size: .95rem; }
.cards-note a { font-weight: 700; }

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.feature {
  position: relative;
  padding: 2rem 2rem 2rem 3.5rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
  border: 1px solid rgba(0,0,0,.04);
}
.feature-number {
  position: absolute;
  top: 1.5rem;
  left: 1.25rem;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #ccfbf1;
  line-height: 1;
}
.feature h3 {
  font-size: 1.1rem;
  color: #1e293b;
  margin-bottom: .5rem;
}
.feature p { color: #64748b; font-size: .95rem; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #0f766e 0%, #1e293b 100%);
  padding: 4.5rem 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: .5rem;
}
.cta-text p { color: rgba(255,255,255,.75); font-size: 1.05rem; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== VISIT ===== */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.visit-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #1e293b;
  margin-bottom: 1.25rem;
}
.visit-address {
  font-size: 1.05rem;
  color: #334155;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.visit-details { margin-bottom: 2rem; }
.visit-details li {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: #64748b;
  margin-bottom: .75rem;
  font-size: .95rem;
}
.visit-details svg { color: #0d9488; flex-shrink: 0; }
.map-wrapper { border-radius: 16px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,.1); }

/* ===== CONTACT FORM ===== */
.contact-form {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,.07);
  border: 1px solid rgba(0,0,0,.04);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: .85rem;
  color: #334155;
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: .95rem;
  color: #334155;
  background: #f8fafc;
  transition: border-color .2s, background .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0d9488;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(13,148,136,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { text-align: center; color: #94a3b8; font-size: .85rem; margin-top: 1rem; }
.form-note a { font-weight: 700; }
.form-success {
  text-align: center;
  background: #ccfbf1;
  color: #0f766e;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 700;
  margin-top: 1rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #1e293b;
  color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p { margin-top: .75rem; font-size: .9rem; line-height: 1.7; }
.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-size: .95rem;
  margin-bottom: 1rem;
}
.footer-links li,
.footer-contact li { margin-bottom: .5rem; font-size: .9rem; }
.footer-links a { color: rgba(255,255,255,.6); }
.footer-links a:hover { color: #5eead4; }
.footer-contact a { color: rgba(255,255,255,.6); }
.footer-contact a:hover { color: #5eead4; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  padding: 1.5rem 0;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  #mainNav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 12px 40px rgba(0,0,0,.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform .35s ease, opacity .35s ease;
    pointer-events: none;
  }
  #mainNav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  #mainNav ul { flex-direction: column; gap: .25rem; align-items: stretch; }
  #mainNav a { display: block; padding: .7rem 1rem; border-radius: 12px; }
  #mainNav a:hover { background: #f0fdfa; }
  #mainNav .btn { align-self: center; margin-top: .5rem; }
  .hero-content { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .about-grid,
  .visit-grid { grid-template-columns: 1fr; }
  .about-images { order: -1; max-width: 400px; margin: 0 auto; }
  .about-images img:nth-child(2) { right: -1rem; bottom: -1.5rem; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .scroll-indicator { animation: none; }
}
