*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Roboto", sans-serif;
  background: #fff;
  color: #1c1008;
  overflow-x: hidden;
}

/* ─── VARIABLES ─── */
:root {
  --red: #c03a18;
  --red-dark: #8b2810;
  --red-deep: #3d1208;
  --gold: #9cc752;
  --gold-lt: #b9df8e;
  --cream: #fffbf5;
  --cream2: #f5ecd8;
  --cream3: #ead9be;
  --ink: #1c1008;
  --ink2: #4a2e18;
  --ink3: #7a5a3a;
  --white: #ffffff;
}

.nav-custom {
  gap: 1rem;
}
.nav-custom li a {
  color: var(--red);
  font-weight: 500;
  transition: color 0.2s;
  font-size: 15px;
}

/* ─── HERO ─── */
#hero {
  background: url("images/slide-1.webp") no-repeat center/contain;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  /* background:radial-gradient(circle,rgba(201,145,58,.18) 0%,transparent 70%); */
  top: -200px;
  right: -100px;
  pointer-events: none;
}
.hero-glow2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  bottom: -150px;
  left: -100px;
  pointer-events: none;
}

/* hero main row */
.hero-body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 110px 64px 60px;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.hero-left {
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 145, 58, 0.15);
  border: 1px solid rgba(201, 145, 58, 0.35);
  color: var(--red);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-tag-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

h1.hero-h1 {
  font-family: "Quicksand", sans-serif;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
h1.hero-h1 em {
  font-style: italic;
  color: var(--red);
}
.hero-sub-h {
  font-family: "Quicksand", sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 300;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.hero-p {
  font-size: 15.5px;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-p strong {
  font-weight: 600;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  padding: 10px 30px;
  border-radius: 6px;
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}
.btn-red:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}
.btn-border {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  padding: 10px 30px;
  border-radius: 6px;
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid var(--gold);
  transition: all 0.25s;
}
.btn-border:hover {
  border-color: var(--gold-lt);
  color: var(--gold-lt);
  transform: translateY(-2px);
}

/* hero right: stacked product image cards */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-img-card {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}
.hero-img-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(0.88);
  transition: filter 0.4s;
}
.hero-img-card:hover img {
  filter: brightness(1);
}
.hero-img-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 20px 16px;
  background: linear-gradient(
    to top,
    rgba(28, 16, 8, 0.75) 0%,
    transparent 100%
  );
  color: #fff;
}
.hero-img-card-label h4 {
  font-family: "Quicksand", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 3px;
}
.hero-img-card-label p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.hero-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero-img-row .hero-img-card img {
  height: 150px;
}
.hero-img-card.tall img {
  height: 240px;
}

/* ─── COUNTER STRIP ─── */
.counter-strip {
  background: var(--red);
  position: relative;
  z-index: 3;
}
.counter-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.counter-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.counter-item:last-child {
  border-right: none;
}
.counter-num {
  font-family: "Quicksand", sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1;
}
.counter-lbl {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
  display: block;
}

/* ─── SHARED LAYOUT ─── */
.section {
  padding: 60px 0;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--red);
  display: block;
}
.eyebrow.center {
  justify-content: center;
}
.eyebrow.center::before {
  display: none;
}
.eyebrow.center::after {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--red);
  display: block;
}

h2.sec-title {
  font-family: "Quicksand", sans-serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 18px;
}
h2.sec-title em {
  font-style: italic;
  color: var(--red);
}
.sec-lead {
  font-size: 16px;
  line-height: 1.8;
  max-width: 620px;
}
.sec-lead.center {
  text-align: center;
  margin: 0 auto;
}

/* ─── ABOUT (2-col alternating like Foodera features) ─── */
.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-row.reverse {
  direction: rtl;
}
.about-row.reverse > * {
  direction: ltr;
}
.about-img {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.about-img img {
  width: 100%;
  display: block;
  /* aspect-ratio: 5/4; */
}
.about-img-badge {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: var(--red);
  color: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 12px 36px rgba(192, 58, 24, 0.4);
  display: none;
}
.about-img-badge .n {
  font-family: "Quicksand", sans-serif;
  font-size: 34px;
  font-weight: 900;
  display: block;
  line-height: 1;
}
.about-img-badge .l {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  display: block;
  margin-top: 3px;
}
.about-text {
}
.about-text p {
  font-size: 15.5px;
  line-height: 1.85;
  margin-bottom: 16px;
  letter-spacing: 0.01rem;
}
.about-text p strong {
  color: var(--ink2);
}
.feat-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.01rem;
}
.feat-list li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}

/* solutions grid */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.sol-card {
  background: var(--white);
  border: 1px solid var(--cream3);
  border-radius: 16px;
  padding: 5px 20px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.sol-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--red);
  transition: width 0.4s;
}
.sol-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(192, 58, 24, 0.1);
}
.sol-card:hover::after {
  width: 100%;
}
.sol-icon {
  font-size: 32px;
  margin-bottom: 18px;
  display: block;
}
.sol-card h4 {
  font-family: "Quicksand", sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.sol-card p {
  font-size: 14.5px;
  color: var(--ink3);
  line-height: 1.7;
}

/* ─── WHY US ─── */
#why {
  background: #c03a18d9;
  position: relative;
  overflow: hidden;
}
#why::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 80% 50%,
    rgba(192, 58, 24, 0.4),
    transparent
  );
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  overflow: hidden;
  margin-top: 52px;
}
.why-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 36px 30px;
  transition: background 0.3s;
}
.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
}
.why-icon {
  font-size: 32px;
  margin-bottom: 18px;
  display: block;
}
.why-card h4 {
  font-family: "Quicksand", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 16px !important;
  color: rgba(248, 248, 248, 0.6);
  line-height: 1.75;
}
#why .eyebrow {
  color: var(--gold-lt);
}
#why .eyebrow::before {
  background: var(--gold-lt);
}
#why h2.sec-title {
  color: #fff;
}
#why h2.sec-title em {
  color: var(--gold-lt);
}
#why .sec-lead {
  color: rgba(255, 255, 255, 0.65);
}

/* ─── INDUSTRIES ─── */
#industries {
  background: var(--cream);
}
.industries-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 44px;
}
.ind-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--gold);
  border-radius: 100px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink2);
  transition: all 0.25s;
  cursor: default;
}
.ind-chip:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192, 58, 24, 0.2);
}
.ind-chip span {
  font-size: 20px;
}

/* ─── PRODUCTS (Foodera card grid style) ─── */
#products {
  background: var(--white);
}
.products-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.prod-card {
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
}
.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(192, 58, 24, 0.13);
  border-color: var(--red);
}
.prod-card-img {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.prod-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.prod-card:hover .prod-card-img img {
  transform: scale(1.08);
}
.prod-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 18, 8, 0.8) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
}
.prod-card:hover .prod-card-overlay {
  opacity: 1;
}
.prod-cta {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  padding: 7px 20px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.3s 0.05s;
}
.prod-card:hover .prod-cta {
  opacity: 1;
}
.prod-emoji {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #fff;
  border-radius: 8px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.prod-body {
  padding: 16px;
}
.prod-name {
  font-family: "Quicksand", sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 5px;
}
.prod-desc {
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: 0.01rem;
}
.prod-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 9px;
}
.prod-tag {
  background: var(--gold);
  color: #fff;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
}

/* ─── CTA BANNER ─── */
#cta-banner {
  background: var(--red);
  padding: 45px 0;
  position: relative;
  overflow: hidden;
}
#cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 100% at 100% 50%,
    rgba(0, 0, 0, 0.2),
    transparent
  );
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-inner h2 {
  font-family: "Quicksand", sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  max-width: 640px;
}
.cta-inner h2 em {
  font-style: italic;
  color: var(--gold-lt);
}
.cta-inner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 10px;
  max-width: 560px;
}
.cta-actions {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--red);
  padding: 15px 30px;
  border-radius: 6px;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-white:hover {
  background: var(--gold-lt);
  color: var(--ink);
}
.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 15px 30px;
  border-radius: 6px;
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  white-space: nowrap;
  transition: all 0.25s;
}
.btn-ghost-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* ─── CONTACT ─── */
/*#contact{background:var(--cream)}*/
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h3 {
  font-family: "Quicksand", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}
.c-items {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.c-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.c-icon {
  width: 38px;
  height: 38px;
  min-width: 44px;
  border: 0.7px solid;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.c-item-body strong {
  display: block;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.c-item-body a {
  color: #1c1008;
  text-decoration: none;
}
.c-item-body a:hover {
  color: var(--red);
}

.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--gold);
}
.contact-form h4 {
  font-family: "Quicksand", sans-serif;
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 26px;
}
.fg {
  margin-bottom: 18px;
}
.fg label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 14.5px;
  outline: none;
  transition: border-color 0.2s;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--red);
  background: #fff;
}
.fg textarea {
  resize: vertical;
  min-height: 110px;
}
.fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ─── FOOTER ─── */
footer {
  color: #1c1008;
  padding: 64px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 15px;
}
.footer-brand .logo-text {
  color: #fff;
}
.footer-brand .logo-sub {
  color: rgba(255, 255, 255, 0.4);
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 14px;
  max-width: 260px;
  color: #1c1008;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--red);
  color: #fff;
}
.footer-col h5 {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 500;
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 10px;
}
.footer-col a {
  color: #0f0f0fc7;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--red);
}
.footer-bottom {
  border-top: 1px solid rgba(28, 16, 8, 0.12);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #0f0f0fc7;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
/* Large desktops / small laptops */
@media (max-width: 1200px) {
  h1.hero-h1 {
    font-size: 42px;
  }
}

/* Tablets landscape */
@media (max-width: 1024px) {
  nav {
    padding: 10px 32px;
  }
  .hero-body {
    padding: 100px 32px 50px;
    gap: 40px;
  }
  .container {
    padding: 0 32px;
  }
  .counter-inner {
    padding: 0 32px;
  }
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-top {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
  }
}

/* Tablets portrait */
@media (max-width: 900px) {
  .hero-body {
    grid-template-columns: 1fr;
    padding: 120px 28px 40px;
  }
  .hero-right {
    display: none;
  }
  h1.hero-h1 {
    font-size: 40px;
  }
  .hero-p {
    max-width: none;
  }
  .about-row,
  .about-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 40px;
  }
  .about-img-badge {
    bottom: 12px;
    right: 12px;
  }
  .products-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  h2.sec-title {
    font-size: 30px;
  }
}

/* Mobile landscape / large phones */
@media (max-width: 768px) {
  nav {
    padding: 0 20px;
  }
  .nav-ul {
    display: none;
  }
  .hero-body {
    padding: 110px 20px 36px;
  }
  .counter-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
  .counter-item:nth-child(2) {
    border-right: none;
  }
  .container {
    padding: 0 20px;
  }
  .section {
    padding: 48px 0;
  }
  .solutions-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .cta-actions {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .fg-row {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

/* Phones */
@media (max-width: 560px) {
  h1.hero-h1 {
    font-size: 33px;
  }
  .hero-sub-h {
    font-size: 18px;
  }
  .hero-btns .btn-red,
  .hero-btns .btn-border {
    flex: 1;
    justify-content: center;
  }
  .counter-inner {
    grid-template-columns: 1fr 1fr;
  }
  .counter-num {
    font-size: 32px;
  }
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-brand p {
    max-width: none;
  }
  h2.sec-title {
    font-size: 26px;
  }
}

/* Small phones */
@media (max-width: 380px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .counter-inner {
    grid-template-columns: 1fr;
  }
  .counter-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  .counter-item:last-child {
    border-bottom: none;
  }
}

/* ══════════════════════════════════════════════════════════════
   PRODUCT / SERVICE PAGES – shared styles
   (consolidated from inline service-page CSS so every service
   page reuses the same rules)
   ══════════════════════════════════════════════════════════════ */

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: url("images/organic-grains.jpg") no-repeat center/cover;
  min-height: 340px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-top: 80px;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(61, 18, 8, 0.82) 0%,
    rgb(192 58 24 / 11%) 100%
  );
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 70%;
  /* margin:0 auto; */
  width: 100%;
  padding: 48px 64px 52px;
}
.page-hero-inner .eyebrow {
  color: var(--gold-lt);
}
.page-hero-inner .eyebrow::before {
  background: var(--gold-lt);
}
.page-hero-inner h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.page-hero-inner h1 em {
  color: var(--gold-lt);
  font-style: italic;
}
.page-hero-inner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 700px;
  line-height: 1.8;
}

/* ─── BREADCRUMB ─── */
.breadcrumb-bar {
  background: var(--cream2);
  border-bottom: 1px solid var(--cream3);
  padding: 12px 0;
}
.breadcrumb-bar .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink3);
}
.breadcrumb-bar a {
  color: var(--red);
  text-decoration: none;
}
.breadcrumb-bar a:hover {
  text-decoration: underline;
}
.breadcrumb-bar span {
  opacity: 0.5;
}

/* ─── INTRO BLOCK ─── */
.prod-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 60px 0 48px;
}
.prod-intro-text p {
  font-size: 15.5px;
  line-height: 1.85;
  margin-bottom: 14px;
}
.prod-intro-ctas {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* sticky sidebar card */
.prod-intro-card {
  background: var(--white);
  border: 1px solid var(--gold-lt);
  padding: 32px;
  position: sticky;
  top: 90px;
}
.prod-intro-card h4 {
  font-family: "Quicksand", sans-serif;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 20px;
  font-weight: 700;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
}
.spec-table tr {
  border-bottom: 1px solid var(--gold-lt);
}
.spec-table tr:last-child {
  border-bottom: none;
}
.spec-table td {
  padding: 10px 0;
  font-size: 13.5px;
  vertical-align: top;
  line-height: 1.5;
}
.spec-table td:first-child {
  font-weight: 500;
  width: 46%;
  padding-right: 12px;
}

/* ─── FLAVOUR RANGE GRID ─── */
.flavour-section {
  padding: 56px 0;
  background: var(--white);
}
.flavour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.flavour-card {
  background: var(--white);
  border: 1px solid var(--cream3);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.flavour-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  transition: background 0.3s;
}
.flavour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(192, 58, 24, 0.1);
  border-color: var(--red);
}
.flavour-card:hover::before {
  background: var(--red);
}
.flavour-card h4 {
  font-family: "Quicksand", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.flavour-card p {
  font-size: 14px;
  line-height: 1.7;
}
.flavour-card-custom {
  background: linear-gradient(135deg, #7ca830 0%, #c8eaa3 100%);
  border-color: var(--red);
  color: #fff;
}
.flavour-card-custom::before {
  background: rgba(255, 255, 255, 0.3);
}
.flavour-card-custom h4 {
  color: #fff;
}
.flavour-card-custom p {
  color: rgba(255, 255, 255, 0.8);
}

/* ─── APPLICATIONS ─── */
.applications-section {
  padding: 56px 0;
}
.app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.app-chip {
  background: var(--white);
  padding: 0px 0px 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink2);
  text-align: center;
  transition: all 0.25s;
}
.app-chip img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
}
.app-chip:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(192, 58, 24, 0.2);
}

/* ─── WHY CHOOSE – strip ─── */
.why-section {
  padding: 56px 0;
  background: var(--cream);
}
.why-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  background: var(--red);
  border-radius: 18px;
  overflow: hidden;
  margin-top: 44px;
}
.why-strip-card {
  padding: 32px 26px;
  background: rgb(255 255 255 / 20%);
  transition: background 0.3s;
}
.why-strip-card:hover {
  background: rgba(255, 255, 255, 0.12);
}
.why-strip-card h4 {
  font-family: "Quicksand", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.why-strip-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

/* ─── INDUSTRIES ─── */
.industries-section {
  padding: 56px 0;
}
.ind-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

/* ─── FAQ ─── */
.faq-section {
  padding: 56px 0;
  background: #b9df8e80;
}
.faq-list {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--cream3);
  border-radius: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: "Quicksand", sans-serif;
  font-size: 16px;
  color: var(--ink);
  transition: color 0.2s;
  gap: 14px;
}
.faq-q:hover {
  color: var(--red);
}
.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--cream2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  color: var(--red);
  transition:
    transform 0.3s,
    background 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--red);
  color: #fff;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 4px;
}
.faq-a p {
  padding: 0 24px 20px;
  font-size: 14.5px;
  line-height: 1.75;
}

/* ─── RESPONSIVE for product / service pages ─── */
@media (max-width: 1024px) {
  .page-hero-inner {
    padding: 40px 32px 44px;
  }
  .prod-intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .prod-intro-card {
    position: static;
  }
  .flavour-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .app-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .page-hero {
    min-height: 280px;
  }
  .page-hero-inner {
    padding: 32px 20px 36px;
  }
  .prod-intro {
    padding: 36px 0 28px;
  }
  .flavour-grid {
    grid-template-columns: 1fr;
  }
  .why-strip {
    grid-template-columns: 1fr;
  }
  .app-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .breadcrumb-bar .container {
    padding: 0 20px;
  }
}
@media (max-width: 480px) {
  .app-grid {
    grid-template-columns: 1fr 1fr;
  }
  .app-chip img {
    height: 9rem;
  }
  .prod-intro-card {
    padding: 24px;
  }
}

/* ─── NAV DROPDOWN (Products) ─── */
.nav-custom .dropdown-menu {
  border: 1px solid var(--cream3);
  border-radius: 10px;
  padding: 8px;
  box-shadow: 0 12px 40px rgba(28, 16, 8, 0.12);
  margin-top: 8px;
}
.nav-custom .dropdown-item {
  color: var(--ink2);
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  padding: 8px 14px;
  transition: all 0.2s;
}
.nav-custom .dropdown-item:hover,
.nav-custom .dropdown-item:focus {
  background: var(--red);
  color: #fff;
}
.nav-custom .dropdown-toggle {
  color: var(--red);
}

/* ══════════════════════════════════════════════════════════════
   ABOUT US & CONTACT US PAGES – shared additions
   ══════════════════════════════════════════════════════════════ */

/* ─── ABOUT: OUR VALUES ─── */
.value-card {
  background: var(--white);
  border-radius: 16px;
  padding: 20px 26px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.value-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--red);
  transition: width 0.4s;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(192, 58, 24, 0.1);
  border-color: var(--red);
}
.value-card:hover::after {
  width: 100%;
}
.value-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  object-fit: cover;
  margin-bottom: 18px;
  display: block;
}
.value-card h4 {
  font-size: 18px;
  color: var(--red);
  margin-bottom: 10px;
}
.value-card p {
  line-height: 1.7;
  margin-bottom: 0;
}

/* ─── ABOUT: WHAT WE DO (tabs) ─── */
.whatwedo-tabs {
  border: none;
  gap: 10px;
  margin-top: 24px;
  justify-content: center;
  flex-wrap: wrap;
  padding-left: 0;
}
.whatwedo-tabs .nav-link {
  border: 1.5px solid var(--gold);
  border-radius: 100px;
  color: var(--ink2);
  font-weight: 500;
  font-size: 14px;
  padding: 10px 28px;
  font-family: "Quicksand", sans-serif;
  transition: all 0.25s;
  background: transparent;
}
.whatwedo-tabs .nav-link:hover {
  border-color: var(--red);
  color: var(--red);
}
.whatwedo-tabs .nav-link.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.whatwedo-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}
.whatwedo-panel img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--cream3);
  display: block;
}
.whatwedo-title {
  font-family: "Quicksand", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
}
.whatwedo-title em {
  font-style: italic;
  color: var(--red);
}
.whatwedo-panel p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--ink2);
  margin-bottom: 14px;
  letter-spacing: 0.01rem;
}

/* ─── CONTACT: MAP ─── */
.map-wrap {
  line-height: 0;
  overflow: hidden;
}
.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

/* ─── RESPONSIVE (About / Contact additions) ─── */
@media (max-width: 900px) {
  .whatwedo-panel {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .map-wrap iframe {
    height: 340px;
  }
}

/* ══════════════════════════════════════════════════════════════
   CSR · ACCREDITATION · BLOG  – added for the revamp
   ══════════════════════════════════════════════════════════════ */

/* ─── Intro lead block (shared) ─── */
.lead-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.lead-block .sec-lead {
  margin: 0 auto;
}

/* ─── CSR quote ─── */
.csr-quote {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 6px 0 0;
  text-align: center;
}
.csr-quote blockquote {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.45;
  color: var(--ink);
  margin: 0;
}
.csr-quote blockquote::before {
  content: "“";
  font-family: "Fraunces", serif;
  font-size: 70px;
  color: var(--gold);
  line-height: 0;
  display: block;
  margin-bottom: 18px;
}
.csr-quote cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}

/* ─── Masonry-style gallery ─── */
.csr-gallery {
  columns: 3;
  column-gap: 18px;
  margin-top: 8px;
}
.csr-gallery a {
  display: block;
  margin: 0 0 18px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  break-inside: avoid;
  border: 1px solid var(--cream3);
  box-shadow: 0 6px 22px rgba(28, 16, 8, 0.06);
  transition:
    transform 0.35s,
    box-shadow 0.35s;
}
.csr-gallery a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 18, 8, 0.45), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
}
.csr-gallery a:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(192, 58, 24, 0.18);
}
.csr-gallery a:hover::after {
  opacity: 1;
}
.csr-gallery img {
  width: 100%;
  display: block;
}
@media (max-width: 900px) {
  .csr-gallery {
    columns: 2;
  }
}
@media (max-width: 560px) {
  .csr-gallery {
    columns: 1;
  }
}

/* ─── CSR pillars ─── */
.csr-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.csr-pillar {
  background: var(--white);
  border: 1px solid var(--cream3);
  border-radius: 16px;
  padding: 30px 26px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.csr-pillar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--red);
  transition: width 0.4s;
}
.csr-pillar:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(192, 58, 24, 0.1);
  border-color: var(--red);
}
.csr-pillar:hover::after {
  width: 100%;
}
.csr-pillar .ic {
  font-size: 30px;
  margin-bottom: 16px;
  display: block;
}
.csr-pillar h4 {
  font-family: "Quicksand", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.csr-pillar p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink3);
}
@media (max-width: 900px) {
  .csr-pillars {
    grid-template-columns: 1fr;
  }
}

/* ─── Accreditation certificate showcase ─── */
.cert-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 8px;
}
.cert-card {
  background: var(--white);
  border: 1px solid var(--cream3);
  border-radius: 18px;
  padding: 18px;
  transition: all 0.3s;
  text-align: center;
}
.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(192, 58, 24, 0.12);
  border-color: var(--red);
}
.cert-card a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream);
}
.cert-card img {
  width: 100%;
  display: block;
  object-fit: contain;
  max-height: 520px;
}
.cert-card .cap {
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
  margin-top: 14px;
}

/* ─── Accreditation badges row ─── */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 44px;
}
.badge-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--gold);
  border-radius: 100px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink2);
  transition: all 0.25s;
}
.badge-chip:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  transform: translateY(-2px);
}
.badge-chip span {
  font-size: 18px;
}

/* ══════════════════════════════════════════════════════════════
   BLOG
   ══════════════════════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--cream3);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.32s;
  position: relative;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 54px rgba(192, 58, 24, 0.13);
  border-color: var(--red);
}
.blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--cream2);
  position: relative;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}
.blog-card-img .ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #7ca830, #c8eaa3);
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
}
.blog-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink3);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.blog-card-meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.blog-card h3 {
  font-family: "Quicksand", sans-serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 10px;
}
.blog-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.blog-card:hover h3 a {
  color: var(--red);
}
.blog-card p {
  font-size: 12px;
  line-height: 1.7;
  /*color: var(--ink3);*/
  margin-bottom: 18px;
  flex: 1;
}
.blog-card .read-more {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--red);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s;
}
.blog-card .read-more:hover {
  gap: 12px;
}
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* empty state */
.blog-empty {
  text-align: center;
  padding: 60px 20px;
  border: 1.5px dashed var(--cream3);
  border-radius: 18px;
  color: var(--ink3);
  max-width: 560px;
  margin: 0 auto;
}

/* ─── Blog detail / article ─── */
.article-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink3);
  margin-bottom: 26px;
  text-transform: uppercase;
}
.article-meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.article-hero-img {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 0 36px;
  border: 1px solid var(--cream3);
  aspect-ratio: 16/8;
  background: var(--cream2);
}
.article-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.article-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink2);
  font-weight: 500;
  margin-bottom: 28px;
  padding-left: 18px;
  border-left: 3px solid var(--gold);
}

/* WYSIWYG content typography */
.article-body {
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--ink2);
}
.article-body p {
  margin-bottom: 20px;
}
.article-body h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  margin: 38px 0 16px;
}
.article-body h3 {
  font-family: "Quicksand", sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--ink);
  margin: 30px 0 14px;
}
.article-body h4 {
  font-family: "Quicksand", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 24px 0 12px;
}
.article-body ul,
.article-body ol {
  margin: 0 0 22px;
  padding-left: 24px;
}
.article-body li {
  margin-bottom: 9px;
  line-height: 1.75;
}
.article-body a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-body a:hover {
  color: var(--gold);
}
.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  margin: 14px 0;
  border: 1px solid var(--cream3);
}
.article-body blockquote {
  margin: 26px 0;
  padding: 18px 26px;
  border-left: 4px solid var(--red);
  background: var(--cream);
  border-radius: 0 12px 12px 0;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  font-size: 15px;
}
.article-body th,
.article-body td {
  border: 1px solid var(--cream3);
  padding: 10px 14px;
  text-align: left;
}
.article-body th {
  background: var(--cream2);
  font-weight: 600;
}
.article-body pre {
  background: var(--ink);
  color: #f5f5f5;
  padding: 18px;
  border-radius: 12px;
  overflow: auto;
  font-size: 14px;
  margin: 22px 0;
}
.article-body code {
  background: var(--cream2);
  padding: 2px 6px;
  border-radius: 5px;
  font-size: 0.9em;
}
.article-body pre code {
  background: none;
  padding: 0;
}

/* keyword tags + share */
.article-foot {
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid var(--cream3);
}
.kw-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}
.kw-tags .kw {
  background: var(--cream2);
  color: var(--ink2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
  font-size: 14.5px;
  transition: gap 0.2s;
}
.back-link:hover {
  gap: 12px;
}

/* related posts */
.related-wrap {
  margin-top: 30px;
}
.related-wrap h3.sec-title {
  text-align: center;
}
