/*
 * Ported VERBATIM from the design prototype — site chrome / footer (.site-foot*, .sf-*)
 *
 * Do not restructure or reformat: this is kept byte-identical to the design
 * so it can be diffed against it. Overrides belong in a separate file.
 */

/* Shared site chrome + sub-page styles */

/* ---- Footer ---- */
.site-foot { background: var(--ink); color: rgba(255,255,255,.72); }
.site-foot-inner { max-width: 1320px; margin: 0 auto; padding: 64px 28px 44px; display: grid; grid-template-columns: 1.1fr 2fr; gap: 60px; }
@media (max-width: 900px) { .site-foot-inner { grid-template-columns: 1fr; gap: 40px; } }
.sf-brand img { height: 30px; margin-bottom: 16px; }
.sf-brand p { font-size: 14.5px; line-height: 1.6; max-width: 320px; margin: 0 0 22px; }
.sf-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 700px) { .sf-cols { grid-template-columns: repeat(2, 1fr); } }
.sf-col { display: flex; flex-direction: column; gap: 11px; }
.sf-col h3 { font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: white; margin: 0 0 4px; }
.sf-col a { font-size: 14.5px; color: rgba(255,255,255,.68); }
.sf-col a:hover { color: white; }
.site-foot-bar { border-top: 1px solid rgba(255,255,255,.12); }
.site-foot-bar > * { }
.site-foot-bar { max-width: none; }
.site-foot-bar { display: flex; }
.site-foot-bar { padding: 0; }
.site-foot-bar { align-items: center; }
.site-foot-bar span, .sf-bar-links { font-size: 13px; }
.site-foot-bar { justify-content: space-between; flex-wrap: wrap; gap: 14px; padding: 20px 28px; max-width: 1320px; margin: 0 auto; }
.sf-bar-links { display: flex; gap: 20px; }
.sf-bar-links a { color: rgba(255,255,255,.68); }
.sf-bar-links a:hover { color: white; }

/* ---- About ---- */
.lp-about { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
@media (max-width: 860px) { .lp-about { grid-template-columns: 1fr; gap: 30px; } }
.lp-about-copy h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(28px, 3.4vw, 40px); letter-spacing: -.02em; line-height: 1.08; margin: 0 0 16px; }
.lp-about-copy p { color: var(--mute); font-size: 16px; line-height: 1.65; margin: 0 0 14px; max-width: 480px; }
.lp-about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.lp-about-stat { background: white; padding: 30px 26px; }
.lp-about-stat .n { font-family: var(--font-display); font-weight: 600; font-size: clamp(28px, 3.2vw, 38px); letter-spacing: -.02em; color: var(--nb-3); }
.lp-about-stat .l { font-size: 13.5px; color: var(--mute); margin-top: 4px; line-height: 1.45; }

/* ---- Service areas ---- */
.lp-areas { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 980px) { .lp-areas { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .lp-areas { grid-template-columns: 1fr; } }
.lp-area { background: white; border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px; transition: .18s; }
.lp-area:hover { border-color: var(--nb); transform: translateY(-3px); box-shadow: var(--shadow); }
.lp-area h3 { font-family: var(--font-display); font-weight: 600; font-size: 18px; margin: 0 0 4px; }
.lp-area .c { font-size: 13px; color: var(--mute); }
.lp-area .meta { display: flex; align-items: center; gap: 7px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--ink-2); }
.lp-area .pill { display: inline-flex; align-items: center; gap: 5px; padding: 3px 9px; border-radius: 999px; font-size: 11px; font-weight: 700; }
.lp-area .pill.live { background: var(--nb-soft); color: var(--nb-3); }
.lp-area .pill.soon { background: #FFF1DC; color: #A55C12; }

/* ---- News / blog ---- */
.lp-news { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .lp-news { grid-template-columns: 1fr; } }
.lp-post { background: white; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: .18s; }
.lp-post:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.lp-post .img { height: 180px; position: relative; }
.lp-post .tag { position: absolute; z-index: 2; top: 12px; left: 12px; background: white; color: var(--ink); font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; }
.lp-post .body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.lp-post .date { font-size: 12.5px; color: var(--mute); }
.lp-post h3 { font-family: var(--font-display); font-weight: 600; font-size: 20px; letter-spacing: -.01em; line-height: 1.2; margin: 8px 0 8px; }
.lp-post p { font-size: 14.5px; color: var(--mute); line-height: 1.55; margin: 0 0 18px; flex: 1; }
.lp-post .more { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--nb-3); }

/* ---- Portals strip ---- */
.lp-portals { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 860px) { .lp-portals { grid-template-columns: 1fr; } }
.lp-portal { display: flex; align-items: center; gap: 16px; background: white; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px 24px; transition: .18s; }
.lp-portal:hover { border-color: var(--nb); transform: translateY(-3px); box-shadow: var(--shadow); }
.lp-portal .ic { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: var(--nb-soft); color: var(--nb-3); display: grid; place-items: center; }
.lp-portal .tx { flex: 1; min-width: 0; }
.lp-portal .tx strong { display: block; font-size: 15.5px; }
.lp-portal .tx span { font-size: 13px; color: var(--mute); }
.lp-portal .go { color: var(--mute); }

/* ---- Forms ---- */
.form-card { background: white; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } .form-card { padding: 24px; } }
.form-grid .span2 { grid-column: 1 / -1; }
.form-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 22px; margin: 0 0 4px; }
.form-card .fsub { color: var(--mute); font-size: 14.5px; margin: 0 0 22px; }
.form-note { font-size: 12.5px; color: var(--mute); margin-top: 14px; line-height: 1.5; }
.textarea { min-height: 120px; resize: vertical; font-family: inherit; }
.form-ok { display: flex; align-items: center; gap: 14px; background: var(--nb-soft); border: 1px solid rgba(0,167,93,.28); border-radius: var(--r-md); padding: 20px 22px; }
.form-ok .ic { width: 38px; height: 38px; border-radius: 999px; background: var(--nb); color: white; display: grid; place-items: center; flex-shrink: 0; }
.form-ok strong { display: block; font-size: 15.5px; }
.form-ok span { font-size: 13.5px; color: var(--ink-2); }

/* ---- Responsive: tablet ---- */
@media (max-width: 760px) {
  .section, .lp-hero.full .lp-hero-inner, .page-hero-inner, .page-body { padding-left: 18px; padding-right: 18px; }
  .section { padding-bottom: 60px; }
  .lp-nav-inner { padding: 12px 18px; gap: 14px; }
  /* Scaled with the desktop bump to 38px, keeping the same ratio it had at 27px. */
  .lp-nav-logo img { height: 34px; }
  .lp-hero.full .lp-hero-inner { padding-top: 52px; padding-bottom: 52px; }
  .lp-trust { padding: 26px 18px 30px; gap: 18px 26px; }
  .lp-trust .t-item .n { font-size: 22px; }
  .lp-trust .t-item .l { font-size: 12.5px; }
  .app-cta { padding: 34px 24px; margin-top: 0; }
  .app-cta h2 { font-size: 30px; }
  /* Matches the panel's narrower padding, so the picture still reaches its edges. */
  .app-cta .visual { margin: 8px -24px -34px; }
  .lp-pcard { padding: 32px 24px; min-height: 0; }
  .lp-pcard .p-stats { gap: 22px; }
  .lp-final.full .lp-final-inner { padding: 56px 20px; }
  .lp-final-logo { height: 44px; margin-bottom: 22px; }
  .site-foot-inner { padding: 46px 18px 34px; }
  .site-foot-bar { padding: 18px; }
  .page-hero-inner { padding-top: 54px; padding-bottom: 64px; }
  .page-body { margin-top: -34px; }
  .form-card, .side-card { padding: 22px; }
}

/* ---- Responsive: phone ---- */
@media (max-width: 480px) {
  .lp-nav-actions .cbtn { padding: 9px 15px; font-size: 13.5px; }
  .lp-hero h1 { font-size: 38px; }
  .lp-hero .lead { font-size: 15.5px; }
  .lp-badges { gap: 9px; }
  .lp-badge { padding: 8px 14px; gap: 8px; }
  .lp-badge b { font-size: 15px; }
  .lp-badge svg { width: 20px; height: 20px; }
  .lp-phone { width: 248px; height: 510px; border-radius: 38px; }
  .lp-hero-phone { min-height: 0; }
  .lp-mphone { width: 224px; height: 360px; }
  .lp-show-stage { min-height: 380px; }
  .lp-show-step { padding: 18px 16px; gap: 13px; }
  .lp-show-num { width: 40px; height: 40px; font-size: 14px; }
  .cuisines { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cuisine-card .label { padding: 11px; }
  .cuisine-card h3 { font-size: 14px; }
  .lp-about-stats { grid-template-columns: 1fr; }
  .lp-about-stat { padding: 22px 20px; }
  .lp-post .img { height: 156px; }
  .lp-faq-q { padding: 17px 18px; font-size: 15px; gap: 12px; }
  .lp-faq-a p { padding: 0 18px 18px; font-size: 14.5px; }
  .lp-portal { padding: 18px; gap: 13px; }
  .sf-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .site-foot-bar { flex-direction: column; align-items: flex-start; }
  .sf-bar-links { flex-wrap: wrap; gap: 14px; }
  .page-hero h1 { font-size: 32px; }
  .page-hero p { font-size: 15.5px; }
}

/* ---- Sub-page hero ---- */
.page-hero { position: relative; overflow: hidden; background: linear-gradient(135deg, #0F1410 0%, #16281D 62%, #0E2616 100%); color: white; }
.page-hero-mesh { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 82% 20%, rgba(255,179,71,.28), transparent 40%), radial-gradient(circle at 14% 84%, rgba(0,167,93,.4), transparent 45%); }
.page-hero-inner { position: relative; max-width: 1320px; margin: 0 auto; padding: 76px 28px 84px; }
.page-eyebrow { display: inline-block; padding: 6px 14px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; font-size: 12.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 20px; }
.page-hero h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(36px, 5vw, 60px); letter-spacing: -.03em; line-height: 1.03; margin: 0 0 16px; max-width: 760px; }
.page-hero p { font-size: 17.5px; line-height: 1.55; color: rgba(255,255,255,.76); max-width: 540px; margin: 0; }
.page-body { max-width: 1320px; margin: -44px auto 0; padding: 0 28px 70px; position: relative; z-index: 2; }
.page-split { display: grid; grid-template-columns: 1.25fr .75fr; gap: 24px; align-items: start; }
@media (max-width: 900px) { .page-split { grid-template-columns: 1fr; } }
/* Added 2026-07-31: the contact page now hides its side column, and one column
   of a 1.25fr/.75fr grid leaves the form pinned left. 775px is the width the
   form already had in the two-column layout, so centring it changes its
   position but not its proportions. */
.page-split.is-single { grid-template-columns: minmax(0, 775px); justify-content: center; }
.side-card { background: white; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; }
.side-card + .side-card { margin-top: 16px; }
.side-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 18px; margin: 0 0 14px; }
.side-list { display: flex; flex-direction: column; gap: 13px; }
.side-list .li { display: flex; gap: 11px; font-size: 14px; line-height: 1.45; color: var(--ink-2); }
.side-list .li .ck { flex-shrink: 0; width: 22px; height: 22px; border-radius: 999px; background: var(--nb-soft); color: var(--nb-3); display: grid; place-items: center; }
.contact-ways { display: flex; flex-direction: column; gap: 4px; }
.contact-way { display: flex; align-items: center; gap: 13px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.contact-way:last-child { border-bottom: none; }
.contact-way .ic { width: 38px; height: 38px; border-radius: 10px; background: var(--nb-soft); color: var(--nb-3); display: grid; place-items: center; flex-shrink: 0; }
.contact-way strong { display: block; font-size: 14.5px; }
.contact-way span { font-size: 13px; color: var(--mute); }
