/*
Theme Name: Tonson Family — CRAV Edition
Theme URI: https://tonsonfamily.com/
Author: Tonson Family Studio
Author URI: https://tonsonfamily.com/
Description: A bold, cinematic WordPress theme for Tonson Family (วุ้นเส้นต้นสน) — pairing CRAV's chunky display-type design system (maroon #4C0016, cream #F5E3CD, orange #EF6F2E) with Tonson Family's Thai product content. Features a custom loading screen, custom cursor, Lenis smooth-scroll, GSAP ScrollTrigger reveals, parallax ingredient layers, and a flying-plane retailer section.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tonson-family
Tags: full-site-editing, food, restaurant, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready, one-column
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --maroon: #4c0016;
  --maroon-deep: #36000f;
  --maroon-light: #6b0823;
  --cream: #f5e3cd;
  --cream-soft: #fbf1e2;
  --orange: #ef6f2e;
  --orange-bright: #ff9d3f;
  --gold: #ffd750;
  --chili: #ef1624;
  --leaf: #60a905;

  --font-display: "Chonburi", serif;   /* Thai chunky display */
  --font-latin: "Modak", cursive;       /* Latin chunky display */
  --font-label: "Mouse Memoirs", sans-serif;
  --font-body: "Kanit", sans-serif;
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body {
  margin: 0;
  background: var(--maroon);
  color: var(--cream);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 400;
}
section {
  position: relative;
}

@media (pointer: fine) {
  body,
  a,
  button,
  [data-cursor] {
    cursor: none;
  }
}

::selection {
  background: var(--orange);
  color: #fff;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--maroon-deep);
}
::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 8px;
}

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.font-display {
  font-family: var(--font-display);
}
.font-latin {
  font-family: var(--font-latin);
}
.font-label {
  font-family: var(--font-label);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.kicker {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--orange);
  font-size: 1.05rem;
}
.text-stroke-orange {
  -webkit-text-stroke: 2px var(--orange);
  color: transparent;
}
.text-stroke-cream {
  -webkit-text-stroke: 2px var(--cream);
  color: transparent;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   GRAIN OVERLAY
   ============================================================ */
.grain::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   LOADER
   ============================================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--maroon-deep);
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}
.loader.is-done {
  transform: translateY(-100%);
}
.loader__label {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--orange);
  font-size: 1.2rem;
}
.loader__title {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: clamp(2rem, 7vw, 4rem);
  margin-top: 0.6rem;
}
.loader__dots {
  animation: blink 1.2s infinite;
}
.loader__bar {
  margin-top: 2.4rem;
  width: 16rem;
  height: 3px;
  border-radius: 99px;
  background: rgba(107, 8, 35, 0.5);
  overflow: hidden;
}
.loader__fill {
  height: 100%;
  width: 0%;
  background: var(--orange);
}
.loader__pct {
  font-family: var(--font-label);
  font-size: 1.6rem;
  color: rgba(245, 227, 205, 0.7);
  margin-top: 0.9rem;
}
.loader__foot {
  position: absolute;
  bottom: 2.4rem;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: rgba(245, 227, 205, 0.4);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 99px;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  will-change: transform;
}
.cursor-dot {
  width: 8px;
  height: 8px;
  background: #fff;
}
.cursor-ring {
  width: 44px;
  height: 44px;
  border: 2px solid #fff;
  transition: width 0.25s ease, height 0.25s ease, background 0.25s ease,
    border-color 0.25s ease;
}
.cursor-ring.is-hover {
  width: 70px;
  height: 70px;
  background: rgba(239, 111, 46, 0.25);
  border-color: var(--orange);
}
@media (pointer: coarse) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 120;
  padding: 1.1rem 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.nav.is-scrolled {
  background: rgba(76, 0, 22, 0.85);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  color: rgba(245, 227, 205, 0.85);
  transition: color 0.25s ease;
}
.nav__link:hover {
  color: var(--gold);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav__link:hover::after {
  transform: scaleX(1);
}
.badge-new {
  background: var(--orange);
  color: #fff;
  font-family: var(--font-label);
  font-size: 0.6rem;
  line-height: 1;
  padding: 0.2rem 0.35rem;
  border-radius: 99px;
}
.nav__cta {
  background: var(--chili);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 1.25rem;
  border-radius: 99px;
  box-shadow: 0 8px 20px rgba(239, 22, 36, 0.3);
  transition: transform 0.25s ease, background 0.25s ease;
}
.nav__cta:hover {
  transform: translateY(-2px);
  background: var(--orange);
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
}
.nav__burger span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__burger.is-open span:nth-child(2) {
  opacity: 0;
}
.nav__burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav__mobile {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.75rem 20px 1rem;
}
.nav__mobile.is-open {
  display: grid;
}
.nav__mobile a {
  background: rgba(107, 8, 35, 0.4);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  color: var(--cream);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 6rem;
  background: var(--maroon);
}
.hero__bgword,
.hero__bgword2 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--font-display);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}
.hero__bgword {
  top: 14%;
  font-size: 22vw;
  color: rgba(239, 111, 46, 0.15);
}
.hero__bgword2 {
  top: 26%;
  font-size: 16vw;
  -webkit-text-stroke: 2px var(--orange);
  color: transparent;
  opacity: 0.3;
}
.hero__product {
  position: relative;
  z-index: 10;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}
.hero__product img {
  width: 78vw;
  max-width: 540px;
  transform: rotate(-4deg);
  object-fit: contain;
}
.hero__badge {
  position: absolute;
  top: 0.5rem;
  right: -1rem;
  width: 7rem;
  height: 7rem;
  border-radius: 99px;
  background: var(--gold);
  color: var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  line-height: 1.2;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  animation: spin 16s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.hero__fg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12%;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 7rem);
  color: var(--cream);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}
.pill {
  border-radius: 99px;
  padding: 0.4rem 1.25rem;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(245, 227, 205, 0.4);
  background: rgba(76, 0, 22, 0.4);
  color: var(--cream);
  backdrop-filter: blur(4px);
}
.pill--accent {
  border-color: var(--orange);
  background: rgba(239, 111, 46, 0.9);
  color: #fff;
}
.hero__desc {
  margin-top: 1.25rem;
  max-width: 36rem;
  padding: 0 1.5rem;
  font-size: 0.95rem;
  color: rgba(245, 227, 205, 0.8);
}
.hero__est {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  color: rgba(245, 227, 205, 0.5);
}

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section {
  padding: 6rem 0;
}
.section--cream {
  background: var(--cream);
  color: var(--maroon);
}
.section--maroon {
  background: var(--maroon);
}
.section--deep {
  background: var(--maroon-deep);
}
.section__head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  margin-top: 0.5rem;
  line-height: 1.05;
}
.section__lead {
  max-width: 40rem;
  margin: 1rem auto 0;
  opacity: 0.8;
}

/* reveal base (GSAP toggles .is-in) */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid;
  gap: 3.5rem;
  align-items: center;
}
.about__media {
  position: relative;
  height: 480px;
}
.about__img1,
.about__img2 {
  position: absolute;
  overflow: hidden;
  border-radius: 1.25rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  will-change: transform;
}
.about__img1 {
  left: 0;
  top: 0;
  width: 62%;
  height: 78%;
}
.about__img2 {
  right: 0;
  bottom: 0;
  width: 55%;
  height: 60%;
  border: 4px solid var(--cream);
}
.about__img1 img,
.about__img2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__stamp {
  position: absolute;
  bottom: -1rem;
  left: 1.5rem;
  z-index: 10;
  background: var(--chili);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.4rem;
  padding: 0.6rem 1.5rem;
  border-radius: 99px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.about__lead {
  margin-top: 0.6rem;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--chili);
}
.about__p {
  margin-top: 1.1rem;
  color: rgba(76, 0, 22, 0.8);
}
.about__stats {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.stat {
  background: var(--maroon);
  color: var(--cream);
  border-radius: 0.75rem;
  padding: 1rem 0.75rem;
  text-align: center;
}
.stat__val {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
}
.stat__label {
  font-size: 0.75rem;
  color: rgba(245, 227, 205, 0.7);
  margin-top: 0.25rem;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.marquee--head .marquee__track span {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: rgba(245, 227, 205, 0.1);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.pcard {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(245, 227, 205, 0.1);
  background: rgba(107, 8, 35, 0.3);
  padding: 1.25rem;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.pcard:hover {
  transform: translateY(-10px);
}
.pcard__glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  background: linear-gradient(to top, rgba(239, 111, 46, 0.3), transparent);
}
.pcard:hover .pcard__glow {
  opacity: 1;
}
.pcard__glow--leaf { background: linear-gradient(to top, rgba(96, 169, 5, 0.3), transparent); }
.pcard__glow--gold { background: linear-gradient(to top, rgba(255, 215, 80, 0.3), transparent); }
.pcard__glow--chili { background: linear-gradient(to top, rgba(239, 22, 36, 0.3), transparent); }
.pcard__tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  border-radius: 99px;
  padding: 0.25rem 0.75rem;
  font-family: var(--font-label);
  font-size: 0.9rem;
  color: #fff;
  background: var(--orange);
}
.pcard__tag--gold { background: var(--gold); color: var(--maroon); }
.pcard__tag--chili { background: var(--chili); }
.pcard__tag--leaf { background: var(--leaf); }
.pcard__media {
  position: relative;
  height: 11rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pcard__media img {
  max-height: 11rem;
  width: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.pcard:hover .pcard__media img {
  transform: scale(1.1) rotate(-3deg);
}
.pcard__brand {
  font-family: var(--font-label);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  position: relative;
}
.pcard__name {
  margin-top: 0.25rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  position: relative;
}
.pcard__desc {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: rgba(245, 227, 205, 0.65);
  position: relative;
}
.pcard__more {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s ease;
  position: relative;
}
.pcard:hover .pcard__more {
  opacity: 1;
}

/* ============================================================
   INGREDIENTS
   ============================================================ */
.ing__ring {
  position: absolute;
  right: -10rem;
  top: 2.5rem;
  width: 460px;
  height: 460px;
  border-radius: 99px;
  border: 40px solid rgba(239, 111, 46, 0.1);
  pointer-events: none;
}
.ing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.ing__card {
  will-change: transform;
}
.ing__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.ing__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.ing__card:hover .ing__media img {
  transform: scale(1.1);
}
.ing__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(76, 0, 22, 0.85), rgba(76, 0, 22, 0.1) 60%, transparent);
}
.ing__cap {
  position: absolute;
  bottom: 0;
  padding: 1rem;
  z-index: 2;
}
.ing__en {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--gold);
}
.ing__th {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cream);
}
.ing__blurb {
  margin-top: 0.75rem;
  padding: 0 0.25rem;
  font-size: 0.85rem;
  color: rgba(76, 0, 22, 0.7);
}

/* ============================================================
   LOCATIONS
   ============================================================ */
.loc__path {
  position: absolute;
  inset: 33% 0 auto 0;
  height: 10rem;
  width: 100%;
  pointer-events: none;
}
.loc__plane {
  position: absolute;
  top: 33%;
  left: 0;
  z-index: 10;
  color: var(--orange);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
  will-change: transform;
}
.loc__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1.25rem;
}
.loc__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  background: var(--cream);
  border: 1px solid rgba(245, 227, 205, 0.1);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.loc__card:hover {
  transform: translateY(-8px) scale(1.04);
}
.loc__logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.loc__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--maroon);
}
.loc__city {
  font-size: 0.75rem;
  color: rgba(76, 0, 22, 0.55);
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--orange);
  color: var(--maroon);
  padding: 7rem 0;
  text-align: center;
}
.cta__bgword {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28vw;
  line-height: 1;
  -webkit-text-stroke: 2px var(--cream);
  color: transparent;
  opacity: 0.2;
  user-select: none;
  pointer-events: none;
}
.cta__float {
  position: absolute;
  pointer-events: none;
}
.cta__float img { width: 11rem; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3)); }
.cta__float--a { right: 6%; top: 12%; animation: floatA 7s ease-in-out infinite; }
.cta__float--b { left: 6%; bottom: 10%; animation: floatB 8s ease-in-out infinite; }
@keyframes floatA {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-22px) rotate(3deg); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0) rotate(4deg); }
  50% { transform: translateY(18px) rotate(-4deg); }
}
.cta__inner { position: relative; z-index: 10; padding: 0 1.5rem; }
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 8rem);
  line-height: 1;
  margin-top: 0.75rem;
  color: var(--maroon);
}
.cta__desc {
  max-width: 36rem;
  margin: 1.5rem auto 0;
  font-size: 1.1rem;
  color: rgba(76, 0, 22, 0.8);
}
.cta__actions {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.btn-dark,
.btn-outline {
  border-radius: 99px;
  padding: 1rem 2.25rem;
  font-size: 1.1rem;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn-dark {
  background: var(--maroon);
  color: var(--cream);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}
.btn-dark:hover {
  transform: translateY(-4px);
  background: var(--maroon-deep);
}
.btn-outline {
  border: 2px solid var(--maroon);
  color: var(--maroon);
}
.btn-outline:hover {
  background: var(--maroon);
  color: var(--cream);
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  background: var(--maroon-deep);
  color: var(--cream);
  padding-top: 5rem;
}
.foot__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
}
.foot__logo {
  height: 48px;
  width: auto;
}
.foot__about {
  margin-top: 1.25rem;
  max-width: 24rem;
  font-size: 0.9rem;
  color: rgba(245, 227, 205, 0.7);
}
.foot__contact {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(245, 227, 205, 0.8);
}
.foot__contact .lbl { color: var(--orange); }
.foot__h {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
}
.foot__links {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.75rem;
  font-size: 0.9rem;
}
.foot__links a { color: rgba(245, 227, 205, 0.75); transition: color 0.25s ease; }
.foot__links a:hover { color: var(--orange); }
.foot__social {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.75rem;
}
.foot__social a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(245, 227, 205, 0.15);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: rgba(245, 227, 205, 0.8);
  transition: border-color 0.25s ease, color 0.25s ease;
}
.foot__social a:hover { border-color: var(--orange); color: var(--orange); }
.foot__strip {
  border-top: 1px solid rgba(245, 227, 205, 0.1);
  border-bottom: 1px solid rgba(245, 227, 205, 0.1);
  padding: 1rem 0;
}
.foot__strip span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: rgba(245, 227, 205, 0.3);
}
.foot__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.75rem 0;
  font-size: 0.75rem;
  color: rgba(245, 227, 205, 0.55);
}
.foot__bottom .font-label { letter-spacing: 0.15em; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 768px) {
  .about__grid { grid-template-columns: 1fr 1fr; }
  .about__stats { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .ing__grid { grid-template-columns: repeat(2, 1fr); }
  .loc__grid { grid-template-columns: repeat(3, 1fr); }
  .foot__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .products__grid { grid-template-columns: 1fr; }
  .ing__grid { grid-template-columns: repeat(2, 1fr); }
  .loc__grid { grid-template-columns: repeat(2, 1fr); }
  .about__media { height: 380px; }
  .cta__float { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
