/* ============================================================
   WCCI / World Culinary Culture Institute
   Unified WFTA-family brand palette — see brand palette reference.
   ============================================================ */
:root {
  --wcci-midnight: #0D3F5A;
  --wcci-midnight-structural: #156082;
  --wcci-sage: #7A9E7E;
  --wcci-sky: #5D9FB5;
  --wcci-plum: #7B4F68;
  --wcci-marigold: #D9A441;
  --wcci-terracotta: #C65A3A;
  --wcci-sand: #E9DCC9;
  --wcci-white: #FFFFFF;
  --wcci-charcoal: #343434;

  --wcci-radius: 6px;
  --wcci-shadow-rest: 0 1px 3px rgba(52,52,52,0.10), 0 1px 2px rgba(52,52,52,0.06);
  --wcci-shadow-hover: 0 14px 28px rgba(52,52,52,0.14), 0 4px 10px rgba(52,52,52,0.08);
  --wcci-max-width: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: var(--wcci-charcoal);
  background: var(--wcci-white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: var(--wcci-max-width); margin: 0 auto; padding: 0 24px; }
.skip {
  position: absolute; left: -9999px; top: 0;
}
.skip:focus { left: 8px; top: 8px; background: var(--wcci-white); color: var(--wcci-midnight); padding: 8px 12px; border-radius: 4px; z-index: 999; }

/* -- Family bar -- */
.familybar {
  background: var(--wcci-midnight);
  color: var(--wcci-white);
  font-size: 0.8125rem;
  padding: 8px 24px;
}
.familybar .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  align-items: center;
  justify-content: space-between;
}
.familybar__label { opacity: 0.85; }
.familybar__links a {
  color: var(--wcci-white);
  text-decoration: none;
  margin-left: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.35);
}
.familybar__links a:hover { border-bottom-color: var(--wcci-white); }

/* -- Header -- */
.topbar {
  background: var(--wcci-white);
  border-bottom: 1px solid rgba(52,52,52,0.08);
  position: sticky;
  top: 0;
  z-index: 20;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--wcci-max-width);
  margin: 0 auto;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  color: var(--wcci-midnight);
  font-size: 1.05rem;
}
.brand img { height: 36px; width: auto; }
.navlinks {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.navlinks a {
  text-decoration: none;
  color: var(--wcci-charcoal);
  font-weight: 600;
  font-size: 0.9375rem;
}
.navlinks a:hover { color: var(--wcci-plum); }
.navlinks a.top-link { color: var(--wcci-terracotta); }
.langs {
  display: flex;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.langs a {
  text-decoration: none;
  color: var(--wcci-charcoal);
  opacity: 0.55;
}
.langs a.active { opacity: 1; color: var(--wcci-plum); }
.langs a:hover { opacity: 1; }
.menu {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
}

/* -- Hero -- */
.hero {
  background: var(--wcci-plum);
  color: var(--wcci-white);
  padding: 80px 24px;
}
.hero .wrap { text-align: left; max-width: 780px; }
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--wcci-marigold);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 20px;
}
.hero p {
  font-size: 1.0625rem;
  opacity: 0.9;
  margin: 0 0 32px;
  max-width: 640px;
}
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: var(--wcci-radius);
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--wcci-terracotta); color: var(--wcci-white); }
.btn.secondary { background: transparent; color: var(--wcci-white); border: 1px solid rgba(255,255,255,0.5); }
.btn.light { background: var(--wcci-white); color: var(--wcci-plum); }

/* -- Sections -- */
.section { padding: 72px 24px; }
.section.sand { background: var(--wcci-sand); }
.section-head { max-width: 680px; margin: 0 auto 40px; text-align: center; }
.section-head .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--wcci-terracotta);
  margin-bottom: 10px;
}
.section-head h2 {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--wcci-midnight);
  margin: 0 0 12px;
}
.section-head p { margin: 0; opacity: 0.85; }

/* -- Mission/vision block -- */
.mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.mission .card {
  background: var(--wcci-white);
  border-radius: var(--wcci-radius);
  box-shadow: var(--wcci-shadow-rest);
  padding: 28px;
  border-top: 4px solid var(--wcci-marigold);
}
.mission h3 {
  margin: 0 0 10px;
  color: var(--wcci-midnight);
  font-size: 1.125rem;
}
.mission p { margin: 0; opacity: 0.86; font-size: 0.9375rem; }
.mission ul { margin: 10px 0 0; padding-left: 20px; opacity: 0.86; font-size: 0.9375rem; }

/* -- What we do cards -- */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service__card {
  background: var(--wcci-white);
  border-radius: var(--wcci-radius);
  box-shadow: var(--wcci-shadow-rest);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-top: 4px solid var(--wcci-marigold);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.service__card:hover { box-shadow: var(--wcci-shadow-hover); transform: translateY(-4px); }
.service__card.highlight { border-top-color: var(--wcci-terracotta); }
.service__card h3 { margin: 0 0 10px; color: var(--wcci-midnight); font-size: 1.0625rem; }
.service__card p { flex: 1; margin: 0 0 16px; font-size: 0.9125rem; opacity: 0.86; }
.service__link { font-size: 0.9125rem; font-weight: 700; color: var(--wcci-plum); text-decoration: none; border-bottom: 1px solid transparent; align-self: flex-start; }
.service__link:hover { border-bottom-color: var(--wcci-plum); }

/* -- Taste of Place callout band -- */
.tasteband {
  background: var(--wcci-terracotta);
  color: var(--wcci-white);
  padding: 64px 24px;
  text-align: center;
}
.tasteband .wrap { max-width: 680px; }
.tasteband h2 { margin: 0 0 14px; font-size: 1.75rem; font-weight: 600; }
.tasteband p { margin: 0 0 28px; opacity: 0.92; }

/* -- Contact -- */
.contact {
  background: var(--wcci-midnight);
  color: var(--wcci-white);
  padding: 64px 24px;
}
.contact .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.contact h2 { margin: 0 0 14px; font-size: 1.75rem; font-weight: 600; }
.contact address { font-style: normal; opacity: 0.9; line-height: 1.7; margin: 0 0 18px; }
.contact a.email { color: var(--wcci-marigold); font-weight: 700; text-decoration: none; }
.contact a.email:hover { text-decoration: underline; }
.contact__note { opacity: 0.75; font-size: 0.875rem; }

/* -- Footer -- */
.footer {
  background: #0A2E42;
  color: var(--wcci-white);
  padding: 40px 24px 28px;
  font-size: 0.875rem;
}
.footer .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.footer__family a {
  color: var(--wcci-white);
  text-decoration: none;
  opacity: 0.85;
  margin-right: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
.footer__family a:hover { opacity: 1; }
.footer__meta { opacity: 0.7; }
.footer__meta a { color: var(--wcci-white); text-decoration: underline; opacity: 0.9; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .mission { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr 1fr; }
  .contact .wrap { grid-template-columns: 1fr; }
}
/* -- Legal pages -- */
.legal { padding: 56px 24px 80px; }
.legal .wrap { max-width: 760px; }
.legal h1 { color: var(--wcci-midnight); font-size: 1.75rem; margin: 0 0 6px; }
.legal .legal__meta { opacity: 0.65; font-size: 0.875rem; margin: 0 0 32px; }
.legal h2 { color: var(--wcci-midnight); font-size: 1.1875rem; margin: 32px 0 10px; }
.legal p, .legal li { font-size: 0.9375rem; opacity: 0.88; }
.legal ul { padding-left: 20px; }
.legal a { color: var(--wcci-plum); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(123,79,104,0.35); }
.legal a:hover { border-bottom-color: var(--wcci-plum); }

@media (max-width: 640px) {
  .hero h1 { font-size: 1.875rem; }
  .services { grid-template-columns: 1fr; }
  .navlinks { display: none; }
  .menu { display: block; }
  .familybar .wrap { flex-direction: column; align-items: flex-start; gap: 4px; }
  .familybar__links a { margin-left: 0; margin-right: 14px; }
}
