/* ---------------------------------------------------------
   1. VARIABLES
   --------------------------------------------------------- */
:root {
  --ap-cream: #fff3e9;
  --ap-cream-light: #fffaf8;
  --ap-cream-dark: #ede0ce;
  --ap-tan: #d9c4a8;
  --ap-brown-light: #a5602c;
  --ap-ocer: #c6957f;
  --ap-copper: #c17a3a;
  --ap-copper-dark: #9b5e25;
  --ap-brown: #a5602c;
  --ap-brown-dark: #2c1208;
  --ap-dark: #1a0a04;
  --ap-white: #ffffff;
  --ap-green-nav: #3b5e3a;
  --ap-sustainability-bg: #f2e1d8;

  --fs-hero: clamp(2.2rem, 5vw, 3.5rem);
  --fs-h2: clamp(1.8rem, 3.5vw, 2.8rem);
  --fs-h3: clamp(1.3rem, 2.5vw, 1.9rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-caption: 0.75rem;

  --section-py: 5rem;
  --section-py-sm: 3rem;

  --text-dark: #725e54;

  --font-primary: 'HypatiaSansPro', sans-serif;
  --font-secondary: 'League Spartan', sans-serif;
}

@font-face {
  font-family: 'HypatiaSansPro';
  src:
    url('../assets/fonts/HypatiaSansPro-Regular.woff2') format('woff2'),
    url('../assets/fonts/HypatiaSansPro-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'HypatiaSansPro';
  src:
    url('../assets/fonts/HypatiaSansPro-Semibold.woff2') format('woff2'),
    url('../assets/fonts/HypatiaSansPro-Semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Kanit';
  src:
    url('../assets/fonts/Kanit-Light.woff2') format('woff2'),
    url('../assets/fonts/Kanit-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'League Spartan';
  src:
    url('../assets/fonts/LeagueSpartan-Regular.woff2') format('woff2'),
    url('../assets/fonts/LeagueSpartan-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'League Spartan';
  src:
    url('../assets/fonts/LeagueSpartan-Thin.woff2') format('woff2'),
    url('../assets/fonts/LeagueSpartan-Thin.woff') format('woff');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1660px;
  }
}

/* ---------------------------------------------------------
   2. BASE
   --------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 20px;
}

@media (max-width: 992px) {
  html {
    font-size: 17px;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 15px;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 13px;
  }
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  font-weight: normal;
  color: var(--ap-brown-dark);
  background-color: var(--ap-cream);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.font-display {
  font-family: var(--font-secondary);
  font-weight: 600;
  line-height: 1.2;
}

h2 {
  font-size: 3.5rem;
}

@media (max-width: 576px) {
  p {
    margin-bottom: 0;
  }
}

a {
  color: var(--ap-copper);
  text-decoration: none;
}
a:hover {
  color: var(--ap-copper-dark);
}

img {
  max-width: 100%;
  height: auto;
}

/* ---------------------------------------------------------
   3. NAVBAR
   --------------------------------------------------------- */
.ap-navbar {
  background-color: transparent;
  margin-top: -188px;
  padding: 2rem 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  transition:
    background-color 0.3s ease,
    padding 0.3s ease,
    box-shadow 0.3s ease;
}

.ap-navbar.is-scrolled {
  background-color: var(--ap-cream-light);
  padding: 1rem 0;
}

.ap-navbar-logo {
  width: 12.8rem;
  height: auto;
}

.ap-navbar .navbar-nav .nav-link {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ap-brown-dark);
  padding: 0.5rem 1.5rem !important;
  border-radius: 6px;
  transition:
    background-color 0.2s,
    color 0.2s;
}

.ap-navbar .nav-link:hover {
  color: var(--ap-copper);
}

.ap-navbar .nav-link.active {
  background-color: var(--ap-ocer);
  color: var(--ap-white);
  padding: 0 0.5rem !important;
  border-radius: 3px;
}
.ap-navbar .nav-link.active:hover {
  background-color: var(--ap-brown-light);
  color: var(--ap-white);
}

.ap-navbar .nav-link.ap-nav-contact {
  color: var(--ap-copper);
  font-weight: 500;
}
.ap-navbar .nav-link.ap-nav-contact:hover {
  color: var(--ap-copper-dark);
}

.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  width: 2rem;
  height: 2rem;
}

@media (min-width: 1601px) and (max-width: 1880px) {
  .ap-navbar .navbar-nav .nav-link {
    padding: 10px 15px !important;
  }
}

@media (min-width: 1441px) and (max-width: 1600px) {
  .ap-navbar .navbar-nav .nav-link {
    padding: 10px !important;
    font-size: 1rem;
  }
}

@media (min-width: 1200px) and (max-width: 1440px) {
  .ap-navbar .navbar-nav .nav-link {
    padding: 10px 5px !important;
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .ap-navbar {
    margin-top: -110px;
    transition: margin-top 0.2s ease;
  }

  .ap-navbar.ap-navbar--menu-open {
    margin-top: -410px;
    background-color: var(--ap-white);
  }

  .ap-navbar .nav-link.active {
    padding: 0.5rem 1.5rem !important;
  }

  .ap-navbar-logo {
    width: 10rem;
  }
}

@media (max-width: 576px) {
  .ap-navbar-logo {
    width: 10rem;
  }

  .ap-navbar .nav-link {
    font-size: 1.1rem;
  }
}

/* ---------------------------------------------------------
   4. HERO SECTION
   --------------------------------------------------------- */
.ap-hero {
  background-color: var(--ap-cream);
  padding: 7.5rem 0 0;
  position: relative;
  overflow: hidden;
}

.ap-hero::before {
  position: absolute;
  content: '';
  background-image: url('../assets/images/hero-illustrations3.svg');
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

@media (max-width: 992px) {
  .ap-hero::before {
    background-image: url('../assets/images/hero-illustrations-tablet.svg');
  }
}

@media (max-width: 576px) {
  .ap-hero::before {
    background-image: url('../assets/images/hero-illustrations-mobile.svg');
  }
}

.ap-hero__title {
  font-size: var(--fs-hero);
  color: var(--ap-brown-dark);
  margin-bottom: 3rem;
  line-height: 1.1;
}

.ap-hero__subtitle {
  font-size: 2.65rem;
}

.ap-hero__title em {
  font-style: normal;
  color: var(--ap-copper);
}

.ap-hero__lead {
  font-size: 1.7rem;
  color: #1a1a1a;
}

.ap-hero__image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ap-hero__image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 34.2rem;
  aspect-ratio: 1;
}

@media (max-width: 1439px) {
  .ap-hero__lead {
    font-size: 1.2rem;
  }
}

@media (max-width: 1500px) {
  .ap-hero__title {
    margin-bottom: 1rem;
  }
}

@media (max-width: 992px) {
  .ap-hero__image-wrap img {
    width: 22rem;
  }

  .ap-hero {
    padding-top: 8rem;
  }

  .ap-hero__subtitle {
    font-size: 1.6rem;
  }

  .ap-hero__lead {
    font-size: 1.1rem;
    max-width: 100%;
  }

  .ap-hero__image-wrap {
    max-width: 25rem;
    margin-left: auto;
    margin-right: auto;
  }

  .ap-hero__title {
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .ap-hero__image-wrap img {
    width: 15rem;
  }

  .ap-hero {
    padding-top: 10rem;
  }

  .ap-hero__subtitle {
    font-size: 1.6rem;
  }

  .ap-hero__lead {
    font-size: 1rem;
  }
}

.ap-wave {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: relative;
  margin-top: 3rem;
}

.ap-wave svg {
  display: block;

  margin-bottom: -3px;
}
.ap-wave--flip {
  transform: scaleX(-1);
  margin-top: -1rem;
}

.ap-wave--foter {
  background-color: var(--ap-sustainability-bg);
  margin-top: 0;
}

.ap-wave--foter.ap-wave-sustainability {
  background-color: #c6957f;
}
.ap-wave--foter.ap-wave-about--footer,
.ap-wave.ap-wave--foter.ap-wave-footer--quality {
  background-color: var(--ap-cream);
}

.ap-wave.ap-wave--foter.ap-wave--blog {
  background-color: var(--ap-white);
}
.ap-wave-asset3 {
  display: block;
  width: 100%;
  line-height: 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
  background-color: var(--ap-ocer);
}

.ap-wave-asset3 svg {
  display: block;
  width: 100%;
  height: 35rem;
}

.ap-wave.ap-wave--products {
  margin-bottom: 5rem;
}

.ap-wave.ap-wave--flip.ap-wave--white-up {
  background-color: var(--ap-ocer);
}

.ap-wave.ap-wave--flip.ap-wave--end-to-end {
  background-color: var(--ap-sustainability-bg);
}

@media (max-width: 992px) {
  .ap-wave--flip {
    margin-top: 0;
  }

  .ap-wave-asset3 svg {
    height: 18rem;
  }
}

@media (max-width: 576px) {
  .ap-wave-asset3 svg {
    height: 10rem;
  }
}

/* ---------------------------------------------------------
   5. ORIGIN ADVANTAGE (dark band)
   --------------------------------------------------------- */
.ap-origin {
  background-color: var(--ap-ocer);
  color: var(--ap-cream);
  padding: var(--section-py) 0;
  position: relative;
  text-align: center;
}

.ap-origin::before {
  position: absolute;
  content: '';
  background-image: url('../assets/images/origin-illustrations.svg');
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: -318px;
  left: 0;
  background-size: cover;
}

@media (max-width: 1500px) {
  .ap-origin::before {
    top: -200px;
  }
}

@media (max-width: 992px) {
  .ap-origin::before {
    top: -100px;
  }
}

@media (max-width: 576px) {
  .ap-origin::before {
    top: -50px;
  }
}

.ap-origin h2 {
  color: var(--ap-white);
  margin-bottom: 1.25rem;
}

.ap-origin p {
  color: var(--ap-white);
  max-width: 70rem;
  margin: 0 auto;
  font-size: 2rem;
  line-height: 1.3;
}

@media (max-width: 1439px) {
  .ap-origin p {
    font-size: 1.2rem;
  }
}

@media (max-width: 992px) {
  .ap-origin {
    padding: var(--section-py-sm) 0;
  }

  .ap-origin h2 {
    font-size: 2.4rem;
  }

  .ap-origin p {
    font-size: 1.15rem;
  }
}

@media (max-width: 576px) {
  .ap-origin p {
    font-size: 1rem;
  }

  .ap-origin h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 375px) {
  .ap-origin p {
    font-size: 0.95rem;
  }
}

/* ---------------------------------------------------------
   6. PROMISE SECTION
   --------------------------------------------------------- */
.ap-promise {
  position: relative;
  background-color: var(--ap-ocer);
  padding: 6rem 0;
  text-align: center;
  overflow: visible;
  z-index: 1;
}

.ap-promise.ap-commitment {
  background-color: var(--ap-cream);
}

.ap-promise::before {
  position: absolute;
  content: '';
  background-image: url('../assets/images/promise-illustrations.svg');
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: -20px;
  left: 0;
}

@media (max-width: 992px) {
  .ap-promise::before {
    top: 7px;
  }
}

.ap-promise .container.ap-section-inner {
  padding-top: 5rem;
}

.ap-promise-dome {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.ap-promise-dome--reverse {
  transform: rotateX(180deg);
}

.ap-promise-dome svg {
  display: block;
  width: 100%;
  height: 100%;
}

.ap-promise h2 {
  margin-bottom: 1rem;
}

.ap-promise__tagline {
  font-size: 2rem;
  color: var(--ap-brown);
  margin-bottom: 2rem;
}

@media (max-width: 1439px) {
  .ap-promise__tagline {
    font-size: 1.2rem;
  }
}

@media (max-width: 992px) {
  .ap-promise {
    padding: 4rem 0;
  }

  .ap-promise h2 {
    font-size: 2.4rem;
  }

  .ap-promise .container.ap-section-inner {
    padding-top: 3rem;
  }

  .ap-promise__tagline {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .ap-promise {
    padding: 3rem 0;
  }

  .ap-promise h2 {
    font-size: 1.8rem;
  }

  .ap-promise__tagline {
    font-size: 1rem;
  }
}

.ap-info-icon {
  width: 140px;
  height: auto;
}

@media (max-width: 992px) {
  .ap-info-icon {
    width: 100px;
  }
}

@media (max-width: 576px) {
  .ap-info-icon {
    width: 70px;
  }
}

/* ---------------------------------------------------------
   7. BUTTONS
   --------------------------------------------------------- */
.ap-btn {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.65rem 1.6rem;
  border-radius: 30px;
  border: 1.5px solid transparent;
  color: #8e6042;
  background: var(--ap-white);
  transition:
    background 0.2s,
    color 0.2s;
  cursor: pointer;
}

.ap-btn:hover {
  background-color: var(--ap-copper);
  color: var(--ap-white);
}

.ap-btn--filled {
  background-color: transparent;
  color: #8e6042;
  border-color: #8e6042;
}

.ap-btn--filled:hover {
  background-color: var(--ap-copper-dark);
  color: var(--ap-white);
}

@media (max-width: 576px) {
  .ap-btn {
    padding: 0.55rem 1.3rem;
    font-size: 0.85rem;
  }
}

/* ---------------------------------------------------------
   ABOUT US
   --------------------------------------------------------- */
.ap-about-us {
  position: relative;
}

.ap-about-us::before {
  position: absolute;
  content: '';
  background-image: url('../assets/images/about-illustration.svg');
  background-repeat: no-repeat;
  width: 500px;
  height: 100%;
  top: 80%;
  left: 0;
  transform: translateY(-80%);
}

@media (max-width: 992px) {
  .ap-about-us::before {
    width: 200px;
  }
}

@media (max-width: 576px) {
  .ap-about-us::before {
    width: 100px;
  }
}

/* ---------------------------------------------------------
   8. TWO-COLUMN INFO SECTIONS
   (About, Products, Export, Sustainability)
   --------------------------------------------------------- */
.ap-info-section {
  padding: var(--section-py) 0 0;
  position: relative;
  overflow: hidden;
}

.ap-info-section.ap-info-section--export {
  padding: var(--section-py) 0;
  background-color: var(--ap-ocer);
}
.ap-info-section.ap-info-section--export h2 {
  margin-bottom: 4rem;
}

.ap-info-section.ap-info-section--export .ap-info-section__sub {
  font-family: var(--font-secondary);
}

.ap-info-section.ap-info-section--export .ap-info-section__sub,
.ap-info-section.ap-info-section--export p {
  color: var(--ap-white);
}

.ap-info-section.ap-info-section-products {
  padding: var(--section-py) 0 var(--section-py);
  background: var(--ap-ocer);
  z-index: -1;
  position: relative;
  overflow: visible;
}

.ap-info-section.ap-info-section-products::before {
  position: absolute;
  content: '';
  background-image: url('../assets/images/product-illustration.svg');
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: -320px;
  left: 0;
}

@media (max-width: 1439px) {
  .ap-info-section.ap-info-section-products::before {
    top: -200px;
  }
}

@media (max-width: 992px) {
  .ap-info-section.ap-info-section-products::before {
    top: -150px;
  }
}

@media (max-width: 576px) {
  .ap-info-section.ap-info-section-products::before {
    top: -100px;
  }
}

.ap-info-section.ap-info-section-products .container.ap-section-inner {
  padding-bottom: 7.5rem;
}

.ap-info-section.ap-info-section-products .ap-readmore {
  color: var(--ap-brown-light);
  font-size: 1.5rem;
}

.ap-info-section--alt {
  background-color: var(--ap-white);
}

.ap-info-section__label {
  display: block;
  width: 6rem;
  height: 0.5rem;
  background-color: #da6b49;
  margin-bottom: 1.25rem;
}

.ap-info-section h2 {
  color: var(--ap-brown-dark);
  margin-bottom: 2.3rem;
  font-size: 5rem;
}

.ap-info-section-products .ap-info-section__sub {
  font-size: 1.7rem !important;
  color: var(--ap-dark);
  margin-bottom: 0.5rem;
}

.ap-info-section__label.ap-info-section__label--small {
  width: 2.5rem;
  height: 0.3rem;
}

.ap-info-section p {
  color: var(--ap-brown);
  font-size: 1.8rem;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.ap-section-subtitle {
  margin-top: 0.75rem;
  font-size: 2rem;
}

.ap-specs {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0.4rem;
}

.ap-specs li {
  padding: 0.01rem 0;
  font-size: 1.7rem;
  color: var(--ap-dark);
  display: flex;
  gap: 0.5rem;
}

.ap-spec-label {
  font-weight: 600;
  color: var(--ap-brown-dark);
}

.ap-readmore {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--ap-dark);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  transition: gap 0.2s;
}

.ap-readmore:hover {
  gap: 0.6rem;
  color: var(--ap-copper-dark);
}

@media (max-width: 1439px) {
  .ap-info-section p {
    font-size: 1.1rem;
    line-height: 1.4;
  }

  .ap-info-section h2 {
    font-size: 3rem;
  }
  .ap-specs li {
    font-size: 1rem;
  }

  .ap-readmore {
    font-size: 1.2rem;
  }
}

@media (max-width: 1439px) {
  .ap-info-section.ap-info-section-products .ap-readmore {
    font-size: 1rem;
  }
}

@media (max-width: 992px) {
  .ap-info-section {
    padding: var(--section-py-sm) 0 0;
  }

  .ap-info-section.ap-info-section--export {
    padding: var(--section-py-sm) 0;
  }
  .ap-info-section.ap-info-section--export h2 {
    margin-bottom: 1rem;
  }

  .ap-info-section.ap-info-section-products {
    padding: var(--section-py-sm) 0;
  }
  .ap-info-section.ap-info-section-products .container.ap-section-inner {
    padding-bottom: 4rem;
  }
  .ap-info-section.ap-info-section-products .ap-readmore {
    font-size: 1.2rem;
  }

  .ap-info-section__label {
    width: 4rem;
    height: 0.4rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    margin: 0 auto;
    display: block;
    text-align: center;
  }

  .ap-info-section h2 {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
  }

  .ap-info-section-products .ap-info-section__sub {
    font-size: 1.2rem !important;
  }

  .ap-info-section p {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 0;
  }

  .ap-section-subtitle {
    font-size: 1.2rem;
  }

  .ap-specs li {
    font-size: 1rem;
  }

  .ap-readmore {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .ap-info-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .ap-info-section p {
    font-size: 1rem;
  }

  .ap-section-subtitle {
    font-size: 1rem;
  }

  .ap-specs li {
    font-size: 0.95rem;
  }

  .ap-readmore {
    font-size: 1.05rem;
  }

  .ap-info-section.ap-info-section-products .ap-readmore {
    font-size: 1.05rem;
  }

  .ap-info-section__label {
    width: 3rem;
    height: 0.3rem;
  }

  .ap-info-section__label.ap-info-section__label--small {
    width: 2rem;
    height: 0.25rem;
  }
}

@media (max-width: 375px) {
  .ap-info-section h2 {
    font-size: 1.55rem;
  }

  .ap-info-section p {
    font-size: 0.92rem;
  }

  .ap-readmore {
    font-size: 0.95rem;
  }
}

/* ---------------------------------------------------------
   9. DECORATIVE CIRCLE / BLOB BACKGROUNDS
   --------------------------------------------------------- */
.ap-circle-bg {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, var(--ap-tan) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.ap-section-inner {
  position: relative;
  z-index: 1;
}

.ap-info-section.ap-info-section__sustainiability {
  background-color: var(--ap-sustainability-bg);
  padding: 0 0 3.75rem;
  margin-top: -15rem;
  z-index: 222;
  position: relative;
  overflow: visible;
}

.ap-info-section.ap-info-section__sustainiability::before {
  position: absolute;
  content: '';
  background-image: url('../assets/images/sustainability-illustration.svg');
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: -470px;
  left: 0;
  /* background-size: cover; */
}

@media (max-width: 992px) {
  .ap-info-section.ap-info-section__sustainiability {
    margin-top: -10rem;
    padding: 0 0 3rem;
  }

  .ap-info-section.ap-info-section__sustainiability::before {
    top: -175px;
  }
}

@media (max-width: 576px) {
  .ap-info-section.ap-info-section__sustainiability {
    margin-top: -6rem;
    padding: 0 0 2rem;
  }

  .ap-info-section.ap-info-section__sustainiability::before {
    top: -86px;
  }
}

/* ---------------------------------------------------------
   10. PARTNER CTA BAND
   --------------------------------------------------------- */
.ap-cta-band {
  background-color: var(--ap-cream);
  padding: var(--section-py) 0;
  text-align: center;
  position: relative;
}

.ap-cta-band h2 {
  font-size: var(--fs-h2);
  margin-bottom: 1rem;
}

.ap-cta-band p {
  color: var(--ap-brown);
  max-width: 540px;
  margin: 0 auto 2rem;
}

@media (max-width: 992px) {
  .ap-cta-band {
    padding: var(--section-py-sm) 0;
  }
}

/* ---------------------------------------------------------
   11. FOOTER
   --------------------------------------------------------- */
.ap-footer {
  background-color: var(--ap-cream-light);
  border-left: 3px solid var(--border-color);
  padding: 0.5rem 2.8rem 3.2rem;
}

.ap-footer-logo {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
}

.ap-footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.ap-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.5rem;

  background-color: var(--ap-copper);
  color: var(--ap-white);
  border: 1.5px solid var(--ap-copper);

  transition:
    background-color 0.2s,
    color 0.2s;
}

.ap-footer-social a:hover {
  background-color: var(--ap-cream);
  color: var(--ap-brown-dark);
  border-color: var(--ap-ocer);
}

.ap-logo {
  width: 15rem;
  height: 2.5rem;
  margin-top: 4rem;
}

.ap-heading-light {
  font-weight: 300;
  color: #b2b2b2;
  line-height: 1.15;
  margin-bottom: 0;
}

.ap-heading-bold {
  font-weight: 500;
  color: #9c9c9c;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.ap-heading-bold .light-part {
  font-weight: 300;
  color: #b9b9b9;
}

.ap-body-text {
  color: var(--ap-brown-light);
  font-size: 1.25rem;
  line-height: 1.2;
}

.ap-col-title {
  color: var(--ap-brown-light);
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  margin-bottom: 0;
}

.ap-col-value {
  color: var(--text-dark);
  font-size: 1.25rem;
  font-weight: 400;
}

.ap-contact-col {
  text-align: center;
}

@media (max-width: 992px) {
  .ap-footer {
    padding: 3rem 1.5rem;
  }

  .ap-footer-logo {
    font-size: 1.8rem;
  }

  .ap-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    width: 10rem;
    height: 1.7rem;
    margin-top: 2rem;
  }

  .ap-body-text {
    font-size: 1.1rem;
    text-align: center;
    max-width: 500px;
  }

  .ap-col-title {
    font-size: 1.2rem;
  }

  .ap-col-value {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .ap-footer {
    padding: 2rem 1.5rem;
  }

  .ap-contact-col {
    text-align: center;
  }

  .ap-body-text {
    max-width: 100%;
    font-size: 1rem;
    margin-bottom: 1.35rem;
    text-align: center;
  }

  .ap-col-title {
    font-size: 0.9rem;
  }

  .ap-col-value {
    font-size: 1rem;
    margin-bottom: 1.05rem;
  }

  .ap-footer-logo {
    font-size: 1.4rem;
    text-align: center;
    margin: 0.5rem 0 0;
  }

  .ap-heading-light,
  .ap-heading-bold {
    text-align: center;
  }

  .ap-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    width: 8.5rem;
    height: 1.5rem;
  }
}

@media (max-width: 375px) {
  .ap-footer {
    padding: 0.3rem 1rem 1.2rem;
  }

  .ap-body-text {
    font-size: 0.92rem;
  }

  .ap-col-title {
    font-size: 0.85rem;
  }

  .ap-col-value {
    font-size: 0.92rem;
  }

  .ap-footer-logo {
    font-size: 1.2rem;
  }

  .ap-logo {
    width: 7rem;
    height: 1.2rem;
  }
}

/* ---------------------------------------------------------
   12. PAGE-SPECIFIC: EXPORT & LOGISTICS PAGE
   --------------------------------------------------------- */
.ap-export-hero {
  background-color: var(--ap-cream);
  padding: var(--section-py) 0;
  text-align: center;
  position: relative;
}

.ap-export-hero h1 em {
  font-style: normal;
  color: var(--ap-copper);
}

.ap-dark-band {
  background-color: var(--ap-brown-dark);
  color: var(--ap-cream);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.ap-dark-band h2 {
  color: var(--ap-white);
}

.ap-dark-band h3 {
  color: var(--ap-tan);
}

.ap-dark-band p {
  color: var(--ap-cream-dark);
}

.ap-bullet-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.ap-bullet-list li {
  padding: 0.35rem 0;
  font-size: var(--fs-small);
  color: var(--ap-brown);
  padding-left: 1.25rem;
  position: relative;
}
.ap-bullet-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--ap-copper);
  font-size: 1rem;
}

.ap-dark-band .ap-bullet-list li {
  color: var(--ap-cream-dark);
}
.ap-dark-band .ap-bullet-list li::before {
  color: var(--ap-copper);
}

@media (max-width: 992px) {
  .ap-export-hero,
  .ap-dark-band {
    padding: var(--section-py-sm) 0;
  }
}

/* ---------------------------------------------------------
   13. SCROLL ANIMATIONS (JS-driven)
   --------------------------------------------------------- */
.ap-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.ap-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------------------------------
   14. UTILITY OVERRIDES
   --------------------------------------------------------- */
.text-copper {
  color: var(--ap-copper) !important;
}
.text-brown {
  color: var(--ap-brown-dark) !important;
}
.bg-cream {
  background-color: var(--ap-cream) !important;
}
.bg-dark-brown {
  background-color: var(--ap-brown-dark) !important;
}

/* ---------------------------------------------------------
   15. RESPONSIVE TWEAKS (general / cross-cutting)
   --------------------------------------------------------- */
@media (max-width: 991.98px) {
  :root {
    --section-py: 3.5rem;
  }
}

@media (max-width: 575.98px) {
  :root {
    --section-py: 2.5rem;
  }
}

@media (max-width: 375px) {
  :root {
    --section-py: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ap-fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------------------------------------------------------
   ABOUT HERO
   --------------------------------------------------------- */
.ap-about-hero {
  background-color: var(--ap-cream);
  padding: 9rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: visible;
}

.ap-about-hero.ap-about-hero--illustration::after {
  position: absolute;
  content: '';
  background-image: url('../assets/images/hero-illustrations3.svg');
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: -30px;
  left: 0;
}

.ap-about-hero__title {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: var(--fs-hero);
  color: var(--ap-brown-dark);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.ap-about-hero__title .fw-light {
  color: var(--ap-copper);
}

.ap-about-hero__subtitle {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  color: var(--ap-copper);
  margin-bottom: 2.5rem;
}

.ap-about-hero__lead {
  font-family: var(--font-primary);
  font-size: 1.7rem;
  color: #1a1a1a;
  max-width: 60rem;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

@media (max-width: 1439px) {
  .ap-about-hero__lead {
    font-size: 1.2rem;
  }
}

@media (max-width: 992px) {
  .ap-about-hero {
    padding: 7.5rem 0 3.5rem;
  }

  .ap-about-hero__lead {
    font-size: 1.1rem;
  }

  .ap-about-hero__subtitle {
    font-size: 1.3rem;
  }

  .ap-about-hero__lead {
    font-size: 1.05rem;
  }
}

@media (max-width: 576px) {
  .ap-about-hero {
    padding: 8.5rem 0 2.5rem;
  }

  .ap-about-hero__title {
    font-size: 2.1rem;
  }

  .ap-about-hero__subtitle {
    font-size: 1.1rem;
  }

  .ap-about-hero__lead {
    font-size: 0.95rem;
  }
}

/* ---------------------------------------------------------
   OUR CORE VALUES (ocer band, three pillars)
   --------------------------------------------------------- */
.ap-info-section--values {
  background-color: var(--ap-ocer);
  padding: var(--section-py) 0;
}

.ap-info-section--values h2 {
  color: var(--ap-white);
}

.ap-info-section--values .ap-section-subtitle {
  color: var(--ap-cream-dark);
}

.ap-values-intro {
  font-size: 1.2rem;
  color: var(--ap-cream-dark);
  max-width: 28rem;
  margin-top: 1.5rem;
}

.ap-pillar {
  margin-bottom: 2.25rem;
}

.ap-pillar:last-child {
  margin-bottom: 0;
}

.ap-pillar__title {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--ap-white);
  margin-bottom: 0.6rem;
}

.ap-info-section .ap-pillar__text {
  font-family: var(--font-primary);
  font-size: 36px;
  line-height: 1.45;
  color: var(--ap-white);
  margin-bottom: 0;
}

@media (max-width: 1439px) {
  .ap-info-section .ap-pillar__text {
    font-size: 1.1rem;
    line-height: 1.4;
  }
}

@media (max-width: 992px) {
  .ap-info-section .ap-pillar__text {
    font-size: 1.1rem;
  }
}

@media (max-width: 992px) {
  .ap-info-section--values {
    padding: var(--section-py-sm) 0;
  }

  .ap-values-intro {
    margin: 1rem auto 0;
  }

  .ap-pillar {
    margin-bottom: 1.75rem;
  }

  .ap-pillar__title {
    font-size: 1.2rem;
  }

  .ap-pillar__text {
    font-size: 1rem;
  }
}

/* ---------------------------------------------------------
   WHY AFRICANPODS / ORIGIN ADVANTAGE (white band, 3 cols)
   --------------------------------------------------------- */
.ap-origin-advantage {
  padding: var(--section-py) 0;
  position: relative;
  overflow: visible;
}

.ap-origin-advantage::before {
  position: absolute;
  content: '';
  background-image: url('../assets/images//about-origin-illustration.svg');
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: -200px;
  left: 0;
  z-index: 2;
}

@media (max-width: 992px) {
  .ap-origin-advantage::before {
    top: -100px;
  }
}

@media (max-width: 576px) {
  .ap-origin-advantage::before {
    top: -55px;
  }
}

.ap-origin-advantage h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.ap-info-section .ap-origin-advantage__lead {
  color: #c5957f;
  margin-bottom: 4rem;
}

@media (max-width: 992px) {
  .ap-info-section .ap-origin-advantage__lead {
    margin-bottom: 2rem;
  }
}

.ap-origin-advantage__lead {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  color: var(--ap-ocer);
  color: #c5957f;
  max-width: 44rem;
  margin: 0 auto 3rem;
  line-height: 1.4;
}

.ap-info-section__label--center {
  margin-left: auto;
  margin-right: auto;
}

.ap-advantage-col {
  border-left: 1px solid var(--ap-copper);
  padding: 0 1.5rem;
}

.ap-advantage-col:first-child {
  border-left: none;
}

.ap-advantage-col__title {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--ap-copper);
  margin-bottom: 0.75rem;
}

.ap-info-section .ap-advantage-col__text {
  color: #c5957f;
}

.ap-advantage-col__text {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  color: #c5957f;
  line-height: 1.4;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .ap-advantage-col {
    border-left: none;
    border-top: 1px solid var(--ap-copper);
    padding: 1.5rem 0 0;
  }

  .ap-advantage-col:first-child {
    border-top: none;
    padding-top: 0;
  }
}

@media (max-width: 992px) {
  .ap-origin-advantage {
    padding: var(--section-py-sm) 0;
  }

  .ap-origin-advantage h2 {
    font-size: 2.2rem;
  }

  .ap-origin-advantage__lead {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .ap-origin-advantage h2 {
    font-size: 1.7rem;
  }

  .ap-origin-advantage__lead {
    font-size: 1rem;
  }
}

.ap-info-section.ap-info-section--values {
  position: relative;
  overflow: visible;
}

.ap-info-section.ap-info-section--values::before {
  position: absolute;
  content: '';
  background-image: url('../assets/images/about-pods-illustration.svg');
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: -300px;
  left: 0;
}

@media (max-width: 1500px) {
  .ap-info-section.ap-info-section--values::before {
    top: -200px;
  }
}

@media (max-width: 992px) {
  .ap-info-section.ap-info-section--values::before {
    top: -100px;
  }
}

@media (max-width: 576px) {
  .ap-info-section.ap-info-section--values::before {
    top: -60px;
  }
}

/* ---------------------------------------------------------
   OUR MISSION (dome band, reuses .ap-promise pattern)
   --------------------------------------------------------- */
.ap-mission {
  padding-bottom: 8rem;
}

.ap-promise.ap-mission::before {
  z-index: 2;
}

.ap-mission__text {
  font-size: 1.3rem;
  color: var(--ap-brown);
  max-width: 50rem;
  margin: 0 auto;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .ap-mission {
    padding-bottom: 5rem;
  }

  .ap-mission__text {
    font-size: 1.05rem;
  }
}

@media (max-width: 576px) {
  .ap-mission__text {
    font-size: 0.95rem;
  }
}

/* ---------------------------------------------------------
   PRODUCTS HERO (reuses .ap-about-hero, shorter bottom pad)
   --------------------------------------------------------- */
.ap-products-hero {
  padding-bottom: 4rem;
  position: relative;
}

.ap-products-hero::before {
  position: absolute;
  content: '';
  background-image: url('../assets/images/hero-illustrations3.svg');
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
}

@media (max-width: 992px) {
  .ap-products-hero {
    padding-bottom: 3rem;
  }
}

/* ---------------------------------------------------------
   COMMODITY SECTIONS (Cocoa Beans / Natural Rubber)
   --------------------------------------------------------- */
.ap-commodity-section {
  position: relative;
  background-color: var(--ap-sustainability-bg);
  padding: var(--section-py) 0 calc(var(--section-py) * 1.4);
  overflow: visible;
}

.ap-commodity-section::before {
  position: absolute;
  content: '';
  background-image: url('../assets/images/products-home-illustration.svg');
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: -200px;
  left: 0;
}

@media (max-width: 1439px) {
  .ap-commodity-section::before {
    top: -130px;
  }
}

@media (max-width: 992px) {
  .ap-commodity-section::before {
    top: -90px;
  }
}

.ap-commodity-section--rubber {
  background-color: var(--ap-cream);
  padding-top: calc(var(--section-py) * 1.6);
  padding-bottom: calc(var(--section-py) * 1.8);
}

.ap-commodity-section__intro {
  margin-bottom: 3rem;
}

.ap-commodity-section__intro h2 {
  color: var(--ap-brown-dark);
  font-size: 3.2rem;
  margin-bottom: 1.25rem;
}

.ap-commodity-section__intro h2 .text-copper {
  color: var(--ap-copper) !important;
}

.ap-commodity-section__rule {
  display: block;
  width: 6rem;
  height: 2px;
  background-color: var(--ap-brown-dark);
  margin-bottom: 1.75rem;
}

.ap-commodity-section__intro p {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  color: var(--ap-copper);
  max-width: 46rem;
  margin: 0 auto;
  line-height: 1.45;
}

.ap-commodity-section__intro-text--muted {
  color: #c6957f !important;
}

.ap-commodity-sub {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 2rem;
  color: var(--ap-copper);
  text-align: center;
  margin: 3rem 0 2.25rem;
}

/* Label / value list, two-column on desktop */
.ap-commodity-list {
  max-width: 52rem;
  margin: 0 auto 1rem;
}

.ap-commodity-item {
  display: grid;
  grid-template-columns: 16rem 1fr;
  column-gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.ap-commodity-item:last-child {
  margin-bottom: 0;
}

.ap-commodity-item dt {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ap-brown-dark);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  justify-content: flex-end;
  text-align: right;
}

.ap-commodity-item__bullet {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--ap-copper);
  flex: 0 0 auto;
}

.ap-commodity-item dd {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  color: var(--ap-brown-dark);
  line-height: 1.45;
  margin-bottom: 0;
}

.ap-commodity-list--muted .ap-commodity-item dt,
.ap-commodity-list--muted .ap-commodity-item dd {
  color: #c6957f;
}

.ap-commodity-list--muted .ap-commodity-item__bullet {
  background-color: var(--ap-copper);
}

@media (max-width: 767.98px) {
  .ap-commodity-item {
    grid-template-columns: 1fr;
    row-gap: 0.4rem;
  }

  .ap-commodity-item dt {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 1439px) {
  .ap-commodity-section__intro h2 {
    font-size: 2.2rem;
  }

  .ap-commodity-section__intro p {
    font-size: 1.05rem;
  }

  .ap-commodity-sub {
    font-size: 1.5rem;
  }

  .ap-commodity-item dt,
  .ap-commodity-item dd {
    font-size: 0.95rem;
  }
}

@media (max-width: 992px) {
  .ap-commodity-section {
    padding: var(--section-py-sm) 0 calc(var(--section-py-sm) * 1.4);
  }

  .ap-commodity-section--rubber {
    padding-top: calc(var(--section-py-sm) * 1.6);
    padding-bottom: calc(var(--section-py-sm) * 1.6);
  }

  .ap-commodity-section__intro {
    margin-bottom: 2rem;
  }

  .ap-commodity-item {
    grid-template-columns: 1fr;
  }

  .ap-commodity-item dt {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .ap-commodity-section__intro h2 {
    font-size: 1.7rem;
  }

  .ap-commodity-section__intro p {
    font-size: 0.95rem;
  }

  .ap-commodity-sub {
    font-size: 1.25rem;
  }
}

/* ---------------------------------------------------------
   SUSTAINABILITY HERO (reuses .ap-about-hero)
   --------------------------------------------------------- */
.ap-sustainability-hero {
  padding-bottom: 4rem;
  position: relative;
  overflow: visible;
}

.ap-sustainability-hero::before {
  position: absolute;
  content: '';
  background-image: url('../assets/images/hero-illustrations3.svg');
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.ap-sustainability-hero .ap-about-hero__title {
  margin-bottom: 2rem;
}

.ap-sustainability-hero .ap-about-hero__lead strong {
  font-weight: 600;
  color: var(--ap-brown-dark);
}

@media (max-width: 992px) {
  .ap-sustainability-hero {
    padding-bottom: 3rem;
  }
}

/* ---------------------------------------------------------
   COMMODITY SECTION 
   --------------------------------------------------------- */
.ap-commodity-section--white {
  background-color: var(--ap-white);
}

.ap-commodity-section--cream {
  background-color: var(--ap-cream);
}

.ap-commodity-section__closing {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  color: var(--ap-brown-dark);
  text-align: center;
  max-width: 46rem;
  margin: 2.5rem auto 0;
  line-height: 1.45;
}

.ap-commodity-section--cream .ap-commodity-section__closing {
  color: var(--ap-brown);
}

/* ---------------------------------------------------------
   FOCUS LABEL (left column lead-in to a bullet list)
   --------------------------------------------------------- */
.ap-focus-label {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--ap-brown-dark);
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .ap-focus-label {
    margin-bottom: 1rem;
  }
}

/* ---------------------------------------------------------
   GENERIC BULLET LIST
   --------------------------------------------------------- */
.ap-bullet-list--dark li {
  color: var(--ap-brown-dark);
  font-size: 1.05rem;
  padding: 0.4rem 0 0.4rem 1.4rem;
}

.ap-bullet-list--dark li::before {
  top: 0.55rem;
}

.ap-bullet-list--dark li strong {
  font-weight: 600;
  color: var(--ap-brown-dark);
}

.ap-bullet-list--centered {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}

.ap-bullet-list--centered li {
  padding-left: 0;
  display: inline-block;
}

.ap-bullet-list--centered li::before {
  position: static;
  display: inline-block;
  margin-right: 0.4rem;
  transform: translateY(-2px);
}

.ap-bullet-list--copper li {
  color: var(--ap-brown-dark);
  font-size: 1.05rem;
}

.ap-bullet-list--copper li::before {
  color: var(--ap-copper);
}

@media (max-width: 1439px) {
  .ap-bullet-list--dark li,
  .ap-bullet-list--copper li {
    font-size: 0.95rem;
  }
}

/* ---------------------------------------------------------
   OUR COMMITMENT
   --------------------------------------------------------- */
.ap-commitment {
  padding-bottom: 7rem;
}

.ap-commitment__text {
  font-size: 1.15rem;
  color: var(--ap-dark);
  max-width: 48rem;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

.ap-commitment__text:last-child {
  margin-bottom: 0;
}

.ap-commitment__text strong {
  font-weight: 600;
}

@media (max-width: 992px) {
  .ap-commitment {
    padding-bottom: 4.5rem;
  }

  .ap-commitment__text {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .ap-commitment__text {
    font-size: 0.92rem;
  }
}

/* ---------------------------------------------------------
   EXPORT HERO
   Reuses .ap-about-hero; adds world-map bg illustration
   --------------------------------------------------------- */
.ap-export-hero-section {
  padding-bottom: 4rem;
  background-color: var(--ap-sustainability-bg);
  position: relative;
  z-index: 4;
}

.ap-export-hero-section::before {
  position: absolute;
  content: '';
  background-image: url('../assets/images/world-map-illustration.svg');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 90%;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.25;
  pointer-events: none;
}

@media (max-width: 992px) {
  .ap-export-hero-section {
    padding-bottom: 3rem;
  }
}

/* ---------------------------------------------------------
   LOGISTICS DARK BAND
   --------------------------------------------------------- */
.ap-export-logistics-dark {
  background-color: var(--ap-brown-dark) !important;
  padding: var(--section-py) 0;
}

.ap-export-logistics-dark h2 {
  color: var(--ap-white);
  margin-bottom: 2rem;
}

.ap-export-logistics-dark .ap-section-subtitle {
  color: var(--ap-cream-dark);
}

.ap-export-logistics-dark__label {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ap-tan);
  margin-bottom: 1rem;
}

.ap-export-logistics-dark .ap-bullet-list li {
  color: var(--ap-cream-dark);
}

.ap-export-logistics-dark .ap-commodity-section__closing {
  color: var(--ap-cream-dark);
  text-align: left;
}

@media (max-width: 992px) {
  .ap-export-logistics-dark {
    padding: var(--section-py-sm) 0;
  }

  .ap-export-logistics-dark h2 {
    margin-bottom: 1rem;
  }

  .ap-export-logistics-dark .ap-commodity-section__closing {
    text-align: center;
  }
}

/* ---------------------------------------------------------
   WHY AFRICANPODS
   --------------------------------------------------------- */
.ap-export-why {
  background-color: var(--ap-cream);
  padding: calc(var(--section-py) * 1.4) 0 calc(var(--section-py) * 1.6);
  position: relative;
  overflow: hidden;
}

.ap-export-why h2 {
  color: var(--ap-brown-dark);
  margin-bottom: 1rem;
}

.ap-export-why__lead {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  color: var(--ap-copper);
  margin-bottom: 2rem;
}

@media (max-width: 992px) {
  .ap-export-why {
    padding: var(--section-py-sm) 0 calc(var(--section-py-sm) * 1.4);
  }
}

/* ---------------------------------------------------------
   EXPORT WITH CONFIDENCE 
   --------------------------------------------------------- */
.ap-export-cta {
  background-color: var(--ap-sustainability-bg);
  padding: calc(var(--section-py) * 1.5) 0 calc(var(--section-py) * 1.8);
  position: relative;
  overflow: hidden;
}

.ap-export-cta h2 {
  color: var(--ap-brown-dark);
  margin-bottom: 1rem;
}

.ap-export-cta .ap-commodity-section__rule {
  margin-bottom: 2rem;
  background-color: var(--ap-brown-dark);
}

.ap-export-cta__text {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  color: var(--ap-brown);
  max-width: 46rem;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

.ap-export-cta__text .text-copper {
  font-weight: 600;
  color: var(--ap-copper);
}

.fw-600 {
  font-weight: 600;
}

@media (max-width: 992px) {
  .ap-export-cta {
    padding: var(--section-py-sm) 0 calc(var(--section-py-sm) * 1.5);
  }

  .ap-export-cta__text {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .ap-export-cta__text {
    font-size: 0.92rem;
  }
}

/* ---------------------------------------------------------
   CONTACT PAGE
   --------------------------------------------------------- */
.ap-contact-hero {
  background-color: var(--ap-cream);
  padding: 9rem 0 0;
  text-align: center;
  position: relative;
  overflow: visible;
}

.ap-contact-hero::before {
  position: absolute;
  content: '';
  background-image: url('../assets/images/hero-illustrations3.svg');
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.ap-contact-hero__title {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: var(--fs-hero);
  color: var(--ap-copper);
  margin-bottom: 1rem;
}

.ap-contact-hero__sub {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  color: var(--ap-brown-dark);
  margin-bottom: 2.5rem;
}

.ap-contact-hero__icon {
  display: block;
  width: 9rem;
  height: auto;
  margin: 0 auto 3.5rem;
  opacity: 0.75;
}

.ap-contact-hero__wave {
  margin-top: 0;
}

@media (max-width: 992px) {
  .ap-contact-hero {
    padding-top: 7.5rem;
  }

  .ap-contact-hero__sub {
    font-size: 1.2rem;
  }

  .ap-contact-hero__icon {
    width: 6.5rem;
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 576px) {
  .ap-contact-hero {
    padding-top: 8.5rem;
  }

  .ap-contact-hero__title {
    font-size: 2rem;
  }

  .ap-contact-hero__sub {
    font-size: 1rem;
  }

  .ap-contact-hero__icon {
    width: 5rem;
  }
}

/* ---------------------------------------------------------
   CONTACT FORM SECTION
   --------------------------------------------------------- */
.ap-contact-form-section {
  background-color: var(--ap-white);
  padding: var(--section-py) 0 calc(var(--section-py) * 1.5);
  position: relative;
  overflow: visible;
}

.ap-contact-form-section::before {
  position: absolute;
  content: '';
  background-image: url('../assets/images/contact-get-in-touch.svg');
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: -200px;
  left: 0;
}

.ap-contact-form-section::after {
  position: absolute;
  content: '';
  background-image: url('../assets/images/contact-form-background.svg');
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

@media (max-width: 992px) {
  .ap-contact-form-section::before {
    top: -100px;
  }
}

@media (max-width: 576px) {
  .ap-contact-form-section::before {
    top: -50px;
  }
}

.ap-contact-form-section__title {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 2.8rem;
  color: var(--ap-ocer);
  margin-bottom: 2.5rem;
}

.ap-cf-field {
  display: flex;
  align-items: center;
  background-color: rgb(255 243 233 / 0.8);
  border: 1.5px solid var(--ap-ocer);
  border-radius: 50px;
  padding: 0.6rem 1.2rem;
  gap: 0.6rem;
  transition: border-color 0.2s;
}

.ap-cf-field:focus-within {
  border-color: var(--ap-copper);
}

.ap-cf-field--textarea {
  border-radius: 1.2rem;
  align-items: flex-start;
  padding-top: 0.8rem;
}

.ap-cf-field__icon {
  flex: 0 0 auto;
  width: 1.1rem;
  line-height: 1;
}

.ap-cf-field__icon img {
  width: 100%;
  height: auto;
  display: block;
}

.ap-cf-field__icon--top {
  margin-top: 0.15rem;
}

.ap-cf-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--ap-brown-dark);
  width: 100%;
}

.ap-cf-input::placeholder {
  color: var(--ap-ocer);
  opacity: 0.9;
}

.ap-cf-textarea {
  resize: none;
  min-height: 9rem;
  line-height: 1.5;
}

.ap-cf-submit {
  display: inline-block;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: var(--ap-white);
  background-color: var(--ap-copper-dark);
  border: none;
  border-radius: 30px;
  padding: 0.75rem 3rem;
  cursor: pointer;
  transition:
    background-color 0.2s,
    transform 0.1s;
}

.ap-cf-submit:hover {
  background-color: var(--ap-brown);
}

.ap-cf-submit:active {
  transform: scale(0.98);
}

@media (max-width: 992px) {
  .ap-contact-form-section {
    padding: var(--section-py-sm) 0 calc(var(--section-py-sm) * 1.4);
  }

  .ap-contact-form-section__title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .ap-contact-form-section__title {
    font-size: 1.7rem;
    margin-bottom: 1.75rem;
  }

  .ap-cf-field {
    padding: 0.5rem 1rem;
  }

  .ap-cf-submit {
    padding: 0.65rem 2.5rem;
    font-size: 0.95rem;
  }
}

/* ---------------------------------------------------------
   HQ WAVE (dark divider into sustainability-bg)
   --------------------------------------------------------- */
.ap-hq-wave {
  background-color: var(--ap-white);
}

/* ---------------------------------------------------------
   HEAD QUARTERS SECTION
   --------------------------------------------------------- */
.ap-hq-section {
  background-color: var(--ap-sustainability-bg);
  padding: var(--section-py) 0 calc(var(--section-py) * 1.5);
  position: relative;
  overflow: hidden;
}

.ap-hq-col__heading {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 2.2rem;
  color: var(--ap-brown-dark);
  margin-bottom: 0.25rem;
}

.ap-hq-col__country {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--ap-ocer);
  margin-bottom: 1.25rem;
}

.ap-hq-divider {
  width: 1.5px;
  height: 100%;
  background-color: var(--ap-brown-light);
  opacity: 0.35;
}

.ap-hq-address {
  font-family: var(--font-primary);
  font-style: normal;
  font-size: 1rem;
  color: var(--ap-brown-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.ap-hq-region {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--ap-brown-dark);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.ap-hq-region strong {
  font-weight: 600;
  font-size: 1.05rem;
}

.ap-hq-label {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ap-brown-dark);
  margin-bottom: 0.4rem;
}

.ap-hq-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.ap-hq-social__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.5rem;
  background-color: var(--ap-cream);
  color: var(--ap-brown-dark);
  border: 1.5px solid var(--ap-ocer);
  transition:
    background-color 0.2s,
    color 0.2s;
  text-decoration: none;
}

.ap-hq-social__btn:hover {
  background-color: var(--ap-copper);
  color: var(--ap-white);
  border-color: var(--ap-copper);
}

@media (max-width: 992px) {
  .ap-hq-section {
    padding: var(--section-py-sm) 0 calc(var(--section-py-sm) * 1.4);
  }

  .ap-hq-col__heading {
    font-size: 1.7rem;
  }

  .ap-hq-col__country {
    font-size: 1.4rem;
  }

  .ap-hq-address,
  .ap-hq-region {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .ap-hq-col__heading {
    font-size: 1.4rem;
  }

  .ap-hq-col__country {
    font-size: 1.2rem;
  }

  .ap-hq-address,
  .ap-hq-region {
    font-size: 0.9rem;
  }
}

/* ---------------------------------------------------------
   BLOG 
   --------------------------------------------------------- */
.ap-blog-hero {
  background-color: var(--ap-cream);
  padding: 9rem 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ap-blog-hero::before {
  position: absolute;
  content: '';
  background-image: url('../assets/images/hero-illustrations3.svg');
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.5;
  pointer-events: none;
}

.ap-blog-hero__title {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: var(--fs-hero);
  color: var(--ap-copper);
  margin-bottom: 1.25rem;
  position: relative;
}

.ap-blog-hero__lead {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  color: var(--ap-brown-dark);
  max-width: 36rem;
  margin: 0 auto 3.5rem;
  line-height: 1.6;
  position: relative;
}

.ap-blog-hero__wave {
  margin-top: 0;
}

@media (max-width: 992px) {
  .ap-blog-hero {
    padding-top: 7.5rem;
  }
  .ap-blog-hero__lead {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 576px) {
  .ap-blog-hero {
    padding-top: 8.5rem;
  }
  .ap-blog-hero__title {
    font-size: 2.2rem;
  }
  .ap-blog-hero__lead {
    font-size: 0.88rem;
    margin-bottom: 2rem;
  }
}

.ap-blog-section {
  background-color: var(--ap-white);
  padding: var(--section-py) 0 calc(var(--section-py) * 1.6);
}

.ap-blog-section__label {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  color: var(--ap-copper);
  margin-bottom: 0.2rem;
}

.ap-blog-section__heading {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 2.2rem;
  color: var(--ap-brown-dark);
  margin-bottom: 3rem;
}

@media (max-width: 992px) {
  .ap-blog-section {
    padding: var(--section-py-sm) 0 calc(var(--section-py-sm) * 1.4);
  }
  .ap-blog-section__heading {
    font-size: 1.7rem;
    margin-bottom: 2rem;
  }
}

.ap-blog-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 2rem;
  margin-bottom: 4rem;
  align-items: start;
}

@media (max-width: 767.98px) {
  .ap-blog-row {
    grid-template-columns: 1fr;
    row-gap: 3rem;
    margin-bottom: 3rem;
  }
}

/* ---------------------------------------------------------
   BLOG CARD — base (all non-featured cards)
   --------------------------------------------------------- */
.ap-blog-card {
  display: block;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.ap-blog-card:hover {
  text-decoration: none;
  color: inherit;
}

/* ---------------------------------------------------------
   CIRCLE IMAGE WRAPPER
   --------------------------------------------------------- */
.ap-blog-img-wrap {
  position: relative;
  width: 19rem;
  height: 19rem;
  margin: 0 auto 1.25rem;
}

.ap-blog-img-wrap--featured {
  width: 19rem;
  height: 19rem;
}

.ap-blog-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--ap-ocer);
  display: block;
}

.ap-blog-img-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #e2dbd8;
  border: 1.5px solid var(--ap-ocer);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: #b0a8a5;
}

.ap-blog-img__bean {
  position: absolute;
  bottom: 0.25rem;
  left: 0.5rem;
  width: 2.8rem;
  height: auto;
  z-index: 2;
}

/* ---------------------------------------------------------
   CARD TEXT
   --------------------------------------------------------- */
.ap-blog-card__meta {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  color: #aaa;
  margin-bottom: 0.6rem;
  text-align: center;
}

.ap-blog-card__title {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ap-brown-dark);
  display: block;
  text-align: center;
  border-bottom: 1.5px solid var(--ap-brown-dark);
  padding-bottom: 0.4rem;
  margin: 0 auto 0.9rem;
  max-width: 19rem;
}

.ap-blog-card__title--featured {
  font-size: 1.2rem;
}

.ap-blog-card__excerpt {
  font-family: var(--font-primary);
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--ap-copper);
  text-align: center;
  max-width: 22rem;
  margin: 0 auto 1rem;
}

.ap-blog-card__readmore {
  display: inline-block;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ap-brown-dark);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.ap-blog-card:hover .ap-blog-card__readmore {
  color: var(--ap-copper);
}

/* ---------------------------------------------------------
   RESPONSIVE SCALING
   --------------------------------------------------------- */
@media (max-width: 1439px) {
  .ap-blog-img-wrap,
  .ap-blog-img-wrap--featured {
    width: 16rem;
    height: 16rem;
  }
  .ap-blog-card__title {
    max-width: 16rem;
    font-size: 1.05rem;
  }
  .ap-blog-img__bean {
    width: 2.4rem;
  }
}

@media (max-width: 992px) {
  .ap-blog-img-wrap,
  .ap-blog-img-wrap--featured {
    width: 13rem;
    height: 13rem;
  }
  .ap-blog-card__title {
    max-width: 13rem;
    font-size: 1rem;
  }
  .ap-blog-img__bean {
    width: 2rem;
  }
  .ap-blog-card__excerpt {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .ap-blog-img-wrap,
  .ap-blog-img-wrap--featured {
    width: 11rem;
    height: 11rem;
  }
  .ap-blog-card__title {
    max-width: 11rem;
    font-size: 0.95rem;
  }
  .ap-blog-img__bean {
    width: 1.7rem;
    bottom: 0.1rem;
    left: 0.3rem;
  }
  .ap-blog-card__excerpt {
    font-size: 0.82rem;
  }
}

/* ---------------------------------------------------------
   BLOG SECTION (white background, card grid)
   --------------------------------------------------------- */
.ap-blog-section {
  background-color: var(--ap-white);
  padding: var(--section-py) 0 calc(var(--section-py) * 1.5);
}

.ap-blog-section__label {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--ap-brown);
  margin-bottom: 0.25rem;
}

.ap-blog-section__heading {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 2.4rem;
  color: var(--ap-brown-dark);
  margin-bottom: 3rem;
}

@media (max-width: 992px) {
  .ap-blog-section {
    padding: var(--section-py-sm) 0 calc(var(--section-py-sm) * 1.4);
  }

  .ap-blog-section__heading {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}

/* ---------------------------------------------------------
   BLOG CARD (shared base)
   --------------------------------------------------------- */
.ap-blog-card {
  text-align: center;
}

/* Circle image wrapper */
.ap-blog-img-wrap {
  position: relative;
  width: 22rem;
  height: 22rem;
  margin: 0 auto 1.5rem;
}

.ap-blog-img-wrap--small {
  width: 16rem;
  height: 16rem;
}

.ap-blog-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--ap-ocer);
  display: block;
}

.ap-blog-img-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #e8e0db;
  border: 2px solid var(--ap-ocer);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: #a09590;
}

.ap-blog-img__bean {
  position: absolute;
  bottom: 0.5rem;
  right: 0.75rem;
  width: 2.2rem;
  height: auto;
  z-index: 2;
}

.ap-blog-card__meta {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 0.75rem;
}

.ap-blog-card__title {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--ap-brown-dark);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.ap-blog-card__title--featured {
  border-bottom: 2px solid var(--ap-brown-dark);
  padding-bottom: 0.25rem;
}

.ap-blog-card__excerpt {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ap-brown);
  max-width: 28rem;
  margin: 0 auto 1.25rem;
}

.ap-blog-card__excerpt--featured {
  color: var(--ap-copper);
}

.ap-blog-card__readmore {
  display: inline-block;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ap-brown-dark);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.ap-blog-card__readmore:hover {
  color: var(--ap-copper);
}

@media (max-width: 1439px) {
  .ap-blog-img-wrap {
    width: 18rem;
    height: 18rem;
  }

  .ap-blog-img-wrap--small {
    width: 14rem;
    height: 14rem;
  }

  .ap-blog-card__title {
    font-size: 1.15rem;
  }

  .ap-blog-card__excerpt {
    font-size: 0.9rem;
  }
}

@media (max-width: 992px) {
  .ap-blog-img-wrap {
    width: 14rem;
    height: 14rem;
  }

  .ap-blog-img-wrap--small {
    width: 12rem;
    height: 12rem;
  }

  .ap-blog-img__bean {
    width: 1.8rem;
  }

  .ap-blog-card__title {
    font-size: 1.05rem;
  }
}

@media (max-width: 576px) {
  .ap-blog-img-wrap {
    width: 12rem;
    height: 12rem;
  }

  .ap-blog-img-wrap--small {
    width: 10rem;
    height: 10rem;
  }

  .ap-blog-img__bean {
    width: 1.5rem;
    bottom: 0.25rem;
    right: 0.5rem;
  }

  .ap-blog-card__excerpt {
    font-size: 0.88rem;
  }
}

/* ---------------------------------------------------------
   POST HERO
   --------------------------------------------------------- */
.ap-post-hero {
  background-color: var(--ap-cream);
  padding: 9rem 0 0;
  position: relative;
  overflow: hidden;
}

/* Reuse hero illustrations */
.ap-post-hero::before {
  position: absolute;
  content: '';
  background-image: url('../assets/images/hero-illustrations3.svg');
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.4;
  pointer-events: none;
}

.ap-post-breadcrumb {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: var(--ap-brown);
  margin-bottom: 1rem;
  position: relative;
}

.ap-post-breadcrumb a {
  color: var(--ap-copper);
  font-weight: 600;
  text-decoration: none;
}

.ap-post-breadcrumb a:hover {
  color: var(--ap-copper-dark);
}

.ap-post-breadcrumb span:last-child {
  color: var(--ap-brown);
}

.ap-post-meta {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 1.25rem;
  position: relative;
}

.ap-post-title {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--ap-brown-dark);
  line-height: 1.2;
  margin-bottom: 2.5rem;
  position: relative;
}

.ap-post-hero__img-wrap {
  position: relative;
  margin-bottom: 0;
}

.ap-post-hero__img {
  width: 100%;
  height: 28rem;
  object-fit: cover;
  border-radius: 1.5rem 1.5rem 0 0;
  display: block;
  border: 2px solid var(--ap-ocer);
}

.ap-post-hero__bean {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  width: 2.8rem;
  height: auto;
}

.ap-post-hero__wave {
  margin-top: 0;
}

@media (max-width: 992px) {
  .ap-post-hero {
    padding-top: 7.5rem;
  }

  .ap-post-hero__img {
    height: 20rem;
  }

  .ap-post-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .ap-post-hero {
    padding-top: 8.5rem;
  }

  .ap-post-hero__img {
    height: 14rem;
    border-radius: 1rem 1rem 0 0;
  }

  .ap-post-title {
    font-size: 1.45rem;
  }
}

/* ---------------------------------------------------------
   POST BODY
   --------------------------------------------------------- */
.ap-post-body {
  background-color: var(--ap-white);
  padding: var(--section-py) 0;
}

/* Body text */
.ap-post-content p {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  color: var(--ap-brown-dark);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

/* Pull quote */
.ap-post-quote {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--ap-copper);
  line-height: 1.45;
  border-left: 4px solid var(--ap-ocer);
  padding: 1rem 1.5rem;
  margin: 2.5rem 0;
  background-color: var(--ap-cream);
  border-radius: 0 0.5rem 0.5rem 0;
}

.ap-post-inline-img {
  margin: 2.5rem 0;
  text-align: center;
}

.ap-post-inline-img__wrap {
  position: relative;
  width: 18rem;
  height: 18rem;
  margin: 0 auto;
}

.ap-post-inline-img__placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #e8e0db;
  border: 2px solid var(--ap-ocer);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: #a09590;
}

.ap-post-inline-img__bean {
  position: absolute;
  bottom: 0.5rem;
  right: 0.75rem;
  width: 2.2rem;
  height: auto;
}

/* Tags */
.ap-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2.5rem 0 1.5rem;
}

.ap-post-tag {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ap-copper);
  background-color: var(--ap-cream);
  border: 1px solid var(--ap-ocer);
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  letter-spacing: 0.03em;
}

/* Back link */
.ap-post-back {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ap-cream-dark);
}

.ap-post-back__link {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ap-brown-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.ap-post-back__link:hover {
  color: var(--ap-copper);
}

@media (max-width: 1439px) {
  .ap-post-content p {
    font-size: 0.95rem;
  }

  .ap-post-quote {
    font-size: 1.1rem;
  }
}

@media (max-width: 992px) {
  .ap-post-body {
    padding: var(--section-py-sm) 0;
  }

  .ap-post-inline-img__wrap {
    width: 14rem;
    height: 14rem;
  }
}

@media (max-width: 576px) {
  .ap-post-content p {
    font-size: 0.9rem;
  }

  .ap-post-quote {
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }

  .ap-post-inline-img__wrap {
    width: 11rem;
    height: 11rem;
  }
}

/* ---------------------------------------------------------
   MORE STORIES (related posts, sustainability-bg band)
   --------------------------------------------------------- */
.ap-post-more {
  position: relative;
}

.ap-post-more__wave-top {
  background-color: var(--ap-white);
  margin-top: 0;
}

.ap-post-more__content {
  background-color: var(--ap-sustainability-bg);
  padding: var(--section-py) 0 calc(var(--section-py) * 1.4);
}

.ap-post-more__heading {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 2.2rem;
  color: var(--ap-brown-dark);
  margin-bottom: 3rem;
}

@media (max-width: 992px) {
  .ap-post-more__content {
    padding: var(--section-py-sm) 0 calc(var(--section-py-sm) * 1.3);
  }

  .ap-post-more__heading {
    font-size: 1.7rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .ap-post-more__heading {
    font-size: 1.4rem;
  }
}

.ap-col-value a {
  color: var(--text-dark);
}
