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

:root {
  --midnight: #0A1628;
  --midnight-light: #132238;
  --mint: #B8DFD8;
  --mint-light: #D4EDE7;
  --mint-dark: #8FBFB5;
  --white: #FAFBFB;
  --off-white: #F4F7F6;
  --gray-100: #E8EDEB;
  --gray-200: #D0D8D5;
  --gray-400: #8A9A95;
  --gray-600: #5C6E68;
  --gray-800: #2D3A35;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--gray-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 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Typography ── */
.section-eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mint-dark);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--midnight);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--midnight);
  color: var(--mint);
  border-color: var(--midnight);
}

.btn-primary:hover {
  background: var(--midnight-light);
  border-color: var(--midnight-light);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--midnight);
  border-color: var(--midnight);
}

.btn-outline:hover {
  background: var(--midnight);
  color: var(--mint);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--midnight);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 251, 251, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow 0.3s var(--ease);
}

.nav.scrolled {
  box-shadow: 0 1px 20px rgba(10, 22, 40, 0.06);
}

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

.nav-logo {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--midnight);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-600);
  position: relative;
  transition: color 0.3s var(--ease);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--mint-dark);
  transition: width 0.35s var(--ease-out);
}

.nav-links a:hover {
  color: var(--midnight);
}

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

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

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--midnight);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
}

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

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--midnight);
  padding: 4px;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
}

.mobile-link {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--midnight);
  letter-spacing: 0.02em;
  transition: color 0.3s var(--ease);
}

.mobile-link:hover {
  color: var(--mint-dark);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  padding-top: 72px;
  background: var(--white);
  position: relative;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: calc(100vh - 72px);
}

.hero-text {
  padding-right: 2rem;
}

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

.hero-headline {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  line-height: 1.08;
  color: var(--midnight);
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 2.5rem;
  max-width: 440px;
  font-weight: 300;
}

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

.hero-image {
  position: relative;
  padding-bottom: 3rem;
}

.hero-img-wrap {
  overflow: hidden;
  position: relative;
}

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

.hero-accent {
  position: absolute;
  bottom: -1rem;
  left: -3rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 22, 40, 0.12);
}

.hero-accent img {
  width: 100%;
  display: block;
}

.hero-line {
  position: absolute;
  bottom: 0;
  left: 2rem;
  right: 2rem;
  max-width: calc(1200px - 4rem);
  margin: 0 auto;
  height: 1px;
  background: var(--gray-100);
}

/* ── Story ── */
.story {
  padding: 8rem 0;
  background: var(--off-white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.story-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gray-200);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 2rem;
  color: var(--midnight);
  line-height: 1;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--gray-400);
  letter-spacing: 0.04em;
  font-weight: 400;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Menu ── */
.menu {
  padding: 8rem 0;
  background: var(--white);
}

.menu-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 5rem;
}

.menu-header .section-eyebrow {
  margin-bottom: 0.75rem;
}

.menu-header p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--gray-600);
  font-weight: 300;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.menu-card {
  background: var(--off-white);
  padding: 3rem;
  position: relative;
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--mint);
}

.menu-card-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-100);
}

.menu-shift {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--midnight);
}

.menu-shift-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  font-weight: 400;
}

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

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

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

.menu-item-name {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--midnight);
}

.menu-item-desc {
  font-size: 0.8125rem;
  color: var(--gray-400);
  text-align: right;
  font-weight: 300;
  line-height: 1.4;
}

.menu-note {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.875rem;
  color: var(--gray-400);
  font-style: italic;
  font-family: var(--serif);
  font-size: 1rem;
}

/* ── Visit ── */
.visit {
  padding: 8rem 0;
  background: var(--midnight);
  color: var(--white);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.visit .section-eyebrow {
  color: var(--mint);
}

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

.visit-address {
  font-style: normal;
  margin-bottom: 2.5rem;
}

.visit-address p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(250, 251, 251, 0.7);
  font-weight: 300;
}

.visit-address strong {
  color: var(--white);
  font-weight: 400;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.visit-detail {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.9375rem;
  color: rgba(250, 251, 251, 0.7);
  font-weight: 300;
}

.visit-detail svg {
  color: var(--mint);
  flex-shrink: 0;
}

.visit-detail a {
  transition: color 0.3s var(--ease);
}

.visit-detail a:hover {
  color: var(--mint);
}

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

/* ── Contact ── */
.contact {
  padding: 8rem 0;
  background: var(--off-white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-text p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--gray-600);
  font-weight: 300;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--gray-800);
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 0.875rem 1rem;
  outline: none;
  transition: border-color 0.3s var(--ease);
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--mint-dark);
}

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

.form-success {
  display: none;
  text-align: center;
  font-family: var(--serif);
  font-size: 1.125rem;
  color: var(--midnight);
  padding: 1.5rem;
  background: var(--mint-light);
  font-style: italic;
}

.form-success.visible {
  display: block;
}

/* ── Footer ── */
.footer {
  padding: 4rem 0 3rem;
  background: var(--midnight);
  color: var(--white);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--mint);
  letter-spacing: 0.02em;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(250, 251, 251, 0.5);
  font-weight: 300;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 251, 251, 0.5);
  font-weight: 400;
  transition: color 0.3s var(--ease);
}

.footer-links a:hover {
  color: var(--mint);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(250, 251, 251, 0.3);
  font-weight: 300;
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-inner {
    gap: 3rem;
  }

  .story-grid,
  .visit-grid,
  .contact-inner {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 3rem 2rem 2rem;
    min-height: auto;
    gap: 3rem;
  }

  .hero-text {
    padding-right: 0;
    order: 2;
  }

  .hero-image {
    order: 1;
    padding-bottom: 0;
  }

  .hero-img-wrap img {
    height: 400px;
  }

  .hero-accent {
    display: none;
  }

  .hero-line {
    display: none;
  }

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

  .hero-actions .btn {
    justify-content: center;
  }

  .story-grid,
  .menu-grid,
  .visit-grid,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .story {
    padding: 5rem 0;
  }

  .menu {
    padding: 5rem 0;
  }

  .visit {
    padding: 5rem 0;
  }

  .contact {
    padding: 5rem 0;
  }

  .menu-card {
    padding: 2rem;
  }

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

  .story-stats {
    gap: 2rem;
  }

  .footer-inner {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .nav-inner {
    padding: 0 1.25rem;
  }

  .hero-inner {
    padding: 2.5rem 1.25rem 1.5rem;
  }

  .hero-headline {
    font-size: 2.25rem;
  }

  .story-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}
