/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

: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;

  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

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

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--slate-800);
  background: #fff;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--teal-600);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--teal-700);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ── Typography ── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--slate-900);
  margin-bottom: var(--space-md);
}

.section-lead {
  font-size: 1.125rem;
  color: var(--slate-500);
  max-width: 540px;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--teal-600);
  color: #fff;
  border-color: var(--teal-600);
}

.btn-primary:hover {
  background: var(--teal-700);
  border-color: var(--teal-700);
  color: #fff;
}

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

.btn-ghost:hover {
  border-color: var(--teal-600);
  color: var(--teal-600);
}

.btn-full {
  width: 100%;
}

/* ── Header ── */
.site-header {
  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;
}

.site-header.scrolled {
  box-shadow: 0 1px 0 var(--slate-200);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: var(--slate-900);
}

.logo-mark {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--slate-300);
  border-radius: 50%;
  color: var(--teal-600);
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  letter-spacing: -0.01em;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
}

.nav-menu a {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--slate-600);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}

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

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

.nav-menu a:hover::after {
  width: 100%;
}

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

.nav-toggle-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--slate-700);
  transition: all 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ── Hero ── */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: var(--space-md);
}

.hero-headline {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.05;
  color: var(--slate-900);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--slate-500);
  max-width: 440px;
  margin-bottom: var(--space-lg);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  padding-right: var(--space-lg);
}

.hero-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 600/750;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-accent {
  position: absolute;
  bottom: -40px;
  left: -60px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  aspect-ratio: 200/260;
}

.hero-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Divider ── */
.divider {
  display: flex;
  justify-content: center;
  padding: var(--space-lg) 0;
  color: var(--teal-200);
}

/* ── About ── */
.about {
  padding: var(--space-3xl) 0;
  background: var(--slate-50);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 560/640;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  padding: var(--space-md) 0;
}

.about-content p {
  color: var(--slate-600);
  margin-bottom: var(--space-md);
  font-size: 1.0625rem;
  line-height: 1.8;
}

.about-content p:last-child {
  margin-bottom: 0;
}

/* ── Menu ── */
.menu {
  padding: var(--space-3xl) 0;
  background: #fff;
}

.menu-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.menu-header .section-lead {
  margin: 0 auto;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.menu-category {
  padding: var(--space-lg);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.menu-category:hover {
  border-color: var(--teal-200);
  box-shadow: 0 8px 32px rgba(13, 148, 136, 0.06);
}

.category-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--slate-200);
  border-radius: 50%;
  color: var(--teal-600);
  margin-bottom: var(--space-md);
}

.category-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--slate-900);
  margin-bottom: var(--space-md);
}

.menu-list {
  list-style: none;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--slate-100);
  gap: var(--space-sm);
}

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

.menu-name {
  font-weight: 400;
  font-size: 0.9375rem;
  color: var(--slate-800);
}

.menu-desc {
  font-size: 0.8125rem;
  color: var(--slate-400);
  white-space: nowrap;
  text-align: right;
}

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

/* ── Visit ── */
.visit {
  padding: var(--space-3xl) 0;
  background: var(--slate-900);
  color: #fff;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.visit-content {
  padding: var(--space-md) 0;
}

.visit-content .section-title {
  color: #fff;
}

.visit-details {
  font-style: normal;
  margin-bottom: var(--space-lg);
}

.visit-details p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--slate-300);
}

.visit-details a {
  color: var(--teal-200);
}

.visit-details a:hover {
  color: var(--teal-100);
}

.hours-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: #fff;
  margin-bottom: var(--space-sm);
}

.hours-list {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: var(--space-lg);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--slate-700);
  font-size: 0.9375rem;
}

.hours-day {
  color: var(--slate-400);
}

.hours-time {
  color: var(--slate-200);
  font-weight: 400;
}

.visit-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 560/640;
}

.visit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Contact ── */
.contact {
  padding: var(--space-3xl) 0;
  background: var(--teal-50);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-lead {
  font-size: 1.0625rem;
  color: var(--slate-500);
  margin-bottom: var(--space-lg);
  line-height: 1.75;
}

.contact-links {
  list-style: none;
}

.contact-links li {
  margin-bottom: var(--space-sm);
}

.contact-links a {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: var(--space-md);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--slate-800);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-links a:hover {
  border-color: var(--teal-200);
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.08);
  color: var(--slate-800);
}

.contact-link-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-600);
}

.contact-link-value {
  font-size: 1rem;
  color: var(--slate-700);
}

/* ── Form ── */
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--slate-800);
  background: var(--slate-50);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
  background: #fff;
}

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

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  margin-top: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
  border-radius: var(--radius-sm);
  color: var(--teal-700);
  font-size: 0.9375rem;
  text-align: center;
}

/* ── Footer ── */
.site-footer {
  padding: var(--space-xl) 0;
  background: #fff;
  border-top: 1px solid var(--slate-200);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-sm);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.footer-brand .logo-mark {
  width: 32px;
  height: 32px;
  font-size: 1rem;
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--slate-800);
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--slate-400);
}

.footer-address {
  font-size: 0.8125rem;
  color: var(--slate-400);
  font-style: normal;
}

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

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

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .visit-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    order: -1;
    padding-right: 0;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-accent {
    left: -20px;
    bottom: -20px;
  }

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

  .about-image {
    aspect-ratio: 4/3;
  }

  .visit-image {
    aspect-ratio: 4/3;
  }
}

@media (max-width: 640px) {
  :root {
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 5rem;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-menu a {
    font-size: 1.125rem;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: var(--space-xl);
  }

  .hero-headline {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .hero-accent {
    display: none;
  }

  .contact-form-wrap {
    padding: var(--space-md);
  }
}
