@font-face {
  font-family: 'Abril Display';
  src: url('fonts/Abril_Display_Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Abril Display';
  src: url('fonts/Abril_Display_Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

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

:root {
  --cream:       #fffbf1;
  --terracotta:  #9a4e38;
  --text:        #464d50;
  --text-muted:  #7A6A5C;
  --border:      #DDD4C8;
  --hover-bg:    rgba(181, 115, 42, 0.065);
  --font-body:    'Jost', system-ui, sans-serif;
  --font-heading: 'Abril Display', Georgia, serif;
}

html { font-size: 16px; }

body {
  background-color: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

/* ─── TOP BAR ─── */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  border-bottom: 1px solid var(--border);
}

.topbar__side {
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  width: 110px;
}

.topbar__side--right { text-align: right; }

.topbar__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.topbar__logo-img {
  display: block;
  height: 60px;
  width: auto;
  max-width: min(240px, 52vw);
}

/* ─── MAIN ─── */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 24px 88px;
}

/* ─── HERO ─── */
.hero {
  text-align: center;
  max-width: 640px;
  margin-bottom: 72px;
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(44px, 8vw, 70px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 30px;
}

.hero__headline em {
  font-style: italic;
  color: var(--terracotta);
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 26px;
}

.ornament__line {
  display: block;
  width: 52px;
  height: 1px;
  background: var(--border);
}

.ornament__gem {
  color: var(--terracotta);
  font-size: 11px;
  line-height: 1;
}

.hero__subtext {
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  line-height: 1.75;
}

/* ─── MENU LIST ─── */
.menu-list {
  width: 100%;
  max-width: 580px;
  border-top: 1px solid var(--border);
}

.menu-item {
  display: flex;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition:
    padding-left 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    padding-right 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hover-bg);
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.menu-item:hover::before { transform: translateX(0); }
.menu-item:hover {
  padding-left: 14px;
  padding-right: 14px;
}

.menu-item__number {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  color: var(--terracotta);
  flex-shrink: 0;
  width: 30px;
  position: relative;
  z-index: 1;
  align-self: flex-start;
  padding-top: 3px;
}

.menu-item__body {
  flex: 1;
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 360px;
}

.menu-item__title {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 5px;
}

.menu-item__notice {
  display: inline-block;
  margin: 0 0 8px;
  padding: 5px 10px;
  border: 1px solid var(--terracotta);
  border-radius: 999px;
  background: rgba(181, 115, 42, 0.08);
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.menu-item__oppet.oppet-tag {
  display: inline-block;
  margin: 0 0 10px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.03em;
  border: 1px solid var(--border);
  background: rgba(28, 21, 16, 0.04);
  color: var(--text-muted);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.menu-item__oppet.oppet-tag.is-open {
  border-color: rgba(34, 120, 70, 0.45);
  background: rgba(34, 120, 70, 0.1);
  color: #1f5c38;
}

.menu-item__oppet.oppet-tag.is-closed {
  border-color: rgba(181, 115, 42, 0.35);
  background: rgba(181, 115, 42, 0.06);
  color: var(--text-muted);
}

.menu-item__desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  line-height: 1.55;
}

.menu-item__desc:not(:last-child) {
  margin-bottom: 6px;
}

.menu-item__highlights {
  font-size: 11px;
  color: var(--terracotta);
  letter-spacing: 0.06em;
  line-height: 1.45;
}

.menu-item__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  flex-shrink: 0;
  margin-left: auto;
  position: relative;
  z-index: 1;
}

.menu-item__tag {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.menu-item__address {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.menu-item__arrow {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1;
  transition: transform 0.3s ease, color 0.3s ease;
  margin-top: 2px;
}

.menu-item:hover .menu-item__arrow {
  transform: translateX(5px);
  color: var(--terracotta);
}

/* ─── BOTTOM BAR ─── */
.bottombar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 60px;
  border-top: 1px solid var(--border);
  position: relative;
}

.bottombar__addresses {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  text-align: center;
}

.bottombar__address {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.bottombar__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
  opacity: 0.75;
}

.bottombar__instagram {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.bottombar__instagram:hover { color: var(--terracotta); }

.caps{
  text-transform: uppercase;
}

/* ─── MOBILE ─── */
@media (max-width: 560px) {
  .topbar {
    padding: 18px 32px;
  }

  .topbar__side {
    font-size: 9.5px;
    width: 76px;
  }

  .topbar__logo-img {
    height: 64px;
    max-width: min(200px, 44vw);
  }

  main { padding: 52px 20px 64px; }

  .hero { margin-bottom: 12px; }

  .hero__subtext br { display: none; }

  .menu-item {
    flex-wrap: wrap;
    padding: 20px 0;
    gap: 14px;
  }

  .menu-item__meta {
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    padding-left: 44px;
  }

  .menu-item__arrow {
    margin-left: auto;
    font-size: 14px;
  }

  .bottombar {
    padding: 18px 20px;
    flex-direction: column;
    gap: 14px;
  }

  .bottombar__addresses {
    position: static;
    transform: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: auto;
    text-align: left;
    gap: 7px;
  }

}

@media (max-width: 768px) {
  .mobile-hint {
    display: block;
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0.75;
    font-weight: 300;
    text-align: center;
    padding: 1rem 0 0.5rem;
  }
}

@media (min-width: 769px) {
  .mobile-hint { display: none; }
}