/* VOLKS — volks.co */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700&display=swap');

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

:root {
  --white: #FFFFFF;
  --cream: #FAF9F7;
  --warm-grey: #F5F3F0;
  --grey-100: #EDEDEB;
  --grey-200: #D8D6D2;
  --grey-400: #A09E9A;
  --grey-600: #6B6966;
  --grey-800: #3A3836;
  --black: #1A1918;
  --blue: #A8B0C0;
  --blue-light: #D4D8E2;
  --blue-bg: #EEF0F4;
  --rose: #D4A0A5;
  --rose-light: #E8CCCE;
  --rose-bg: #F6EDEE;
  --bar-bg: #2E2C2A;
  --bar-surface: #3A3836;
}

html { scroll-behavior: smooth; }

/* ——— Evening Mode ——— */
body.evening .hero { background: #EDECEA; }
body.evening .nav { background: rgba(237,236,234,0.95); }
body.evening .hero__sub { color: var(--grey-400); }

body.evening .sections-wrapper { display: flex; flex-direction: column; }
body.evening .bar-section { order: -2; }
body.evening .order-section { order: -1; }
body.evening .almarche-section { order: 5; }

body {
  font-family: 'Outfit', system-ui, sans-serif;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

/* ——— Nav ——— */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-100);
  transition: all 0.3s ease;
}

.nav__logo-img { height: 24px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  text-decoration: none;
  color: var(--grey-600);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav__links a:hover { color: var(--black); }

.nav__cta {
  background: var(--black) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 500 !important;
}

.nav__cta:hover { background: var(--grey-800) !important; }

.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__toggle span { display: block; width: 20px; height: 2px; background: var(--black); margin: 4px 0; transition: all 0.3s; }

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--black);
  color: var(--white);
}

.btn--primary:hover { background: var(--grey-800); transform: translateY(-1px); }

.btn--outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--grey-200);
}

.btn--outline:hover { border-color: var(--black); }

.btn--full { width: 100%; }

.btn--disabled {
  background: var(--grey-100) !important;
  color: var(--grey-400) !important;
  cursor: default;
  pointer-events: none;
}

/* ——— Hero ——— */
.hero {
  text-align: center;
  padding: 100px 32px 0;
  background: var(--cream);
  overflow: hidden;
}

.hero__content {
  max-width: 540px;
  margin: 0 auto 32px;
}

.hero__logo {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
}

.hero__tagline {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero__sub {
  font-size: 14px;
  color: var(--grey-600);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 6px;
}

.hero__nett {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--grey-400);
  margin-bottom: 24px;
}

.hero__actions {
  display: inline-flex;
  gap: 12px;
}

.hero__accent { display: none; }

/* ——— Section Titles ——— */
.section__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.section__title--rose { color: var(--rose); }

.section__subtitle {
  font-size: 16px;
  color: var(--grey-600);
  font-weight: 300;
  margin-bottom: 40px;
}

/* ——— Locations ——— */
.locations {
  padding: 80px 32px;
  background: var(--white);
}

.locations__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.location-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--grey-100);
}

.location-card__badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: var(--blue-bg);
  color: var(--blue);
  margin-bottom: 16px;
}

.location-card__badge--rose {
  background: var(--rose-bg);
  color: var(--rose);
}

.location-card__name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.location-card__address {
  font-size: 14px;
  color: var(--grey-600);
  line-height: 1.6;
  margin-bottom: 20px;
}

.location-card__hours { margin-bottom: 24px; }

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--grey-100);
  font-size: 14px;
}

.hours-row:last-child { border-bottom: none; }
.hours-row__label { color: var(--grey-600); }
.hours-row__time { font-weight: 500; }

/* ——— Menu Section ——— */
.menu-section {
  padding: 80px 32px;
  max-width: 800px;
  margin: 0 auto;
}

.menu-section--tea {
  background: var(--cream);
  max-width: none;
  padding-left: 32px;
  padding-right: 32px;
}

.menu-section--tea > * {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

/* ——— Menu Table ——— */
.menu-table { width: 100%; }
.menu-table--narrow { max-width: 600px; }

.menu-table__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  margin-bottom: 4px;
}

.menu-table__sizes {
  display: flex;
  gap: 0;
  min-width: 130px;
  justify-content: flex-end;
}

.menu-table__sizes span {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--grey-400);
  width: 44px;
  text-align: right;
}

/* ——— Menu Item ——— */
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--grey-100);
}

.menu-item:last-child { border-bottom: none; }

.menu-item__info { flex: 1; }

.menu-item__name {
  font-size: 15px;
  font-weight: 500;
  display: block;
}

.menu-item__desc {
  font-size: 13px;
  color: var(--grey-400);
  display: block;
  margin-top: 2px;
}

.menu-item__prices {
  display: flex;
  gap: 0;
  min-width: 130px;
  justify-content: flex-end;
}

.menu-item__prices span {
  font-size: 14px;
  font-weight: 400;
  width: 44px;
  text-align: right;
  color: var(--grey-600);
}

/* ——— Beans ——— */
.beans-info {
  padding: 24px;
  background: var(--warm-grey);
  border-radius: 12px;
}

.beans-info__title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 8px;
  margin-top: 16px;
}

.beans-info__title:first-child { margin-top: 0; }

.bean { margin-bottom: 12px; }

.bean strong {
  font-size: 14px;
  font-weight: 500;
}

.bean__tag {
  font-size: 11px;
  background: var(--blue-bg);
  color: var(--blue);
  padding: 2px 8px;
  border-radius: 100px;
  font-weight: 500;
  margin-left: 6px;
}

.bean p {
  font-size: 13px;
  color: var(--grey-400);
  margin-top: 2px;
}

/* ——— Menu Misc ——— */
.menu-divider {
  height: 1px;
  background: var(--grey-100);
  margin: 32px 0;
}

.menu-subcategory {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--blue);
}

.menu-note {
  text-align: center;
  font-size: 13px;
  color: var(--grey-400);
  margin-top: 32px;
  font-style: italic;
}

/* ——— Tea Grid ——— */
.tea-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.tea-category__name {
  font-size: 20px;
  font-weight: 600;
  color: var(--rose);
  margin-bottom: 12px;
}

/* ——— Add-ons ——— */
.addons {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--grey-100);
}

.addons__title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--grey-600);
}

.addons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.addon {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 8px 12px;
  background: var(--white);
  border-radius: 8px;
}

.addon span:last-child { color: var(--grey-400); font-weight: 500; }

/* ——— Order Section ——— */
.order-section {
  padding: 80px 32px;
  background: var(--white);
  text-align: center;
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}

.order-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
}

.order-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.order-card__status {
  font-size: 13px;
  color: var(--grey-400);
  margin-bottom: 16px;
  min-height: 20px;
}

.order-card__status--closed { color: var(--rose); }
.order-card__status--open { color: #5A9E6F; }

/* ——— Al Marche ——— */
.almarche-section {
  padding: 40px 32px;
  background: var(--white);
}

.almarche-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px;
  background: var(--warm-grey);
  border-radius: 16px;
  text-align: center;
}

.almarche-card__label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey-400);
  margin-bottom: 8px;
}

.almarche-card__title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}

.almarche-card__hours {
  font-size: 14px;
  color: var(--grey-600);
  margin-bottom: 20px;
}

/* ——— Bar Section ——— */
.bar-section {
  padding: 80px 32px;
  background: var(--bar-bg);
  color: var(--cream);
}

.bar-section .section__title { color: var(--cream); }
.bar-section .section__subtitle { color: var(--grey-400); }

.bar-section__header {
  max-width: 800px;
  margin: 0 auto 40px;
}

.bar-section__location {
  font-size: 13px;
  font-weight: 500;
  color: var(--rose);
  margin-bottom: 4px;
}

.bar-category {
  max-width: 800px;
  margin: 0 auto 32px;
}

.bar-category__name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.bar-category__price {
  font-size: 14px;
  font-weight: 400;
  color: var(--grey-400);
}

.bar-category__desc {
  font-size: 14px;
  color: var(--grey-400);
  font-style: italic;
}

.bar-category--special {
  padding: 24px;
  background: var(--bar-surface);
  border-radius: 12px;
  border-left: 3px solid var(--rose);
}

.bar-items { margin-bottom: 8px; }

.bar-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--grey-200);
}

.bar-item:last-child { border-bottom: none; }

.bar-item span:last-child {
  color: var(--grey-400);
  font-weight: 400;
}

.bar-item--highlight {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--rose-light);
  border-bottom: none;
}

.bar-item--sub { font-size: 13px; color: var(--grey-400) !important; }
.bar-item--sub span { color: var(--grey-400) !important; }

.bar-items--compact {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.bar-items--compact span {
  font-size: 14px;
  color: var(--grey-200);
  padding: 6px 0;
  width: 50%;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.bar-note {
  max-width: 800px;
  margin: 40px auto 0;
  text-align: center;
  font-size: 13px;
  color: var(--grey-400);
  letter-spacing: 0.04em;
}

/* ——— Footer ——— */
.footer {
  padding: 60px 32px;
  background: var(--cream);
  text-align: center;
}

.footer__logo {
  width: 100px;
  height: auto;
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: 16px;
  font-weight: 300;
  color: var(--grey-600);
  margin-bottom: 24px;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer__links a {
  font-size: 14px;
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
}

.footer__links a:hover { text-decoration: underline; }

.footer__locations {
  font-size: 13px;
  color: var(--grey-400);
  line-height: 1.8;
}

/* ——— Photo Placeholders ——— */
.placeholder {
  width: 100%;
  height: 280px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-bg) 0%, var(--rose-bg) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
}

.placeholder::after {
  content: attr(data-label);
  font-size: 13px;
  font-weight: 400;
  color: var(--grey-400);
  letter-spacing: 0.02em;
  padding: 8px 16px;
  background: rgba(255,255,255,0.7);
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

.placeholder--wide {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  height: 240px;
}

.placeholder--dark {
  background: linear-gradient(135deg, var(--bar-surface) 0%, #4A4845 100%);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.placeholder--dark::after {
  background: rgba(0,0,0,0.4);
  color: var(--grey-200);
}

.hero__photo {
  max-width: 480px;
  margin: 0 auto;
}

.hero__photo-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* ——— Mobile ——— */
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }

  .nav__links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px 32px;
    border-bottom: 1px solid var(--grey-100);
    gap: 16px;
  }

  .nav__cta { text-align: center; }

  .hero { padding: 90px 24px 0; }
  .hero__photo { max-width: 300px; }

  .locations { padding: 60px 24px; }
  .locations__grid { grid-template-columns: 1fr; }

  .menu-section { padding: 60px 24px; }
  .menu-section--tea { padding: 60px 24px; }

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

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

  .bar-section { padding: 60px 24px; }
  .bar-items--compact span { width: 100%; }

  .footer { padding: 48px 24px; }
}

@media (max-width: 480px) {
  .hero__tagline { font-size: 26px; }
  .hero__actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; }
  .menu-table__sizes { min-width: 110px; }
  .menu-table__sizes span { width: 36px; }
  .menu-item__prices { min-width: 110px; }
  .menu-item__prices span { width: 36px; }
}
