:root {
  --ink: #142018;
  --ink-soft: #354236;
  --cedar: #0f5a3c;
  --cedar-dark: #092c21;
  --sumac: #a83224;
  --olive: #b58d32;
  --pita: #f4ead6;
  --pita-deep: #e2c994;
  --paper: #fbf3e3;
  --tahini: #fff9eb;
  --line: rgba(20, 32, 24, 0.2);
  --shadow: 0 28px 80px rgba(18, 28, 20, 0.22);
  --display: 'Fraunces', Georgia, serif;
  --body: 'Nunito Sans', system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 2%, rgba(181, 141, 50, 0.18), transparent 34rem),
    linear-gradient(180deg, var(--paper), #efe0c1 52%, #102118 52%, #102118 100%);
  min-width: 320px;
}
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { outline: 3px solid var(--olive); outline-offset: 4px; }
img { max-width: 100%; display: block; }
.skip { position: fixed; left: 1rem; top: -10rem; z-index: 1000; background: var(--sumac); color: white; padding: .8rem 1rem; border-radius: 999px; }
.skip:focus { top: 1rem; }
.preview-banner {
  display: flex;
  gap: .75rem;
  align-items: center;
  justify-content: center;
  padding: .7rem 1rem;
  background: #18261e;
  color: var(--pita);
  font-family: var(--mono);
  font-size: clamp(.7rem, 1vw, .82rem);
  line-height: 1.4;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.preview-banner strong { color: #f6d082; text-transform: uppercase; letter-spacing: .08em; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem clamp(1rem, 4vw, 3rem);
  background: rgba(251, 243, 227, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: .8rem; min-width: 0; }
.brand-mark {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border: 2px solid var(--cedar);
  border-radius: 50%;
  font-family: var(--display);
  font-weight: 900;
  color: var(--cedar);
  box-shadow: inset 0 0 0 5px rgba(15,90,60,.09);
}
.brand b { display: block; font-family: var(--display); font-size: 1.2rem; line-height: .95; }
.brand small { display: block; font-family: var(--mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); margin-top: .2rem; }
.site-header nav { display: flex; align-items: center; gap: .35rem; flex-wrap: wrap; justify-content: flex-end; }
.site-header nav a { font-family: var(--mono); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; padding: .75rem .85rem; border-radius: 999px; }
.site-header nav a:hover { background: rgba(15,90,60,.1); }
.nav-cta { background: var(--cedar); color: var(--tahini); }
main { overflow: hidden; }
.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(19rem, .42fr);
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(2rem, 5vw, 5.5rem) clamp(1rem, 5vw, 4.5rem);
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(251,243,227,.98) 0%, rgba(251,243,227,.91) 40%, rgba(251,243,227,.08) 70%),
    url('assets/cedar-hero.jpg') center right / cover no-repeat;
  border-bottom: 1px solid rgba(20,32,24,.18);
}
.hero::before {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 9rem;
  background: linear-gradient(0deg, rgba(16,33,24,.1), transparent);
  z-index: -1;
}
.hero-copy { max-width: 58rem; align-self: center; }
.eyebrow, .mono-label, .ticket-kicker {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--cedar);
  font-weight: 700;
  font-size: clamp(.75rem, 1vw, .88rem);
}
h1, h2, h3 { margin: 0; text-wrap: balance; }
h1 {
  margin-top: .9rem;
  font-family: var(--display);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.018em;
  font-size: clamp(3.2rem, 9vw, 8.9rem);
  max-width: 10ch;
}
.hero-subhead {
  margin: 1.25rem 0 0;
  max-width: 49rem;
  font-size: clamp(1.06rem, 1.7vw, 1.45rem);
  line-height: 1.58;
  color: var(--ink-soft);
  font-weight: 700;
}
.hero-actions, .visit-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 1.1rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 6px 6px 0 rgba(20,32,24,.12);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 9px 9px 0 rgba(20,32,24,.18); }
.btn.primary { background: var(--cedar); color: var(--tahini); border-color: var(--cedar-dark); }
.btn.secondary { background: var(--olive); color: #11170f; border-color: #74591f; }
.btn.ghost { background: rgba(255,255,255,.58); }
.hero-card {
  align-self: end;
  background: rgba(20,32,24,.92);
  color: var(--pita);
  padding: clamp(1rem, 2vw, 1.4rem);
  border-radius: 1.8rem 1.8rem .35rem 1.8rem;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}
.hero-card dl { margin: 1rem 0 0; display: grid; gap: .75rem; }
.hero-card div { display: grid; grid-template-columns: 7rem 1fr; gap: .75rem; border-top: 1px dashed rgba(255,255,255,.22); padding-top: .75rem; }
.hero-card dt { font-family: var(--mono); color: #f1cd75; text-transform: uppercase; font-size: .8rem; }
.hero-card dd { margin: 0; font-weight: 900; }
.status-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--cedar-dark);
  color: var(--tahini);
}
.status-strip a {
  min-height: 5.5rem;
  display: grid;
  align-content: center;
  gap: .35rem;
  padding: 1rem;
  border-right: 1px solid rgba(255,255,255,.15);
  font-weight: 900;
}
.status-strip span { font-family: var(--mono); color: #f1cd75; font-size: .8rem; }
.status-strip a:hover { background: var(--cedar); }
.problem, .menu-board, .oven-story, .agent-preview, .visit {
  padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 5vw, 4.5rem);
}
.problem {
  display: grid;
  grid-template-columns: .62fr 1fr;
  gap: 2rem;
  background: var(--paper);
  background-image: url('assets/zaatar-parchment-texture.jpg');
  background-size: 520px;
  background-blend-mode: multiply;
}
h2 { font-family: var(--display); font-size: clamp(2.2rem, 5.5vw, 5rem); line-height: .98; letter-spacing: -.045em; margin-top: .55rem; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.problem-grid article, .menu-ticket, .agent-card, .texture-panel, .spot-card, .visit {
  border: 2px solid var(--ink);
  background: rgba(255,249,235,.86);
  box-shadow: 8px 8px 0 rgba(20,32,24,.12);
}
.problem-grid article { padding: 1.2rem; min-height: 15rem; display: flex; flex-direction: column; gap: .75rem; }
.problem-grid h3, .menu-ticket h3 { font-family: var(--display); font-size: clamp(1.45rem, 2.4vw, 2.05rem); line-height: 1; }
p { line-height: 1.6; }
.stamp {
  align-self: flex-start;
  transform: rotate(-3deg);
  border: 2px solid var(--sumac);
  color: var(--sumac);
  padding: .25rem .5rem;
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 700;
}
.stamp.warn { border-color: #7a2c1e; color: #7a2c1e; }
.stamp.good { border-color: var(--cedar); color: var(--cedar); }
.menu-board { background: #102118; color: var(--pita); }
.section-heading { max-width: 64rem; }
.section-heading p { color: rgba(244,234,214,.82); max-width: 56rem; font-size: 1.1rem; }
.menu-board .eyebrow { color: #f1cd75; }
.menu-layout { display: grid; grid-template-columns: minmax(18rem, .42fr) 1fr; gap: 1.25rem; align-items: start; margin-top: 2rem; }
.spot-card { overflow: hidden; background: var(--paper); color: var(--ink); }
.spot-card img { width: 100%; height: auto; object-fit: cover; }
.spot-card figcaption { margin: 0; padding: .8rem 1rem; font-family: var(--mono); font-size: .78rem; color: var(--ink-soft); border-top: 2px solid var(--ink); }
.ticket-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.menu-ticket { color: var(--ink); padding: 1rem; position: relative; min-height: 14rem; }
.menu-ticket::before { content: ''; position: absolute; inset: .45rem; border: 1px dashed rgba(20,32,24,.24); pointer-events: none; }
.menu-ticket span { font-family: var(--mono); color: var(--cedar); text-transform: uppercase; letter-spacing: .09em; font-size: .72rem; }
.menu-ticket p { color: var(--ink-soft); font-weight: 700; }
.menu-ticket strong { position: absolute; right: 1rem; bottom: .8rem; font-family: var(--mono); color: var(--sumac); font-size: 1.2rem; }
.oven-story { background: var(--pita); display: grid; grid-template-columns: minmax(0, 1fr) minmax(17rem, .36fr); gap: 1.25rem; align-items: stretch; }
.texture-panel { padding: clamp(1.3rem, 4vw, 2.5rem); background-image: linear-gradient(rgba(255,249,235,.82), rgba(255,249,235,.82)), url('assets/zaatar-parchment-texture.jpg'); background-size: cover; }
.proof-list { display: grid; gap: .6rem; padding: 0; margin: 1.5rem 0 0; list-style: none; }
.proof-list li { padding: .8rem 1rem; border-left: 5px solid var(--cedar); background: rgba(255,255,255,.48); font-weight: 900; }
.agent-preview { background: #15251b; color: var(--pita); display: grid; grid-template-columns: 1fr .82fr; gap: 1.25rem; align-items: center; }
.agent-preview .eyebrow { color: #f1cd75; }
.agent-preview p { color: rgba(244,234,214,.84); font-size: 1.12rem; }
.agent-card { color: var(--ink); padding: 1.4rem; background: var(--paper); transform: rotate(-1deg); }
.agent-card ul { display: grid; gap: .6rem; margin: 1rem 0; padding: 0; list-style: none; }
.agent-card li { padding: .8rem 1rem; border: 1px solid var(--line); background: var(--tahini); font-family: var(--mono); font-size: .92rem; }
.visit { margin: clamp(2rem, 4vw, 3rem) clamp(1rem, 5vw, 4.5rem); background: var(--paper); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 1.5rem; }
.visit-actions { justify-content: flex-end; }
.site-footer { padding: 2rem clamp(1rem, 5vw, 4.5rem) 6rem; background: #08140f; color: rgba(244,234,214,.82); display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; justify-content: space-between; }
.site-footer p { max-width: 54rem; margin: 0; }
.site-footer a { font-family: var(--mono); text-decoration: underline; }
.mobile-sticky { display: none; }
.section-reveal { opacity: 1; transform: none; }
.section-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
@media (max-width: 980px) {
  body { background: var(--paper); }
  .site-header { align-items: flex-start; }
  .site-header nav a:not(.nav-cta) { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; background: linear-gradient(180deg, rgba(251,243,227,.97), rgba(251,243,227,.79)), url('assets/cedar-hero.jpg') center right / cover no-repeat; padding-bottom: 2rem; }
  h1 { max-width: 9.6ch; font-size: clamp(3.15rem, 16vw, 5.5rem); }
  .hero-subhead { font-size: 1.05rem; }
  .hero-actions .btn { width: 100%; }
  .hero-card { transform: none; border-radius: 1.4rem; }
  .status-strip, .problem, .menu-layout, .oven-story, .agent-preview, .visit { grid-template-columns: 1fr; }
  .status-strip { grid-template-columns: repeat(2, 1fr); }
  .problem-grid, .ticket-list { grid-template-columns: 1fr; }
  .visit-actions { justify-content: stretch; }
  .visit-actions .btn { width: 100%; }
  .mobile-sticky {
    position: fixed;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    bottom: 0;
    left: 0;
    right: 0;
    background: #07120d;
    color: var(--pita);
    border-top: 2px solid rgba(244,234,214,.22);
  }
  .mobile-sticky a { min-height: 58px; display: grid; place-items: center; font-weight: 900; font-size: .9rem; border-right: 1px solid rgba(244,234,214,.18); }
  .mobile-sticky a:first-child { background: var(--cedar); }
  .site-footer { padding-bottom: 5.4rem; }
}
@media (max-width: 520px) {
  .preview-banner { display: block; text-align: left; font-size: .58rem; line-height: 1.25; padding: .55rem .8rem; }
  .preview-banner strong { margin-right: .45rem; }
  .site-header { padding: .62rem .9rem; }
  .brand-mark { width: 2.45rem; height: 2.45rem; }
  .brand b { font-size: .98rem; }
  .brand small { font-size: .56rem; }
  .site-header nav a { padding: .62rem .72rem; }
  .hero, .problem, .menu-board, .oven-story, .agent-preview { padding-left: 1rem; padding-right: 1rem; }
  .hero { padding-top: 1.45rem; }
  h1 { font-size: clamp(2.35rem, 10.5vw, 3.35rem); max-width: 11.5ch; letter-spacing: -.012em; line-height: .98; }
  .hero-subhead { font-size: .95rem; line-height: 1.45; }
  h2 { font-size: clamp(2.35rem, 12vw, 3.5rem); }
  .status-strip { grid-template-columns: 1fr; }
  .status-strip a { min-height: 4.3rem; }
  .hero-card div { grid-template-columns: 1fr; gap: .25rem; }
}
