/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; }
img, picture, video { display: block; max-width: 100%; }
ul { list-style: none; margin: 0; padding: 0; }
a { text-decoration: none; color: inherit; }

/* ===== TOKENS ===== */
:root {
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-6: 24px;
  --s-8: 32px;
  --s-12: 48px;
  --s-16: 64px;

  --primary: #2C2C2C;
  --bg: #F7F5F2;
  --bg-2: #EFEDE9;
  --ink: #1A1A1A;
  --ink-mute: #7A7570;
  --accent: #B5845A;
  --accent-light: #F0E6DA;
  --border: #E0DDD8;
  --surface-2: #EFEDE9;
  --white: #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.25s ease;
}

/* ===== BASE ===== */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s-6);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
}

/* ===== SECTION LABEL ===== */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s-3);
}

.section-header {
  max-width: 640px;
  margin-bottom: var(--s-12);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
  margin-bottom: var(--s-4);
}

.section-desc {
  font-size: 15px;
  color: var(--ink-mute);
  margin: 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--s-3) var(--s-8);
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn--primary:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.btn--full { width: 100%; text-align: center; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 242, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.nav__list {
  display: flex;
  gap: var(--s-8);
  align-items: center;
}

.nav__link {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  transition: color var(--transition);
}
.nav__link:hover { color: var(--accent); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--s-2);
}
.burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: transform var(--transition), opacity var(--transition);
}
.burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,18,16,0.72) 0%, rgba(20,18,16,0.18) 55%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: var(--s-16);
  padding-top: var(--s-16);
}

.hero__eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin: 0 0 var(--s-3);
}

.hero__title {
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 300;
  color: var(--white);
  margin: 0 0 var(--s-4);
  line-height: 1;
  letter-spacing: -0.01em;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  margin: 0 0 var(--s-8);
  font-weight: 300;
  line-height: 1.7;
}

/* ===== WEEK SORT ===== */
.week {
  padding: var(--s-16) 0;
  background: var(--bg);
}

.week__inner {
  display: grid;
  grid-template-columns: 120px 1fr 280px;
  gap: var(--s-12);
  align-items: start;
}

.week__label-col {
  padding-top: var(--s-2);
}

.week__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: var(--s-8);
  color: var(--ink);
}

.week__title em {
  font-style: italic;
  color: var(--ink-mute);
  font-size: 0.65em;
  display: block;
  margin-top: var(--s-1);
}

.week__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4) var(--s-8);
  margin-bottom: var(--s-6);
  padding: var(--s-6);
  background: var(--bg-2);
  border-radius: var(--radius-lg);
}

.week__meta-item {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
}

.week__meta-key {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.week__meta-val {
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
}

.week__notes {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--accent);
  margin: 0 0 var(--s-4);
}

.week__desc {
  font-size: 15px;
  color: var(--ink-mute);
  line-height: 1.75;
  margin: 0;
  max-width: 520px;
}

.week__img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ===== MENU SECTION ===== */
.menu-section {
  padding: var(--s-16) 0;
  background: var(--bg-2);
}

.menu-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-12);
}

.menu-group__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: var(--s-6);
  color: var(--ink);
}

.menu-note {
  margin-top: var(--s-8);
  font-size: 14px;
  color: var(--ink-mute);
  font-style: italic;
}

/* ===== DATA TABLE ===== */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th, .data-table td { padding: 12px 16px; text-align: left; }
.data-table thead { background: var(--surface-2); }
.data-table th { font-weight: 500; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-mute); }
.data-table tbody tr { border-bottom: 1px solid var(--border); }
.data-table tbody tr:last-child { border-bottom: none; }
.data-table td { font-size: 15px; color: var(--ink); }
.data-table td:last-child { font-weight: 500; color: var(--accent); }

@media (max-width: 640px) {
  .data-table thead { position: absolute; left: -9999px; }
  .data-table tr {
    display: block;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 12px;
    padding: 12px;
    background: var(--white);
  }
  .data-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border: none;
    gap: 12px;
  }
  .data-table td::before {
    content: attr(data-label);
    font-weight: 500;
    color: var(--ink-mute);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    flex: 0 0 auto;
  }
  .data-table td:last-child { color: var(--accent); }
}

/* ===== ABOUT ===== */
.about {
  padding: var(--s-16) 0;
  background: var(--bg);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
  align-items: center;
}

.about__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about__title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: var(--s-4);
  color: var(--ink);
}

.about__lead {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ink);
  margin: 0 0 var(--s-4);
  line-height: 1.6;
}

.about__body {
  font-size: 15px;
  color: var(--ink-mute);
  line-height: 1.75;
  margin: 0 0 var(--s-4);
}

.about__stats {
  display: flex;
  gap: var(--s-8);
  margin-top: var(--s-8);
  padding-top: var(--s-8);
  border-top: 1px solid var(--border);
}

.about__stat {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
}

.about__stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}

.about__stat-label {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

/* ===== INTERIOR ===== */
.interior {
  padding: var(--s-16) 0;
  background: var(--bg-2);
}

.interior__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-6);
  align-items: stretch;
}

/* ===== CARDS ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-6);
  align-items: stretch;
}

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition);
}

.card:hover { transform: translateY(-3px); }

.card__image-wrap { flex: 0 0 auto; }

.card__image {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  display: block;
}

.card__body {
  flex: 1 1 auto;
  padding: var(--s-6);
}

.card__footer { margin-top: auto; padding: 0 var(--s-6) var(--s-6); }

.card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: var(--s-3);
  color: var(--ink);
}

.card__text {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

/* ===== VISIT ===== */
.visit {
  padding: var(--s-16) 0;
  background: var(--bg);
}

.visit__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
  align-items: start;
}

.visit__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--s-4);
  color: var(--ink);
}

.visit__desc {
  font-size: 15px;
  color: var(--ink-mute);
  margin: 0 0 var(--s-8);
  line-height: 1.7;
}

.visit__address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.visit__addr-row {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-size: 15px;
  color: var(--ink-mute);
}

.visit__addr-row svg {
  flex: 0 0 18px;
  margin-top: 2px;
  color: var(--accent);
}

/* Form */
.visit__form {
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  padding: var(--s-8);
}

.visit__form-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: var(--s-6);
  color: var(--ink);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin-bottom: var(--s-4);
}

.form-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.form-input {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--s-3) var(--s-4);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}

.form-input:focus { border-color: var(--accent); }

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

/* ===== FOOTER ===== */
.site-footer {
  background: var(--primary);
  color: var(--white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-6);
  padding-top: var(--s-12);
  padding-bottom: var(--s-12);
}

.footer-brand .logo {
  color: var(--white);
  font-size: 1.4rem;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin: var(--s-1) 0 0;
}

.footer-nav {
  display: flex;
  gap: var(--s-6);
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--white); }

.footer-social {
  display: flex;
  gap: var(--s-4);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition), border-color var(--transition);
}
.social-link:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--s-4) 0;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

/* ===== RESPONSIVE ===== */

/* Tablet: 640–1024px */
@media (max-width: 1024px) {
  .week__inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .week__label-col {
    grid-column: 1 / -1;
  }
  .week__image-col {
    grid-row: 2;
    grid-column: 2;
  }
  .week__content {
    grid-row: 2;
    grid-column: 1;
  }
  .about__inner {
    gap: var(--s-8);
  }
  .visit__inner {
    gap: var(--s-8);
  }
}

/* Mobile: <640px */
@media (max-width: 640px) {
  .nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    z-index: 99;
    padding: var(--s-8) var(--s-6);
    overflow-y: auto;
  }
  .nav.is-open { display: block; }
  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s-6);
  }
  .nav__link {
    font-size: 1.5rem;
    font-family: var(--font-display);
    color: var(--ink);
  }
  .burger { display: flex; }

  .hero { min-height: 100svh; }
  .hero__title { font-size: 3.5rem; }

  .week__inner {
    grid-template-columns: 1fr;
    gap: var(--s-6);
  }
  .week__label-col { display: none; }
  .week__meta { grid-template-columns: 1fr 1fr; }
  .week__image-col { order: -1; }
  .week__img { aspect-ratio: 16/9; }

  .menu-groups {
    grid-template-columns: 1fr;
    gap: var(--s-8);
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: var(--s-8);
  }
  .about__img { aspect-ratio: 3/2; }
  .about__stats { gap: var(--s-6); }

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

  .visit__inner {
    grid-template-columns: 1fr;
    gap: var(--s-8);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s-6);
  }
  .footer-nav {
    flex-direction: column;
    gap: var(--s-3);
  }
}