/* White Dinner Solidaire — shared stylesheet */

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #F7F4EE;
  color: #1A1A16;
  font-family: 'Jost', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: #4A6741; }
a:hover { color: #1A1A16; }
::selection { background: #4A6741; color: #F7F4EE; }

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

.placeholder-img {
  background: repeating-linear-gradient(45deg, #EDE9E0 0 10px, #F3F0E9 10px 20px);
  display: grid;
  place-items: center;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8A887E;
  text-align: center;
  padding: 12px;
}

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247, 244, 238, 0.94);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(26, 26, 22, 0.12);
}

.site-header .inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 36px);
  flex-wrap: nowrap;
}

.brand {
  flex: 0 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  color: #1A1A16;
}
.brand .l1 { font-family: 'Jost', sans-serif; font-size: clamp(15px, 2vw, 19px); font-weight: 500; letter-spacing: 0.14em; line-height: 1; white-space: nowrap; }
.brand .l2 { font-family: 'Space Mono', monospace; font-size: 9px; font-weight: 400; letter-spacing: 0.26em; color: #4A6741; line-height: 1; white-space: nowrap; }

.nav-links {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.7vw, 26px);
  flex-wrap: nowrap;
  overflow-x: auto;
  white-space: nowrap;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  scrollbar-width: none;
}
.nav-links::-webkit-scrollbar { display: none; }
.nav-links a {
  flex: 0 0 auto;
  color: #3A3A33;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover, .nav-links a.active { color: #4A6741; border-bottom: 1px solid #4A6741; }

.btn-reserve {
  flex: 0 0 auto;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: clamp(0.06em, 0.4vw, 0.16em);
  text-transform: uppercase;
  color: #F7F4EE;
  background: #4A6741;
  padding: 12px clamp(10px, 1.4vw, 20px);
  text-decoration: none;
  white-space: nowrap;
}
.btn-reserve:hover { background: #1A1A16; color: #F7F4EE; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: #4A6741;
  color: #F7F4EE;
  padding: 16px 26px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.btn:hover { background: #1A1A16; color: #F7F4EE; }
.btn.btn-on-dark:hover { background: #9DB08F; color: #1A1A16; }

.btn-outline {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1A1A16;
  padding: 16px 26px;
  text-decoration: none;
  border: 1px solid rgba(26, 26, 22, 0.24);
}
.btn-outline:hover { border-color: #4A6741; color: #4A6741; }

.btn-outline.on-dark {
  color: #E8E4DA;
  border-color: rgba(232, 228, 218, 0.3);
}
.btn-outline.on-dark:hover { border-color: #9DB08F; color: #9DB08F; }

/* ---------- Links ---------- */

.anchor-link {
  text-decoration: none;
  color: #3A3A33;
  border-bottom: 1px solid rgba(26, 26, 22, 0.2);
  padding-bottom: 3px;
}
.anchor-link:hover { color: #4A6741; border-bottom: 1px solid #4A6741; }

.underline-link {
  text-decoration: none;
  color: #4A6741;
  border-bottom: 1px solid rgba(74, 103, 65, 0.4);
  padding-bottom: 2px;
}
.underline-link:hover { color: #1A1A16; }

/* ---------- Form fields ---------- */

.field {
  border: none;
  border-bottom: 1px solid rgba(26, 26, 22, 0.28);
  background: transparent;
  padding: 10px 0;
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  color: #1A1A16;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.field:focus { border-bottom: 1px solid #4A6741; }

.field-box {
  border: 1px solid rgba(26, 26, 22, 0.2);
  background: transparent;
  padding: 14px;
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  color: #1A1A16;
  outline: none;
  resize: vertical;
  width: 100%;
  box-sizing: border-box;
}
.field-box:focus { border: 1px solid #4A6741; }

.field-dark {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(232, 228, 218, 0.32);
  color: #E8E4DA;
  padding: 10px 0;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.field-dark:focus { border-bottom: 1px solid #9DB08F; }
.field-dark::placeholder { color: #7D7A72; }

.btn-subscribe {
  align-self: flex-start;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: #4A6741;
  color: #F7F4EE;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
}
.btn-subscribe:hover { background: #9DB08F; color: #1A1A16; }

/* ---------- Footer ---------- */

.site-footer { background: #1A1A16; color: #E8E4DA; padding: 88px clamp(20px, 4vw, 40px) 40px; }
.site-footer .grid {
  max-width: 1320px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: clamp(24px, 3vw, 56px);
}
.site-footer a { color: #E8E4DA; text-decoration: none; }
.site-footer a:hover { color: #9DB08F; }
.site-footer .col-title { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: #9DB08F; }
.site-footer .bottom {
  max-width: 1320px; margin: 64px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(232, 228, 218, 0.16);
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  font-family: 'Space Mono', monospace; font-size: 11px; color: #7D7A72;
}
.site-footer .bottom a { color: #7D7A72; }
.site-footer .bottom a:hover { color: #9DB08F; }

/* ---------- Misc ---------- */

.hint {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: #4A6741;
}
