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

:root {
  --teal: #0d9488;
  --teal-dark: #0f766e;
  --teal-light: #ccfbf1;
  --slate: #1e293b;
  --slate-mid: #475569;
  --slate-light: #94a3b8;
  --slate-faint: #f1f5f9;
  --white: #ffffff;
  --cream: #fafaf9;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --max-w: 1200px;
  --gutter: clamp(1.5rem, 4vw, 3rem);
}

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);
  background: var(--cream);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

/* Thin vertical lines framing the page */
.site {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  background: var(--cream);
}

.line-left,
.line-right {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--slate-light);
  opacity: 0.25;
  z-index: 100;
  pointer-events: none;
}

.line-left { left: clamp(1rem, 3vw, 2.5rem); }
.line-right { right: clamp(1rem, 3vw, 2.5rem); }

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(250, 250, 249, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30, 41, 59, 0.06);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.25rem var(--gutter);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}

.logo-mark {
  color: var(--teal);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-left: auto;
}

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

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

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

.header-cta {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid var(--teal);
  padding: 0.5rem 1.25rem;
  transition: background 0.2s, color 0.2s;
  margin-left: 0.5rem;
}

.header-cta:hover {
  background: var(--teal);
  color: var(--white);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--slate);
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--slate);
  transition: color 0.2s;
}

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

.mobile-phone {
  font-family: var(--font-sans) !important;
  font-size: 0.9375rem !important;
  color: var(--slate-light) !important;
  letter-spacing: 0.04em;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  padding: 8rem var(--gutter) 4rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 2.5rem);
  padding-right: clamp(1rem, 3vw, 2.5rem);
}

.hero-left {
  padding-right: 3rem;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.5rem;
}

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

.hero-title em {
  font-style: italic;
  color: var(--teal);
}

.hero-subtitle {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--slate-mid);
  max-width: 420px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.hero-img {
  overflow: hidden;
  border-radius: 2px;
}

.hero-img--top {
  aspect-ratio: 3/4;
}

.hero-img--bottom {
  aspect-ratio: 3/2;
  align-self: end;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Strip */
.strip {
  border-top: 1px solid rgba(30, 41, 59, 0.08);
  border-bottom: 1px solid rgba(30, 41, 59, 0.08);
}

.strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.25rem var(--gutter);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-light);
  flex-wrap: wrap;
}

.dot {
  color: var(--slate-light);
  opacity: 0.5;
}

/* Sections */
section {
  padding: clamp(4rem, 10vw, 8rem) var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 2.5rem);
  padding-right: clamp(1rem, 3vw, 2.5rem);
}

.label-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--teal);
  margin-bottom: 1rem;
}

.label-text {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.25rem;
}

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

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.about-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--slate-mid);
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.about-photo {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 7/5;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Menu */
.menu {
  background: var(--white);
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.menu-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 2.5rem);
  padding-right: clamp(1rem, 3vw, 2.5rem);
}

.menu-header {
  margin-bottom: 3.5rem;
}

.menu-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.menu-col-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--slate);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(30, 41, 59, 0.08);
}

.menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

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

.item-desc {
  font-size: 0.8125rem;
  color: var(--slate-light);
  font-weight: 300;
  white-space: nowrap;
  text-align: right;
}

.menu-note {
  font-size: 0.8125rem;
  color: var(--slate-light);
  font-style: italic;
  font-weight: 300;
}

/* Split */
.split {
  padding: 0;
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.split-photo {
  overflow: hidden;
  aspect-ratio: 8/10;
  min-height: 500px;
}

.split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 10vw, 8rem) clamp(2rem, 5vw, 5rem);
  background: var(--slate);
  color: var(--white);
}

.split-content .label-line { background: var(--teal-light); }
.split-content .label-text { color: var(--teal-light); }

.split-content .section-title {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.split-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.25rem;
  font-weight: 300;
}

/* Hours */
.hours-inner {
  max-width: 680px;
}

.hours-grid {
  margin: 2.5rem 0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(30, 41, 59, 0.06);
  font-size: 0.9375rem;
}

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

.hours-row span:last-child {
  color: var(--slate-mid);
  font-weight: 300;
}

.hours-note {
  font-size: 0.8125rem;
  color: var(--slate-light);
  font-style: italic;
  font-weight: 300;
}

/* Visit */
.visit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2.5rem 0;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: 0.375rem;
}

.contact-value {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--slate);
  font-weight: 300;
}

.contact-link {
  font-size: 1rem;
  color: var(--teal);
  font-weight: 400;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.contact-link:hover {
  border-color: var(--teal);
}

.map-placeholder {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 7/5;
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 2px;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--slate);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.map-overlay svg {
  color: var(--teal);
  flex-shrink: 0;
}

/* CTA */
.cta {
  background: var(--teal);
  max-width: 100%;
  text-align: center;
  padding: clamp(4rem, 10vw, 7rem) var(--gutter);
  padding-left: clamp(1rem, 3vw, 2.5rem);
  padding-right: clamp(1rem, 3vw, 2.5rem);
}

.cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.cta-eyebrow {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.25rem;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border: 1px solid var(--teal);
}

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

.btn-ghost {
  background: transparent;
  color: var(--slate);
  border: 1px solid var(--slate-light);
}

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

.btn-white {
  background: var(--white);
  color: var(--teal);
  border: 1px solid var(--white);
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
}

/* Footer */
.footer {
  background: var(--slate);
  color: var(--white);
  padding: 4rem var(--gutter) 2.5rem;
  padding-left: clamp(1rem, 3vw, 2.5rem);
  padding-right: clamp(1rem, 3vw, 2.5rem);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  margin-bottom: 3rem;
}

.footer-top .logo {
  color: var(--white);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  max-width: 360px;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 300;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--teal-light); }

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 7rem;
    order: 1;
  }

  .hero-left {
    padding-right: 0;
    margin-bottom: 3rem;
  }

  .hero-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .hero-img--top {
    aspect-ratio: 4/3;
  }

  .hero-img--bottom {
    aspect-ratio: 4/3;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-photo {
    order: -1;
    aspect-ratio: 16/9;
  }

  .menu-columns {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .split-photo {
    aspect-ratio: 4/3;
    min-height: 300px;
  }

  .split-content {
    padding: clamp(3rem, 8vw, 5rem) clamp(2rem, 5vw, 3rem);
  }

  .visit-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .line-left,
  .line-right {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-right {
    grid-template-columns: 1fr;
  }

  .hero-img--bottom {
    align-self: stretch;
  }

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

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

  .strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.375rem;
  }

  .dot { display: none; }
}
