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

:root {
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--slate-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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 var(--slate-200);
  transition: box-shadow 0.3s var(--ease);
}

.nav.scrolled {
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

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

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  color: var(--slate-900);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.nav-logo:hover { color: var(--teal-600); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate-500);
  transition: color 0.2s;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--teal-600);
  transition: width 0.3s var(--ease);
}

.nav-menu a:hover { color: var(--slate-900); }
.nav-menu a:hover::after { width: 100%; }

.nav-cta {
  font-size: 0.8125rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase;
  color: var(--white) !important;
  background: var(--slate-900);
  padding: 8px 18px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--teal-600); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 20px;
  height: 1.5px;
  background: var(--slate-700);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

/* ─── HERO ────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--slate-900);
  margin-bottom: 28px;
}

.hero-headline .accent {
  color: var(--teal-600);
  font-style: italic;
}

.hero-body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--slate-600);
  max-width: 480px;
  margin-bottom: 36px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.btn-primary {
  background: var(--slate-900);
  color: var(--white);
  border-color: var(--slate-900);
}

.btn-primary:hover {
  background: var(--teal-600);
  border-color: var(--teal-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--slate-700);
  border-color: var(--slate-300);
}

.btn-ghost:hover {
  border-color: var(--slate-900);
  color: var(--slate-900);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }

.hero-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--slate-400);
}

.meta-dot {
  color: var(--slate-300);
}

.hero-image {
  position: relative;
}

.img-frame {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--slate-100);
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.img-frame:hover img { transform: scale(1.03); }

.hero-accent {
  position: absolute;
  bottom: -24px;
  left: -24px;
  color: var(--teal-200);
  opacity: 0.6;
  animation: spin 20s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--slate-400);
  animation: bob 2s ease-in-out infinite;
  transition: color 0.2s;
}

.scroll-indicator:hover { color: var(--teal-600); }

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── DIVIDER ─────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.divider .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal-300);
  flex-shrink: 0;
}

.divider .line {
  flex: 1;
  height: 1px;
  background: var(--slate-200);
}

/* ─── SECTIONS ────────────────────────── */
section {
  padding: 100px 0;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--slate-900);
  margin-bottom: 24px;
}

/* ─── ABOUT ───────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--slate-100);
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.about-image-wrap:hover img { transform: scale(1.03); }

.about-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--slate-600);
  margin-bottom: 16px;
}

.about-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--slate-200);
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--slate-700);
}

.about-features svg {
  color: var(--teal-600);
  flex-shrink: 0;
}

/* ─── MENU ────────────────────────────── */
.menu {
  background: var(--slate-50);
}

.menu-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.menu-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 36px 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.menu-card:hover {
  border-color: var(--teal-200);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--teal-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-600);
  margin-bottom: 20px;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--slate-900);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.card-desc {
  font-size: 0.9375rem;
  color: var(--slate-500);
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-list li {
  font-size: 0.875rem;
  color: var(--slate-600);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--slate-100);
}

.card-list li:last-child { border-bottom: none; }

.menu-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--slate-400);
  font-style: italic;
}

/* ─── VISIT ───────────────────────────── */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.visit-address {
  font-style: normal;
  margin-bottom: 24px;
}

.address-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--slate-700);
  line-height: 1.7;
  transition: color 0.2s;
}

.address-link:hover { color: var(--teal-600); }

.address-link svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--teal-600);
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--slate-800);
  transition: color 0.2s;
}

.contact-item:hover { color: var(--teal-600); }

.hours {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--slate-200);
}

.hours-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--slate-900);
  margin-bottom: 20px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 0;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--slate-100);
}

.hours-row span:first-child { color: var(--slate-600); }
.hours-row span:last-child { color: var(--slate-800); font-weight: 400; }

.hours-note {
  font-size: 0.8125rem;
  color: var(--slate-400);
  margin-top: 12px;
  font-style: italic;
}

.visit-map a {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  aspect-ratio: 7 / 5;
  background: var(--slate-100);
}

.map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.visit-map a:hover .map-img { transform: scale(1.03); }

.map-overlay {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--slate-800);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: background 0.2s;
}

.map-overlay:hover { background: var(--teal-50); }

/* ─── CTA / CONTACT ───────────────────── */
.cta {
  background: var(--slate-900);
  color: var(--white);
}

.cta .section-label { color: var(--teal-300); }

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.cta-text .section-title { color: var(--white); }

.cta-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--slate-400);
  max-width: 440px;
}

.cta-form-wrap { position: relative; }

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate-400);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--slate-500);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal-500);
  background: rgba(255, 255, 255, 0.08);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5l3 3 3-3' stroke='%2394a3b8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group select option {
  background: var(--slate-800);
  color: var(--slate-300);
}

.btn-submit {
  background: var(--teal-600);
  color: var(--white);
  border: 1px solid var(--teal-600);
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  width: 100%;
}

.btn-submit:hover {
  background: var(--teal-500);
  border-color: var(--teal-500);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.3);
}

.form-alt {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--slate-500);
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.form-alt a {
  color: var(--teal-400);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.form-alt a:hover { color: var(--teal-300); }

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 40px 24px;
  color: var(--white);
}

.form-success svg { color: var(--teal-400); }

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
}

.form-success p {
  font-size: 0.9375rem;
  color: var(--slate-400);
}

/* ─── FOOTER ──────────────────────────── */
.footer {
  background: var(--slate-900);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px 0;
}

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

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

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--white);
  transition: color 0.2s;
}

.footer-logo:hover { color: var(--teal-400); }

.footer-brand p,
.footer-brand a {
  font-size: 0.8125rem;
  color: var(--slate-500);
}

.footer-brand a:hover { color: var(--teal-400); }

.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-nav a {
  font-size: 0.8125rem;
  color: var(--slate-500);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--white); }

.footer-copy {
  width: 100%;
  font-size: 0.75rem;
  color: var(--slate-600);
  margin-top: 8px;
}

/* ─── ANIMATIONS ──────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .nav-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid var(--slate-200);
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
  }

  .nav-menu.open {
    max-height: 400px;
    padding: 16px 24px;
  }

  .nav-menu a {
    padding: 12px 0;
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--slate-100);
    width: 100%;
  }

  .nav-menu a::after { display: none; }
  .nav-cta {
    margin-top: 8px;
    text-align: center;
    display: block !important;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-body { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-meta { justify-content: center; flex-wrap: wrap; }
  .hero-image { order: -1; max-width: 480px; margin: 0 auto; }
  .img-frame { aspect-ratio: 3 / 2; }

  .about-grid,
  .visit-grid,
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav { flex-wrap: wrap; justify-content: center; }

  section { padding: 72px 0; }
}

@media (max-width: 480px) {
  .hero { padding: 88px 16px 48px; }
  .container { padding: 0 16px; }
  .about-features { grid-template-columns: 1fr; }
}
