/* Reset + variables */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #f8f6ef;
  --surface: #fffef9;
  --text: #1f2a22;
  --muted: #5c665f;
  --border: rgba(86, 98, 89, 0.24);

  --brand: #1e9459;
  --brand-ink: #17492f;
  --brand-soft: rgba(30, 148, 89, 0.14);
  --leaf-dark: #2f5f42;
  --leaf-mid: #5e7b64;
  --wood: #8b6442;

  --shadow: 0 12px 30px rgba(47, 61, 50, 0.12);
  --radius: 18px;
  --radius-sm: 12px;
  --transition: 180ms ease;

  --container: 1120px;
}

html {
  scroll-behavior: smooth;
  background:
    radial-gradient(700px 300px at 0% 0%, rgba(94, 123, 100, 0.1), transparent 58%),
    radial-gradient(900px 420px at 100% 10%, rgba(30, 148, 89, 0.1), transparent 62%),
    var(--bg);
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(700px 300px at 0% 0%, rgba(94, 123, 100, 0.1), transparent 58%),
    radial-gradient(900px 420px at 100% 10%, rgba(30, 148, 89, 0.1), transparent 62%),
    var(--bg);
  overflow-x: hidden;
}

/* iOS/Safari: force top inset background to prevent white strip */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: env(safe-area-inset-top);
  background: rgba(255, 255, 250, 0.94);
  z-index: 1600;
  pointer-events: none;
}

img {
  max-width: 100%;
  display: block;
}

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

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--text);
  color: var(--bg);
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 2000;
}
.skip-link:focus {
  left: 10px;
}

/* Header / nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 250, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 6px 18px rgba(47, 61, 50, 0.07);
}

/* Fill iOS safe-area to avoid white strip above header */
.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(-1 * env(safe-area-inset-top));
  height: env(safe-area-inset-top);
  background: rgba(255, 255, 250, 0.92);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  min-width: 210px;
}

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  border: 1px solid rgba(86, 98, 89, 0.28);
  box-shadow: 0 8px 20px rgba(30, 73, 47, 0.2);
  object-fit: cover;
  background: #fff;
}

.brand-title {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-title strong {
  font-size: 1.05rem;
  letter-spacing: 0.2px;
}

.brand-title span {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  padding: 10px 10px;
  border-radius: 12px;
  transition: background var(--transition), color var(--transition);
}

.nav-links a:hover {
  background: rgba(94, 123, 100, 0.16);
  color: var(--text);
}

.nav-links a[aria-current="page"] {
  background: var(--brand-soft);
  color: var(--brand-ink);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 14px;
  padding: 10px 12px;
  cursor: pointer;
  transition: transform var(--transition);
}
.nav-toggle:active {
  transform: scale(0.98);
}
.nav-toggle .burger {
  width: 18px;
  height: 12px;
  position: relative;
}
.nav-toggle .burger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), top var(--transition);
}
.nav-toggle .burger span:nth-child(1) { top: 0; }
.nav-toggle .burger span:nth-child(2) { top: 5px; }
.nav-toggle .burger span:nth-child(3) { top: 10px; }

/* Hero */
.hero {
  padding: 56px 0 38px;
  background:
    radial-gradient(850px 380px at 20% 10%, rgba(94, 123, 100, 0.2) 0%, transparent 58%),
    radial-gradient(700px 320px at 90% 0%, rgba(30, 148, 89, 0.18) 0%, transparent 62%),
    linear-gradient(180deg, #fffef8 0%, #f6f8f3 100%);
  border-bottom: 1px solid rgba(86, 98, 89, 0.18);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch;
}

/* Colonnes à même hauteur (grille) + contenu centré verticalement dans la zone */
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  height: 100%;
}

.hero-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  min-height: 0;
  height: 100%;
  width: 100%;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 60ch;
}

.hero-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.btn-primary {
  background: var(--brand);
  border-color: rgba(30, 148, 89, 0.35);
  color: #fff;
  box-shadow: 0 12px 26px rgba(30, 148, 89, 0.22);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(30, 148, 89, 0.28);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
}

.btn-secondary:hover {
  background: rgba(2, 6, 23, 0.04);
}

.hero-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbf7 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.hero-card .pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--brand-ink);
  background: var(--brand-soft);
  border: 1px solid rgba(30, 148, 89, 0.22);
  padding: 10px 12px;
  border-radius: 999px;
}

.hero-card dl {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.hero-card dt {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-card dd {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.hero-card a {
  color: inherit;
}

.hero-practical {
  display: grid;
  gap: 12px;
}

.hero-practical-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.hero-practical-item {
  text-decoration: none;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.82);
  border-radius: 12px;
  padding: 10px 12px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.hero-practical-item strong {
  display: block;
  color: var(--brand-ink);
  font-size: 0.95rem;
}

.hero-practical-item span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.hero-practical-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(47, 61, 50, 0.12);
  background: rgba(255, 255, 255, 0.95);
}

.hero-route-btn {
  width: 100%;
}

.hero-terrace-note {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.86rem;
  line-height: 1.4;
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(86, 98, 89, 0.14);
}

.hero-terrace-note strong {
  color: var(--brand-ink);
}

.hero-terrace-ico {
  flex-shrink: 0;
  font-size: 1.1rem;
  line-height: 1.2;
}

.hero-hours {
  display: grid;
  gap: 2px;
}

.hero-hours-list {
  margin: 0;
  padding: 0;
}

.hero-hours-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  align-items: baseline;
  padding: 3px 0;
  border-bottom: 1px solid rgba(86, 98, 89, 0.12);
}

.hero-hours-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hero-hours-row dt {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
  text-transform: none;
  letter-spacing: normal;
}

.hero-hours-row dd {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  text-align: right;
  white-space: nowrap;
  line-height: 1.25;
}

.hero-hours-row-closed dd {
  color: var(--muted);
  font-weight: 600;
}

.hero-hours-midi {
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  padding: 7px 9px;
  border-radius: 10px;
  background:
    linear-gradient(125deg, rgba(30, 148, 89, 0.1) 0%, rgba(255, 254, 249, 0.95) 55%, rgba(139, 100, 66, 0.08) 100%);
  border: 1px solid rgba(30, 148, 89, 0.18);
  border-left: 3px solid var(--brand);
  box-shadow: 0 4px 12px rgba(47, 61, 50, 0.06);
}

/* Encart horaires : compact (surcharge .hero-card dl / padding) */
.hero-card.hero-hours-card {
  padding: 12px 14px;
}

.hero-card.hero-hours-card .pill {
  padding: 6px 10px;
  font-size: 0.78rem;
  gap: 6px;
}

.hero-card.hero-hours-card dl.hero-hours-list {
  margin-top: 6px;
  display: block;
  gap: 0;
}

.hero-practical-note {
  font-size: 0.9rem;
  margin-top: 2px;
}

/* Sections */
main {
  padding: 32px 0 0;
}

.section {
  padding: 42px 0;
}

.section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.section-title h2 {
  font-size: 1.6rem;
  letter-spacing: -0.01em;
}

.section-title p {
  color: var(--muted);
  max-width: 70ch;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.card > p + p {
  margin-top: 10px;
}

.section-ambiance-showcase {
  padding-top: 8px;
}

.ambiance-showcase {
  width: 80%;
  max-width: 100%;
  height: 80vh;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #e7ece2;
}

.ambiance-showcase img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ambiance-showcase-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ambiance-caption {
  width: 80%;
  max-width: 100%;
  margin: 16px 0 0;
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--muted);
  font-style: italic;
  letter-spacing: 0.01em;
}

.ambiance-caption strong {
  color: var(--brand-ink);
  font-style: normal;
}

.section-home-highlights {
  padding-top: 28px;
  padding-bottom: 48px;
}

.home-highlight-grid {
  align-items: stretch;
}

.home-highlight-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 20px;
  border-left: 4px solid var(--brand);
  background:
    linear-gradient(168deg, rgba(255, 255, 255, 0.98) 0%, rgba(251, 252, 247, 0.96) 55%, rgba(30, 148, 89, 0.06) 100%);
  box-shadow: 0 10px 28px rgba(47, 61, 50, 0.1);
}

.home-highlight-title {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--brand-ink);
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-highlight-emoji {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}

.home-highlight-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  font-size: 0.94rem;
  line-height: 1.45;
  color: var(--muted);
}

.home-highlight-list li {
  padding-left: 1rem;
  position: relative;
}

.home-highlight-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--brand);
  opacity: 0.65;
}

.home-highlight-li-mail {
  padding-left: 0;
}

.home-highlight-li-mail::before {
  display: none;
}

.home-highlight-mail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.home-highlight-mail:hover {
  color: var(--leaf-dark);
  border-bottom-color: rgba(30, 148, 89, 0.45);
}

.home-highlight-mail-note {
  font-weight: 500;
  color: var(--muted);
}

.home-highlight-body {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.5;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

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

.staff-timeline {
  position: relative;
  display: grid;
  gap: 24px;
  padding: 8px 0;
}

.staff-row {
  position: relative;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  align-items: center;
}

.staff-row.staff-row-reverse {
  grid-template-columns: 1fr 170px;
}

.staff-row.staff-row-reverse .staff-content {
  order: 1;
}

.staff-row.staff-row-reverse .staff-photo-wrap {
  order: 2;
}

.staff-photo-wrap {
  display: grid;
  place-items: center;
}

.staff-photo {
  width: 148px;
  height: 148px;
  object-fit: cover;
  border-radius: 999px;
  border: 4px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(47, 61, 50, 0.2), 0 0 0 1px rgba(86, 98, 89, 0.25);
  background: #fff;
}

.staff-content {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.staff-role {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-ink);
  font-weight: 800;
}

.staff-name {
  font-size: 1.4rem;
  line-height: 1.15;
  margin-top: 3px;
  margin-bottom: 10px;
}

.staff-content p {
  color: var(--muted);
  line-height: 1.55;
}

.staff-content p + p {
  margin-top: 10px;
}

.profile {
  display: grid;
  gap: 12px;
}

.profile-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.profile-avatar {
  width: 84px;
  height: 84px;
  border-radius: 20px;
  background: rgba(2, 6, 23, 0.03);
  border: 1px solid var(--border);
  overflow: hidden;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-role {
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.profile-name {
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  margin-top: 2px;
}

.profile p {
  color: var(--muted);
  font-size: 0.98rem;
}

.muted {
  color: var(--muted);
}

/* Menu */
.menu-header {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.menu-header h1 {
  font-size: 2.1rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.menu-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.03);
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.badge-strong {
  background: var(--brand-soft);
  border-color: rgba(30, 148, 89, 0.24);
  color: var(--brand-ink);
}

.menu-day {
  display: grid;
  gap: 14px;
}

.menu-day .menu-day-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.menu-day .menu-day-title h2 {
  font-size: 1.25rem;
}

.menu-day .menu-day-date {
  color: var(--muted);
  font-weight: 700;
}

.menu-list {
  display: grid;
  gap: 10px;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 252, 0.84);
}

.menu-item strong {
  display: block;
}

.menu-item p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 4px;
}

.menu-price {
  font-weight: 900;
  color: var(--text);
  white-space: nowrap;
}

.menu-section {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.menu-section h3 {
  font-size: 1.2rem;
}

.menu-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.menu-doc {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.menu-doc img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  display: block;
  background: #f3f5ef;
}

.menu-doc-open {
  border: 0;
  background: transparent;
  padding: 0;
  width: 100%;
  cursor: zoom-in;
}

.menu-doc .menu-doc-meta {
  padding: 10px 12px 12px;
}

.menu-doc .menu-doc-meta strong {
  display: block;
}

.menu-doc .menu-doc-meta p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 4px;
}

.menu-doc-actions {
  margin-top: 10px;
}

.menu-day-highlight {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(30, 148, 89, 0.32);
  background: linear-gradient(135deg, rgba(30, 148, 89, 0.12) 0%, rgba(94, 123, 100, 0.14) 100%);
  color: var(--brand-ink);
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.01em;
  margin-bottom: 1em;
}

/* Access */
.address-block {
  display: grid;
  gap: 10px;
}

.address-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.address-head .btn {
  white-space: nowrap;
}
.address-block a {
  color: inherit;
}
.map-placeholder {
  border-radius: var(--radius);
  border: 1px dashed rgba(30, 148, 89, 0.45);
  background: rgba(30, 148, 89, 0.06);
  padding: 18px;
  color: var(--brand-ink);
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #e7ece2;
}

.map-embed iframe {
  width: 100%;
  min-height: 340px;
  border: 0;
  display: block;
}

.map-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.info-list {
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
}

.info-list li {
  line-height: 1.45;
}

/* Footer */
.site-footer {
  margin-top: 42px;
  border-top: 1px solid var(--border);
  background:
    linear-gradient(130deg, #1e2f25 0%, #2d4a38 55%, #274232 100%);
  color: #eef2ea;
}

.footer-grid {
  padding: 28px 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.site-footer h3 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 10px;
}

.site-footer p,
.site-footer a {
  color: rgba(238, 242, 234, 0.9);
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(238, 242, 234, 0.2);
  padding: 14px 0;
  color: rgba(238, 242, 234, 0.8);
  font-size: 0.92rem;
}

.social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social a,
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid rgba(238, 242, 234, 0.26);
  text-decoration: none;
  font-size: 0.9rem;
}

.social a:hover,
.social-link:hover {
  border-color: rgba(238, 242, 234, 0.48);
  background: rgba(238, 242, 234, 0.1);
}

.social-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.footer-developer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(238, 242, 234, 0.2);
}

.developer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.developer-links {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.developer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(238, 242, 234, 0.9);
  text-decoration: none;
  transition: var(--transition);
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  border: 1px solid rgba(238, 242, 234, 0.2);
  font-size: 0.85rem;
}

.developer-link:hover {
  background: rgba(238, 242, 234, 0.1);
  color: #fff;
  border-color: rgba(238, 242, 234, 0.45);
}

.developer-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex: 0 0 auto;
}

.photo-strip {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.photo-strip img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 16px rgba(47, 61, 50, 0.12);
}

.photo-thumb {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: zoom-in;
  border-radius: 12px;
}

.photo-thumb img {
  transition: transform var(--transition), box-shadow var(--transition);
}

.photo-thumb:hover img {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 10px 22px rgba(47, 61, 50, 0.16);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 20, 0.88);
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 22px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-image {
  max-width: min(96vw, 1200px);
  max-height: 88vh;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  background: #fff;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(15, 23, 20, 0.55);
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
}

.photo-strip-hero {
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(86, 98, 89, 0.22);
  border-radius: 16px;
  padding: 10px;
}

.photo-strip-hero img {
  height: 120px;
}

/* Mobile nav */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .hero-copy,
  .hero-side {
    height: auto;
    justify-content: flex-start;
  }

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

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

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

  .staff-row,
  .staff-row.staff-row-reverse {
    grid-template-columns: 120px 1fr;
    gap: 12px;
  }

  .staff-row.staff-row-reverse {
    grid-template-columns: 1fr 120px;
  }

  /* Sur mobile, on laisse la grille gérer la position (texte gauche, photo droite) */
  .staff-row.staff-row-reverse .staff-content,
  .staff-row.staff-row-reverse .staff-photo-wrap {
    order: initial;
  }

  .staff-photo {
    width: 100px;
    height: 100px;
  }

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

  .hero-practical-grid {
    grid-template-columns: 1fr;
  }

  .menu-gallery {
    grid-template-columns: 1fr;
  }

  .photo-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .photo-strip-hero img {
    height: 96px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    left: 0;
    right: 0;
    top: 68px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 0;
    padding: 14px 20px 18px;
    display: grid;
    gap: 6px;
    transform: translateY(-130%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
  }

  .nav-links a {
    padding: 12px 12px;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    border-bottom: 1px solid var(--border);
  }

  .nav-toggle[aria-expanded="true"] .burger span:nth-child(1) {
    top: 5px;
    transform: rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] .burger span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] .burger span:nth-child(3) {
    top: 5px;
    transform: rotate(-45deg);
  }

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

  .developer-content {
    flex-direction: column;
  }
}

