/* ============================================================
   CUISINE EN RACINE — Feuille de style partagée
   Palette : ocre, lin, ivoire, brun chaud
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400&family=Lato:wght@300;400&display=swap');

/* ── Variables ── */
:root {
  --ocre:        #B8924A;
  --ocre-clair:  #D4AE72;
  --ocre-pale:   #F2E8D5;
  --lin:         #EDE5D8;
  --ivoire:      #F8F4EE;
  --brun:        #5C4530;
  --brun-clair:  #8C7055;
  --texte:       #2C2420;
  --texte-2:     #6B5A4E;
  --texte-3:     #A0907F;
  --bordure:     rgba(92, 69, 48, 0.15);
  --bordure-2:   rgba(92, 69, 48, 0.25);
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Lato', sans-serif;
  --max:         720px;
  --radius:      3px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  background: var(--ivoire);
  color: var(--texte);
  line-height: 1.7;
  font-size: 16px;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a { color: inherit; }

/* ── Layout ── */
.page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.divider {
  border: none;
  border-top: 0.5px solid var(--bordure);
  margin: 3rem 0;
}

/* ── Navigation ── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 0.5px solid var(--bordure);
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--texte);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--texte-2);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--texte); }
.nav-links a.active {
  color: var(--ocre);
  border-bottom: 0.5px solid var(--ocre);
  padding-bottom: 1px;
}

/* ── Boutons ── */
.btn {
  display: inline-block;
  padding: 11px 26px;
  border: 0.5px solid var(--brun-clair);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.07em;
  cursor: pointer;
  background: transparent;
  color: var(--texte);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn:hover { background: var(--lin); }
.btn-primary {
  background: var(--brun);
  color: var(--ivoire);
  border-color: var(--brun);
}
.btn-primary:hover { background: var(--ocre); border-color: var(--ocre); color: var(--ivoire); }

/* ── Eyebrow ── */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--texte-3);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

/* ── Titres ── */
h1.serif {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.3;
  color: var(--texte);
}
h1.serif em { font-style: italic; color: var(--ocre); }
h2.serif {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--texte);
}
h2.serif em { font-style: italic; }
h3.serif {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--texte);
}

/* ── Texte courant ── */
.intro {
  font-size: 16px;
  color: var(--texte-2);
  line-height: 1.8;
  max-width: 560px;
}
.corps {
  font-size: 15px;
  color: var(--texte-2);
  line-height: 1.85;
}
.note {
  font-size: 13px;
  color: var(--texte-3);
  font-style: italic;
}
.label {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--texte-3);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* ── Filet gauche ── */
.filet {
  border-left: 1.5px solid var(--ocre-clair);
  padding-left: 1.25rem;
}

/* ── Citation ── */
.citation {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  color: var(--texte-2);
  line-height: 1.75;
  border-left: 1.5px solid var(--ocre-clair);
  padding-left: 1.25rem;
}

/* ── Carte ── */
.card {
  border: 0.5px solid var(--bordure-2);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  background: #fff;
}
.card-label { margin-bottom: 1rem; }
.card-titre {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

/* ── Fond doux ── */
.fond-lin {
  background: var(--lin);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
}
.fond-pale {
  background: var(--ocre-pale);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
}

/* ── Photo placeholder ── */
.photo-bloc {
  background: var(--lin);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.photo-bloc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-caption {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  font-size: 11px;
  color: var(--texte-3);
  letter-spacing: 0.06em;
  background: rgba(248,244,238,0.8);
  padding: 2px 6px;
  border-radius: 2px;
}

/* ── Tags ── */
.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.tag {
  font-size: 12px;
  padding: 4px 10px;
  border: 0.5px solid var(--bordure-2);
  border-radius: 2px;
  color: var(--texte-2);
  letter-spacing: 0.04em;
  background: #fff;
}

/* ── Prix ── */
.prix {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--texte);
  margin-bottom: 0.25rem;
}
.prix-note { font-size: 13px; color: var(--texte-3); margin-bottom: 1.5rem; }

/* ── Meta ligne ── */
.meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 0.5px solid var(--bordure);
  margin-bottom: 1.75rem;
}
.meta-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--texte-3);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.meta-val { font-size: 14px; color: var(--texte); }

/* ── Liste inclus ── */
.inclus { list-style: none; margin-bottom: 1.75rem; }
.inclus li {
  font-size: 14px;
  color: var(--texte-2);
  padding: 0.55rem 0;
  border-bottom: 0.5px solid var(--bordure);
  line-height: 1.6;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.inclus li:last-child { border-bottom: none; }
.inclus-detail { font-size: 12px; color: var(--texte-3); text-align: right; flex-shrink: 0; }

/* ── FAQ ── */
.faq-item {
  border-bottom: 0.5px solid var(--bordure);
  padding: 1.25rem 0;
}
.faq-item:first-child { border-top: 0.5px solid var(--bordure); }
.faq-q { font-size: 15px; font-weight: 400; margin-bottom: 0.5rem; color: var(--texte); }
.faq-r { font-size: 14px; color: var(--texte-2); line-height: 1.75; }

/* ── Formulaire ── */
.form-perso { font-size: 14px; color: var(--texte-2); font-style: italic; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--texte-3);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.form-input {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 0.5px solid var(--bordure-2);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--texte);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
}
.form-input:focus { border-bottom-color: var(--ocre); }
.form-input::placeholder { color: var(--texte-3); }
textarea.form-input { resize: vertical; min-height: 120px; padding-top: 10px; line-height: 1.7; }
select.form-input { cursor: pointer; appearance: none; }
.form-hint { font-size: 12px; color: var(--texte-3); margin-top: 0.4rem; font-style: italic; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.form-submit { margin-top: 2.5rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.form-note { font-size: 13px; color: var(--texte-3); }

/* ── Footer ── */
.footer {
  border-top: 0.5px solid var(--bordure);
  padding: 2rem 0;
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--texte-2);
}
.footer-note { font-size: 12px; color: var(--texte-3); }

/* ── Responsive ── */
@media (max-width: 600px) {
  .nav-links { gap: 1.2rem; }
  .nav-links a { font-size: 12px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .nav { flex-direction: column; gap: 1rem; align-items: flex-start; }
}
