/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #1a2a3a;
  background: #fafbfc;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; color: #0a2540; }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.skip-link { position: absolute; left: -9999px; top: 0; background: #0a2540; color: #fff; padding: .75rem 1.5rem; z-index: 200; font-weight: 600; }
.skip-link:focus { left: 1rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 1.75rem;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .9375rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  text-align: center;
}
.btn--primary { background: #0a2540; color: #fff; border-color: #0a2540; }
.btn--primary:hover { background: #133a5c; border-color: #133a5c; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,37,64,.25); }
.btn--accent { background: #40e0d0; color: #0a2540; border-color: #40e0d0; }
.btn--accent:hover { background: #2ec4b6; border-color: #2ec4b6; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(64,224,208,.3); }
.btn--ghost { background: transparent; color: #0a2540; border-color: #0a2540; }
.btn--ghost:hover { background: #0a2540; color: #fff; }
.btn--sm { padding: .625rem 1.25rem; font-size: .875rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── Section Eyebrow ── */
.section-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #0d9488;
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.0625rem;
  color: #4a5f73;
  max-width: 520px;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-sub { margin: 0 auto; }

/* ── Header ── */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,251,252,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10,37,64,.08);
  transition: box-shadow .3s ease;
}
.header.scrolled { box-shadow: 0 4px 20px rgba(10,37,64,.1); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: .625rem; }
.logo-mark {
  width: 32px; height: 32px;
  background: #0a2540;
  border-radius: 6px;
  position: relative;
}
.logo-mark::after {
  content: '';
  position: absolute; top: 6px; left: 6px;
  width: 20px; height: 20px;
  background: #40e0d0;
  border-radius: 3px;
  opacity: .85;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1875rem;
  color: #0a2540;
}
.nav ul { display: flex; align-items: center; gap: 2rem; }
.nav a {
  font-size: .9375rem;
  font-weight: 500;
  color: #1a2a3a;
  position: relative;
  transition: color .2s;
}
.nav a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: #40e0d0;
  transition: width .25s ease;
}
.nav a:hover { color: #0d9488; }
.nav a:hover::after { width: 100%; }

/* Nav toggle */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 40px; height: 40px;
  position: relative;
}
.hamburger {
  position: absolute; left: 10px; top: 14px;
  display: block; width: 20px; height: 2px;
  background: #0a2540;
  transition: all .3s ease;
}
.hamburger::before, .hamburger::after {
  content: ''; position: absolute; left: 0;
  width: 20px; height: 2px; background: #0a2540;
  transition: all .3s ease;
}
.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(250,251,252,.98);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(10,37,64,.08);
    transform: translateY(-110%);
    transition: transform .35s ease;
    box-shadow: 0 12px 32px rgba(10,37,64,.1);
  }
  .nav.open { transform: translateY(0); }
  .nav ul { flex-direction: column; gap: 1rem; }
  .nav a { font-size: 1.0625rem; }
}

/* ── Hero ── */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #f0f7f6 0%, #fafbfc 50%, #e8f4f2 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.hero-eyebrow {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #0d9488;
  margin-bottom: 1rem;
}
.hero-headline {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  color: #0a2540;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.125rem;
  color: #4a5f73;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .75rem; }
.badge {
  display: inline-flex; align-items: center; gap: .375rem;
  font-size: .8125rem; font-weight: 500;
  color: #1a2a3a;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(10,37,64,.1);
  padding: .5rem .875rem;
  border-radius: 100px;
}
.badge svg { color: #0d9488; }

.hero-visual { position: relative; }
.hero-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(10,37,64,.18);
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-card {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: #0a2540;
  color: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(10,37,64,.3);
}
.float-label { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: #40e0d0; margin-bottom: .25rem; }
.float-value { font-family: 'Playfair Display', serif; font-size: 1.375rem; font-weight: 700; color: #fff; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; max-width: 480px; margin: 0 auto; }
  .hero-float-card { left: - .5rem; bottom: -1rem; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ── About ── */
.about { padding: 6rem 0; background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-visual { position: relative; }
.about-visual img { border-radius: 16px; width: 100%; height: 480px; object-fit: cover; box-shadow: 0 16px 48px rgba(10,37,64,.12); }
.about-stat-card {
  position: absolute; bottom: -1.25rem; right: -1.25rem;
  background: #40e0d0; color: #0a2540;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(64,224,208,.3);
}
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800; line-height: 1; }
.stat-desc { font-size: .8125rem; font-weight: 600; }
.about-content p { color: #4a5f73; margin-bottom: 1rem; font-size: 1.0625rem; }
.about-features { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.feature { display: flex; gap: 1rem; align-items: flex-start; }
.feature-icon {
  flex-shrink: 0; width: 48px; height: 48px;
  background: #f0f7f6;
  border: 1px solid rgba(13,148,136,.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #0d9488;
}
.feature h3 { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600; color: #0a2540; margin-bottom: .25rem; }
.feature p { font-size: .9375rem; color: #4a5f73; margin: 0; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-visual img { height: 360px; }
}

/* ── Menu ── */
.menu { padding: 6rem 0; background: #0a2540; }
.menu .section-eyebrow { color: #40e0d0; }
.menu .section-title { color: #fff; }
.menu .section-sub { color: rgba(255,255,255,.6); }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.menu-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,.3); }
.menu-card-img { height: 200px; overflow: hidden; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.menu-card:hover .menu-card-img img { transform: scale(1.05); }
.menu-card-body { padding: 1.75rem; }
.menu-card-body h3 { font-size: 1.375rem; color: #fff; margin-bottom: .5rem; }
.menu-card-body > p { font-size: .9375rem; color: rgba(255,255,255,.6); margin-bottom: 1rem; line-height: 1.6; }
.menu-list { display: flex; flex-direction: column; gap: .5rem; }
.menu-list li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .9375rem; color: rgba(255,255,255,.8);
}
.menu-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: #40e0d0;
  border-radius: 50%;
  flex-shrink: 0;
}
.menu-cta {
  text-align: center;
  padding: 2.5rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
}
.menu-cta p { color: rgba(255,255,255,.7); margin-bottom: 1.25rem; font-size: 1.0625rem; }
.menu-cta .btn { margin: 0 auto; }

@media (max-width: 900px) {
  .menu-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

/* ── Atmosphere ── */
.atmosphere { padding: 6rem 0; background: #fff; }
.atm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.atm-content p { color: #4a5f73; font-size: 1.0625rem; margin-bottom: 2rem; }
.atm-features { display: flex; flex-direction: column; gap: 1rem; }
.atm-feature {
  display: flex; align-items: center; gap: .75rem;
  font-size: 1rem; font-weight: 500; color: #1a2a3a;
}
.atm-feature svg { color: #0d9488; flex-shrink: 0; }
.atm-visual { position: relative; }
.atm-img-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.atm-img-grid img { border-radius: 12px; width: 100%; height: 250px; object-fit: cover; box-shadow: 0 8px 24px rgba(10,37,64,.1); }
.atm-img-grid img:first-child { height: 320px; }
.atm-img-grid img:last-child { margin-top: -3rem; border: 4px solid #fff; }

@media (max-width: 900px) {
  .atm-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── Visit ── */
.visit { padding: 6rem 0; background: #f0f7f6; }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-block { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  flex-shrink: 0; width: 48px; height: 48px;
  background: #0a2540;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #40e0d0;
}
.contact-label { font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #4a5f73; margin-bottom: .25rem; }
.contact-item p a { color: #0a2540; font-weight: 600; transition: color .2s; }
.contact-item p a:hover { color: #0d9488; }
.visit-hours {
  background: #0a2540;
  border-radius: 16px;
  padding: 2.5rem;
  color: #fff;
}
.visit-hours h3 { font-size: 1.5rem; color: #fff; margin-bottom: 1.5rem; }
.hours-list { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.5rem; }
.hours-list li { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: .75rem; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .9375rem; }
.hours-list li:last-child { border-bottom: none; padding-bottom: 0; }
.day { color: rgba(255,255,255,.7); }
.time { color: #40e0d0; font-weight: 600; }
.hours-note { font-size: .8125rem; color: rgba(255,255,255,.45); font-style: italic; }

@media (max-width: 900px) {
  .visit-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── Contact ── */
.contact { padding: 6rem 0; background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-left p { color: #4a5f73; font-size: 1.0625rem; margin-top: 1rem; }
.contact-right { background: #f8faf9; border: 1px solid rgba(10,37,64,.08); border-radius: 16px; padding: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1rem; }
.form-group label { font-size: .875rem; font-weight: 600; color: #0a2540; }
.form-group input, .form-group select, .form-group textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: .9375rem;
  padding: .75rem 1rem;
  border: 1.5px solid rgba(10,37,64,.15);
  border-radius: 8px;
  background: #fff;
  color: #1a2a3a;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #0d9488;
  box-shadow: 0 0 0 3px rgba(13,148,136,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .8125rem; color: #4a5f73; margin-top: .75rem; text-align: center; }
.form-success { text-align: center; padding: 2rem; }
.success-icon { color: #0d9488; margin-bottom: 1rem; }
.form-success h3 { font-size: 1.5rem; margin-bottom: .5rem; }
.form-success p { color: #4a5f73; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── Footer ── */
.footer { background: #0a2540; color: rgba(255,255,255,.7); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 3rem; }
.footer-brand .logo-text { color: #fff; }
.footer-brand p { margin-top: .75rem; font-size: .9375rem; line-height: 1.7; }
.footer h4 { font-family: 'DM Sans', sans-serif; font-size: .8125rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #40e0d0; margin-bottom: 1rem; }
.footer ul { display: flex; flex-direction: column; gap: .625rem; }
.footer a { font-size: .9375rem; transition: color .2s; }
.footer a:hover { color: #40e0d0; }
.footer-map iframe { border-radius: 10px; width: 100%; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.5rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; font-size: .8125rem; color: rgba(255,255,255,.4); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
