/*
  BettterMenu Corporate — Gastronomy Editorial Theme
  Inspired by high-end restaurant branding & print design.
  No gradients, no glow effects, no "AI startup" aesthetics.
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ─── Design Tokens ────────────────────────────────────── */
:root {
  --bg:          #0d0d11;
  --bg-raised:   #111115;
  --bg-subtle:   #16161c;

  --cream:       #f3efe9;
  --cream-dim:   #c8c3bc;
  --cream-faint: rgba(243, 239, 233, 0.06);

  --bronze:      #c5a880;
  --bronze-dim:  rgba(197, 168, 128, 0.18);
  --bronze-line: rgba(197, 168, 128, 0.14);

  --text:        #c8c3bc;
  --text-strong: #f3efe9;
  --text-muted:  #7a756d;

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Plus Jakarta Sans', system-ui, sans-serif;

  --r:      6px;
  --r-lg:   12px;

  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --fast:   0.18s var(--ease);
  --normal: 0.32s var(--ease);
}

/* ─── Reset ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── Typography ───────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 300; }
h2 { font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 300; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 400; }
h4 { font-size: 1.1rem; font-weight: 500; font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.1em; color: var(--bronze); }

p { color: var(--text); line-height: 1.75; margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }

strong { color: var(--cream); font-weight: 600; }

/* ─── Layout ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 120px 0; }
.section--sm { padding: 80px 0; }
.section--lg { padding: 160px 0; }

.divider {
  width: 100%;
  height: 1px;
  background: var(--bronze-line);
}

/* ─── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--normal);
  border-radius: var(--r);
  position: relative;
}

.btn-primary {
  background: var(--bronze);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--cream);
  color: var(--bg);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--bronze-line);
}
.btn-outline:hover {
  border-color: var(--bronze);
  color: var(--bronze);
}

/* ─── Navigation ───────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
  padding: 28px 0;
  transition: var(--normal);
}

.navbar.scrolled {
  padding: 18px 0;
  background: rgba(13, 13, 17, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bronze-line);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.01em;
  transition: color var(--fast);
}
.nav-brand:hover { color: var(--bronze); }

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color var(--fast);
}
.nav-links a:hover { color: var(--bronze); }

.nav-cta-link {
  padding: 10px 22px;
  border: 1px solid var(--bronze-line);
  border-radius: var(--r);
  color: var(--cream) !important;
  transition: var(--fast) !important;
}
.nav-cta-link:hover {
  border-color: var(--bronze) !important;
  color: var(--bronze) !important;
}

.nav-lang-btn {
  padding: 8px 16px;
  border: 1px solid rgba(197, 168, 128, 0.2);
  border-radius: var(--r);
  color: var(--cream-dim) !important;
  font-size: 0.78rem !important;
  transition: var(--fast) !important;
}
.nav-lang-btn:hover {
  border-color: var(--bronze) !important;
  color: var(--bronze) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: var(--fast);
}

/* ─── Mobile Menu ──────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(380px, 85%);
  height: 100dvh;
  background: var(--bg-raised);
  border-left: 1px solid var(--bronze-line);
  z-index: 99;
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: right var(--normal);
}
.mobile-menu.active { right: 0; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--cream);
  transition: color var(--fast);
}
.mobile-menu a:hover { color: var(--bronze); }

/* ─── Hero ─────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 140px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--bronze-line);
}

.hero-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 32px;
}

.hero-title {
  max-width: 820px;
  margin-bottom: 40px;
}

.hero-title em {
  font-style: italic;
  color: var(--bronze);
}

.hero-body {
  max-width: 520px;
  margin-bottom: 48px;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  margin-top: 80px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-scroll-hint::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--bronze-line);
}

/* ─── Two-Column Split ─────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split--wide { grid-template-columns: 1.3fr 0.7fr; }
.split--flip { direction: rtl; }
.split--flip > * { direction: ltr; }

/* ─── Section Labels ───────────────────────────────────── */
.label {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--bronze);
  flex-shrink: 0;
}

/* ─── Stat Row ─────────────────────────────────────────── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--bronze-line);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.stat-item {
  padding: 44px 36px;
  border-right: 1px solid var(--bronze-line);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ─── Feature List ─────────────────────────────────────── */
.feature-list {
  list-style: none;
  margin: 32px 0;
}
.feature-list li {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--bronze-line);
}
.feature-list li:first-child { border-top: 1px solid var(--bronze-line); }

.feature-num {
  font-family: var(--serif);
  font-size: 0.9rem;
  color: var(--bronze);
  flex-shrink: 0;
  min-width: 28px;
  padding-top: 1px;
}
.feature-text strong {
  display: block;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--cream);
}
.feature-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ─── Product Block ────────────────────────────────────── */
.product-block {
  background: var(--bg-raised);
  border: 1px solid var(--bronze-line);
  border-radius: var(--r-lg);
  padding: 64px;
}

.product-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--bronze);
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 28px;
}

/* ─── Pull Quote ───────────────────────────────────────── */
.pull-quote {
  border-left: 2px solid var(--bronze);
  padding: 4px 0 4px 32px;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.5;
  margin: 60px 0;
}

/* ─── Contact Section ──────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-meta {
  position: sticky;
  top: 120px;
}

.contact-detail {
  margin-top: 40px;
}
.contact-detail + .contact-detail { margin-top: 28px; }

.contact-detail-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-detail-value {
  font-size: 1rem;
  color: var(--cream);
}
.contact-detail-value a { transition: color var(--fast); }
.contact-detail-value a:hover { color: var(--bronze); }

/* ─── Contact Form ─────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 24px; }

.form-field { display: flex; flex-direction: column; gap: 8px; }

.form-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.form-input {
  background: var(--bg-subtle);
  border: 1px solid var(--bronze-line);
  border-radius: var(--r);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 14px 18px;
  transition: border-color var(--fast);
  width: 100%;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus {
  outline: none;
  border-color: var(--bronze);
}
textarea.form-input { resize: vertical; min-height: 130px; }

/* ─── Team Block ───────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--bronze-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 48px;
}
.team-card {
  background: var(--bg-raised);
  padding: 48px 40px;
  border-right: 1px solid var(--bronze-line);
}
.team-card:last-child { border-right: none; }

.team-initials {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--bronze);
  margin-bottom: 20px;
}
.team-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 16px;
}
.team-bio { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ─── Legal Pages ──────────────────────────────────────── */
.legal-header {
  padding: 160px 0 60px;
  border-bottom: 1px solid var(--bronze-line);
}
.legal-header p {
  max-width: 560px;
  margin-top: 16px;
}

.legal-body {
  max-width: 760px;
  padding: 80px 0 140px;
}

.legal-body h2 {
  font-size: 1.6rem;
  margin: 56px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--bronze-line);
}
.legal-body h3 { font-size: 1.1rem; margin: 28px 0 12px; font-family: var(--sans); font-weight: 600; }
.legal-body p { font-size: 0.95rem; color: var(--text); }
.legal-body ul, .legal-body ol { margin: 0 0 20px 24px; }
.legal-body li { font-size: 0.95rem; color: var(--text); margin-bottom: 10px; line-height: 1.65; }
.legal-body li strong { color: var(--cream); }
.legal-body a { color: var(--bronze); text-decoration: underline; text-underline-offset: 3px; }
.legal-body a:hover { color: var(--cream); }

.legal-updated {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 60px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--bronze-line);
}

.legal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.875rem;
}
.legal-body th, .legal-body td {
  padding: 12px 16px;
  border: 1px solid var(--bronze-line);
  text-align: left;
}
.legal-body th { color: var(--cream); background: var(--bg-raised); font-weight: 600; }
.legal-body td { color: var(--text); }

/* ─── Footer ───────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--bronze-line);
  padding: 80px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
}

.footer-brand-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 14px;
}
.footer-brand-desc { font-size: 0.88rem; color: var(--text-muted); max-width: 300px; line-height: 1.7; }

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 0.9rem; color: var(--text-muted); transition: color var(--fast); }
.footer-col ul a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid var(--bronze-line);
  padding-top: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 0.83rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 28px; }
.footer-legal a { font-size: 0.83rem; color: var(--text-muted); transition: color var(--fast); }
.footer-legal a:hover { color: var(--bronze); }

/* ─── Responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
  .split, .split--wide { grid-template-columns: 1fr; gap: 48px; }
  .split--flip { direction: ltr; }
  .stat-row { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--bronze-line); }
  .stat-item:last-child { border-bottom: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-meta { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-desc { max-width: 100%; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { border-right: none; border-bottom: 1px solid var(--bronze-line); }
  .team-card:last-child { border-bottom: none; }
  .product-block { padding: 40px 32px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }
  .section { padding: 80px 0; }
  .section--lg { padding: 100px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-bottom: 60px; }
  .hero-scroll-hint { display: none; }
}
