/* =========================================================
   THE FAT PIG PORK SHOP — Global Stylesheet
   Premium, mobile-first, fast, no heavy libraries.
   ========================================================= */

:root {
  /* Brand palette */
  --brand-red: #b3202c;
  --brand-red-dark: #8f1922;
  --brand-red-soft: #fdf0f1;
  --ink: #1f2430;
  --ink-soft: #4a5163;
  --paper: #ffffff;
  --paper-soft: #f6f7f9;
  --line: #e6e8ee;
  --gold: #e8a33d;

  /* Spacing / type */
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 10px 30px rgba(31, 36, 48, 0.10);
  --shadow-sm: 0 4px 14px rgba(31, 36, 48, 0.08);
  --container: 1140px;
  --gutter: clamp(1.1rem, 4vw, 2rem);

  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--brand-red); text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-call {
  background: var(--brand-red);
  color: #fff;
  box-shadow: 0 8px 20px rgba(179, 32, 44, 0.28);
}
.btn-call:hover { background: var(--brand-red-dark); }

.btn-direction {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-direction:hover { border-color: var(--brand-red); color: var(--brand-red); }

.btn-outline {
  background: transparent;
  color: var(--brand-red);
  border-color: var(--brand-red);
}
.btn-outline:hover { background: var(--brand-red-soft); }

.btn-lg { padding: 1.1rem 2rem; font-size: 1.08rem; }

/* ---------- Section base ---------- */
section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-title {
  font-size: clamp(1.7rem, 4.5vw, 2.4rem);
  line-height: 1.2;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}
.section-sub {
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 0 2.5rem;
  font-size: 1.05rem;
}
.section-head {
  text-align: center;
}
.section-head .section-sub { margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-red);
  background: var(--brand-red-soft);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  font-weight: 900;
  flex-shrink: 0;
}
.brand small { display: block; font-weight: 600; font-size: 0.7rem; color: var(--ink-soft); letter-spacing: 0.04em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.98rem;
}
.nav-links a:hover { color: var(--brand-red); }
.nav-right { display: flex; align-items: center; gap: 0.8rem; }
.nav-call {
  padding: 0.65rem 1.2rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 22px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 3px;
  transition: 0.25s;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem var(--gutter) 1.2rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 0.85rem 0; border-bottom: 1px solid var(--line); }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-call { display: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 85% 15%, rgba(179,32,44,0.08), transparent 45%),
    linear-gradient(180deg, #fdf7f5 0%, #fff 100%);
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.2rem; }
.hero-badge {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.hero-badge.rating {
  color: var(--ink);
  background: #fff8ec;
  border-color: #f0d9a8;
}
.hero h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.2rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  letter-spacing: -0.025em;
}
.hero h1 .accent { color: var(--brand-red); }
.hero-lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 0 1.8rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.8rem; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
}
.hero-trust strong { color: var(--ink); }

.hero-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--paper-soft);
  min-height: 320px;
  display: grid;
  place-items: center;
}
.hero-visual .img-ph { width: 100%; height: 100%; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; min-height: 220px; }
}

/* Photo placeholder (swap with real photography) */
.img-ph {
  display: grid;
  place-items: center;
  gap: 0.5rem;
  background:
    linear-gradient(135deg, #f3ece8, #e7dcd6);
  color: #7a6c63;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  padding: 2rem;
  width: 100%;
  min-height: 200px;
}
.img-ph .ph-note {
  font-size: 0.8rem;
  font-weight: 500;
  background: rgba(255,255,255,0.7);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust-bar {
  background: var(--ink);
  color: #fff;
  padding: 1.3rem 0;
}
.trust-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.stat .num { font-size: 1.9rem; font-weight: 800; color: var(--gold); }
.stat .lbl { font-size: 0.9rem; color: #cfd3dd; }

/* =========================================================
   CARDS
   ========================================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.3rem;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.card .ico {
  width: 46px; height: 46px;
  border-radius: 11px;
  background: var(--brand-red-soft);
  color: var(--brand-red);
  display: grid; place-items: center;
  font-size: 1.4rem;
  margin-bottom: 0.9rem;
}
.card h3 { margin: 0 0 0.4rem; font-size: 1.12rem; }
.card p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }

/* Product cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.4rem;
}
.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.product-card .pc-img { min-height: 170px; }
.product-card .pc-body { padding: 1.2rem; flex: 1; display: flex; flex-direction: column; }
.product-card h3 { margin: 0 0 0.4rem; font-size: 1.08rem; }
.product-card p { margin: 0 0 1rem; color: var(--ink-soft); font-size: 0.93rem; flex: 1; }
.product-card .pc-foot { display: flex; justify-content: space-between; align-items: center; gap: 0.6rem; }
.pc-avail { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--brand-red); }
.product-card .btn { padding: 0.6rem 1rem; font-size: 0.88rem; }

/* Steps */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem; }
.step {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.step .step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand-red);
  color: #fff;
  font-weight: 800;
  display: grid; place-items: center;
  margin-bottom: 1rem;
}
.step h3 { margin: 0 0 0.4rem; }
.step p { margin: 0; color: var(--ink-soft); }

/* =========================================================
   LOCATION
   ========================================================= */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 380px;
  background: var(--paper-soft);
  position: relative;
}
.map-frame iframe { width: 100%; height: 380px; border: 0; display: block; }
.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li { display: flex; gap: 0.9rem; padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
.info-list li:last-child { border-bottom: none; }
.info-list .ic { font-size: 1.3rem; flex-shrink: 0; width: 32px; text-align: center; }
.info-list strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-soft); }
.info-list span.adr { color: var(--ink); }
.hours-note {
  background: var(--brand-red-soft);
  color: var(--brand-red-dark);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  margin-top: 1rem;
}
@media (max-width: 900px) {
  .location-grid { grid-template-columns: 1fr; }
  .map-frame, .map-frame iframe { min-height: 300px; height: 300px; }
}

/* =========================================================
   REVIEWS / FAQ / FOOTER etc.
   ========================================================= */
.rating-hero {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}
.rating-score { text-align: center; }
.rating-score .big { font-size: 3rem; font-weight: 800; line-height: 1; color: var(--ink); }
.rating-score .of { color: var(--ink-soft); }
.stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 2px; }
.review-note { flex: 1; min-width: 240px; color: var(--ink-soft); }
.review-note p { margin: 0.2rem 0 0; }

.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 0.8rem; overflow: hidden; background: #fff; }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.1rem 1.2rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q .chev { transition: transform 0.25s; color: var(--brand-red); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 1.2rem 1.2rem; color: var(--ink-soft); }
.faq-item.open .faq-a { display: block; }

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  color: #fff;
  text-align: center;
  border-radius: var(--radius);
  padding: clamp(2.5rem, 6vw, 4rem) var(--gutter);
  box-shadow: var(--shadow);
}
.final-cta h2 { margin: 0 0 0.8rem; font-size: clamp(1.6rem, 4vw, 2.3rem); color: #fff; }
.final-cta p { margin: 0 auto 1.8rem; max-width: 520px; color: #fbe6e8; }
.final-cta .btn-direction { background: #fff; border-color: #fff; color: var(--brand-red-dark); }
.final-cta .btn-direction:hover { border-color: #fff; }

/* Footer */
.site-footer { background: var(--ink); color: #cfd3dd; padding: 3.5rem 0 0; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; padding-bottom: 2.5rem; }
.site-footer h4 { color: #fff; margin: 0 0 1rem; font-size: 1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.6rem; }
.site-footer a { color: #c3c8d4; }
.site-footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 1.2rem 0; font-size: 0.85rem; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   STICKY MOBILE CTA BAR
   ========================================================= */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  padding: 0.7rem var(--gutter) calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(31, 36, 48, 0.08);
}
.mobile-cta .btn { padding: 0.85rem 1rem; font-size: 0.98rem; width: 100%; }
@media (max-width: 900px) {
  .mobile-cta { display: grid; }
  body { padding-bottom: 78px; }
}

/* Utility */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.hidden { display: none !important; }
img { width: auto; height: auto; }
