/*
 Theme Name:   Amici Miei Child
 Theme URI:    https://amicimiei.be
 Description:  Thème enfant premium — Restaurant Italien Amici Miei, Knokke
 Author:       Amici Miei
 Template:     hello-elementor
 Version:      2.0.0
 License:      GNU General Public License v2 or later
 Text Domain:  amici-miei-child
*/

/* ─────────────────────────────────────────────
   IMPORTS
───────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ─────────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────────── */
:root {
  --black:       #0a0806;
  --black-2:     #0d0b08;
  --black-3:     #120f09;
  --gold:        #C59E38;
  --gold-light:  #d4b05a;
  --gold-dim:    rgba(197,158,56,.22);
  --gold-subtle: rgba(197,158,56,.08);
  --cream:       #f0ebe0;
  --cream-60:    rgba(240,235,224,.6);
  --cream-40:    rgba(240,235,224,.4);
  --cream-20:    rgba(240,235,224,.2);
  --cream-10:    rgba(240,235,224,.1);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --nav-h:      72px;
  --topbar-h:   38px;
  --max-w:      1200px;
  --ease:       cubic-bezier(.4,0,.2,1);
  --t:          .32s;
}

/* ─────────────────────────────────────────────
   RESET
───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--gold); text-decoration: none; transition: color var(--t) var(--ease); }
a:hover { color: var(--gold-light); }
button { font-family: var(--font-sans); cursor: pointer; }

/* ─────────────────────────────────────────────
   TOPBAR
───────────────────────────────────────────── */
.am-topbar {
  height: var(--topbar-h);
  background: var(--black-2);
  border-bottom: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--cream-40);
  position: relative;
  z-index: 200;
}
.am-topbar-left  { display: flex; gap: 28px; align-items: center; }
.am-topbar-right { display: flex; gap: 12px; align-items: center; }
.am-topbar a { color: var(--cream-40); transition: color var(--t) var(--ease); }
.am-topbar a:hover { color: var(--gold); }
.am-topbar-sep { color: var(--gold-dim); }
.am-social {
  width: 28px; height: 28px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-40); font-size: 11px;
  transition: all var(--t) var(--ease);
}
.am-social:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-subtle);
}

/* ─────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────── */
.am-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  height: var(--nav-h);
  background: rgba(10,8,6,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: height var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.am-nav.is-scrolled {
  height: 60px;
  box-shadow: 0 8px 48px rgba(0,0,0,.6);
}
.am-nav-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: .18em;
  color: var(--cream);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}
.am-nav-logo img { height: 48px; width: auto; }
.am-nav-logo-text em { color: var(--gold); font-style: normal; }
.am-nav-logo:hover { color: var(--cream); }

.am-nav-menu {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}
.am-nav-menu a {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cream-60);
  position: relative;
  padding-bottom: 3px;
}
.am-nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--t) var(--ease);
}
.am-nav-menu a:hover,
.am-nav-menu .current a { color: var(--gold); }
.am-nav-menu a:hover::after,
.am-nav-menu .current a::after { width: 100%; }

.am-nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 9px 22px;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: all var(--t) var(--ease);
}
.am-nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}

.am-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.am-burger span {
  display: block; width: 24px; height: 1px;
  background: var(--cream); transition: all var(--t) var(--ease);
}
.am-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.am-burger.open span:nth-child(2) { opacity: 0; }
.am-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.am-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(10,8,6,.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t) var(--ease);
}
.am-mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
.am-mobile-nav a {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  letter-spacing: .04em;
  transition: color var(--t) var(--ease);
}
.am-mobile-nav a:hover { color: var(--gold); }
.am-mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none; border: none;
  color: var(--cream-40);
  font-size: 24px;
  line-height: 1;
}

/* ─────────────────────────────────────────────
   LAYOUT HELPERS
───────────────────────────────────────────── */
.am-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}
.am-section { padding: 96px 0; }
.am-section--sm { padding: 64px 0; }

/* Gold accent line (left border decoration) */
.am-accent-left {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 25%, var(--gold) 75%, transparent 100%);
}

/* Section label / tag */
.am-tag {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  letter-spacing: .05em;
  margin-bottom: 10px;
}

/* Section title */
.am-title {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
}
.am-title--xl  { font-size: clamp(40px, 6vw, 72px); }
.am-title--lg  { font-size: clamp(32px, 4vw, 52px); }
.am-title--md  { font-size: clamp(26px, 3vw, 38px); }
.am-title--sm  { font-size: 26px; }
.am-title--dark { color: var(--black); }

/* Gold rule */
.am-rule {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 20px 0;
}
.am-rule--center { margin-left: auto; margin-right: auto; }

/* Ornament divider */
.am-ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .1em;
}
.am-ornament::before,
.am-ornament::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--gold-dim);
}

/* Body text muted */
.am-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--cream-60);
  line-height: 1.9;
}

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.am-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 34px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  border: none;
  transition: all var(--t) var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.am-btn--gold {
  background: var(--gold);
  color: var(--black);
}
.am-btn--gold:hover {
  background: var(--gold-light);
  color: var(--black);
  transform: translateY(-1px);
}
.am-btn--outline {
  background: transparent;
  border: 1px solid var(--cream-20);
  color: var(--cream-60);
}
.am-btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}
.am-btn--outline-gold {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.am-btn--outline-gold:hover {
  background: var(--gold);
  color: var(--black);
}
.am-btn--dark {
  background: transparent;
  border: 1px solid rgba(10,8,6,.3);
  color: var(--black);
}
.am-btn--dark:hover {
  background: var(--black);
  color: var(--gold);
  border-color: var(--black);
}

/* ─────────────────────────────────────────────
   PAGE HEADER (INNER PAGES)
───────────────────────────────────────────── */
.am-page-header {
  background: var(--black-2);
  padding: 72px 48px 60px;
  text-align: center;
  border-bottom: 1px solid var(--gold-dim);
  position: relative;
  overflow: hidden;
}
.am-page-header::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 2px;
  background: var(--gold);
}
/* faint decorative text */
.am-page-header::after {
  content: attr(data-bg);
  position: absolute;
  bottom: -24px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 120px;
  font-weight: 600;
  font-style: italic;
  color: rgba(197,158,56,.04);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: .04em;
}
.am-page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  position: relative;
}
.am-breadcrumb {
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--cream-40);
  position: relative;
}
.am-breadcrumb a { color: var(--cream-40); }
.am-breadcrumb a:hover { color: var(--gold); }
.am-breadcrumb span { color: var(--gold); margin: 0 8px; }

/* ─────────────────────────────────────────────
   HERO (ACCUEIL)
───────────────────────────────────────────── */
.am-hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black-2);
}
.am-hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,8,6,.15) 0%, rgba(10,8,6,.7) 100%),
    url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1800&auto=format&fit=crop&q=80')
    center / cover no-repeat;
  transform: scale(1.04);
  transition: transform 10s var(--ease);
}
.am-hero:hover .am-hero-bg { transform: scale(1.0); }
.am-hero-accent { position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent); }

.am-hero-content {
  position: relative; z-index: 2;
  padding: 0 72px 80px;
  max-width: 760px;
}
.am-hero-eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--gold);
  letter-spacing: .06em;
  display: block;
  margin-bottom: 20px;
}
.am-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 300;
  line-height: 1.02;
  color: var(--cream);
  margin-bottom: 24px;
}
.am-hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.am-hero-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(240,235,224,.55);
  line-height: 1.85;
  max-width: 420px;
  margin-bottom: 40px;
  letter-spacing: .02em;
}
.am-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.am-hero-scroll {
  position: absolute;
  right: 56px; bottom: 80px;
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--cream-40); font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  animation: scrollPulse 2s ease infinite;
}
.am-hero-scroll-line { width: 1px; height: 52px; background: linear-gradient(180deg, transparent, var(--gold)); }
@keyframes scrollPulse {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}

/* ─────────────────────────────────────────────
   STATS STRIP
───────────────────────────────────────────── */
.am-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
  background: var(--black-2);
}
.am-stat {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--gold-dim);
}
.am-stat:last-child { border-right: none; }
.am-stat-num {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.am-stat-label {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream-40);
  margin-top: 6px;
  display: block;
}

/* ─────────────────────────────────────────────
   ABOUT SPLIT (ACCUEIL)
───────────────────────────────────────────── */
.am-about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.am-about-photo {
  position: relative;
  overflow: hidden;
  background: var(--black-3);
}
.am-about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.am-about-photo:hover img { transform: scale(1.04); }
/* fade right edge into bg */
.am-about-photo::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; width: 80px;
  background: linear-gradient(90deg, transparent, var(--black-3));
}
.am-about-body {
  background: var(--black-3);
  padding: 64px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.am-about-checks { display: flex; flex-direction: column; gap: 12px; margin: 28px 0; }
.am-about-check {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--cream-60); letter-spacing: .03em;
}
.am-about-check-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ─────────────────────────────────────────────
   HOURS + CONTACT SPLIT
───────────────────────────────────────────── */
.am-hc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--gold-dim);
}
.am-hc-col {
  padding: 56px 48px;
  border-right: 1px solid var(--gold-dim);
}
.am-hc-col:last-child { border-right: none; }

.am-hours-list { list-style: none; margin: 24px 0; }
.am-hours-list li {
  display: flex; justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid rgba(197,158,56,.07);
  font-size: 12px;
  color: var(--cream-60);
  letter-spacing: .03em;
}
.am-hours-list li:last-child { border-bottom: none; }
.am-hours-list li.closed { color: var(--cream-20); }
.am-hours-list li.weekend { color: var(--gold); }

/* ─────────────────────────────────────────────
   FORM INPUTS
───────────────────────────────────────────── */
.am-form { display: flex; flex-direction: column; gap: 0; }
.am-field {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(197,158,56,.22);
  padding: 12px 0;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--cream);
  outline: none;
  transition: border-color var(--t) var(--ease);
  margin-bottom: 18px;
  display: block;
}
.am-field:focus { border-bottom-color: var(--gold); }
.am-field::placeholder { color: rgba(240,235,224,.25); letter-spacing: .04em; }
textarea.am-field { resize: none; min-height: 100px; }
.am-field--light {
  border-bottom-color: rgba(10,8,6,.2);
  color: var(--black);
}
.am-field--light::placeholder { color: rgba(10,8,6,.3); }
.am-field--light:focus { border-bottom-color: var(--black); }

/* ─────────────────────────────────────────────
   DISHES GRID
───────────────────────────────────────────── */
.am-dishes {
  display: grid;
  grid-template-columns: repeat(3,1fr);
}
.am-dish {
  position: relative;
  overflow: hidden;
  height: 440px;
  background: var(--black-3);
}
.am-dish img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease), filter .7s var(--ease);
  filter: brightness(.55);
}
.am-dish:hover img { transform: scale(1.08); filter: brightness(.35); }
.am-dish-body {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px 28px;
  background: linear-gradient(0deg, rgba(10,8,6,.8) 0%, transparent 55%);
}
.am-dish-cat {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 4px;
  letter-spacing: .04em;
}
.am-dish-name {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
}
.am-dish-desc {
  font-size: 12px;
  color: var(--cream-40);
  margin-top: 10px;
  line-height: 1.65;
  opacity: 0; transform: translateY(8px);
  transition: all .4s var(--ease);
}
.am-dish:hover .am-dish-desc { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────────
   VALUES / FEATURES
───────────────────────────────────────────── */
.am-values-bg {
  position: relative; padding: 96px 0;
  background:
    linear-gradient(rgba(10,8,6,.82), rgba(10,8,6,.82)),
    url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1800&auto=format&fit=crop&q=80')
    center / cover fixed;
}
.am-values-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.am-value {
  padding: 52px 40px;
  border: 1px solid var(--gold-dim);
  margin: -1px 0 0 -1px;
  transition: background var(--t) var(--ease);
}
.am-value:hover { background: var(--gold-subtle); }
.am-value-icon {
  width: 52px; height: 52px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--gold);
}
.am-value h3 {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 400;
  color: var(--cream); margin-bottom: 12px;
}
.am-value p { font-size: 13px; color: var(--cream-40); line-height: 1.8; }

/* ─────────────────────────────────────────────
   PAGE AMICI MIEI — ABOUT
───────────────────────────────────────────── */
.am-chef-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.am-chef-images {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  height: 520px;
}
.am-chef-img-main { grid-row: 1/3; overflow: hidden; }
.am-chef-img-main img,
.am-chef-img-sm img { width: 100%; height: 100%; object-fit: cover; }
.am-chef-img-sm { overflow: hidden; height: 257px; }

.am-about-stat-strip {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--gold-dim);
  margin-top: 80px;
}
.am-about-stat {
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid var(--gold-dim);
}
.am-about-stat:last-child { border-right: none; }
.am-about-stat-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  color: var(--gold);
}
.am-about-stat-num {
  font-family: var(--font-serif);
  font-size: 36px; font-weight: 300; font-style: italic;
  color: var(--gold); display: block; line-height: 1;
}
.am-about-stat-lbl {
  font-size: 9px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--cream-40); margin-top: 5px; display: block;
}

.am-cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 80px;
}
.am-cta-gold {
  background: var(--gold);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.am-cta-gold::before {
  content: '"';
  position: absolute; right: -20px; bottom: -40px;
  font-family: var(--font-serif); font-size: 220px; font-weight: 600;
  color: rgba(10,8,6,.08); line-height: 1;
  pointer-events: none;
}
.am-cta-gold h2 { font-family: var(--font-serif); font-size: 36px; font-weight: 300; color: var(--black); line-height: 1.1; }
.am-cta-gold p { font-size: 13px; color: rgba(10,8,6,.6); margin: 16px 0 28px; line-height: 1.8; }
.am-cta-dark {
  background: var(--black-3);
  padding: 56px 48px;
  border: 1px solid var(--gold-dim);
}
.am-cta-dark h2 { font-family: var(--font-serif); font-size: 36px; font-weight: 300; color: var(--cream); line-height: 1.1; }
.am-cta-dark p { font-size: 13px; color: var(--cream-40); margin: 16px 0 28px; line-height: 1.8; }
.am-info-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.am-info-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 13px; color: var(--cream-60); }
.am-info-list li svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }

/* ─────────────────────────────────────────────
   PAGE CARTE
───────────────────────────────────────────── */
.am-carte-section { padding: 72px 0; border-bottom: 1px solid var(--gold-dim); }
.am-carte-section:last-child { border-bottom: none; }
.am-carte-section-head {
  text-align: center;
  margin-bottom: 52px;
}
.am-carte-icon {
  width: 56px; height: 56px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  color: var(--gold);
}
.am-carte-section-head h2 {
  font-family: var(--font-serif);
  font-size: 34px; font-weight: 300;
  color: var(--cream);
}
.am-carte-section-head p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  margin-top: 6px;
}
.am-carte-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: rgba(197,158,56,.5);
  text-align: center;
  grid-column: 1/-1;
  padding: 18px 0 6px;
  letter-spacing: .06em;
}
.am-menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 64px; }
.am-menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(197,158,56,.09);
  transition: background var(--t);
}
.am-menu-item:hover { background: var(--gold-subtle); }
.am-menu-item-left { flex: 1; padding-right: 20px; }
.am-menu-item-name {
  font-family: var(--font-serif);
  font-size: 16px; font-weight: 400;
  color: var(--cream);
}
.am-menu-item-desc {
  font-size: 11px; font-style: italic;
  color: var(--cream-40); margin-top: 2px; line-height: 1.5;
}
.am-menu-item-price {
  font-family: var(--font-serif);
  font-size: 16px; font-weight: 300;
  color: var(--gold); white-space: nowrap;
}
.am-menu-note {
  text-align: center;
  margin-top: 40px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: rgba(197,158,56,.5);
  letter-spacing: .04em;
}

/* ─────────────────────────────────────────────
   PAGE CONTACT
───────────────────────────────────────────── */
.am-contact-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-bottom: 1px solid var(--gold-dim);
}
.am-contact-card {
  padding: 48px 36px;
  text-align: center;
  border-right: 1px solid var(--gold-dim);
  transition: background var(--t) var(--ease);
}
.am-contact-card:last-child { border-right: none; }
.am-contact-card.featured { background: var(--gold-subtle); border-color: var(--gold); }
.am-contact-card:hover { background: var(--gold-subtle); }
.am-contact-card-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  color: var(--black);
  background: var(--gold);
}
.am-contact-card-icon.outlined {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.am-contact-card h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px; font-weight: 300;
  color: var(--cream); margin-bottom: 8px;
}
.am-contact-card p { font-size: 13px; color: var(--cream-40); }
.am-contact-card p a { color: var(--cream-40); }
.am-contact-card p a:hover { color: var(--gold); }

.am-contact-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.am-contact-gold {
  background: var(--gold);
  padding: 64px 52px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.am-contact-gold h2 {
  font-family: var(--font-serif);
  font-size: 44px; font-weight: 300;
  color: var(--black); line-height: 1.05;
}
.am-contact-gold p { font-size: 13px; color: rgba(10,8,6,.6); line-height: 1.85; margin: 20px 0 0; }
.am-contact-gold-phone {
  font-family: var(--font-serif);
  font-size: 26px; font-weight: 300;
  color: var(--black); display: block; margin-top: 32px;
}
.am-contact-form-col {
  background: var(--black-3);
  padding: 64px 52px;
  border: 1px solid var(--gold-dim);
}
.am-contact-form-col h2 {
  font-family: var(--font-serif);
  font-size: 36px; font-weight: 300;
  color: var(--cream); margin-bottom: 32px;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.am-footer {
  background: #080604;
  border-top: 1px solid var(--gold-dim);
  padding: 64px 48px 0;
}
.am-footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.4fr 1.4fr;
  gap: 56px;
  padding-bottom: 52px;
}
.am-footer-brand-name {
  font-family: var(--font-serif);
  font-size: 26px; font-weight: 300; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream);
}
.am-footer-brand-name em { color: var(--gold); font-style: normal; }
.am-footer-brand-sub {
  font-size: 12px; color: var(--cream-40);
  margin: 12px 0 24px; line-height: 1.8; letter-spacing: .03em;
}
.am-footer-socials { display: flex; gap: 10px; }
.am-footer-social {
  width: 32px; height: 32px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-40); font-size: 12px;
  transition: all var(--t) var(--ease);
}
.am-footer-social:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-subtle);
}
.am-footer-col-title {
  font-size: 9px; letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block; margin-bottom: 18px;
}
.am-footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.am-footer-links a {
  font-size: 12px; color: var(--cream-40);
  transition: all var(--t) var(--ease);
}
.am-footer-links a:hover { color: var(--gold); padding-left: 4px; }
.am-footer-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
.am-footer-thumb { aspect-ratio: 1; overflow: hidden; }
.am-footer-thumb img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.6); transition: filter .4s; }
.am-footer-thumb:hover img { filter: brightness(.9); }
.am-footer-bottom {
  border-top: 1px solid var(--gold-dim);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.am-footer-bottom p { font-size: 10px; color: rgba(240,235,224,.2); letter-spacing: .07em; }
.am-footer-rule { width: 36px; height: 1px; background: var(--gold); opacity: .4; }

/* ─────────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────────── */
.am-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.am-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────
   FORM STATUS
───────────────────────────────────────────── */
.am-status {
  padding: 10px 14px;
  font-size: 12px; letter-spacing: .03em;
  margin-top: 4px; display: none;
}
.am-status.success { background: rgba(80,160,80,.1); border: 1px solid rgba(80,160,80,.3); color: #7dc87d; }
.am-status.error   { background: rgba(200,80,80,.1);  border: 1px solid rgba(200,80,80,.3);  color: #e08080; }
.am-status.loading { background: var(--gold-subtle);  border: 1px solid var(--gold-dim);      color: var(--gold); }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .am-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .am-chef-split  { gap: 40px; }
  .am-dishes      { grid-template-columns: 1fr 1fr; }
  .am-about-stat-strip { grid-template-columns: 1fr 1fr; }
  .am-about-stat { border-bottom: 1px solid var(--gold-dim); }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .am-topbar { display: none; }
  .am-nav    { padding: 0 24px; }
  .am-nav-menu, .am-nav-cta { display: none; }
  .am-burger { display: flex; }
  .am-wrap   { padding: 0 24px; }
  .am-section { padding: 64px 0; }
  .am-hero-content { padding: 0 32px 60px; }
  .am-hero-scroll { display: none; }
  .am-stats  { grid-template-columns: 1fr 1fr; }
  .am-about-split,
  .am-hc-split,
  .am-cta-split,
  .am-contact-main { grid-template-columns: 1fr; }
  .am-about-photo { height: 300px; }
  .am-about-photo::after { display: none; }
  .am-dishes { grid-template-columns: 1fr; }
  .am-values-grid { grid-template-columns: 1fr; }
  .am-contact-cards { grid-template-columns: 1fr; }
  .am-contact-card { border-right: none; border-bottom: 1px solid var(--gold-dim); }
  .am-menu-grid { grid-template-columns: 1fr; gap: 0; }
  .am-chef-split { grid-template-columns: 1fr; }
  .am-chef-images { display: none; }
  .am-footer-grid { grid-template-columns: 1fr; }
  .am-hc-col { border-right: none; border-bottom: 1px solid var(--gold-dim); }
  .am-page-header { padding: 52px 24px 44px; }
  .am-page-header::after { display: none; }
}
@media (max-width: 480px) {
  .am-stats { grid-template-columns: 1fr 1fr; }
  .am-about-stat-strip { grid-template-columns: 1fr 1fr; }
  .am-hero h1 { font-size: 38px; }
}

/* ─────────────────────────────────────────────
   HELLO ELEMENTOR OVERRIDES — FULL WIDTH
───────────────────────────────────────────── */

/* Reset Hello Elementor container */
.site,
.site-main,
.site-content,
#page,
#content,
.content-area,
.entry-content,
.elementor-section-wrap,
.elementor-page,
.e-con,
.e-con-inner {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* Kill Hello Elementor's boxed layout */
body.hello-elementor .site-header,
body.hello-elementor .site-footer,
body.hello-elementor .site-main {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Hide Hello Elementor's native header and footer entirely */
.site-header.elementor-section,
body > header.site-header,
body > footer.site-footer,
.site-header:not(.am-nav):not(.am-topbar),
.site-footer:not(.am-footer) {
  display: none !important;
}

/* Remove any body padding/margin added by Hello */
body.hello-elementor {
  padding: 0 !important;
  margin: 0 !important;
}

/* Remove the white border/frame effect */
html {
  background: #0a0806 !important;
}

body {
  max-width: 100% !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Elementor inner containers full width */
.elementor-widget-container,
.elementor-container,
.elementor-row,
.elementor-column,
.elementor-column-wrap,
.elementor-widget-wrap {
  max-width: 100% !important;
  padding: 0 !important;
}

/* ─────────────────────────────────────────────
   HELLO ELEMENTOR — RESET CIBLÉ
   On neutralise uniquement ce qui cause le cadre
───────────────────────────────────────────── */

/* Le cadre encadré vient du body padding/margin de Hello */
body.hello-elementor,
body.am-site {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    background: var(--black) !important;
}

/* Hello Elementor ajoute un site-content avec max-width */
.site,
#page,
.site-content,
.site-main,
.content-area {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Masquer les header/footer natifs de Hello Elementor */
.site-header,
.site-footer {
    display: none !important;
}

/* Fond HTML cohérent */
html {
    background: #0a0806 !important;
}
