@font-face {
  font-family: Inter;
  src: url('assets/Inter-Regular.woff2');
}
@font-face {
  font-family: Inter;
  src: url('assets/Inter-Bold.woff2');
  font-weight: 800;
}
@font-face {
  font-family: Lemon;
  src: url('assets/Lemon Days.woff2');
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #fff5e8;
  color: #1b2330;
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Lemon, Impact, sans-serif;
  font-weight: 400;
}
body:before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  background-image: radial-gradient(#1b2330 1px, transparent 1px);
  background-size: 18px 18px;
  z-index: 100;
}
.wrap {
  width: min(1240px, 92vw);
  margin: auto;
}
.lemon {
  font-family: Lemon, Impact, sans-serif;
}
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  z-index: 90;
  border-bottom: 1px solid rgba(27, 35, 48, 0.08);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  width: 150px;
}
.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-links a {
  color: #1b2330;
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 11px 13px;
  border-radius: 999px;
}
.nav-links a:hover,
.nav-links a.active {
  background: #ffaf03;
}
.nav-toggle {
  display: none;
  border: 0;
  background: #1b2330;
  color: #fff5e8;
  border-radius: 999px;
  width: 44px;
  height: 44px;
  font-size: 20px;
}
.hero {
  min-height: 100svh;
  padding: 110px 0 60px;
  position: relative;
  overflow: hidden;
  background: #fff5e8;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4vw;
  min-height: calc(100svh - 140px);
}
.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: 2px solid #1b2330;
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.dot {
  width: 8px;
  height: 8px;
  background: #e63800;
  border-radius: 50%;
  animation: pulse 1.2s infinite;
}
.hero h1 {
  font-family: Lemon, Impact, sans-serif;
  font-size: clamp(52px, 7vw, 110px);
  line-height: 0.85;
  margin: 20px 0;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}
.hero h1 .line {
  display: block;
}
.hero h1 .accent {
  color: #e63800;
}
.dance-letter {
  display: inline-block;
  animation: wobble 2.8s ease-in-out infinite;
  animation-delay: calc(var(--d) * -0.065s);
  transform-origin: 50% 85%;
}
.hero p {
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.65;
  max-width: 540px;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid #1b2330;
  transition: 0.25s;
}
.btn.primary {
  background: #1b2330;
  color: #fff5e8;
  box-shadow: 0 9px 0 rgba(27, 35, 48, 0.13);
}
.btn.alt {
  background: #ffaf03;
  color: #1b2330;
}
.btn:hover {
  transform: translateY(-4px);
}
.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  perspective: 1300px;
}
.orb {
  position: absolute;
  width: min(560px, 46vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px dashed rgba(27, 35, 48, 0.25);
  animation: spin 24s linear infinite;
}
.orb.two {
  width: min(450px, 38vw);
  border-style: solid;
  opacity: 0.3;
  animation-direction: reverse;
  animation-duration: 16s;
}
.orb.yellow-orb {
  width: min(510px, 43vw);
  border: 0;
  background: #ffaf03;
  opacity: 1;
  z-index: 0;
  animation: spin 18s linear infinite reverse;
  box-shadow: 0 0 0 14px rgba(255, 175, 3, 0.9);
}
.hero-card {
  position: relative;
  z-index: 2;
  width: min(540px, 44vw);
  aspect-ratio: 1/1;
  transform-style: preserve-3d;
  animation: float 4.8s ease-in-out infinite;
  filter: drop-shadow(26px 35px 22px rgba(27, 35, 48, 0.24));
  transition: transform 0.12s ease-out;
}
.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
}
.hero-card .shine {
  position: absolute;
  inset: 2%;
  z-index: 4;
  pointer-events: none;
  border-radius: 28px;
  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(255, 255, 255, 0.65) 49%,
    transparent 61%
  );
  transform: translateX(-120%) rotate(5deg);
  animation: shine 4.4s ease-in-out infinite;
}
.mascot {
  position: absolute;
  width: 180px;
  z-index: 8;
  animation: mascotBob 2.4s ease-in-out infinite;
  filter: drop-shadow(8px 14px 0 rgba(27, 35, 48, 0.12));
}
.mascot.hero-mascot {
  right: 2%;
  bottom: 5%;
}
.mascot.side-mascot {
  width: 135px;
  right: -2%;
  bottom: -10px;
}
.fries-bits {
  position: absolute;
  width: 54px;
  height: 54px;
  z-index: 7;
}
.fries-bits i {
  position: absolute;
  bottom: 0;
  width: 9px;
  height: 52px;
  background: #ffaf03;
  border: 2px solid #1b2330;
  border-radius: 8px;
  transform-origin: bottom;
}
.fries-bits i:nth-child(1) {
  left: 3px;
  transform: rotate(-15deg);
}
.fries-bits i:nth-child(2) {
  left: 17px;
  height: 59px;
  transform: rotate(-4deg);
}
.fries-bits i:nth-child(3) {
  left: 31px;
  transform: rotate(9deg);
}
.fries-bits i:nth-child(4) {
  left: 44px;
  height: 57px;
  transform: rotate(18deg);
}
.f1 {
  left: 2%;
  top: 20%;
  animation: fly1 7s ease-in-out infinite;
}
.f2 {
  right: 2%;
  top: 15%;
  transform: scale(0.8);
  animation: fly2 8s ease-in-out infinite;
}
.f3 {
  left: 46%;
  bottom: 6%;
  transform: scale(0.7);
  animation: fly3 6s ease-in-out infinite;
}
.scrollhint {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
}
.scrollhint:after {
  content: '';
  display: block;
  width: 2px;
  height: 38px;
  background: #1b2330;
  margin: 7px auto 0;
  animation: scrollline 1.4s infinite;
}
.marquee {
  background: #1b2330;
  color: #fff5e8;
  overflow: hidden;
  padding: 18px 0;
  border-block: 2px solid #1b2330;
}
.marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.marquee span {
  font-family: Lemon;
  font-size: 31px;
  padding-right: 28px;
}
.marquee .yellow {
  color: #ffaf03;
}
.section {
  padding: 105px 0;
  position: relative;
  overflow: hidden;
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 42px;
}
.section-head h2 {
  font-family: Lemon, Impact, sans-serif;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.86;
  margin: 0;
  text-transform: uppercase;
}
.section-head p {
  max-width: 430px;
  line-height: 1.7;
  color: #5f6470;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.product-card {
  background: #fff;
  border: 2px solid #1b2330;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s;
}
.product-card:hover {
  transform: translateY(-12px) rotate(-1deg);
  box-shadow: 10px 14px 0 #1b2330;
}
.media {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #ffaf03, #fff5e8);
  overflow: hidden;
  position: relative;
}
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.product-card:hover .media img {
  transform: scale(1.08);
}
.chip {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #e63800;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  z-index: 2;
}
.body {
  padding: 22px;
}
.body h3 {
  font-size: 24px;
  margin: 0 0 8px;
  text-transform: uppercase;
}
.body p {
  font-size: 14px;
  line-height: 1.55;
  color: #5f6470;
}
.dark {
  background: #1b2330;
  color: #fff5e8;
}
.dark .section-head p {
  color: #c3c6cc;
}
.yellow {
  background: #ffaf03;
}
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  align-items: center;
}
.story-img {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  transform: rotate(-2deg);
  box-shadow: 16px 20px 0 #1b2330;
}
.story-img img {
  display: block;
  width: 100%;
}
.story-copy h2 {
  font-family: Lemon, Impact, sans-serif;
  font-size: clamp(46px, 6vw, 80px);
  line-height: 0.86;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.story-copy p {
  font-size: 17px;
  line-height: 1.8;
}
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature {
  border: 2px solid currentColor;
  border-radius: 26px;
  padding: 28px;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
.feature:hover {
  transform: translateY(-8px) rotate(1deg);
}
.feature h3 {
  font-size: 28px;
  margin: 0 0 12px;
}
.feature p {
  line-height: 1.6;
  color: inherit;
  opacity: 0.82;
}
.feature .num {
  font-family: Lemon;
  font-size: 58px;
  opacity: 0.15;
  position: absolute;
  right: 18px;
  bottom: 5px;
}
.recipe-card {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  border: 2px solid #1b2330;
}
.recipe-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.recipe-card .body {
  padding: 20px;
}
.cta-band {
  background: #e63800;
  color: #fff5e8;
  padding: 90px 0 145px;
  position: relative;
  overflow: hidden;
}
.cta-content {
  position: relative;
  z-index: 3;
}
.cta-band h2 {
  font-family: Lemon, Impact, sans-serif;
  font-size: clamp(48px, 7vw, 90px);
  line-height: 0.84;
  margin: 0 0 20px;
  text-transform: uppercase;
  max-width: 900px;
}
.cta-runway {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 108px;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}
.cta-runner {
  position: absolute;
  left: -190px;
  bottom: 3px;
  width: 126px;
  height: auto;
  filter: drop-shadow(7px 9px 0 rgba(27, 35, 48, 0.18));
  animation:
    runAcross 8.5s linear infinite,
    runBounce 0.42s ease-in-out infinite alternate;
}
.footer {
  background: #111720;
  color: #fff5e8;
  padding: 70px 0 35px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 40px;
}
.footer a {
  color: #fff5e8;
  text-decoration: none;
  display: block;
  margin: 8px 0;
  font-size: 13px;
}
.footer p {
  color: #aeb4bd;
  line-height: 1.7;
}
.footer-bottom {
  margin-top: 45px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  color: #89919c;
}
.js .reveal {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.page-hero {
  padding: 145px 0 85px;
  background: #ffaf03;
  position: relative;
  overflow: hidden;
}
.page-hero .wrap {
  position: relative;
  z-index: 3;
}
.page-hero h1 {
  font-family: Lemon, Impact, sans-serif;
  font-size: clamp(58px, 9vw, 120px);
  line-height: 0.82;
  text-transform: uppercase;
  margin: 0;
  max-width: 900px;
}
.page-hero p {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.7;
}
.page-mascot {
  position: absolute;
  width: 190px;
  right: 8%;
  bottom: -15px;
  animation: mascotBob 2.3s infinite;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  align-items: start;
}
.detail-img {
  background: #fff;
  border: 2px solid #1b2330;
  border-radius: 32px;
  overflow: hidden;
  position: sticky;
  top: 105px;
}
.detail-img img {
  width: 100%;
  display: block;
  aspect-ratio: 1/1;
  object-fit: contain;
}
.detail h2 {
  font-family: Lemon, Impact, sans-serif;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.9;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.detail p {
  line-height: 1.8;
  color: #5f6470;
}
.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 22px 0;
}
.pill {
  padding: 9px 13px;
  border: 2px solid #1b2330;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.mobile-menu {
  display: none;
}
@keyframes runAcross {
  0% {
    left: -190px;
    transform: scaleX(1);
  }
  49.5% {
    left: calc(100% - 55px);
    transform: scaleX(1);
  }
  50% {
    left: calc(100% - 55px);
    transform: scaleX(-1);
  }
  100% {
    left: -190px;
    transform: scaleX(-1);
  }
}
@keyframes runBounce {
  from {
    margin-bottom: 0;
    transform: translateY(0) rotate(-2deg);
  }
  to {
    margin-bottom: 5px;
    transform: translateY(-5px) rotate(2deg);
  }
}
@keyframes float {
  0%,
  100% {
    transform: rotateY(-10deg) rotateX(5deg) rotateZ(1deg) translateY(0);
  }
  50% {
    transform: rotateY(-7deg) rotateX(8deg) rotateZ(-1deg) translateY(-18px);
  }
}
@keyframes mascotBob {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-13px) rotate(3deg);
  }
}
@keyframes shine {
  0%,
  45% {
    transform: translateX(-120%) rotate(5deg);
  }
  70%,
  100% {
    transform: translateX(120%) rotate(5deg);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
@keyframes pulse {
  50% {
    transform: scale(1.4);
    opacity: 0.5;
  }
}
@keyframes wobble {
  0%,
  100% {
    transform: rotate(0) translateY(0);
  }
  50% {
    transform: rotate(3deg) translateY(-3px);
  }
}
@keyframes fly1 {
  50% {
    transform: translate(70px, 40px) rotate(18deg);
  }
}
@keyframes fly2 {
  50% {
    transform: translate(-60px, 70px) rotate(-20deg);
  }
}
@keyframes fly3 {
  50% {
    transform: translate(40px, -30px) rotate(14deg);
  }
}
@keyframes scrollline {
  50% {
    transform: scaleY(0.55);
    transform-origin: top;
  }
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .mobile-menu {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 12px 4vw 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  .mobile-menu.open {
    display: block;
  }
  .mobile-menu a {
    display: block;
    padding: 15px 8px;
    color: #1b2330;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
  }
  .hero-grid,
  .story-split,
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 100px;
  }
  .hero-grid {
    gap: 10px;
  }
  .hero-copy {
    order: 1;
  }
  .hero-visual {
    order: 2;
    min-height: 520px;
  }
  .hero-card {
    width: min(470px, 86vw);
    aspect-ratio: 1/1;
  }
  .orb {
    width: min(520px, 92vw);
  }
  .orb.two {
    width: min(410px, 76vw);
  }
  .orb.yellow-orb {
    width: min(470px, 84vw);
    box-shadow: 0 0 0 12px rgba(255, 175, 3, 0.9);
  }
  .mascot.hero-mascot {
    right: 5%;
    bottom: 2%;
    width: 145px;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-row {
    grid-template-columns: 1fr;
  }
  .page-mascot {
    width: 145px;
    right: 4%;
  }
  .detail-img {
    position: relative;
    top: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .cta-band {
    padding-bottom: 118px;
  }
  .cta-runway {
    height: 82px;
  }
  .cta-runner {
    width: 92px;
    left: -120px;
  }
  @keyframes runAcross {
    0% {
      left: -120px;
      transform: scaleX(1);
    }
    49.5% {
      left: calc(100% - 38px);
      transform: scaleX(1);
    }
    50% {
      left: calc(100% - 38px);
      transform: scaleX(-1);
    }
    100% {
      left: -120px;
      transform: scaleX(-1);
    }
  }
  .wrap {
    width: min(92vw, 480px);
  }
  .logo {
    width: 128px;
  }
  .hero h1 {
    font-family: Lemon, Impact, sans-serif;
    font-size: clamp(44px, 14vw, 64px);
  }
  .hero p {
    font-size: 15px;
  }
  .hero-visual {
    min-height: 440px;
  }
  .hero-card {
    width: 92vw;
    max-width: 430px;
    aspect-ratio: 1/1;
  }
  .mascot.hero-mascot {
    width: 115px;
    right: 0;
    bottom: 4%;
  }
  .fries-bits {
    transform: scale(0.7);
  }
  .f1 {
    left: -5%;
  }
  .f2 {
    right: -6%;
  }
  .section {
    padding: 72px 0;
  }
  .section-head {
    display: block;
  }
  .section-head h2 {
    font-family: Lemon, Impact, sans-serif;
    font-size: clamp(40px, 12vw, 58px);
  }
  .section-head p {
    margin-top: 15px;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .product-card {
    border-radius: 24px;
  }
  .page-hero {
    padding: 120px 0 75px;
  }
  .page-hero h1 {
    font-family: Lemon, Impact, sans-serif;
    font-size: clamp(52px, 15vw, 75px);
  }
  .page-mascot {
    width: 110px;
    right: -3%;
    bottom: -4px;
  }
  .cta-band h2 {
    font-family: Lemon, Impact, sans-serif;
    font-size: clamp(45px, 13vw, 64px);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .story-img {
    box-shadow: 10px 13px 0 #1b2330;
  }
  .hero .actions .btn {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Home page-only refinements */
.home-page .feature-row .feature:nth-child(1),
.home-page .feature-row .feature:nth-child(3) {
  background: #ffaf03;
  color: #1b2330;
}
.home-page .feature-row .feature:nth-child(2) {
  background: #e63800;
  color: #fff5e8;
  border-color: #1b2330;
}
.home-page .feature-row .feature:nth-child(2) .num {
  color: #fff5e8;
}
.home-page .footer {
  position: relative;
  z-index: 5;
}
.home-page .cta-runway {
  z-index: 1;
}
.home-page .footer-logo {
  width: 205px;
}
@media (max-width: 560px) {
  .home-page .footer-logo {
    width: 175px;
  }
}

/* Contact enquiry form — contact page only */
.contact-page .enquiry-section {
  background: #fff5e8;
}
.contact-page .enquiry-wrap {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 7vw;
  align-items: start;
}
.contact-page .enquiry-intro h2 {
  font-family: Lemon, Impact, sans-serif;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.84;
  text-transform: uppercase;
  margin: 0 0 22px;
}
.contact-page .enquiry-intro p {
  font-size: 17px;
  line-height: 1.75;
  max-width: 430px;
  color: #5f6470;
}
.contact-page .enquiry-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 28px;
  padding: 16px 18px;
  border: 2px solid #1b2330;
  border-radius: 20px;
  max-width: 430px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.contact-page .enquiry-note span:first-child {
  color: #e63800;
  font-size: 18px;
  line-height: 1;
}
.contact-page .enquiry-form {
  background: #ffaf03;
  border: 2px solid #1b2330;
  border-radius: 30px;
  padding: 30px;
  box-shadow: 12px 14px 0 #1b2330;
}
.contact-page .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-page .enquiry-form label {
  display: block;
  margin-bottom: 16px;
}
.contact-page .enquiry-form label > span {
  display: block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 8px;
}
.contact-page .enquiry-form input,
.contact-page .enquiry-form select,
.contact-page .enquiry-form textarea {
  width: 100%;
  border: 2px solid #1b2330;
  border-radius: 15px;
  background: #fff5e8;
  color: #1b2330;
  font: inherit;
  font-size: 14px;
  padding: 14px 15px;
  outline: none;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.contact-page .enquiry-form input,
.contact-page .enquiry-form select {
  height: 50px;
}
.contact-page .enquiry-form textarea {
  min-height: 145px;
  resize: vertical;
}
.contact-page .enquiry-form input::placeholder,
.contact-page .enquiry-form textarea::placeholder {
  color: #727782;
}
.contact-page .enquiry-form input:focus,
.contact-page .enquiry-form select:focus,
.contact-page .enquiry-form textarea:focus {
  box-shadow: 5px 5px 0 #e63800;
  transform: translate(-2px, -2px);
}
.contact-page .enquiry-submit {
  background: #e63800;
  color: #fff5e8;
  cursor: pointer;
  min-width: 170px;
}
.contact-page .form-footnote {
  font-size: 10px;
  color: #4f5560;
  margin: 12px 0 0;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .contact-page .enquiry-wrap {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .contact-page .enquiry-form {
    box-shadow: 8px 10px 0 #1b2330;
  }
}
@media (max-width: 560px) {
  .contact-page .enquiry-form {
    padding: 20px;
    border-radius: 24px;
  }
  .contact-page .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-page .enquiry-intro h2 {
    font-size: clamp(46px, 13vw, 64px);
  }
  .contact-page .enquiry-submit {
    width: 100%;
  }
  .contact-page .enquiry-note {
    font-size: 10px;
  }
}

/* Product category landing cards */
.category-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}
.category-card > a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.category-card .media {
  aspect-ratio: 1.25/1;
}
.category-card h2 {
  margin: 0 0 10px;
  font-family: 'Lemon Days', sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.95;
}
.category-card .body {
  padding: 24px;
}
@media (max-width: 760px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
  .category-card .media {
    aspect-ratio: 1.35/1;
  }
}

/* Home hero headline: playful dancing motion */
.home-page .hero h1.dance-title .line {
  display: block;
  transform-origin: 50% 90%;
  animation: homeLineDance 2.8s ease-in-out infinite;
}
.home-page .hero h1.dance-title .line:nth-child(1) {
  animation-delay: -0.2s;
}
.home-page .hero h1.dance-title .line:nth-child(2) {
  animation-delay: -0.65s;
}
.home-page .hero h1.dance-title .line:nth-child(3) {
  animation-delay: -1.1s;
}
.home-page .hero h1.dance-title .line:nth-child(4) {
  animation-delay: -1.55s;
}
.footer-grid > div:first-child address {
  margin-top: 18px;
  color: #aeb4bd;
  font-style: normal;
  font-size: 13px;
  line-height: 1.65;
}
@keyframes homeLineDance {
  0%,
  100% {
    transform: rotate(0deg) translateY(0);
  }
  20% {
    transform: rotate(-1.5deg) translateY(-3px);
  }
  40% {
    transform: rotate(1.7deg) translateY(1px);
  }
  60% {
    transform: rotate(-1deg) translateY(-2px);
  }
  80% {
    transform: rotate(0.8deg) translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-page .hero h1.dance-title .line {
    animation: none;
  }
}

/* Product cards are fully clickable; existing hover animations are preserved. */
.product-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Contact page: full-width food image between the intro and enquiry form. */
.contact-page .contact-intro-section .wrap {
  display: block;
}
.contact-page .contact-intro-section .story-copy {
  max-width: 620px;
}
.contact-page .contact-wide-image-section {
  width: 100%;
  padding: 0 0 72px;
  background: #fff5e8;
  overflow: hidden;
}
.contact-page .contact-wide-image {
  position: relative;
  width: 100%;
  height: clamp(300px, 42vw, 560px);
  overflow: hidden;
}
.contact-page .contact-wide-image > img:first-child {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.contact-page .contact-wide-image .side-mascot {
  z-index: 8;
  right: 3%;
  bottom: 0;
  width: clamp(110px, 13vw, 190px);
}
@media (max-width: 900px) {
  .contact-page .contact-wide-image-section {
    padding-bottom: 52px;
  }
  .contact-page .contact-wide-image {
    height: clamp(260px, 52vw, 430px);
  }
}
@media (max-width: 560px) {
  .contact-page .contact-wide-image-section {
    padding-bottom: 40px;
  }
  .contact-page .contact-wide-image {
    height: 270px;
  }
  .contact-page .contact-wide-image .side-mascot {
    width: 105px;
    right: 2%;
    bottom: 0;
  }
}

/* Commercial polish layer — keeps the existing Frozzato motion language intact. */
.nav-enquire {
  background: #e63800 !important;
  color: #fff5e8 !important;
  box-shadow: 0 5px 0 rgba(27, 35, 48, 0.12);
}
.nav-enquire:hover {
  background: #1b2330 !important;
  transform: translateY(-2px);
}
.mobile-enquire {
  background: #e63800 !important;
  color: #fff5e8 !important;
  border-radius: 999px;
  margin-top: 8px;
  text-align: center;
}
.home-confidence {
  background: #fff5e8;
}
.home-business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.home-business-card {
  border: 2px solid #1b2330;
  border-radius: 26px;
  padding: 28px;
  background: #fff;
  min-height: 255px;
  position: relative;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.home-business-card:hover {
  transform: translateY(-8px) rotate(-0.6deg);
  box-shadow: 10px 12px 0 #1b2330;
}
.home-business-card span {
  font-family: Lemon;
  font-size: 13px;
  opacity: 0.55;
  margin-bottom: 34px;
}
.home-business-card h3 {
  font-size: 28px;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.home-business-card p {
  line-height: 1.65;
  color: #5f6470;
  margin: 0 0 18px;
  max-width: 340px;
}
.home-business-card a {
  margin-top: auto;
  color: #1b2330;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.product-detail-main {
  padding-bottom: 75px;
}
.product-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 25px 0;
}
.product-info-grid > div {
  border: 2px solid #1b2330;
  border-radius: 18px;
  padding: 15px;
  background: #fff;
}
.product-info-grid span {
  display: block;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  opacity: 0.55;
  margin-bottom: 7px;
}
.product-info-grid strong {
  font-size: 14px;
  text-transform: uppercase;
}
.product-detail-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10px;
}
.text-link {
  color: #1b2330;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-bottom: 2px solid #1b2330;
  padding-bottom: 3px;
}
.product-confidence {
  background: #ffaf03;
}
.product-confidence .section-head p {
  color: #1b2330;
}
.product-confidence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.confidence-card {
  background: #fff5e8;
  border: 2px solid #1b2330;
  border-radius: 26px;
  padding: 26px;
  min-height: 220px;
  transition: 0.3s;
}
.confidence-card:hover {
  transform: translateY(-7px) rotate(1deg);
  box-shadow: 9px 11px 0 #1b2330;
}
.confidence-card span {
  font-family: Lemon;
  font-size: 12px;
  opacity: 0.55;
}
.confidence-card h3 {
  font-size: 27px;
  text-transform: uppercase;
  margin: 35px 0 10px;
}
.confidence-card p {
  line-height: 1.65;
  color: #5f6470;
  margin: 0;
}
.confidence-cta {
  margin-top: 25px;
}
@media (max-width: 900px) {
  .home-business-grid,
  .product-confidence-grid {
    grid-template-columns: 1fr;
  }
  .home-business-card,
  .confidence-card {
    min-height: 0;
  }
  .product-detail-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .product-detail-actions .btn {
    width: 100%;
  }
  .text-link {
    margin-left: 3px;
  }
}
@media (max-width: 560px) {
  .product-info-grid {
    grid-template-columns: 1fr;
  }
}

/* Accessibility and rendering polish */
:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid #e63800;
  outline-offset: 4px;
}
img {
  max-width: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
