/* ==========================================================================
   Epic Curiosity — public site
   --------------------------------------------------------------------------
   Converted from the Claude Design component. Same palette, same type, same
   layout — but plain HTML and CSS with no runtime, so it can be served by
   scripts/inquiries.py (or any static host) with nothing to install.

   The palette lives in /shell.css (--ec-*), with the header and footer every
   Epic Curiosity page shares -- the site, the brand page, the Worker's pages
   and the cockpit. Load shell.css first. The names below are kept so nothing
   further down had to change; they only point at the shell's tokens.
   ========================================================================== */

:root{
  --blue:var(--ec-navy); --blue-dark:var(--ec-navy-dark); --gold:var(--ec-gold);
  --body:var(--ec-body); --muted:var(--ec-muted); --slate:var(--ec-slate); --ink:var(--ec-ink);
  --band:var(--ec-band); --paper:var(--ec-paper); --sans:var(--ec-sans); --sc:var(--ec-sc);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:var(--paper);font-family:var(--sans);color:var(--body);
  -webkit-font-smoothing:antialiased}

a{color:var(--blue);text-decoration:none}
a:hover{color:var(--blue-dark)}

.wrap{max-width:1000px;margin:0 auto;padding:0 24px}
.rule{width:48px;height:2px;background:var(--gold);margin-bottom:48px}
.rule.tight{margin-bottom:24px}
.eyebrow{font-size:13px;letter-spacing:.22em;text-transform:uppercase;color:var(--body)}

/* The header and the footer: /shell.css (.ec-head, .ec-foot). */

/* ---------- buttons ---------- */
.btn{display:inline-block;background:var(--blue);color:var(--paper);font-family:var(--sc);
  font-weight:700;letter-spacing:.1em;border:none;border-radius:0;cursor:pointer;
  font-size:17px;padding:14px 40px;transition:box-shadow .15s}
.btn:hover{color:var(--paper);box-shadow:inset 0 -3px 0 var(--gold)}
.btn.sm{font-size:15px;padding:8px 24px}
.btn:focus-visible{outline:2px solid var(--gold);outline-offset:2px}
.textlink{font-size:15px;letter-spacing:.04em;border-bottom:1px solid var(--muted);padding-bottom:2px}

/* ---------- hero ---------- */
/* Top and bottom only: a 0 here once wiped out .wrap's side gutter, so the hero
   sat 24px left of everything else and touched the screen edge on phones. */
.hero{padding-top:96px;padding-bottom:80px}
.hero .eyebrow{margin-bottom:24px}
h1{font-family:var(--sc);font-weight:700;font-size:clamp(30px,5vw,40px);line-height:1.15;
  color:var(--blue);margin:0 0 16px;max-width:640px}
.lede{font-size:17px;line-height:1.5;margin:0 0 40px;max-width:520px}
.cta-row{display:flex;align-items:center;gap:24px;flex-wrap:wrap}

/* ---------- sections ---------- */
section{border-top:1px solid var(--muted)}
section .wrap{padding-top:64px;padding-bottom:64px}
h2{font-family:var(--sc);font-weight:700;font-size:28px;color:var(--blue);margin:0 0 8px}
h3{font-family:var(--sc);font-weight:700;font-size:20px;color:var(--blue);margin:0}

.services{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:32px}
.service{border-top:2px solid var(--blue);padding-top:24px;display:flex;flex-direction:column;gap:16px}
.service p{font-size:17px;line-height:1.5;margin:0}
.service a{font-size:15px;letter-spacing:.04em;margin-top:auto}

/* ---------- menus ---------- */
#menus{background:var(--band);border-bottom:1px solid var(--muted)}
.menu-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:48px;align-items:start}
.dishes{display:flex;flex-direction:column}
.dish{padding:16px;border-bottom:1px solid var(--muted);border-left:2px solid transparent;
  background:transparent;text-align:left;font-family:inherit;cursor:pointer;width:100%;
  transition:background .4s,border-color .4s}
.dish:last-child{border-bottom:none}
.dish .dn{font-weight:500;font-size:17px;color:var(--slate);transition:color .4s}
.dish .dd{font-size:15px;line-height:1.5;color:var(--muted);transition:color .4s}
.dish[aria-selected="true"]{border-left-color:var(--blue);background:var(--paper)}
.dish[aria-selected="true"] .dn{color:var(--blue)}
.dish[aria-selected="true"] .dd{color:var(--body)}
.dish:focus-visible{outline:2px solid var(--gold);outline-offset:-2px}
.menu-note{font-size:15px;line-height:1.5;margin:24px 0 0}

.frame{border:1px solid var(--muted);padding:8px;background:var(--paper)}
.stage{position:relative;width:100%;height:420px}
.shot{position:absolute;inset:0;opacity:0;transition:opacity .6s;pointer-events:none;
  display:flex;align-items:center;justify-content:center;text-align:center;padding:24px;
  background:var(--band);border:1px dashed var(--muted)}
.shot.on{opacity:1;pointer-events:auto}
.shot span{font-size:13px;letter-spacing:.06em;color:var(--muted)}
.caption{font-size:13px;color:var(--body);letter-spacing:.06em;margin-top:8px}

/* ---------- inquiry form ---------- */
#enquire .wrap{padding-bottom:80px}
form.inquiry{max-width:640px;display:flex;flex-direction:column;gap:24px}
.pair{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:24px}
label.field{display:flex;flex-direction:column;gap:8px}
label.field.narrow{max-width:240px}
label.field > span{font-family:var(--sc);font-weight:700;font-size:15px;letter-spacing:.06em;color:var(--slate)}
input,select,textarea{border:1px solid var(--muted);border-radius:0;background:var(--paper);
  padding:12px 16px;font-size:17px;font-family:var(--sans);color:var(--ink);outline:none;width:100%}
textarea{line-height:1.5;resize:vertical}
input:focus,select:focus,textarea:focus{border-color:var(--blue)}
input::placeholder,textarea::placeholder{color:var(--muted);font-family:var(--sans)}
.submit-row{display:flex;align-items:center;gap:24px;flex-wrap:wrap}
.submit-row span{font-size:13px}

/*  HONEYPOT. A field no human ever sees, so a human never fills it. Bots fill
    every input they find. If it comes back non-empty the server stores the
    submission but flags it spam. Hidden with position, not display:none —
    some bots skip display:none fields, which would defeat the trap.          */
.hp{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden}

@media (max-width:600px){
  .hero{padding-top:64px;padding-bottom:56px}
  .stage{height:300px}
}

/*  Turnstile sits between the message box and the send button. Reserve its
    height so the button does not jump when the widget finishes loading.      */
.cf-turnstile{margin:4px 0 0;min-height:65px}
