/* KJ Cafes — shared styles.
   Palette and type taken from kekes.com's own computed styles so the
   franchisee site reads as family with the brand: orange #F05B23,
   cream #FAF9F3, butter #FFEFD1, tan #F3DFB5, olive #61803A, ink #1C1818.
   Their licensed faces are Gazpacho Bold (display) and Chesna Grotesk
   (body); Fraunces and Poppins are the closest freely-loadable stand-ins,
   and kekes.com loads Poppins itself. */
:root{
  --orange:#F05B23; --orange-deep:#d44a17;
  --cream:#FAF9F3; --butter:#FFEFD1; --tan:#F3DFB5;
  --olive:#61803A; --ink:#1C1818; --muted:#6b625d;
  --line:rgba(28,24,24,.10);
}
*{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{margin:0;background:var(--cream);color:var(--ink);
     font-family:Poppins,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
     font-weight:400;line-height:1.65;font-size:16.5px}
h1,h2,h3{font-family:Fraunces,Georgia,"Times New Roman",serif;font-weight:700;line-height:1.1;
         letter-spacing:-.015em;margin:0}
img{max-width:100%;display:block}
.wrap{max-width:1040px;margin:0 auto;padding:0 26px}

/* header */
.bar{display:flex;align-items:center;gap:15px;padding:20px 0}
.bar img{width:54px;height:54px;flex:0 0 auto}
.brandname{font-family:Fraunces,Georgia,serif;font-weight:700;font-size:1.24rem;line-height:1.15}
.brandname small{display:block;font-family:Poppins,sans-serif;font-weight:400;font-size:.7rem;
                 text-transform:uppercase;letter-spacing:.15em;color:var(--muted);margin-top:4px}
.bar .spacer{margin-left:auto}
.bar a.nav{font-size:.92rem;font-weight:500;text-decoration:none;color:var(--ink);opacity:.75}
.bar a.nav:hover{opacity:1}
header.solid{background:var(--cream)}
header.onphoto{position:absolute;top:0;left:0;right:0;z-index:3}
header.onphoto .brandname,header.onphoto a.nav{color:#fff}
header.onphoto .brandname small{color:rgba(255,255,255,.72)}

/* hero */
.hero{position:relative;min-height:min(78vh,640px);display:flex;align-items:center;
      justify-content:center;text-align:center;overflow:hidden;background:var(--ink)}
.hero .photo{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
            object-position:35% 60%;opacity:.55}
.hero .veil{position:absolute;inset:0;
            background:linear-gradient(180deg,rgba(28,24,24,.66) 0%,rgba(28,24,24,.35) 45%,rgba(28,24,24,.78) 100%)}
.hero .inner{position:relative;padding:120px 26px 96px;max-width:760px}
.eyebrow{font-size:.74rem;font-weight:600;text-transform:uppercase;letter-spacing:.22em;
         color:var(--tan);margin:0 0 18px}
.hero h1{font-size:clamp(2.3rem,6vw,4rem);color:#fff;margin:0 0 20px}
.hero p{font-size:clamp(1.02rem,1.7vw,1.2rem);color:rgba(255,255,255,.9);font-weight:300;
        max-width:50ch;margin:0 auto}
.btn{display:inline-block;margin-top:30px;background:var(--orange);color:#fff;text-decoration:none;
     font-weight:600;font-size:1rem;padding:15px 34px;border-radius:999px;
     box-shadow:0 12px 26px -14px rgba(0,0,0,.9);transition:transform .15s,background .15s}
.btn:hover{background:var(--orange-deep);transform:translateY(-1px)}
.btn.ghost{background:transparent;border:1.5px solid rgba(255,255,255,.6);box-shadow:none;margin-left:10px}
.btn.ghost:hover{background:rgba(255,255,255,.12)}

/* keke's signature curved divider — the shape is theirs, redrawn from the
   same path their site uses. `.wave.over` lifts it onto the section above so
   the curve cuts INTO the hero photo; without the negative margin it renders
   cream-on-cream and disappears. */
.wave{display:block;position:relative;width:100%;height:90px;margin:0;line-height:0}
.wave.over{margin-top:-90px;z-index:2}
.wave svg{display:block;width:100%;height:100%}

/* sections */
.band-cream{background:var(--cream);padding:8px 0 56px}
.band-butter{background:var(--butter);padding:8px 0 56px}
.section-head{text-align:center;margin:36px 0 30px}
.section-head h2{font-size:clamp(1.7rem,3.2vw,2.3rem)}
.section-head p{color:#544b46;font-weight:300;max-width:56ch;margin:14px auto 0}
.rule{width:54px;height:3px;background:var(--orange);border-radius:2px;margin:16px auto 0}
.grid{display:grid;gap:22px;grid-template-columns:1fr}
@media(min-width:760px){.grid.two{grid-template-columns:1fr 1fr}}
.card{background:#fff;border:1px solid var(--line);border-radius:22px;overflow:hidden;
      display:flex;flex-direction:column}
.card .shot{aspect-ratio:16/10;object-fit:cover;width:100%}
.card .body{padding:26px 28px 28px}
.card .label{font-size:.7rem;font-weight:600;text-transform:uppercase;letter-spacing:.18em;
             color:var(--olive);margin:0 0 9px}
.card h3{font-size:1.3rem;margin:0 0 11px}
.card p{margin:0 0 12px;color:#4a423e;font-weight:300}
.card p:last-child{margin-bottom:0}
.mail{color:var(--orange-deep);font-weight:500;text-decoration:none;border-bottom:1px solid rgba(212,74,23,.35)}
.mail:hover{border-bottom-color:var(--orange-deep)}

/* ---- interior pages ----
   Same furniture as the homepage: a warm banner with the brand's curve
   under it, then the text on white. The measure is capped at ~68ch — a
   privacy policy set 1000px wide is unreadable, which is what made these
   pages look unfinished next to the homepage. */
.pagehero{background:var(--butter);padding:60px 26px 74px;text-align:center;position:relative;overflow:hidden}
.pagehero::after{content:"";position:absolute;width:300px;height:300px;right:-110px;top:-120px;
                 border-radius:50%;background:var(--tan);opacity:.5}
.pagehero > *{position:relative}
.pagehero h1{font-size:clamp(2rem,4.4vw,2.9rem);margin:0 auto 12px;max-width:18ch}
.pagehero .updated{color:#7a6f68;font-size:.88rem;margin:0;font-weight:300}
.pagehero .rule{margin-top:18px}

.page{background:#fff;border:1px solid var(--line);border-radius:22px;
      padding:46px clamp(26px,5vw,58px);margin:-46px auto 52px;max-width:800px;position:relative;z-index:2;
      box-shadow:0 22px 50px -34px rgba(28,24,24,.45)}
.page > *:first-child{margin-top:0}
.page h2{font-family:Fraunces,Georgia,serif;font-size:1.28rem;margin:38px 0 12px;
         padding-top:26px;border-top:1px solid var(--line)}
.page h2:first-of-type{border-top:none;padding-top:0;margin-top:6px}
.page p,.page li{color:#4a423e;font-weight:300;max-width:68ch;font-size:1.02rem}
.page ul{padding-left:22px;margin:0 0 14px}
.page li{margin-bottom:9px}
.page li::marker{color:var(--orange)}
.page strong{font-weight:600;color:var(--ink)}
.page a{color:var(--orange-deep);text-decoration:none;border-bottom:1px solid rgba(212,74,23,.35)}
.page a:hover{border-bottom-color:var(--orange-deep)}
.page .backlink{display:inline-block;margin-top:34px;font-size:.92rem;font-weight:500;border-bottom:none}
.page .backlink:hover{border-bottom:none;text-decoration:underline}

/* footer */
footer{background:var(--ink);color:#cdc4bd;padding:44px 0 52px;font-size:.86rem;font-weight:300}
footer .cols{display:flex;flex-wrap:wrap;gap:18px 34px;align-items:center;justify-content:center;text-align:center}
footer a{color:#e5ddd6;text-decoration:none;border-bottom:1px solid rgba(229,221,214,.28)}
footer a:hover{border-bottom-color:#e5ddd6}
footer .legal{margin-top:22px;text-align:center;color:#8d8279;font-size:.8rem;line-height:1.7}
