/* ==========================================================================
   Font Face Declarations
   ========================================================================== */

@font-face {
  font-family: 'Nimbu Demo';
  src: url('fonts/NimbuDemo-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nimbu Demo';
  src: url('fonts/NimbuDemo-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   CSS Custom Properties
   ========================================================================== */

:root {
  --color-green: #145A44;
  --color-pink: #FFA9E9;
  --color-cream: #FFFDF7;
  --color-dark: #332601;
  --color-dark-green: #012218;
  --color-coffee: #461E10;
  --color-white: #FFFFFF;
  --font-display: 'Nimbu Demo', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

/* ==========================================================================
   Reset and Base Styles
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  background: var(--color-white);
  font-family: var(--font-body);
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6,
button {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.why-koffi_label {
  --why-reveal-opacity: 0.6;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--color-dark);
  opacity: 0;
  transform: translateY(16px);
}

.why-koffi_label img {
  height: 14px;
  width: auto;
}

.why-koffi_heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.why-koffi_heading h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 56px);
  color: var(--color-coffee);
  line-height: 1.2;
  text-align: center;
  margin: 0;
  opacity: 0;
  transform: translateY(18px);
}

.why-koffi_highlight {
  position: relative;
  color: var(--color-coffee);
  padding: 0 8px;
  display: inline-block;
  isolation: isolate;
}

.why-koffi_highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--color-pink);
  transform: scaleX(0);
  transform-origin: left center;
}

.why-koffi_heading p {
  --why-reveal-opacity: 0.7;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-dark);
  opacity: 0;
  margin: 0;
  transform: translateY(14px);
}

.why-koffi.is-visible .why-koffi_label {
  animation: why-reveal-muted 0.48s ease-out both;
}

.why-koffi.is-visible .why-koffi_heading h2 {
  animation: why-reveal-up 0.64s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.why-koffi.is-visible .why-koffi_highlight::before {
  animation: why-highlight-wipe 0.58s cubic-bezier(0.22, 1, 0.36, 1) 0.36s both;
}

.why-koffi.is-visible .why-koffi_heading p {
  animation: why-reveal-muted 0.5s ease-out 0.42s both;
}

.why-koffi_signature {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 3vw, 32px);
  color: var(--color-coffee);
  text-align: center;
  margin: 0;
  opacity: 0.85;
}

.cursor-follower {
  display: none;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.hero-shell {
  min-height: calc(100svh - 32px);
  margin: 16px;
  background: var(--color-green);
  border-radius: 24px;
  overflow: hidden;
}

.site-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 96px;
  padding: 24px 72px;
  background: transparent;
  animation: hero-header-in 0.5s ease-out both;
}

.hero {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  min-height: calc(100svh - 128px);
  background: transparent;
  padding: 48px 72px 0;
  align-items: center;
  gap: clamp(40px, 5vw, 96px);
}

.why-koffi {
  background: var(--color-cream);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.why-koffi_cards {
  width: 100%;
  max-width: 720px;
  position: relative;
  padding-bottom: 160px;
}

/* ==========================================================================
   Components
   ========================================================================== */

.site-header_brand {
  position: relative;
  z-index: 20;
  display: inline-flex;
  align-items: center;
}

.site-header_brand img {
  height: 32px;
  width: auto;
}

.site-header_nav {
  display: flex;
  align-items: center;
}

.site-header_nav-inner {
  display: flex;
  width: 100%;
}

.site-header_cta {
  flex-shrink: 0;
}

.site-header_menu-toggle {
  position: relative;
  z-index: 20;
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: var(--color-pink);
  border-radius: 6px;
  border: 2px solid var(--color-pink);
  cursor: pointer;
  box-shadow: 1.49px 1.49px 0 0.75px var(--color-coffee);
  transition: all 0.2s ease;
}

.site-header_menu-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-open .site-header_menu-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .site-header_menu-line:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .site-header_menu-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero_content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 920px;
  padding-bottom: clamp(40px, 6svh, 80px);
}

h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(56px, 6vw, 116px);
  color: var(--color-white);
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
}

.hero_title-line {
  display: block;
  white-space: nowrap;
  animation: hero-title-in 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero_title-line:nth-child(1) {
  animation-delay: 0.12s;
}

.hero_title-line:nth-child(2) {
  animation-delay: 0.36s;
}

.hero_title-line:nth-child(3) {
  animation-delay: 0.5s;
}

.hero_highlight {
  background: var(--color-pink);
  color: var(--color-dark);
  display: inline-flex;
  align-items: center;
  padding: 0.04em 0.08em 0;
  line-height: 0.9;
}

.hero_content p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(16px, 1.45vw, 26px);
  color: var(--color-white);
  opacity: 0.85;
  line-height: 1.6;
  max-width: 820px;
  margin: 0;
  animation: hero-copy-in 0.56s ease-out 0.72s both;
}

.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  padding: 14px 28px;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.btn--primary {
  background: var(--color-pink);
  color: var(--color-dark);
  border: 2px solid var(--color-pink);
  box-shadow: 1.49px 1.49px 0 0.75px var(--color-coffee);
}

.btn--outline {
  background: var(--color-white);
  color: var(--color-dark);
  border: 2px solid var(--color-white);
  box-shadow: 1.49px 1.49px 0 0.75px var(--color-dark-green);
}

.hero_ctas {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: clamp(24px, 5svh, 56px);
  animation: hero-copy-in 0.56s ease-out 0.82s both;
}

.hero_image {
  display: flex;
  align-items: flex-end;
  align-self: flex-end;
  justify-content: flex-end;
  flex-shrink: 0;
  max-width: 46vw;
}

.hero_image img {
  max-height: min(64svh, 760px);
  max-width: 100%;
  width: auto;
  display: block;
  animation: hero-image-in 0.82s cubic-bezier(0.2, 0.8, 0.2, 1) 0.26s both;
}

@media (min-width: 1024px) {
  .hero_image {
    margin-right: -72px;
  }

  .hero_image img {
    max-height: min(74svh, 860px);
  }
}

@media (min-width: 1440px) {
  .hero_image img {
    max-height: min(78svh, 940px);
  }
}

.why-koffi_card {
  position: sticky;
  background: var(--color-white);
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 42px 0 rgba(0, 0, 0, 0.08);
  padding: 40px 48px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 24px;
  transition: transform 0.24s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.24s ease;
}

.why-koffi_card:nth-child(1) {
  top: 80px;
  z-index: 1;
  transform: translateX(-10px) rotate(-1.3deg) scale(0.98);
}

.why-koffi_card:nth-child(2) {
  top: calc(80px + 80px);
  z-index: 2;
  transform: translateX(10px) rotate(1deg) scale(0.99);
}

.why-koffi_card:nth-child(3) {
  top: calc(80px + 160px);
  z-index: 3;
  transform: translateX(0) rotate(-0.45deg) scale(1);
}

.why-koffi_card.is-active,
.why-koffi_card:focus-visible {
  z-index: 20;
  box-shadow: 0 16px 52px 0 rgba(0, 0, 0, 0.12);
  outline: none;
}

.why-koffi_card:nth-child(1).is-active,
.why-koffi_card:nth-child(1):focus-visible {
  transform: translate(-14px, -12px) rotate(-1deg) scale(1.01);
}

.why-koffi_card:nth-child(2).is-active,
.why-koffi_card:nth-child(2):focus-visible {
  transform: translate(14px, -12px) rotate(0.8deg) scale(1.01);
}

.why-koffi_card:nth-child(3).is-active,
.why-koffi_card:nth-child(3):focus-visible {
  transform: translate(-10px, -12px) rotate(-0.4deg) scale(1.01);
}

.why-koffi.has-active .why-koffi_card:not(.is-active):nth-child(1) {
  transform: translateX(-32px) rotate(-1.4deg) scale(0.97);
}

.why-koffi.has-active .why-koffi_card:not(.is-active):nth-child(2) {
  transform: translateX(36px) rotate(1.1deg) scale(0.98);
}

.why-koffi.has-active .why-koffi_card:not(.is-active):nth-child(3) {
  transform: translateX(28px) rotate(0.55deg) scale(0.99);
}

.why-koffi_card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.why-koffi_card-content h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(18px, 1.4vw, 20px);
  color: var(--color-dark);
  margin: 0;
}

.why-koffi_card-content p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: var(--color-dark);
  opacity: 0.7;
  line-height: 1.6;
  margin: 0;
  max-width: 280px;
}

.why-koffi_card-svg {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-koffi_card-svg img,
.why-koffi_motion-svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.why-koffi_motion-svg {
  overflow: visible;
}

.crafted-motion_draw {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: crafted-love-draw 4.8s ease-in-out infinite;
  animation-play-state: paused;
}

.crafted-motion_draw--2 {
  animation-delay: 0.35s;
}

.why-koffi.is-visible .crafted-motion_draw {
  animation-play-state: running;
}

.flavour-motion_pinch,
.comfort-motion_finger {
  transform-origin: center;
  transform-box: fill-box;
  will-change: transform;
}

.flavour-motion_pinch--thumb {
  stroke-dasharray: 140;
  stroke-dashoffset: 140;
  animation: flavour-accent-draw 3.8s ease-in-out infinite;
  animation-play-state: paused;
}

.flavour-motion_pinch--index {
  stroke-dasharray: 140;
  stroke-dashoffset: 140;
  animation: flavour-accent-draw 3.8s ease-in-out 0.18s infinite;
  animation-play-state: paused;
}

.why-koffi.is-visible .flavour-motion_pinch {
  animation-play-state: running;
}

.comfort-motion_finger {
  animation: comfort-warm-line 4.2s ease-in-out infinite;
  animation-play-state: paused;
}

.comfort-motion_finger--2 {
  animation-delay: 0.08s;
}

.comfort-motion_finger--3 {
  animation-delay: 0.16s;
}

.comfort-motion_finger--4 {
  animation-delay: 0.24s;
}

.why-koffi.is-visible .comfort-motion_finger {
  animation-play-state: running;
}

.why-koffi.is-visible .why-koffi_motion-svg--crafted {
  animation: svg-settle 5.4s ease-in-out infinite;
}

.why-koffi.is-visible .why-koffi_motion-svg--flavour {
  animation: flavour-bloom 3.8s ease-in-out 0.3s infinite;
}

.why-koffi.is-visible .why-koffi_motion-svg--comfort {
  animation: comfort-cozy-grip 4.4s ease-in-out 0.6s infinite;
}

@media (hover: hover) and (pointer: fine) {
  .cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: block;
    width: 18px;
    height: 18px;
    border: 1px solid var(--color-coffee);
    border-radius: 999px;
    background: var(--color-pink);
    box-shadow: 1.49px 1.49px 0 0.75px var(--color-coffee);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-50%, -50%, 0) scale(1);
    transition: opacity 0.2s ease, width 0.2s ease, height 0.2s ease, background 0.2s ease;
    will-change: transform;
  }

  body.is-pointer-active .cursor-follower {
    opacity: 1;
  }

  body.is-hovering-interactive .cursor-follower {
    width: 34px;
    height: 34px;
    background: var(--color-cream);
  }

  .btn:hover,
  .site-header_menu-toggle:hover {
    box-shadow: 0 0 0 0 transparent;
    transform: translate(1.49px, 1.49px);
  }

  .why-koffi_card:not(.is-active):hover {
    box-shadow: 0 16px 52px 0 rgba(0, 0, 0, 0.12);
  }

  .why-koffi_card:nth-child(1):not(.is-active):hover {
    transform: translateY(-4px) rotate(-0.35deg) scale(0.99);
  }

  .why-koffi_card:nth-child(2):not(.is-active):hover {
    transform: translateY(-4px) rotate(0.3deg) scale(0.997);
  }

  .why-koffi_card:nth-child(3):not(.is-active):hover {
    transform: translateY(-4px) rotate(-0.12deg) scale(1.005);
  }
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes hero-header-in {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-title-in {
  from {
    opacity: 0;
    transform: translateY(24px) rotate(-1deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-image-in {
  0% {
    opacity: 0;
    transform: translate(32px, 20px) rotate(1deg) scale(0.96);
  }

  75% {
    opacity: 1;
    transform: translate(-4px, -2px) rotate(-0.3deg) scale(1.01);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}

@keyframes hero-image-in-mobile {
  0% {
    opacity: 0;
    transform: translateY(16px) rotate(1deg) scale(0.96);
  }

  75% {
    opacity: 1;
    transform: translateY(-2px) rotate(-0.3deg) scale(1.01);
  }

  100% {
    opacity: 1;
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

@keyframes koffi-breathe {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  50% {
    transform: translateY(-6px) rotate(1deg) scale(1.04);
  }
}

@keyframes crafted-love-draw {
  0% {
    stroke-dashoffset: 220;
    opacity: 0.3;
  }

  35%,
  70% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: -220;
    opacity: 0.3;
  }
}

@keyframes flavour-thumb-pinch {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  42%,
  58% {
    transform: translate(3px, -3px) rotate(-5deg);
  }
}

@keyframes flavour-index-pinch {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  42%,
  58% {
    transform: translate(-4px, 3px) rotate(5deg);
  }
}

@keyframes flavour-accent-draw {
  0% {
    stroke-dashoffset: 140;
    opacity: 0.35;
  }

  38%,
  68% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: -140;
    opacity: 0.35;
  }
}

@keyframes flavour-bloom {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  45%,
  65% {
    transform: translateY(-5px) rotate(-2deg) scale(1.08);
  }
}

@keyframes comfort-warm-line {
  0%,
  100% {
    opacity: 0.55;
    transform: translateY(0);
  }

  45%,
  65% {
    opacity: 1;
    transform: translateY(-4px);
  }
}

@keyframes comfort-cozy-grip {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  45%,
  65% {
    transform: translateY(2px) rotate(1deg) scaleX(0.96) scaleY(1.04);
  }
}

@keyframes svg-settle {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  50% {
    transform: translateY(-4px) rotate(0.7deg) scale(1.02);
  }
}

@keyframes why-reveal-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes why-reveal-muted {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: var(--why-reveal-opacity);
    transform: translateY(0);
  }
}

@keyframes why-highlight-wipe {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

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

/* ==========================================================================
   Media Queries
   ========================================================================== */

@media (max-width: 768px) {
  .hero-shell {
    min-height: calc(100svh - 24px);
    margin: 12px;
    border-radius: 18px;
  }

  .site-header {
    flex-wrap: wrap;
    min-height: 76px;
    padding: 16px 24px;
    gap: 16px;
  }

  .site-header_menu-toggle {
    display: flex;
  }

  .site-header_nav {
    display: grid;
    grid-template-rows: 0fr;
    flex-basis: 100%;
    width: 100%;
    padding: 0 16px;
    background: var(--color-cream);
    border: 2px solid var(--color-dark-green);
    border-radius: 8px;
    box-shadow: 1.49px 1.49px 0 0.75px var(--color-dark-green);
    opacity: 0;
    overflow: hidden;
    transition: grid-template-rows 0.2s ease, opacity 0.2s ease, padding 0.2s ease;
  }

  .site-header.is-open .site-header_nav {
    grid-template-rows: 1fr;
    padding: 16px;
    opacity: 1;
  }

  .site-header_cta {
    width: 100%;
  }

  .site-header_nav-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 0;
    padding: 0 3px 3px 0;
    overflow: hidden;
  }

  .hero {
    flex-direction: column;
    justify-content: flex-start;
    min-height: calc(100svh - 100px);
    padding: 28px 24px 0 24px;
    gap: 24px;
    align-items: center;
  }

  .hero_content {
    max-width: 100%;
    align-items: center;
    text-align: center;
    padding-bottom: 0;
    gap: 18px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 54px);
  }

  .hero_title-line {
    white-space: normal;
  }

  .hero_content p {
    max-width: 100%;
    font-size: clamp(14px, 4vw, 16px);
    line-height: 1.5;
  }

  .hero_ctas {
    flex-direction: column;
    width: 100%;
    max-width: 360px;
    margin-top: 8px;
  }

  .btn {
    width: 100%;
  }

  .hero_image {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .hero_image img {
    max-height: 32svh;
    max-width: 82%;
    animation-name: hero-image-in-mobile;
  }

  .why-koffi {
    padding: 2rem 1.25rem;
    gap: 32px;
  }

  .why-koffi_cards {
    min-height: 0;
    padding-bottom: 0;
  }

  .why-koffi_card,
  .why-koffi_card--reverse {
    position: relative;
    top: auto;
    flex-direction: row;
    padding: 24px 20px;
    margin-bottom: -28px;
  }

  .why-koffi_card:nth-child(1) {
    top: auto;
    transform: translateX(-4px) rotate(-1deg) scale(0.98);
  }

  .why-koffi_card:nth-child(2) {
    top: auto;
    transform: translateX(4px) rotate(0.8deg) scale(0.99);
  }

  .why-koffi_card:nth-child(3) {
    top: auto;
    margin-bottom: 0;
    transform: translateX(0) rotate(-0.35deg) scale(1);
  }

  .why-koffi_card.is-active,
  .why-koffi_card:focus-visible {
    z-index: 20;
  }

  .why-koffi_card:nth-child(1).is-active,
  .why-koffi_card:nth-child(1):focus-visible {
    transform: translate(-8px, -10px) rotate(-0.8deg) scale(1.005);
  }

  .why-koffi_card:nth-child(2).is-active,
  .why-koffi_card:nth-child(2):focus-visible {
    transform: translate(8px, -10px) rotate(0.6deg) scale(1.005);
  }

  .why-koffi_card:nth-child(3).is-active,
  .why-koffi_card:nth-child(3):focus-visible {
    transform: translate(-6px, -10px) rotate(-0.3deg) scale(1.005);
  }

  .why-koffi.has-active .why-koffi_card:not(.is-active):nth-child(1) {
    transform: translateX(-12px) rotate(-1deg) scale(0.975);
  }

  .why-koffi.has-active .why-koffi_card:not(.is-active):nth-child(2) {
    transform: translateX(18px) rotate(0.9deg) scale(0.985);
  }

  .why-koffi.has-active .why-koffi_card:not(.is-active):nth-child(3) {
    transform: translateX(14px) rotate(0.45deg) scale(0.985);
  }

  .why-koffi_card-content p {
    max-width: 100%;
  }

  .why-koffi_card-content h3 {
    font-size: clamp(15px, 4vw, 17px);
  }

  .why-koffi_card-content p {
    font-size: 13px;
    line-height: 1.5;
  }

  .why-koffi_card-svg {
    width: 72px;
    height: 72px;
  }

  .why-koffi_heading h2 {
    font-size: clamp(28px, 7vw, 40px);
  }

  .why-koffi_signature {
    margin-top: 28px;
  }
}

@media (max-width: 480px) {
  .site-header {
    align-items: center;
  }
}
