/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  color: #1e293b;
  background: #fafaf9;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
address { font-style: normal; }
ul { list-style: none; }

/* ─── Tokens ─── */
:root {
  --teal-50:  #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --teal-900: #134e4a;
  --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;
  --stone-50:  #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --serif: 'Lora', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ─── Typography ─── */
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.2; letter-spacing: -0.01em; }
.section-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 0.75rem;
}
.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--slate-900);
  margin-bottom: 1.25rem;
}

/* ─── Layout ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 7rem 0; }

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 250, 249, 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);
}
.site-header.scrolled { box-shadow: 0 1px 12px rgba(0,0,0,0.06); }
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.logo-mark {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--teal-600);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  border-radius: 50%;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--slate-900);
  letter-spacing: -0.01em;
}
.logo-tagline {
  font-size: 0.65rem;
  color: var(--slate-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Nav */
.nav-list {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-list a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--slate-600);
  position: relative;
  transition: color 0.25s var(--ease);
}
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--teal-600);
  transition: width 0.3s var(--ease);
}
.nav-list a:hover { color: var(--teal-700); }
.nav-list a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav-toggle-line {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--slate-700);
  transition: transform 0.3s var(--ease), opacity 0.2s;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.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: translateY(-6.5px) rotate(-45deg); }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--slate-900);
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.55) 0%, rgba(15,23,42,0.75) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  padding: 2rem;
  color: #f8fafc;
}
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-200);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-headline em { font-style: italic; color: var(--teal-200); }
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--slate-300);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s var(--ease);
}
.btn-primary {
  background: var(--teal-600);
  color: #fff;
  border: 1px solid var(--teal-600);
}
.btn-primary:hover { background: var(--teal-700); border-color: var(--teal-700); }
.btn-ghost {
  background: transparent;
  color: #f1f5f9;
  border: 1px solid var(--slate-400);
}
.btn-ghost:hover { border-color: #f1f5f9; color: #fff; }
.btn-full { width: 100%; }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--slate-400);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--slate-400), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* ─── About ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image-wrap { border-radius: 2px; overflow: hidden; }
.about-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-content p {
  color: var(--slate-600);
  margin-bottom: 1.25rem;
  font-size: 0.98rem;
}
.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--slate-200);
}
.stat-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 0.35rem;
}
.stat-value {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--slate-800);
}

/* ─── Split layout (coffee / bar) ─── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 2px; }
.split-content p { color: var(--slate-600); margin-bottom: 1.5rem; font-size: 0.98rem; }

.feature-list { display: flex; flex-direction: column; gap: 0.85rem; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.92rem;
  color: var(--slate-700);
}
.feature-list-icon {
  flex-shrink: 0;
  width: 6px; height: 6px;
  margin-top: 0.65rem;
  background: var(--teal-500);
  border-radius: 50%;
}

/* ─── Gallery ─── */
.gallery { padding: 0 0 7rem; }
.gallery-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--slate-200);
  border-radius: 2px;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 540/380;
  object-fit: cover;
  transition: opacity 0.4s var(--ease);
}
.gallery-item:hover img { opacity: 0.85; }

/* ─── Visit ─── */
.visit { background: var(--slate-50); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.visit-info p { color: var(--slate-600); font-size: 0.98rem; margin-bottom: 1.5rem; }
.visit-address {
  font-size: 1.05rem;
  color: var(--slate-800);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.visit-hours { display: flex; flex-direction: column; gap: 0.6rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--slate-200);
  font-size: 0.92rem;
}
.hours-day { color: var(--slate-700); font-weight: 400; }
.hours-time { color: var(--slate-500); }
.visit-note { font-size: 0.82rem; color: var(--slate-400); margin-top: 1rem; }
.map-link { display: block; border-radius: 2px; overflow: hidden; position: relative; }
.map-link img { width: 100%; height: 100%; object-fit: cover; }
.map-link-label {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: var(--teal-600);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  border-radius: 2px;
}

/* ─── Contact ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info p { color: var(--slate-600); font-size: 0.98rem; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: 50%;
  color: var(--teal-700);
}
.contact-item-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 0.2rem;
}
.contact-item a {
  color: var(--slate-800);
  font-size: 0.95rem;
  transition: color 0.2s;
}
.contact-item a:hover { color: var(--teal-600); }

/* Form */
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 4px;
  padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-600);
}
.form-group input,
.form-group textarea {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--slate-800);
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal-500);
  background: #fff;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--slate-400); }
.form-success {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: 2px;
  color: var(--teal-800);
  font-size: 0.88rem;
}
.form-success svg { color: var(--teal-600); flex-shrink: 0; }

/* ─── Footer ─── */
.site-footer {
  background: var(--slate-900);
  color: var(--slate-400);
  padding: 4rem 0 2.5rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.footer-brand .logo-mark {
  width: 48px; height: 48px;
  font-size: 1.35rem;
}
.footer-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: #f1f5f9;
}
.footer-tagline { font-size: 0.85rem; color: var(--slate-500); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
.footer-nav a {
  font-size: 0.8rem;
  color: var(--slate-400);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--teal-400); }
.footer-copy { font-size: 0.75rem; color: var(--slate-600); }

/* ─── Reveal (progressive enhancement) ─── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .about-grid,
  .split,
  .visit-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .split-image { order: -1; }
  .gallery-track { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .nav-toggle { display: flex; }
  .nav-list {
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    background: rgba(250, 250, 249, 0.98);
    backdrop-filter: blur(12px);
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
  }
  .nav-list.open { transform: translateX(0); }
  .nav-list a { font-size: 1.1rem; }
  .hero-headline { font-size: clamp(2.2rem, 10vw, 3.2rem); }
  .about-stats { flex-direction: column; gap: 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem; }
  .section { padding: 5rem 0; }
}
