/* ------------------------------------------------------------------
   Freshasia Foods - site stylesheet
   FRESHASIA FOODS LTD (05287595), Erith, Kent
   Full-bleed banded layout: masthead, nav, section bands and footer run edge
   to edge; content sits in a 1120px column inside them. No frameworks, no
   external assets.

   Palette
     crimson       #9b1c17   headings, rules, nav bar, links
     crimson dark  #6e100c   borders, hovers, footer base
     crimson pale  #f4e3e0   note panels, tags
     bottle green  #1e6e46   accent: kickers, tags, secondary panels
     green dark    #14432c   dark panel ground
     paper         #f4efe4   page ground
     paper deep    #ece3d2   table heads, banded rows
     surround      #e3d9c8   behind the column
   ------------------------------------------------------------------ */

* { margin: 0; padding: 0; }
*, *::before, *::after { box-sizing: border-box; }

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  /* Deep red so a short page shows footer, not a stripe of bare paper. */
  background: #6e100c;
}

body {
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: #33302b;
  background: #f4efe4;
}

img { max-width: 100%; height: auto; display: block; border: 0; }

/* ---------------- Bands span the viewport; content sits in a column ----------
   Nothing is boxed in. The masthead, the nav bar, every section band and the
   footer run the full width of the window. .fa-wrap is the measured column
   that keeps the reading matter to 1120px inside them.
   --------------------------------------------------------------------------- */
.fa-mast, main, .fa-footer { width: 100%; }
main { background: #f4efe4; }

.fa-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 26px;
}

/* ---------------- Type ---------------- */
h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #23201d;
  line-height: 1.25;
  font-weight: bold;
}
h1 { font-size: 24px; margin: 0 0 8px; }
h2 { font-size: 18px; margin: 0 0 9px; color: #9b1c17; }
h3 { font-size: 15px; margin: 0 0 5px; }
p { margin: 0 0 10px; }
p:last-child { margin-bottom: 0; }

a { color: #9b1c17; }
a:hover { color: #6e100c; }

:focus-visible {
  outline: 2px solid #9b1c17;
  outline-offset: 1px;
}
.fa-ink :focus-visible,
.fa-footer :focus-visible,
.fa-menu :focus-visible { outline-color: #f7e6a0; }

.fa-skip {
  position: absolute; left: -9999px; top: 0;
  background: #23201d; color: #f4efe4; padding: 8px 14px; z-index: 200;
  font-size: 13px; font-weight: bold;
}
.fa-skip:focus { left: 6px; top: 6px; }

/* ---------------- Masthead ---------------- */
.fa-mast {
  background: #fffdf8;
  border-top: 5px solid #9b1c17;
}
.fa-mast-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px 26px 20px;
  display: table;
  width: 100%;
}
.fa-brand {
  display: table-cell;
  vertical-align: middle;
  text-decoration: none;
  white-space: nowrap;
}
.fa-brand img, .fa-brand svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.fa-brand-text { display: inline-block; vertical-align: middle; white-space: normal; }
.fa-brand-name {
  display: block;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 28px;
  font-weight: bold;
  color: #9b1c17;
  line-height: 1.1;
  letter-spacing: 0;
}
.fa-brand-sub {
  display: block;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6f695f;
  margin-top: 3px;
}

.fa-mast-note {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
  font-size: 12px;
  line-height: 1.5;
  color: #4a453d;
  padding-left: 20px;
}
.fa-mast-trade {
  display: inline-block;
  margin: 0 0 4px;
  font-weight: bold;
  color: #1e6e46;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
  border-bottom: 1px dotted #b9ae95;
  padding-bottom: 4px;
}
.fa-mast-tel { margin: 0; }
.fa-mast-tel strong { color: #23201d; }

.fa-navbtn {
  display: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px; font-weight: bold;
  text-transform: uppercase; letter-spacing: .06em;
  color: #f4efe4;
  background: #9b1c17;
  border: 1px solid #6e100c;
  border-radius: 2px;
  padding: 7px 12px;
  cursor: pointer;
}
.fa-navbtn:hover { background: #7a1410; }

/* ---------------- Navigation bar ---------------- */
.fa-menu {
  background: #9b1c17;
  background: linear-gradient(#a8201a, #8a1712);
  border-top: 1px solid #6e100c;
  border-bottom: 3px solid #6e100c;
}
.fa-menu-inner { max-width: 1120px; margin: 0 auto; padding: 0 14px; }
.fa-menu ul { list-style: none; margin: 0; padding: 0; }
.fa-menu li { display: inline-block; }
.fa-menu a {
  display: block;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: bold;
  color: #f4efe4;
  text-decoration: none;
  border-right: 1px solid #7a1410;
}
.fa-menu li:first-child a { border-left: 1px solid #7a1410; }
.fa-menu a:hover { background: #7a1410; color: #f4efe4; }
.fa-menu a[aria-current="page"] {
  background: #f4efe4;
  color: #7a1410;
}

/* ---------------- Bands and sections ---------------- */
/* Bands are full-viewport colour fields. Each one changes ground, so no rule
   is needed between them — the colour change is the division. */
.fa-band { padding: 30px 0 34px; background: #f4efe4; }
.fa-band-white { background: #fffdf8; }
.fa-band-deep { background: #ece3d2; }
.fa-ink { background: #14432c; color: #e3ede7; }
.fa-ink h2, .fa-ink h3, .fa-ink h4 { color: #fffdf8; }
.fa-ink a { color: #ffffff; }
.fa-ink a:hover { color: #cfe6da; }

.fa-band-head { margin-bottom: 14px; }
.fa-band-head h2 { border-bottom: 1px solid #c9bda3; padding-bottom: 6px; }
.fa-ink .fa-band-head h2 { border-bottom-color: #3c705a; }
.fa-band-head p:last-child { margin-bottom: 0; }

/* A fixed measure, not an em value — em would scale with each element's own
   font size and give headings and body text different line lengths. */
.fa-narrow > * { max-width: 790px; }

/* ---------------- Hero / intro ---------------- */
.fa-hero {
  background: #fffdf8;
  padding: 32px 0 34px;
}
.fa-hero-text h1 {
  font-size: 30px;
  max-width: 640px;
  border-bottom: 3px double #c9bda3;
  padding-bottom: 11px;
  margin-bottom: 13px;
}
.fa-lead { font-size: 15px; color: #33302b; max-width: 790px; }
.fa-hero-flag {
  display: inline-block;
  font-size: 11px; font-weight: bold;
  letter-spacing: .08em; text-transform: uppercase;
  border: 1px solid #1e6e46; color: #14432c; background: #e4efe7;
  padding: 4px 8px; margin-top: 12px;
}
.fa-actions { margin-top: 14px; }
.fa-actions .fa-btn { margin: 0 8px 6px 0; }

/* ---------------- Photographs ---------------- */
/* Photographic strips run the full width of the window. Only the caption
   returns to the 1120 column. */
.fa-strip { margin: 0; background: #ece3d2; }
.fa-strip img { width: 100%; height: 230px; object-fit: cover; object-position: center 55%; }
.fa-strip-short img { height: 165px; object-position: center 50%; }
.fa-strip figcaption {
  max-width: 1120px;
  margin: 0 auto;
  font-size: 11px; color: #5c564d; padding: 6px 26px;
  background: transparent;
}

.fa-figure { margin: 0; }
.fa-figure img { border: 1px solid #b9ae95; background: #fffdf8; padding: 3px; }
.fa-figure figcaption { font-size: 11px; color: #5c564d; margin-top: 5px; line-height: 1.45; }
.fa-figure-crop img { height: 190px; object-fit: cover; object-position: center; }

/* ---------------- Kickers and rules ---------------- */
.fa-kicker {
  font-size: 11px; font-weight: bold;
  letter-spacing: .12em; text-transform: uppercase;
  color: #1e6e46;
  margin: 0 0 5px;
}
.fa-ink .fa-kicker { color: #9ecdb4; }

/* ---------------- Buttons ---------------- */
.fa-btn {
  display: inline-block;
  padding: 7px 15px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px; font-weight: bold;
  letter-spacing: .03em;
  text-decoration: none;
  color: #f4efe4;
  background: #9b1c17;
  background: linear-gradient(#b8261f, #8a1712);
  border: 1px solid #6e100c;
  border-radius: 2px;
  cursor: pointer;
  text-align: center;
}
.fa-btn:hover {
  color: #f4efe4;
  background: #7a1410;
  background: linear-gradient(#9b1c17, #6e100c);
}
.fa-btn-ghost {
  color: #6e100c;
  background: #ece3d2;
  background: linear-gradient(#f6efe2, #e0d5be);
  border: 1px solid #a89b80;
}
.fa-btn-ghost:hover {
  color: #6e100c;
  background: #e6dcc7;
  background: linear-gradient(#ece3d2, #d3c6ab);
}
.fa-ink .fa-btn-ghost {
  color: #ffffff;
  background: #1c5b3c;
  background: linear-gradient(#256e4a, #163f2b);
  border-color: #0f3322;
}
.fa-ink .fa-btn-ghost:hover { background: #14432c; color: #ffffff; }

/* ---------------- Activity list ---------------- */
.fa-acts { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.fa-act {
  background: #f4efe4;
  border-top: 3px solid #9b1c17;
  padding: 13px 15px 15px;
}
.fa-band-white .fa-act { background: #f4efe4; }
.fa-act-no {
  display: inline-block;
  font-family: Consolas, "Courier New", monospace;
  font-size: 11px; font-weight: bold; letter-spacing: .08em;
  color: #9b1c17;
  margin-bottom: 4px;
}
.fa-act h3 { margin-bottom: 4px; }
.fa-act p { font-size: 13px; margin-bottom: 8px; }
.fa-sic {
  display: inline-block;
  font-family: Consolas, "Courier New", monospace;
  font-size: 11px; font-weight: bold;
  background: #e4efe7; color: #14432c;
  border: 1px solid #1e6e46;
  padding: 1px 5px;
}
@media (max-width: 1000px) { .fa-acts { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .fa-acts { grid-template-columns: 1fr; gap: 16px; } }

/* ---------------- Buyer columns ---------------- */
.fa-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.fa-col h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px; letter-spacing: .09em; text-transform: uppercase;
  padding-bottom: 5px; margin-bottom: 6px;
  border-bottom: 1px solid #3c705a;
}
.fa-col p { font-size: 13px; margin-bottom: 0; }
@media (max-width: 900px) { .fa-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .fa-cols { grid-template-columns: 1fr; } }

/* ---------------- Split (text + photo) ---------------- */
.fa-split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }
.fa-split-tight { gap: 18px; }
@media (max-width: 800px) { .fa-split { grid-template-columns: 1fr; gap: 16px; } }

/* ---------------- Particulars table ---------------- */
.fa-register {
  margin: 0;
  border: 1px solid #c9bda3;
  border-bottom: 0;
  background: #fffdf8;
}
.fa-register div {
  display: grid;
  grid-template-columns: 260px 1fr;
  border-bottom: 1px solid #c9bda3;
}
.fa-register dt {
  padding: 7px 14px;
  background: #ece3d2;
  border-right: 1px solid #c9bda3;
  font-size: 12px; font-weight: bold;
  color: #4a453d;
}
.fa-register dd { padding: 7px 14px; margin: 0; color: #23201d; }
.fa-ink .fa-register { background: #123b26; border-color: #3c705a; }
.fa-ink .fa-register div { border-bottom-color: #3c705a; }
.fa-ink .fa-register dt { background: #1c5b3c; border-right-color: #3c705a; color: #e8f0ec; }
.fa-ink .fa-register dd { color: #f2f7f4; }
@media (max-width: 640px) {
  .fa-register div { grid-template-columns: 1fr; }
  .fa-register dt { border-right: 0; border-bottom: 1px solid #c9bda3; }
  .fa-ink .fa-register dt { border-bottom-color: #3c705a; }
}

/* ---------------- Steps ---------------- */
.fa-steps { counter-reset: step; list-style: none; margin: 0; padding: 0; }
.fa-steps > li {
  counter-increment: step;
  position: relative;
  padding: 0 0 12px 40px;
  border-bottom: 1px dotted #c9bda3;
  margin-bottom: 12px;
}
.fa-steps > li:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.fa-steps > li::before {
  content: counter(step);
  position: absolute; left: 0; top: 1px;
  width: 26px; height: 26px; line-height: 24px;
  text-align: center;
  background: #9b1c17;
  border: 1px solid #6e100c;
  color: #f4efe4;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 14px; font-weight: bold;
}
.fa-steps h3 { margin-bottom: 3px; }
.fa-steps p { font-size: 13px; }

/* ---------------- Prose ---------------- */
.fa-prose ul, .fa-prose ol { margin: 0 0 11px; padding-left: 20px; }
.fa-prose li { margin-bottom: 4px; }
.fa-prose h2 { margin-top: 18px; border-bottom: 1px solid #c9bda3; padding-bottom: 5px; }
.fa-prose h3 { margin-top: 14px; }
.fa-prose > :first-child { margin-top: 0; }

.fa-note {
  background: #f4e3e0;
  border: 1px solid #d4a9a3;
  border-left: 4px solid #9b1c17;
  padding: 10px 13px;
  margin: 0 0 13px;
  font-size: 13px;
}
.fa-note strong { color: #6e100c; }

.fa-checklist, .fa-prose .fa-checklist { list-style: none; margin: 0 0 12px; padding: 0; }
.fa-checklist li {
  position: relative;
  padding: 6px 0 6px 18px;
  border-bottom: 1px dotted #c9bda3;
  margin-bottom: 0;
}
.fa-checklist li::before {
  content: "\00BB";
  position: absolute; left: 2px; top: 6px;
  color: #9b1c17; font-weight: bold;
}

/* ---------------- Inner page header ---------------- */
.fa-pagehead {
  background: #ece3d2;
  border-top: 1px solid #d7cbb2;
  padding: 24px 0 26px;
}
.fa-pagehead h1 { font-size: 27px; max-width: 640px; border-bottom: 3px double #b9ae95; padding-bottom: 10px; margin-bottom: 10px; }
.fa-pagehead p { max-width: 790px; font-size: 13px; margin-bottom: 0; }
.fa-crumb {
  font-size: 11px; text-transform: uppercase; letter-spacing: .07em;
  color: #5c564d; margin: 0 0 7px;
}
.fa-crumb a { color: #6e100c; }

/* ---------------- Contact ---------------- */
.fa-contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 22px; align-items: start; }
@media (max-width: 820px) { .fa-contact-grid { grid-template-columns: 1fr; gap: 18px; } }

.fa-panel { background: #fffdf8; border: 1px solid #b9ae95; padding: 0 0 12px; }
.fa-panel h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px; text-transform: uppercase; letter-spacing: .07em;
  background: #ece3d2;
  border-bottom: 1px solid #b9ae95;
  padding: 6px 12px;
  margin: 0 0 10px;
  color: #4a453d;
}
.fa-panel address, .fa-panel p { padding: 0 12px; font-style: normal; }
.fa-panel .fa-register { border: 0; margin: 0 12px; background: none; }
.fa-panel .fa-register div { grid-template-columns: 150px 1fr; border-bottom: 1px solid #ece3d2; }
.fa-panel .fa-register dt { background: none; border-right: 0; }

.fa-field { margin-bottom: 11px; }
.fa-field label { display: block; font-weight: bold; color: #23201d; font-size: 13px; margin-bottom: 3px; }
.fa-field .fa-hint { display: block; font-weight: normal; color: #5c564d; font-size: 11px; }
.fa-field input, .fa-field select, .fa-field textarea {
  width: 100%;
  padding: 5px 7px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  border: 1px solid #a89b80;
  border-top-color: #8b8069;
  border-radius: 2px;
  background: #fffdf8;
  color: #23201d;
}
/* Single-line fields do not need to be 550px wide just because the column is. */
.fa-field input, .fa-field select { max-width: 30em; }
.fa-field textarea { min-height: 130px; resize: vertical; }
.fa-field input:focus, .fa-field select:focus, .fa-field textarea:focus {
  outline: 2px solid #9b1c17;
  outline-offset: 0;
  border-color: #9b1c17;
  background: #ffffff;
}
.fa-field input:user-invalid, .fa-field textarea:user-invalid { border-color: #9b1c17; background: #f4e3e0; }
.fa-req { color: #9b1c17; }
.fa-formmsg {
  margin-top: 11px;
  padding: 9px 12px;
  border: 1px solid #1e6e46;
  border-left: 4px solid #1e6e46;
  background: #e4efe7;
  font-size: 13px;
  color: #14432c;
}
.fa-formmsg[hidden] { display: none; }

/* ---------------- Credits ---------------- */
.fa-credits { list-style: none; margin: 0; padding: 0; }
.fa-credits li {
  display: grid; grid-template-columns: 120px 1fr; gap: 14px;
  padding: 10px 0; border-bottom: 1px dotted #c9bda3; align-items: start;
}
.fa-credits img { border: 1px solid #b9ae95; padding: 2px; background: #fffdf8; width: 100%; height: 74px; object-fit: cover; }
.fa-credits p { font-size: 12px; margin-bottom: 3px; }
@media (max-width: 560px) { .fa-credits li { grid-template-columns: 1fr; gap: 8px; } }

/* ---------------- Footer ---------------- */
.fa-footer {
  background: #26211f;
  color: #cdc4b6;
  font-size: 13px;
  border-top: 5px solid #9b1c17;
}
.fa-footer-grid {
  display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 34px;
  padding: 28px 0 26px;
}
.fa-footer h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: #efe6d8;
  border-bottom: 1px solid #3c705a;
  padding-bottom: 4px;
  margin-bottom: 7px;
}
.fa-footer a { color: #e2d6d2; text-decoration: none; }
.fa-footer a:hover { color: #ffffff; text-decoration: underline; }
.fa-footer ul { list-style: none; margin: 0; padding: 0; }
.fa-footer li { border-bottom: 1px dotted #4a423e; }
.fa-footer li a { display: block; padding: 3px 0; }
.fa-footer address { font-style: normal; margin-bottom: 7px; }
.fa-footer-mark { margin-bottom: 9px; }
.fa-footer-mark svg, .fa-footer-mark img { display: inline-block; vertical-align: middle; margin-right: 8px; }
.fa-footer-mark span {
  display: inline-block; vertical-align: middle;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 17px; color: #efe6d8;
}
/* The base bar is a sibling of the column, so the deep red runs edge to edge
   and only its wording sits back in the 1120. */
.fa-footer-base {
  background: #6e100c;
  color: #f2ddd9;
  border-top: 1px solid #8a1712;
  font-size: 12px;
  padding: 10px 0;
}
.fa-footer-base p { margin: 0; }
.fa-footer-base p + p { margin-top: 2px; }
@media (max-width: 780px) { .fa-footer-grid { grid-template-columns: 1fr; gap: 16px; } }

/* ---------------- Cookie notice ---------------- */
.fa-cookie {
  position: fixed; left: 12px; bottom: 12px; right: 12px; z-index: 150;
  max-width: 330px;
  background: #f4efe4;
  border: 1px solid #6e100c;
  border-top: 4px solid #9b1c17;
  padding: 11px 13px 12px;
  font-size: 12px;
}
.fa-cookie[hidden] { display: none; }
.fa-cookie h2 { font-size: 14px; margin-bottom: 5px; }
.fa-cookie p { margin: 0 0 9px; }
.fa-cookie .fa-btn { padding: 5px 11px; margin-right: 5px; }

/* ---------------- Misc ---------------- */
.fa-placeholder { font-family: Consolas, "Courier New", monospace; font-size: 12px; color: #6e100c; }
.fa-ink .fa-placeholder { color: #ffffff; }
.fa-footer .fa-placeholder { color: #e2d6d2; }
.fa-center { text-align: center; }
.fa-updated { font-size: 12px; color: #5c564d; }

/* ---------------- Narrow screens ---------------- */
@media (max-width: 1180px) {
  .fa-strip img { height: 200px; }
  .fa-strip-short img { height: 145px; }
}
@media (max-width: 860px) {
  .fa-mast-inner { display: block; padding: 12px 16px; position: relative; }
  .fa-brand, .fa-mast-note { display: block; text-align: left; padding-left: 0; }
  .fa-mast-note { margin-top: 10px; border-top: 1px dotted #b9ae95; padding-top: 8px; }
  .fa-mast-trade { display: block; border-bottom: 0; padding-bottom: 0; }
  .fa-navbtn { display: block; margin-top: 10px; width: 100%; }
  .fa-menu { display: none; }
  .fa-menu.is-open { display: block; }
  .fa-menu-inner { padding: 0; }
  .fa-menu li { display: block; }
  .fa-menu a { border-right: 0; border-bottom: 1px solid #7a1410; }
  .fa-menu li:first-child a { border-left: 0; }
  .fa-wrap { padding: 0 16px; }
  .fa-strip figcaption { padding: 5px 16px; }
  .fa-band { padding: 22px 0 24px; }
  .fa-hero { padding: 22px 0 24px; }
  .fa-pagehead { padding: 18px 0 20px; }
  .fa-footer-grid { padding: 20px 0 18px; }
}
@media (max-width: 420px) {
  .fa-brand-name { font-size: 20px; }
  .fa-hero-text h1 { font-size: 21px; }
  .fa-pagehead h1 { font-size: 21px; }
  h1 { font-size: 20px; }
  .fa-strip img { height: 140px; }
  .fa-strip-short img { height: 110px; }
  .fa-cookie { max-width: none; }
}
