/* ==========================================================================
   Arôme Café Bistro — design system
   Warm modern: Fraunces (display) + Inter (body), terracotta/olive on cream
   ========================================================================== */

:root {
  --cream: #fbf5ea;
  --cream-alt: #f3e8d6;
  --paper: #fffdf9;
  --brown-900: #2b1c13;
  --brown-700: #4a3324;
  --brown-500: #7a5c44;
  --terracotta: #c1622d;
  --terracotta-dark: #9c4c20;
  --olive: #6b7a54;
  --olive-dark: #55613f;
  --gold: #d9a441;
  --line: rgba(43, 28, 19, 0.12);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --shadow-soft: 0 20px 45px -25px rgba(43, 28, 19, 0.35);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--brown-900);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--brown-900);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; color: var(--brown-700); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--terracotta);
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; stroke: currentColor; flex-shrink: 0; }
.btn-primary { background: var(--terracotta); color: var(--paper); }
.btn-primary:hover { background: var(--terracotta-dark); }
.btn-outline { border-color: var(--brown-900); color: var(--brown-900); background: transparent; }
.btn-outline:hover { background: var(--brown-900); color: var(--paper); }
.btn-outline-light { border-color: rgba(255,255,255,0.7); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--brown-900); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-soft); }
.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brown-900);
}
.brand span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive-dark);
}
.nav-primary { display: flex; align-items: center; gap: 36px; }
.nav-primary ul { list-style: none; display: flex; gap: 30px; margin: 0; padding: 0; }
.nav-primary a {
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
}
.nav-primary a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--terracotta);
  transition: width 0.25s ease;
}
.nav-primary a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 18px; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.lang-switch a {
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--brown-500);
}
.lang-switch a.is-active { background: var(--terracotta); color: #fff; }
.header-phone { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.95rem; }
.header-phone svg { width: 18px; height: 18px; stroke: var(--terracotta); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--brown-900); display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: linear-gradient(160deg, #3a2515 0%, #6b3d21 55%, #a35a2a 100%);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20,12,6,0.88) 0%, rgba(20,12,6,0.25) 55%, rgba(20,12,6,0.15) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 100px 24px 72px;
  max-width: 760px;
}
.hero__content .eyebrow { color: var(--gold); }
.hero__content .eyebrow::before { background: var(--gold); }
.hero h1 { color: #fff; }
.hero p.lede { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 520px; }
.hero__actions { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }

/* ---------- Section shell ---------- */
.section { padding: 96px 0; }
.section--alt { background: var(--cream-alt); }
.section--dark {
  background: var(--brown-900);
  color: var(--cream);
}
.section--dark h2, .section--dark p { color: var(--cream); }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head p { font-size: 1.08rem; }

.section--bg-photo { position: relative; overflow: hidden; }
.section--bg-photo__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.section--bg-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43, 28, 19, 0.8) 0%, rgba(43, 28, 19, 0.93) 100%);
}
.section--bg-photo .container { position: relative; z-index: 2; }

/* ---------- Intro ---------- */
.intro { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.intro__media {
  aspect-ratio: 4/5;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--olive) 0%, #8a9a6c 100%);
  background-size: cover;
  background-position: center;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}
.intro__text .eyebrow { color: var(--olive-dark); }
.intro__text .eyebrow::before { background: var(--olive); }

/* ---------- Menu grid ---------- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.dish-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease;
}
.dish-card:hover { transform: translateY(-6px); }
.dish-card__media {
  aspect-ratio: 4/3;
  width: 100%;
  height: auto;
  background: linear-gradient(135deg, #e7c9a0, var(--terracotta));
  background-size: cover;
  background-position: center;
  object-fit: cover;
  display: block;
}
.dish-card__body { padding: 24px; }
.dish-card__body h3 { margin-bottom: 8px; }
.dish-card__body p { font-size: 0.95rem; margin-bottom: 0; }

/* ---------- Feature split (Buffet / Mimosa) ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.feature__media {
  min-height: 380px;
  width: 100%;
  height: auto;
  background-size: cover;
  background-position: center;
  object-fit: cover;
  display: block;
}
.feature__media--buffet { background: linear-gradient(135deg, #7a5c3f, #c1622d); }
.feature__media--mimosa { background: linear-gradient(135deg, #d9a441, #e7c9a0); order: 2; }
.feature__body {
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--paper);
}
.feature__body--dark { background: var(--brown-900); color: var(--cream); }
.feature__body--dark h2, .feature__body--dark p { color: var(--cream); }
.feature-row { display: flex; flex-direction: column; gap: 32px; }
@media (min-width: 900px) { .feature-row { gap: 40px; } }

/* ---------- Hours + contact ---------- */
.hours-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-table td { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1.02rem; }
.hours-table td:last-child { text-align: right; font-weight: 600; }
.contact-list { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.contact-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; }
.contact-list svg { width: 20px; height: 20px; stroke: var(--terracotta); flex-shrink: 0; margin-top: 2px; }
.map-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 0;
  width: 100%;
  height: 340px;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--brown-900); color: rgba(251,245,234,0.75); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { font-family: var(--font-display); font-size: 1.6rem; color: var(--cream); margin-bottom: 12px; }
.footer-col h4 { color: var(--cream); font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(251,245,234,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.footer-social a:hover { background: var(--terracotta); border-color: var(--terracotta); }
.footer-social svg { width: 17px; height: 17px; stroke: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(251,245,234,0.15);
  padding-top: 24px;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-primary { position: fixed; inset: 72px 0 0 0; background: var(--cream); flex-direction: column; padding: 40px 24px; transform: translateX(100%); transition: transform 0.3s ease; }
  .nav-primary.is-open { transform: translateX(0); }
  .nav-primary ul { flex-direction: column; gap: 22px; }
  .nav-toggle { display: flex; }
  .header-phone { display: none; }
  .intro { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .feature, .feature__media--mimosa { grid-template-columns: 1fr; }
  .feature__media { order: -1 !important; min-height: 260px; }
  .feature__body { padding: 40px 28px; }
  .hours-contact { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .menu-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero__content { padding: 80px 20px 56px; }
}
