/* Fusion Food Haus — shared styles for all pages.
   Brand tokens sampled from the FFH logo files.
   Fonts carried over from the retired shop theme: Lora (headings), Open Sans (body). */

:root {
  --charcoal: #272727;   /* logo dark background */
  --ink: #272727;
  --muted: #5b5148;
  --burnt: #c14a08;      /* mark orange; CTA fill, white text = 4.94:1 */
  --burnt-dark: #9f3b05; /* CTA hover, white text = 6.77:1 */
  --gold: #dca45c;       /* logo lettering; on charcoal = 6.76:1 */
  --terracotta: #c3703e; /* logo orange tile; decorative only */
  --red: #bc2c34;        /* mark gradient */
  --yellow: #f4c414;     /* mark gradient */
  --cream: #fbf6ee;
  --sand: #f1e6d4;
  --line: #e4d8c4;
  --on-dark: #d9d2c8;    /* body text on charcoal = 9.96:1 */

  --font-head: "Lora", Georgia, serif;
  --font-body: "Open Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --wrap: 1120px;
  --gutter: 20px;
  --radius: 6px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font: 400 1rem/1.65 var(--font-body);
  color: var(--ink);
  background: var(--cream);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--burnt); text-underline-offset: 3px; }
a:hover { color: var(--burnt-dark); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.2; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.eyebrow {
  font: 600 .8rem/1 var(--font-body);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--burnt);
  margin: 0 0 .9rem;
}
.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--gold); color: var(--charcoal); padding: .6rem 1rem; z-index: 100;
}
.skip:focus { left: 0; }

/* ---------- Shared header ---------- */
.site-header { background: var(--charcoal); border-bottom: 3px solid var(--burnt); }
.site-header .wrap {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: .5rem 1.5rem;
  padding-block: .75rem;
}
.brand { display: inline-flex; line-height: 0; }
.brand img { height: 48px; width: auto; }
.site-nav ul { display: flex; flex-wrap: wrap; gap: .25rem 1.5rem; list-style: none; margin: 0; padding: 0; }
.site-nav a {
  display: inline-block; padding: .5rem 0;
  color: #fff; text-decoration: none; font-weight: 600; font-size: .95rem;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--gold); border-bottom-color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: .8rem 1.5rem;
  background: var(--burnt); color: #fff;
  font: 600 1rem/1.2 var(--font-body); text-decoration: none;
  border: 2px solid var(--burnt); border-radius: var(--radius);
  transition: background .15s, border-color .15s, color .15s;
}
.btn:hover { background: var(--burnt-dark); border-color: var(--burnt-dark); color: #fff; }
.btn--ghost { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn--ghost:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ---------- Sections ---------- */
.section { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.section--sand { background: var(--sand); }
.section--dark { background: var(--charcoal); color: var(--on-dark); }
.section--dark h2 { color: #fff; }
.section--dark .eyebrow { color: var(--gold); }

/* ---------- Home: hero ---------- */
.hero { background: var(--charcoal); color: var(--on-dark); padding-bottom: clamp(2rem, 5vw, 3.5rem); }
.hero-img { padding-inline: 0; }
.hero-img img { width: 100%; aspect-ratio: 1200 / 628; object-fit: cover; }
.hero-copy { padding-top: clamp(1.5rem, 4vw, 2.5rem); }
.hero-copy > * { max-width: 46rem; }
.hero h1 { color: #fff; }
.hero .lede { font-size: 1.15rem; margin-bottom: 1.5rem; }

/* ---------- Home: story ---------- */
.story-grid { display: grid; gap: 2rem; align-items: start; }
.story-copy p { max-width: 38rem; }
.story-fig { margin: 0; }
.story-fig img { border-radius: var(--radius); width: 100%; aspect-ratio: 1; object-fit: cover; }
.story-fig figcaption { font-size: .85rem; color: var(--muted); margin-top: .5rem; }

/* ---------- Home: team ---------- */
.team-grid { display: grid; gap: 1.25rem; margin-top: 1.75rem; }
.team-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.25rem; display: grid; grid-template-columns: 80px 1fr; gap: 1rem;
  align-items: start; align-content: start;
}
.team-card img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; }
.team-card h3 { margin-bottom: .25rem; }
.team-card p { margin: 0; color: var(--muted); font-size: .95rem; }

/* ---------- Home: socials ---------- */
.social-list { display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; padding: 0; margin: 1.5rem 0 0; }
.social-list a {
  display: inline-block; padding: .55rem 1.1rem;
  border: 1.5px solid var(--gold); border-radius: 999px;
  color: var(--gold); text-decoration: none; font-weight: 600; font-size: .95rem;
}
.social-list a:hover { background: var(--gold); color: var(--charcoal); }
.review-link { margin-top: 1.25rem; }
.section--dark a.text-link { color: var(--gold); }

/* ---------- Inner pages: page title band + long-form text ---------- */
.page-head { background: var(--charcoal); color: #fff; padding-block: clamp(1.75rem, 4vw, 3rem); }
.page-head h1 { margin: 0; }
.page-head .lede { color: var(--on-dark); font-size: 1.1rem; max-width: 40rem; margin: .75rem 0 0; }
.btn--lg { padding: 1.1rem 2rem; font-size: 1.1rem; text-align: center; }

/* ---------- Order page ---------- */
.order-actions { display: grid; gap: 1rem; max-width: 56rem; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); }
.order-note { color: var(--muted); font-size: .9rem; margin: 1rem 0 0; }
.meal-grid { display: grid; gap: 1.5rem; margin-top: 1.75rem; }
.meal { margin: 0; }
.meal img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); }
.meal figcaption { margin-top: .6rem; font-size: .95rem; }
.meal figcaption strong { display: block; font-family: var(--font-head); font-size: 1.05rem; }
.meal figcaption span { color: var(--muted); }

/* ---------- Catering page ---------- */
.svc-grid { display: grid; gap: 1.25rem; margin-top: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }
.svc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem; }
.svc h3 { margin-bottom: .35rem; }
.svc p { margin: 0; color: var(--muted); }
.proof { border-left: 4px solid var(--burnt); background: #fff; padding: 1rem 1.25rem; margin: 1.75rem 0 0; max-width: 44rem; }


/* ---------- Workshops page ---------- */
.feature { display: grid; gap: 1.75rem; align-items: center; }
.feature-img { border-radius: var(--radius); width: 100%; height: auto; }
.facts { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; margin: 1rem 0 1.5rem; }
.facts li {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: .3rem .9rem; font-weight: 600; font-size: .9rem;
}
.exp-grid { display: grid; gap: 1.5rem; margin-top: 1.75rem; grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr)); }
.exp-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
}
.exp-media {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(0, 1fr); grid-template-rows: minmax(0, 1fr);
  aspect-ratio: 2 / 1; overflow: hidden; background: var(--sand);
}
.exp-media img { width: 100%; height: 100%; min-height: 0; object-fit: cover; }
.exp-body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.exp-body h3 { margin-bottom: .25rem; }
.exp-price { font-weight: 700; color: var(--burnt); margin: 0 0 .75rem; }
.exp-body p { color: var(--muted); }
.exp-body .btn { margin-top: auto; align-self: flex-start; }

.prose > * { max-width: 44rem; }
.prose h2 { margin-top: 0; }
.prose h3 { font-size: 1.05rem; margin: 1.75rem 0 .4rem; }
.prose ol { padding-left: 1.25rem; margin: 0 0 1em; }

/* ---------- Shared footer ---------- */
.site-footer { background: var(--charcoal); color: var(--on-dark); border-top: 3px solid var(--burnt); font-size: .9rem; }
.site-footer .wrap {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: .75rem 2rem; padding-block: 1.5rem;
}
.site-footer p { margin: 0; }
.site-footer ul { display: flex; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.site-footer a { color: var(--gold); }
.site-footer a:hover { color: #fff; }

/* ---------- Wider screens ---------- */
@media (min-width: 720px) {
  :root { --gutter: 32px; }
  .story-grid { grid-template-columns: 1.3fr 1fr; gap: 3rem; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .feature { grid-template-columns: 1.1fr 1fr; gap: 3rem; }
  .meal-grid { grid-template-columns: repeat(3, 1fr); }
  .meal-grid--four { grid-template-columns: repeat(2, 1fr); }
  .team-card { grid-template-columns: 1fr; text-align: left; }
  .hero-img { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
}
@media (min-width: 1000px) {
  .meal-grid--four { grid-template-columns: repeat(4, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
