/* ── invite.css — Personalized Chef Invitation Page ────────────────────── */

:root {
  --bg: #0a0908;
  --bg-card: #141212;
  --bg-card2: #1a1816;
  --gold: #c9a96e;
  --gold-dim: rgba(201, 169, 110, 0.18);
  --text: #f0ece4;
  --text-dim: rgba(240, 236, 228, 0.65);
  --text-muted: rgba(240, 236, 228, 0.35);
  --border: rgba(201, 169, 110, 0.15);
  --radius: 20px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

/* ── Header ─────────────────────────────────────────────────────────────── */

.invite-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 9, 8, 0.95);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header-logo img { height: 28px; }

.header-logo-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
}

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

.lang-toggle { display: flex; gap: 4px; }

.lang-btn {
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: all 0.2s;
}

.lang-btn:hover { border-color: var(--gold); color: var(--gold); }

.lang-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0908;
}

/* ── Main ────────────────────────────────────────────────────────────────── */

.invite-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

/* ── Badge ───────────────────────────────────────────────────────────────── */

.invite-badge-wrap {
  text-align: center;
  padding: 40px 0 0;
}

.invite-badge {
  display: inline-block;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.3);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 6px 16px;
  border-radius: 999px;
  text-transform: uppercase;
}

/* ── Hero ────────────────────────────────────────────────────────────────── */

.invite-hero {
  padding: 40px 0 0;
  text-align: center;
}

.chef-identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}

.chef-photo-wrap {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold-dim);
  background: var(--bg-card);
  flex-shrink: 0;
}

.chef-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chef-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1816, #2a2520);
}

.chef-initials {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
}

.chef-meta { text-align: center; }

.chef-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.chef-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 8px;
}

.chef-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 14px;
  color: var(--text-dim);
}

.chef-sep { color: var(--gold); opacity: 0.5; }

.chef-title { font-weight: 500; }
.chef-restaurant { font-style: italic; }

/* ── Headline ─────────────────────────────────────────────────────────────── */

.invite-headline-wrap { max-width: 600px; margin: 0 auto; }

.invite-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 12px;
}

.invite-headline em {
  font-style: italic;
  color: var(--gold);
}

.invite-sub {
  font-size: 16px;
  color: var(--text-dim);
  margin-bottom: 0;
}

/* ── Body ────────────────────────────────────────────────────────────────── */

.invite-body {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ── Intro card ──────────────────────────────────────────────────────────── */

.invite-intro-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 36px;
  position: relative;
}

.intro-icon {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 14px;
  opacity: 0.7;
}

.invite-intro-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
}

/* ── Value grid ──────────────────────────────────────────────────────────── */

.invite-value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.value-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color 0.2s;
}

.value-item:hover { border-color: var(--gold-dim); }

.value-icon { font-size: 20px; flex-shrink: 0; line-height: 1; margin-top: 2px; }

.value-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.value-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ── Signature hint ──────────────────────────────────────────────────────── */

.signature-hint-card {
  background: rgba(201, 169, 110, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 14px;
  padding: 22px 28px;
  text-align: center;
}

.signature-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.signature-hint {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
}

/* ── CTA ─────────────────────────────────────────────────────────────────── */

.invite-cta-wrap { text-align: center; }

.invite-cta-btn {
  display: inline-block;
  background: var(--gold);
  color: #0a0908;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  padding: 16px 40px;
  border-radius: 14px;
  transition: opacity 0.2s, transform 0.15s;
  margin-bottom: 14px;
}

.invite-cta-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.invite-cta-sub {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Social proof ────────────────────────────────────────────────────────── */

.invite-social-proof {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  text-align: center;
}

.social-proof-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 10px;
}

.social-proof-attr {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Footer ─────────────────────────────────────────────────────────────── */

.invite-footer {
  text-align: center;
  padding: 32px 20px 40px;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

.invite-footer p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
}

.invite-footer a {
  color: var(--text-muted);
  text-decoration: none;
}

.invite-footer a:hover { color: var(--gold); }

.footer-sub {
  font-style: italic;
  margin-top: 6px;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 600px) {
  .invite-header { padding: 16px 20px; }

  .invite-main { padding: 0 16px 60px; }

  .invite-headline { font-size: 1.7rem; }

  .invite-value-grid { grid-template-columns: 1fr; }

  .invite-intro-card { padding: 24px 20px; }

  .chef-name { font-size: 1.6rem; }
}
