/** @format */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Nuosusil Regular font-face */
@font-face {
  font-family: "Nuosusil Regular";
  src: url("../fonts/Nuosusil-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Gotham Regular";
  src: url("../fonts/gotham/GOTHAM-BLACK.TTF") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Gotham Thin";
  src: url("../fonts/gotham/GOTHAM-LIGHT.TTF") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Gotham Normal";
  src: url("../fonts/gotham/GOTHAM-MEDIUM.TTF") format("truetype");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: "Nuosusil Regular", serif;
  background: #000000 !important;
  color: #fff;
  overflow-x: hidden;
  min-height: 100vh;
}

.ff-nuosusil {
  font-family: "Nuosusil Regular", serif;
}

.ff-gotham-regular {
  font-family: "Gotham Regular", serif;
}

.ff-gotham-thin {
  font-family: "Gotham Thin", serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nuosusil Regular", serif;
  font-weight: normal;
}

/* Hamburger Icon and Responsive Nav */
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  margin-left: 1rem;
  height: 40px;
  width: 40px;
  position: relative;
  z-index: 1002;
}

.navbar-toggle-icon,
.navbar-toggle-icon::before,
.navbar-toggle-icon::after {
  display: block;
  background: #fff;
  height: 3px;
  width: 28px;
  border-radius: 2px;
  position: absolute;
  left: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-toggle-icon {
  top: 18px;
}

.navbar-toggle-icon::before {
  content: "";
  top: -9px;
  position: absolute;
  width: 28px;
}

.navbar-toggle-icon::after {
  content: "";
  top: 9px;
  position: absolute;
  width: 28px;
}

.navbar-toggle.open .navbar-toggle-icon {
  background: transparent;
}

.navbar-toggle.open .navbar-toggle-icon::before {
  transform: translateY(9px) rotate(45deg);
}

.navbar-toggle.open .navbar-toggle-icon::after {
  transform: translateY(-9px) rotate(-45deg);
}

html {
  font-size: clamp(14px, 1.2vw, 18px);
}

body {
  font-size: 1rem;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 3.1rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 2rem);
}

h4,
h5,
h6 {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
}

p,
li,
a,
span,
button {
  font-size: clamp(0.95rem, 1.1vw, 1.2rem);
}

/* Responsive Images */
img,
.hero-img,
.welcome-main-img,
.smoke-img,
.footer-logo img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive Card Section Example */
.card-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  margin: 2rem 0;
}

.card {
  background: #222;
  border-radius: 16px;
  box-shadow: 0 4px 24px #0002;
  padding: 2rem;
  flex: 1 1 320px;
  max-width: 400px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
}

.card img {
  width: 100%;
  max-width: 220px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1.2rem;
}

.card h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.2rem, 2vw, 2rem);
}

.card p {
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  color: #ccc;
  text-align: center;
}

/* Header */
header {
  border-bottom: 2px solid #444;
  background: rgb(0 0 0 / 91%);
  padding: 1.2rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
  will-change: background, box-shadow, transform;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar {
  display: flex;
  align-items: center;
  background: transparent;
  justify-content: space-between;
  padding: 0.7rem 0 0.5rem 0;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.2rem;
}

nav li {
  font-size: 1.35rem;
  font-family: "Nuosusil Regular", serif;
  font-weight: 500;
}

nav a {
  color: #fff;
  text-decoration: none !important;
  opacity: 0.95;
  font-size: 1.2rem;
  position: relative;
  transition: opacity 0.2s;
}

nav a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #fff 0%, #bbb 100%);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

nav a:hover::after,
nav a:focus::after {
  transform: scaleX(1);
}

nav a:hover {
  opacity: 1;
}

header.sticky {
  /* background: #232323e6; */
  box-shadow: 0 4px 18px #0003;
  /* transform: scale(1.01) translateY(-2px); */
}

.hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  aspect-ratio: 16/7;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  background: #000000;
  overflow: hidden;
  height: 60vw;
  max-height: 100vh;
}

.beyond-coffee {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-img,
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.7);
  z-index: 1;
  pointer-events: none;
}

.beyond-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
  margin: 3% 5% 0 0;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  background: none;
  text-shadow: 0 2px 12px #000a;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
  margin: 0 0 3% 5%;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  background: none;
  text-shadow: 0 2px 12px #000a;
}

.beyond-content h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.hero-content h1 {
  font-size: clamp(3rem, 5vw, 3.5rem);
  margin-bottom: 3rem;
  line-height: 1.1;
}

.hero-links {
  display: flex;
  gap: 1.5rem;
}

.hero-links a {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none !important;
  transition: border 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  border: none;
  position: relative;
}

.beyond-link {
  font-size: 1.7rem !important;
  letter-spacing: 1px !important;
  font-family: "Gotham Thin", Arial, sans-serif !important;
}

.beyond-content h1 {
  margin-bottom: 0.1rem !important;
}

.hero-links a span {
  border-bottom: 1.5px solid #fff;
  padding-bottom: 4px;
  display: inline-block;
  line-height: 1.2;
  letter-spacing: 1px;
}

.hero-links a:hover span {
  border-bottom: 2.5px solid #fff;
}

.hero-links a::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 19px;
  margin-left: 0.3em;
  background: url("data:image/svg+xml;utf8,<svg width='15' height='19' viewBox='0 0 15 19' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M1 1L14 10.2L1 18' stroke='white' stroke-linecap='round'/></svg>") no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  transition: margin-left 0.2s;
}

.hero-links a:hover::after {
  margin-left: 0.5em;
}

.smoke-section {
  position: relative;
  background: #000000;
  height: 100vh;
  display: flex;
  padding: 80px 0;

  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.smoke-container {
  position: relative;
  width: 100%;
  padding: 3.5rem 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.smoke-img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  max-width: 1900px;
  transform: translate(-50%, -50%);
  opacity: 0.7;
  pointer-events: none;
  z-index: 1;
}

.smoke-btn {
  position: relative;
  z-index: 2;
  background: transparent;
  color: #fff;
  border: none;
  padding: 0;
  font-family: "Nuosusil Regular", serif;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: color 0.2s;
  outline: none;
}

.smoke-btn span {
  border-bottom: 1px solid #fff;
  padding-bottom: 4px;
  display: inline-block;
  line-height: 1.2;
  font-size: 2rem;
}

.smoke-btn svg {
  width: 38px;
  height: 22px;
  margin-left: 0.2em;
  display: inline-block;
  vertical-align: middle;
  stroke: #fff;
}

.smoke-btn:hover,
.smoke-btn:focus {
  color: #e0e0e0;
}

.smoke-btn:hover span,
.smoke-btn:focus span {
  border-bottom: 3px solid #fff;
}

/* Welcome Section */
.welcome-section {
  display: flex;
  align-items: stretch;
  background: black;
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
  min-height: 420px;
}

.welcome-img {
  flex: 1 1 50%;
  min-width: 600px;
  max-width: 100%;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.welcome-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.welcome-content {
  flex: 1 1 45%;
  max-width: 100%;
  padding: 3rem 7rem 3rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: black;
}

.welcome-content h2 {
  font-size: 3.1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
  color: #fff;
}

.welcome-content .welcome-subtitle {
  font-size: 1.5rem;
  color: #ccc;
  margin-bottom: 1.5rem;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 400;
}

.welcome-content p {
  font-size: 1.1rem;
  color: #ccc;
  font-weight: 500;
  line-height: 1.4;
  font-family: "Gotham Thin", Arial, sans-serif;
}

.welcome-actions {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  flex-direction: column;
}

.welcome-btn {
  position: relative;
  z-index: 2;
  background: transparent;
  color: #fff;
  border: none;
  font-size: 1.2rem;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: color 0.2s;
  outline: none;
}

.welcome-btn span {
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
  display: inline-block;
  line-height: 1.2;
}

.welcome-actions a {
  text-decoration: none !important;
}

.welcome-actions a::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 19px;
  margin-left: 0.3em;
  background: url("data:image/svg+xml;utf8,<svg width='15' height='19' viewBox='0 0 15 19' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M1 1L14 10.2L1 18' stroke='white' stroke-linecap='round'/></svg>") no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  transition: margin-left 0.2s;
}

.welcome-actions a:hover::after {
  margin-left: 0.5em;
}

/* Footer */
footer {
  background: black;
  color: #fff;
  padding: 0;
  background: black;
  color: #fff;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 2.2rem 0 1.2rem 0;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: nowrap;
  gap: 0;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 250px;
  max-width: 370px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  font-size: 2.3rem;
  letter-spacing: 2px;
  color: #fff;
  line-height: 1.1;
}

.footer-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  width: 60%;
}

.footer-left {
  width: 40%;
}

.footer-logo-main {
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
}

.footer-logo-o {
  display: inline-block;
  position: relative;
  width: 1.1em;
  text-align: center;
  /* Optionally add a background image or SVG for the bison here */
}

.footer-logo-sub {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 8px;
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  margin-top: 0.2em;
  display: inline-block;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 220px;
  font-size: 1rem;
  color: #fff;
  gap: 0.5rem;
  text-align: center;
  font-family: "Montserrat", Arial, sans-serif;
}

.footer-contact .footer-social {
  margin-top: 0.5rem;
  font-size: 1.3rem;
  display: flex;
  gap: 1.5rem;
}

.footer-contact .footer-social a {
  color: #fff;
  margin: 0;
  transition: color 0.2s;
}

.footer-contact .footer-social a:hover {
  color: #ccc;
}

.footer-address {
  text-align: right;
  font-size: 1rem;
  color: #fff;
  min-width: 180px;
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.4;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 220px;
  gap: 0.7rem;
  font-family: "Montserrat", Arial, sans-serif;
}

.footer-link-main,
.footer-link-secondary {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 400;
  text-decoration: underline;
  border: none;
  background: none;
  padding: 0;
  margin-bottom: 0.2em;
  text-align: right;
  transition: color 0.2s;
  cursor: pointer;
  display: block;
}

.footer-link-main:hover,
.footer-link-secondary:hover {
  color: #ccc;
}

.footer-bottom {
  font-size: 0.9rem;
  color: #888;
  text-align: center;
  padding-bottom: 1.2rem;
  margin-top: 0.5rem;
  border: none;
}

/* Footer Responsive Improvements */
.footer-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 2.2rem 1rem 1.2rem 1rem;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: nowrap;
  gap: 0;
}

.footer-left,
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: auto;
}

.footer-right {
  flex-direction: row;
  align-items: flex-start;
  gap: 2.5rem;
  width: auto;
}

/* Our Story Section */
.story-section {
  display: flex;
  align-items: stretch;
  background: #000;
  color: #fff;
  padding: 60px 0;
  min-height: 340px;
  width: 100%;
  max-width: 100vw;
}

.story-img {
  flex: 1 1 50%;
  min-width: 320px;
  max-width: 820px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-content {
  flex: 1 1 50%;
  max-width: 100%;
  padding: 3.5rem 2.5rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #000;
}

.story-content h2 {
  font-size: 3rem;
  margin-bottom: 1.2rem;
  color: #fff;
  font-family: "Nuosusil Regular", serif;
}

.story-content p {
  font-size: 1.1rem;
  color: #ccc;
  font-family: "Gotham Thin", Arial, sans-serif;
  line-height: 1.5;
}

.info-cards-section {
  background: #000;
}

.info-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  align-items: stretch;
  gap: 2.5rem;
  background: #000;
  padding: 60px 0;
  width: 100%;
  max-width: 100vw;
  min-height: 80vh;
  background-image: url("../img/smoke.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.info-card {
  background: transparent;
  border-radius: 55px;
  border: 1.5px solid white;
  box-shadow: 0 4px 24px #0003;
  padding: 1.2rem 1.2rem 3rem 1.2rem;
  flex: 1 1 320px;
  max-width: 450px;
  max-height: 450px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: box-shadow 0.2s;
}

.info-card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
  font-family: "Nuosusil Regular", serif;
}

.info-card p {
  font-size: 1.05rem;
  color: #ccc;
  margin-bottom: 1.5rem;
  font-family: "Gotham Thin", Arial, sans-serif;
  line-height: 1.4;
}

.info-card img {
  width: 100%;
  height: 200px;
  bottom: -130px;
  position: absolute;
  object-fit: contain;
  margin-top: auto;
  margin-bottom: 0;
  filter: brightness(0.95) drop-shadow(0 2px 8px #0005);
  transition: height 0.2s, width 0.2s;
}

.info-cards-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 0px 90px 0;
}

.info-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  color: #fff;
  height: 420px;
  /* Initial height */
  max-height: 420px;
  min-height: 420px;
  transition:
    background 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    min-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.25), 0 0 0 2px #fff3;
  height: 520px;
  max-height: 520px;
  min-height: 420px;
}

.info-card h3 {
  transition:
    background 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    min-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card:hover h3,
.info-card:hover p {
  color: #ffffff !important;
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


/* === Hero Section === */
.coffee-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: flex-end;
  background: #000;
}

.coffee-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.9);
}

.coffee-hero-content {
  position: absolute;
  bottom: -250px;
  z-index: 3;
  color: #fff;
  margin: 0% 4% 0% 0%;
  max-width: 600px;
  padding: 2rem 3rem;
   text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.coffee-hero-content h1 {
  font-family: "Nuosusil Regular", serif;
  font-size: clamp(3.5rem, 5vw, 4.2rem);
  margin: 0 0 0.5rem;
  line-height: 1.2;
  font-weight: 400;
}

.coffee-hero-subtitle {
  font-family: "Gotham Thin", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.6px;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.coffee-hero-desc {
  font-family: "Gotham Thin", sans-serif;
  font-size: 1.05rem;
  color: #f0f0f0;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  font-weight: 300;
}

.sustainability-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: flex-start;
  background: #000;
}

.sustainability-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.9);
}

.sustainability-hero-content {
  position: absolute;
  bottom: -290px;
  z-index: 3;
  color: #fff;
  margin: 0% 4% 0% 0%;
  max-width: 600px;
  padding: 2rem 3rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.sustainability-hero-content h1 {
  font-family: "Nuosusil Regular", serif;
  font-size: clamp(3.5rem, 5vw, 4.2rem);
  margin: 0 0 0.5rem;
  line-height: 1.2;
  font-weight: 400;
}

.sustainability-hero-subtitle {
  font-family: "Gotham Thin", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.6px;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.spacing-section {
  height: 35vh;
  background: #000;
}

.sustainability-hero-desc {
  font-family: "Gotham Thin", sans-serif;
  font-size: 0.9rem;
  color: #f0f0f0;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  font-weight: 300;
}

.our-people-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  background: #000;
}

.our-people-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.9);
}

.our-people-hero-content {
  position: absolute;
  bottom: -20px;
  z-index: 3;
  color: #fff;
  margin: 0% 4% 0% 0%;
  max-width: 600px;
  padding: 2rem 3rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}
.swiper-button-next, .swiper-rtl .swiper-button-prev{
  color: white !important;
}

.our-people-hero-content h1 {
  font-family: "Nuosusil Regular", serif;
  font-size: clamp(3.5rem, 5vw, 4.2rem);
  margin: 0 0 0.2rem;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
}

.our-people-hero-subtitle {
  font-family: "Gotham Thin", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.6px;
  font-weight: 300;
}

.spacing-section {
  height: 50vh;
  background: #000;
}

.contactus-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: flex-start;
  background: #000;
}

.contactus-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.9);
}

.contactus-hero-content {
  position: absolute;
  bottom: -30px;
  z-index: 3;
  color: #fff;
  margin: 0% 4% 0% 0%;
  max-width: 600px;
  padding: 2rem 3rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.contactus-hero-content h1 {
  font-family: "Nuosusil Regular", serif;
  font-size: clamp(3.5rem, 5vw, 4.2rem);
  margin: 0 0 0.5rem;
  line-height: 1.2;
  font-weight: 400;
}

.contactus-hero-subtitle {
  font-family: "Gotham Thin", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.6px;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.contactus-hero-desc {
  font-family: "Gotham Thin", sans-serif;
  font-size: 0.9rem;
  color: #f0f0f0;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  font-weight: 300;
}

/* === Washed Process Section === */
.washed-process-section {
  background: #000;
  width: 100%;
  padding: 0 0 100px 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  min-height: 340px;
  overflow: visible;
  background-image: url("../img/smoke.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.washed-process-content {
  width: 100%;
  max-width: 1400px;
  margin-top: 250px !important;
  padding: 2.5rem 1rem 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  letter-spacing: 1px;
}

.washed-process-content h2 {
  font-family: "Nuosusil Regular", serif;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 0.7rem;
  text-align: center;
  font-weight: normal;
}

.washed-process-subtitle {
  font-family: "Gotham Thin", Arial, sans-serif;
  font-size: 1.3rem;
  color: #ffffff;
  text-align: center;
  max-width: 800px;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.washed-process-steps {
  position: relative;
  width: 100%;
  margin: 3vw auto 0 auto;
  max-width: 1100px;
}

.types-coffee-card {
  display: flex;
  flex-direction: row;
}

.washed-process-line {
  position: absolute;
  top: 105px; /* Fixed value for all devices */
  left: 60px;
  right: 60px;
  height: 3px;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 2px;
  z-index: 1;
  width: calc(100% - 270px);
  margin: 0 auto;
}

.washed-process-line-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  width: 0;
  transition: width 1.7s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.washed-process-cards {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 3;
  padding: 10px;
  width: 100%;
  gap: 0;
}

.washed-process-card {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
  max-width: 260px;
  position: relative;
  padding-top: 0;
  transition: color 0.3s;
  text-align: center;
}

.washed-process-num {
  font-family: "Gotham Normal", serif;
  font-size: 2.8rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 0.2em;
  z-index: 2;
  letter-spacing: 1px;
}

.washed-process-dot {
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  margin: 0.2em 0 1em 0;
  z-index: 2;
}

/* Coffee Jars Animation Section */
.coffee-jars-section {
  width: 100%;
  background: #000;
  position: relative;
  z-index: 2;
  padding: 0 0 40px 0;
  min-height: 320px;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.coffee-jars-row {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-end;
  gap: 2.5vw;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto 3rem;
  position: relative;
  min-height: 420px;
  background: url(.<?= site_url() ?>/wp-content/uploads/2025/06/smoke.png) center center / cover no-repeat;
  border-radius: 0.7em;
  z-index: 2;
}

.coffee-jar {
  opacity: 0;
  transform: scale(0.9) translateY(80px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 150px;
  max-width: 180px;
  height: 100%;
  position: relative;
}

.coffee-jar img {
  width: 100%;
  max-width: 250px;
  height: 100%;
  display: block;
  margin-bottom: 0.7rem;
}

.coffee-jar-label {
  font-family: "Nuosusil Regular", serif;
  font-size: 1.25rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 0.3em;
  padding: 0.4em 0.7em;
  text-align: center;
  min-width: 120px;
  letter-spacing: 0.04em;
  margin-top: -2.2em;
  box-shadow: 0 2px 12px #000a;
}

.coffee-jar-label span {
  font-family: "Gotham Thin", Arial, sans-serif;
  font-size: 0.95rem;
  color: #ccc;
  display: block;
  margin-top: 0.2em;
  letter-spacing: 0.02em;
}

/* Animation keyframes */
@keyframes jarIn {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(80px);
  }

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

.coffee-jar.animated {
  opacity: 1;
  transform: scale(1) translateY(0);
  animation: jarIn 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.coffee-jar {
  opacity: 0;
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.coffee-jar:hover {
  transform: scale(1.05) translateY(-10px) !important;
}

.washed-process-title {
  font-family: "Gotham Thin", Arial, sans-serif;
  font-size: 1.12rem;
  color: #fff;
  margin-top: 0.5rem;
  margin-bottom: 0.9em;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
  min-height: 1.5em;
  opacity: 0;
  transition: opacity 0.7s;
}

.washed-process-desc {
  font-family: "Gotham Thin", Arial, sans-serif;
  font-size: 0.9rem;
  color: #ccc;
  text-align: center;
  min-height: 3.5em;
  opacity: 0;
  transition: opacity 0.7s;
  margin-bottom: 0.5em;
}

.washed-process-card.active .washed-process-title,
.washed-process-card.active .washed-process-desc {
  opacity: 1;
}

.washed-process-card:not(.active) .washed-process-title,
.washed-process-card:not(.active) .washed-process-desc {
  opacity: 0;
}

.washed-process-card .washed-process-dot {
  background: #fff;
  opacity: 0.7;
}

.washed-process-card.active .washed-process-dot {
  background: #fff;
  opacity: 1;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.13);
}

.types-coffee-section {
  background: #000;
  color: #fff;
  padding: 3rem 0 2rem 0;
  /* display: flex;
  flex-direction: column;
  align-items: center; */
}

.types-coffee-title {
  color: #fff;
  font-family: "Nuosusil Regular", serif;
  font-size: 2.7rem;
  font-weight: 400;
  margin: 0 0 2.5rem 0;
  text-align: center;
  letter-spacing: 0.5px;
}

.types-coffee-swiper {
  background: transparent;
  padding: 0;
  /* padding-left: 40px !important; */
  /* max-width: 100vw; */
  /* overflow: visible; */
  /* width: 100%; */
}

.types-coffee-swiper .swiper-wrapper {
  align-items: center !important;
}

.types-coffee-card {
  background: transparent !important;
  border: 1px solid white;
  box-shadow: none !important;
  border-radius: 40px !important;
  display: flex;
  flex-direction: row;
  align-items: center;
  /* min-width: 250px; */
  /* max-width: 300px; */
  /* height: 350px; */
  /* width: 100%; */
  padding: 1rem;
  margin: 0;
  transition: none;
  position: relative;
  z-index: 1;
}

.types-coffee-bottle {
  display: none;
  width: 200px;
  min-width: 90px;
  height: 300px;
  margin-right: 1.5rem;
  text-align: center;
  align-items: flex-start;
  justify-content: flex-start;
}

.active-coffee-card .types-coffee-bottle {
  display: block;
  margin-right: 2.2rem;
  margin-left: 0;
  margin-top: 0.2rem;
  position: absolute;
  left: -70px;
  margin-bottom: 0.2rem;
  width: 250px;
  min-width: 140px;

  align-items: flex-start;
  justify-content: flex-start;
}

.active-coffee-card .types-coffee-bottle {
  display: block;
  margin-right: 2.2rem;
  margin-left: 0;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
  width: 140px;
  height: 100%;
  max-height: 300px;
  align-items: flex-start;
  justify-content: flex-start;
}

.types-coffee-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  align-items: center;
}

.types-coffee-info h3 {
  font-family: "Nuosusil Regular", serif;
  font-size: 1.5rem;
  color: #939393;
  margin-bottom: 0.7rem;
  font-weight: 300;
  text-align: left;
  letter-spacing: 0.04em;
}

.types-coffee-info p {
  font-family: "Gotham Thin", Arial, sans-serif;
  font-size: 1rem;
  color: #939393;
  line-height: 1.5;
  margin: 0;
  text-align: left;
  font-weight: 300;
}

.types-coffee-btn {
  display: block;
  margin: 2.2rem auto 0 auto;
  background: #232323;
  color: #fff;
  font-family: "Nuosusil Regular", serif;
  font-size: 1.1rem;
  border: none;
  border-radius: 2em;
  padding: 0.9em 2.2em;
  cursor: pointer;
  box-shadow: 0 2px 12px #0002;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.5px;
}

.types-coffee-btn:hover {
  background: #fff;
  color: #232323;
  border: 1px solid #232323;
}

.active-coffee-card .types-coffee-card {
  border: 2.5px solid #fff !important;
  background: rgba(30, 30, 30, 0.97) !important;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.35), 0 0 0 2px #fff3;
  border-radius: 32px !important;
  padding: 32px 28px 32px 78px !important;
  position: relative;
  min-width: 300px;
  max-width: 400px;
  z-index: 2;
  height: 450px;
  transition: box-shadow 0.2s, border 0.2s, background 0.2s;
}

.active-coffee-card .types-coffee-info h3 {
  font-size: 2.1rem !important;
  font-weight: 600 !important;
  color: #fff !important;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
  font-family: "Nuosusil Regular", serif;
}

.swiper-backface-hidden .swiper-slide {
  margin-right: 0px !important;
}

.active-coffee-card .types-coffee-info p {
  font-size: 1.18rem !important;
  color: #e0e0e0 !important;
  font-family: "Gotham Thin", Arial, sans-serif;
  line-height: 1.6;
  margin-top: 0.2rem;
}

.active-coffee-card .types-coffee-bottle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  margin: 0;
  display: block;
}

.active-coffee-card {
  border-radius: 32px;
  margin-left: 60px !important;
}

.our-people-story-smoke {
  position: relative;
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
  padding: 80px 0 60px 0;
}

.our-people-story-smoke-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("../img/smoke.png") center center/cover no-repeat;
  opacity: 0.45;
  z-index: 1;
  pointer-events: none;
}

.our-people-story-smoke-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  color: #e0e0e0;
  text-align: center;
  font-family: "Gotham Thin", Arial, sans-serif;
  font-size: 1.08rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  padding: 0 2vw;
}

.our-people-story-smoke-content p {
  margin-bottom: 1.2em;
  color: #e0e0e0;
}

.partner-section {
  width: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 0 100px 0;
}

.partner-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1450px;
  gap: 48px;
}

.partner-form {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-width: 320px;
  max-width: 650px;
}

.partner-form-row {
  display: flex;
  flex-direction: row;
  gap: 18px;
}

.partner-form-group {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-width: 0;
}

.partner-form-group label {
  font-family: "Gotham Thin", Arial, sans-serif;
  font-size: 1.3rem;
  color: #bdbdbd;
  margin-bottom: 2px;
  margin-left: 2px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.partner-form-group input,
.partner-form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #333;
  color: #fff;
  font-size: 1.08rem;
  font-family: "Gotham Thin", Arial, sans-serif;
  padding: 5px 2px 5px 0;
  margin-bottom: 5px;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}

.partner-form-group input:focus,
.partner-form-group textarea:focus {
  border-bottom: 1.5px solid #fff;
}

.partner-form-group textarea {
  min-height: 48px;
  max-height: 120px;
}

[type="submit"] {
  margin-top: 18px;
  background: none;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 2em;
  padding: 0.6em 2.2em;
  font-family: "Nuosusil Regular", serif;
  font-size: 1.08rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  align-self: flex-start;
}

.partner-form button[type="submit"]:hover {
  background: #fff;
  color: #232323;
}

.partner-info {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 260px;
  max-width: 450px;
  margin-left: 32px;
  margin-top: 18px;
}

.partner-info h2 {
  font-family: "Nuosusil Regular", serif;
  font-size: 3.1rem;
  color: #fff;
  font-weight: 400;
  margin-bottom: 0.6rem;
  letter-spacing: 0.01em;
}

.partner-info p {
  font-family: "Gotham Thin", Arial, sans-serif;
  font-size: 1.2rem;
  color: #bdbdbd;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 560px) {
  .info-cards-wrapper {
    grid-template-columns: 1fr;
    justify-content: center;
    justify-items: center;
    gap: 2rem;
    row-gap: 4rem;
    padding: 20px 20px 40px 20px;
  }

  .info-card {
    max-width: 370px;
    min-width: 100px;
    margin: 0 auto;
    height: 270px;
    max-height: 420px;
    min-height: 250px;
    padding: 1.5rem;
    border-radius: 30px;
  }

  .info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .info-card p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .info-card:hover {
    height: 300px;
    max-height: 350px;
    min-height: 300px;
  }

  .info-card img {
    height: 90px;
    bottom: -30px;
  }

  .washed-process-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    right: 1vw;
  }

  .footer-logo img {
    max-width: 250px !important;
    height: auto;
  }

  .smoke-btn span {
    font-size: 1.5rem;
  }

  .swiper-button-next:after{
    font-size: 30px !important;
  }
  .smoke-btn svg {
    width: 20px;
    height: 20px;
  }

  .coffee-hero-section {
    min-height: 480px;
    height: 100%;
   }

  .coffee-hero-content h1 {
    font-size: 3rem;
  }

  .washed-process-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .washed-process-cards {
    flex-direction: row;
    gap: 0.2rem;
    min-height: 70px;
    padding: 0.5rem 0;
  }

  .washed-process-card {
    font-size: 1rem;
  }

  .washed-process-arrow {
    width: 32px;
    height: 32px;
    font-size: 1rem;
    right: 0.5rem;
    bottom: 0.5rem;
  }
  .smoke-section {
    height: 30vh !important;
  }

  .welcome-btn span {
    font-size: 1rem;
  }
  .hero-links a span {
    font-size: 1.2rem !important;
  }
  .washed-process-arrow {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
    right: 0.5vw;
  }

  .coffee-jars-row {
    gap: 0.5vw;
    min-height: 150px;
  }

  .coffee-jar {
    min-width: 60px;
    max-width: 70px;
  }

  .coffee-jar-label {
    font-size: 0.7rem;
    min-width: 40px;
    padding: 0.1em 0.2em;
  }

  .washed-process-subtitle {
    font-size: 1rem !important;
  }

  .coffee-hero-content {
    bottom: -200px;
  }

  .spacing-section {
    height: 30vh;
  }
  .hero {
    height: 60vh;
  }
  .sustainability-hero-section {
    height: 60vh;
  }
  .contactus-hero-section {
    height: 60vh;
  }
  .our-people-hero-section {
    height: 60vh;
  }
  .coffee-hero-section{
    height: 60vh;
  }
	.sustainability-hero-subtitle{
		margin-bottom: 1rem !important;
	}

}
 
@media (max-width: 768px) and (min-width: 560px) {
  .navbar {
    flex-direction: row;
    gap: 0.5rem;
  }
  .spacing-section {
    height: 50vh;
  }
  .partner-info h2 {
    margin-bottom: 1rem;
  }
  .sustainability-hero-section {
    height: 70vh;
  }
  .contactus-hero-section {
    height: 70vh;
  }
  .our-people-hero-section {
    height: 70vh;
  }
  .coffee-hero-section{
    height: 70vh;
  }
  .smoke-img {
    height: 100%;
    max-width: 600px;
  }

  .hero-links {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-links span {
    font-size: clamp(1.2rem, 3vw, 1.2rem);
  }

  #mainNav {
    max-width: 100vw;
    padding: 1.2rem 1rem;
  }
  .hero-links a span {
    font-size: 1.7rem !important;
  }
  html {
    font-size: 15px;
  }

  .container {
    width: 99%;
    max-width: 100vw;
    padding: 0 0.5rem;
  }

  .hero {
    height: 60vh;
  }

  .beyond-content {
    max-width: 98vw;
    padding: 1.5rem 0.5rem;
  }

  .hero-content {
    max-width: 98vw;
    padding: 1.5rem 0.5rem;
  }

  .beyond-content h1 {
    font-size: clamp(2.5rem, 5vw, 2rem) !important;
  }

  .hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 2rem) !important;
  }

  .welcome-section {
    padding: 1rem 0;
  }

  .welcome-img {
    min-width: unset;
  }

  .welcome-content h2 {
    font-size: clamp(2.2rem, 4vw, 2.3rem);
  }

  .welcome-content .welcome-subtitle {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .footer-row {
    padding: 1.2rem 0 0.7rem 0;
    flex-direction: column;
    gap: 1rem;
  }

  .logo img {
    height: 40px;
  }

  .card-section {
    flex-direction: column;
    gap: 1rem;
  }

  .card {
    padding: 0.8rem;
    min-width: 120px;
    max-width: 98vw;
  }

  .footer-row {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 0 0.7rem 0;
    width: 99%;
  }

  .footer-logo img {
    max-width: 300px;
    height: auto;
  }

  .footer-logo {
    min-width: unset;
    max-width: 90vw;
    font-size: 1.5rem;
    align-items: center;
    text-align: center;
  }

  .footer-contact,
  .footer-address,
  .footer-links {
    min-width: unset;
    max-width: 90vw;
    align-items: center !important;
    text-align: center !important;
    font-size: 1rem;
  }

  .footer-links {
    margin-top: 0.5rem;
    gap: 0.5rem;
  }

  .footer-address {
    margin-top: 0.5rem;
  }

  .info-cards-wrapper {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    justify-content: center;
    justify-items: center;
    gap: 2.5rem;
    row-gap: 5rem;
    padding: 50px 20px;
    min-height: unset;
  }

 

  .info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
  }

  .info-card p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }

  .info-card img {
    height: 100px;
    bottom: -40px;
  }

  .info-cards-section {
    padding: 0 !important;
  }

  .info-cards-container {
    padding-bottom: 20px !important;
    
  }

  .info-card {
    max-width: 98vw;
  }

  .info-card:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 400px;
  }

  #mainNav {
    width: 100%;
    max-width: 350px;
  }

  .info-card {
    margin: 0 auto;
    padding: 1.2rem 0.7rem 2rem 0.7rem;
    border-radius: 40px;
    max-width: 350px;
    min-width: 140px;
    min-height: 280px;
    margin: 0 auto;
  }

  .info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
  }

  .info-card p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
  .info-card:hover {
    height: 350px;
    max-height: 320px;
    min-height: 300px;
}
  .info-card img {
    height: 100px;
    bottom: -40px;
  }

  .beyond-content h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
  }

  .beyond-link {
    font-size: 1.5rem !important;
  }

  .smoke-btn span {
    font-size: 1.5rem;
  }
  .smoke-btn{
    margin: 50px 0px !important;
  }

  .smoke-btn svg {
    width: 25px;
    height: 25px;
  }

  .washed-process-subtitle {
    font-size: 1.1rem !important;
  }

  .washed-process-content h2 {
    font-size: 1.6rem;
  }

  .coffee-hero-content {
    bottom: -170px;
  }

  .washed-process-content {
    margin-top: 210px;
  }

  .coffee-jars-row {
    gap: 1vw;
    min-height: 220px;
  }
}

@media (max-width: 768px) {
  .story-section {
    flex-direction: column;
    align-items: center;
    padding: 20px 20px 0px 20px;
  }

  .story-content {
    flex: 1 1 50%;
    max-width: 100%;
    padding: 2rem 0;
  }

  .logo {
    width: 100%;
    margin-left: 1rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0.5rem;
  }

  .logo img {
    height: 36px;
    width: auto;
    max-width: 200px;
    display: block;
  }

  .coffee-hero-bg {
    filter: brightness(0.6);
  }

  .footer-row {
    flex-direction: column;
    align-items: center;
    gap: 0rem;
    padding: 2rem 0 1rem 0;
    width: 98%;
  }

  .footer-left,
  .footer-right {
    width: 100%;
    align-items: center;
    justify-content: center;
  }

  .footer-right {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .footer-logo,
  .footer-contact,
  .footer-address,
  .footer-links {
    align-items: center !important;
    text-align: center !important;
    min-width: unset;
    margin: 0 auto;
  }

  .footer-address {
    text-align: center !important;
    margin-top: 0.5rem;
  }
  .info-cards-container {
    padding: 0px 0px 50px 0;
  }

  .footer-links {
    align-items: center !important;
    margin-top: 0.5rem;
  }

  .story-content p {
    font-size: 1rem;
  }

  .coffee-hero-content {
    margin-left: 3%;
    max-width: 95vw;
    padding: 1.5rem 0.7rem 1.5rem 0.7rem;
  }

  .washed-process-content {
    padding: 2rem 1rem 2rem 1rem;
    margin-top: 200px !important;
  }
  .contactus-hero-content {
    padding: 2rem 2rem !important;
  }

  .washed-process-cards {
    gap: 1.5rem;
    max-width: 98vw;
  }

  .washed-process-card {
    width: 100%;
    height: auto;
    font-size: 1.5rem;
  }

  .washed-process-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
    right: 1rem;
    bottom: 1rem;
  }

  .welcome-section {
    flex-direction: column;
    padding: 2.5rem 0;
  }

  .hero-content h1 {
    font-size: 3rem !important;
  }
  .hero-content{
    margin: 0 !important;
  }

  .partner-section {
    padding: 30px 0 40px 0;
  }
  

  .partner-info h2 {
    font-size: 2rem;
  }

  .partner-info p {
    font-size: 1.2rem;
  }

  .partner-form-group label {
    font-size: 1.2rem;
  }

  .partner-form-group input,
  .partner-form-group textarea {
    font-size: 1.2rem;
  }

  .our-people-story-smoke-content {
    font-size: 1.2rem;
    padding: 0 9vw;
  }

  .our-people-story-smoke {
    padding: 40px 0 30px 0;
  }

  .types-coffee-section {
    padding-bottom: 18px;
  }

  .types-coffee-title {
    font-size: 2.1rem;
    margin: 2.1rem 0;
     padding-bottom: 1rem;
  }

  .types-coffee-card {
    min-width: 90vw;
    max-width: 98vw;
    padding: 0 0.5vw;
  }

  .types-coffee-bottle img {
    width: 38px;
    height: 60px;
  }

  .types-coffee-info h3 {
    font-size: 1rem;
  }

  .our-people-hero-content{
    padding: 0rem 3rem;
  }
  .types-coffee-info p {
    font-size: 0.93rem;
  }

  .types-coffee-btn {
    font-size: 0.9rem;
    padding: 0.5em 1.2em;
    margin-top: 1.2rem;
  }

  .navbar {
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    position: relative;
    justify-content: space-between;
  }

  .types-coffee-section {
    padding: 10px;
    padding-bottom: 18px;
  }

 
  .types-coffee-card {
    min-width: 90vw;
    max-width: 98vw;
    height: 180px;
    padding: 0.7rem 0.2rem 0.7rem 0.2rem;
  }

  .types-coffee-bottle {
    width: 38px;
    min-width: 38px;
    height: 60px;
    margin-right: 0.3rem;
  }

  .types-coffee-bottle img {
    width: 38px;
    height: 60px;
  }

  .types-coffee-info h3 {
    font-size: 1rem;
  }

  .types-coffee-info p {
    font-size: 0.93rem;
  }
  .types-coffee-btn {
    font-size: 1.2rem;
    padding: 0.7em 1.2em;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
  }

  .washed-process-section {
    padding: 0;
  }

  .smoke-section {
    height: 50vh;
    padding: 10px 0px;
  }

  .welcome-content {
    padding: 2rem;
  }
}

@media (max-width: 1024px) and (min-width: 768px) {

  img,
  .hero-img,
  .welcome-main-img,
  .footer-logo img {
    width: 100%;
    height: 100%;
  }

  .smoke-img {
    height: 100%;
    width: 100%;
    max-width: 900px;
  }

  .hero {
    height: 90vh;
    min-height: 180px;
  }

  .hero-content h1 {
    font-size: clamp(3.5rem, 4vw, 2.5rem) !important;
  }

  .beyond-content h1 {
    font-size: clamp(3.5rem, 4vw, 2.5rem) !important;
  }

  .welcome-section {
    flex-direction: column;
    padding: 2.5rem 0;
  }

  .welcome-img {
    min-width: unset;
  }

  .welcome-content {
    padding: 1.5rem 1rem;
  }

  .card-section {
    gap: 1.2rem;
  }

  .logo img {
    height: 40px;
  }

  .washed-process-subtitle {
    font-size: 1.2rem !important;
  }

  header {
    padding: 0.8rem 10px;
  }

  .card {
    padding: 1.2rem;
    min-width: 180px;
    max-width: 98vw;
  }

  .info-cards-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 2.5rem;
    row-gap: 5rem;
    min-height: 80vh;
    padding: 50px 20px;
  }

  .info-card {
    max-width: 98vw;
    min-width: 140px;
    max-height: 300px;
    margin: 0 auto;
    padding: 1.2rem 0.7rem 2rem 0.7rem;
  }
  .info-card:hover {
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.25), 0 0 0 2px #fff3;
    height: 400px;
    max-height: 320px;
    min-height: 300px;
}
  .info-card img {
    height: 130px;
    bottom: -60px;
  }

  .washed-process-content h2 {
    font-size: 1.9rem;
  }

  .washed-process-section {
    padding: 0;
  }

  .coffee-hero-content {
    bottom: -170px !important;
  }

  .washed-process-content {
    margin-top: 190px !important;
  }

  .smoke-section {
    height: 70vh !important;
    padding: 20px 0px;
  }
  .logo img {
    height: 40px !important;
  }

  .coffee-jars-row {
    gap: 1vw;
    min-height: 320px;
  }
}

@media (max-width: 900px) {
  .navbar {
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    position: relative;
    justify-content: space-between;
  }

  .navbar-toggle {
    display: block;
    position: absolute;
    right: 1rem;
    margin-left: 0;
  }

  #mainNav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #222;
    width: 100%;
    box-shadow: 0 8px 32px #000a;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    z-index: 1001;
    border-radius: 0 0 10px 10px;
  }

  #mainNav.nav-open {
    display: flex !important;
  }

  #mainNav ul {
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
  }

  nav ul {
    gap: 1.2rem;
  }

}

@media (max-width: 900px) and (min-width: 768px) {

  .container,
  .container-md,
  .container-sm {
    max-width: 900px !important;
  }
}

@media (max-width: 1440px) and (min-width: 1024px) {
  .container {
    width: 96%;
    max-width: 1000px;
  }

  .beyond-content,
  .hero-content {
    max-width: 620px;
  }

  .welcome-content {
    padding: 2rem 1.2rem;
  }

  .smoke-img {
    max-width: 1200px;
  }

  .story-section {
    flex-direction: column;
    padding-bottom: 30px;
  }

  .story-img,
  .story-content {
    min-width: unset;
    max-width: 100vw;
    padding: 0;
  }

  .story-content {
    padding: 2rem 1.2rem;
  }

  .info-cards-section {
    flex-direction: column;
    padding: 40px 0 20px 0;
  }

  .info-card {
    max-width: 98vw;
    min-width: 180px;
    padding: 1.5rem 1rem 1.5rem 1rem;
  }

  .coffee-hand-section img {
    max-height: 700px;
    min-height: 250px;
  }

  .info-cards-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 3rem;
    padding: 50px 0;
    min-height: unset;
  }

  .info-card {
    max-width: 98vw;
    min-width: 180px;
    margin: 0 auto;
       padding: 1.5rem 1rem 2.5rem 1rem;
  }

  .info-card img {
    height: 150px;
    bottom: -90px;
  }

  .washed-process-content h2 {
    font-size: 2.7rem;
  }

  .coffee-jars-row {
    gap: 1vw;
    min-height: 350px;
  }
}


@media (min-width: 1200px) and (max-width: 1400px) {
  .washed-process-line {
    top: 95px !important;
  }
}
 
@media (min-width: 1024px) and (max-width: 1199px) {
  .washed-process-line {
    top: 85px !important;
  }
}
@media (max-width: 1024px) {
  .partner-container {
    flex-direction: column;
    gap: 32px;
    padding: 20px;
    align-items: stretch;
    max-width: 98vw;
  }

  .partner-info {
    margin-left: 0;
    margin-top: 12px;
    align-items: flex-start;
  }

  .partner-form {
    max-width: 100vw;
  }


  .coffee-jar {
    min-width: 60px;
    max-width: 200px;
  }

  .coffee-jar-label {
    font-size: 0.95rem;
    min-width: 70px;
    padding: 0.2em 0.4em;
  }

  .types-coffee-card {
    min-width: 220px;
    max-width: 340px;
    padding: 0 1vw;
  }

  .types-coffee-bottle img {
    width: 60px;
    height: 120px;
  }

  .types-coffee-info h3 {
    font-size: 1.3rem;
  }

  .types-coffee-info p {
    font-size: 1rem;
    padding: 0 12px
  }

  .types-coffee-card {
    min-width: 180px;
    max-width: 260px;
    height: 320px;
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
  }

  .types-coffee-bottle {
    width: 60px;
    min-width: 60px;
    height: 120px;
    margin-right: 0.7rem;
  }

  .types-coffee-bottle img {
    width: 60px;
    height: 120px;
  }

  .washed-process-cards {
    gap: 0.5rem;
  }

  .washed-process-card {
    max-width: 200px;
    min-width: 80px;
  }

  .washed-process-cards {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 20px;
  }

  .washed-process-line,
  .washed-process-line-progress {
    display: none;
  }

  .washed-process-card {
    max-width: 70vw;
    min-width: 0;
    margin-bottom: 1.5rem;
    align-items: center;
  }

  .washed-process-num {
    font-size: 2.5rem;
  }

  .washed-process-title {
     font-size: 1.2rem;
  }

  .washed-process-desc {
    font-size: 1rem;
  }
}

@media (min-width: 1025px) {
  .info-cards-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding: 60px 20px;
    min-height: 110vh;
  }

  .info-card {
    max-width: 450px;
    min-width: 220px;
    border-radius: 55px;
    max-height: 400px;
    padding: 2.5rem 1.2rem 3rem 1.2rem;
  }

  .info-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .info-card p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
  }

  .info-card img {
    height: 150px;
    bottom: -70px;
  }
}

@media (min-width: 1440px) {
  .smoke-img {
    margin-top: 60px;
    max-width: 1400px;
  }

  .smoke-section {
    height: 100vh;
  }

  .smoke-container {
    padding: 0;
  }

  .welcome-section {
    padding: 40px 0px 100px 0px;
  }

  .info-cards-wrapper {
    max-width: 80vw !important;
  }

  .story-content p {
    font-size: 1.2rem !important;
  }

  .story-img {
    max-width: 1020px !important;
  }

  .coffee-hand-section img {
    max-height: 800px;
  }

  .washed-process-line {
    top: 105px; /* Fixed value for all devices */
  }

  .info-card {
    max-width: 450px;
    min-width: 220px;
    border-radius: 55px;
    max-height: 440px;
    padding: 2.5rem 1.2rem 3rem 1.2rem;
  }
}

.types-coffee-swiper .swiper-slide.swiper-slide-visible.swiper-slide-active {
  margin-right: 30px !important;
}

.types-coffee-swiper .swiper-slide {
  margin-right: 0 !important;
  display: flex;
  justify-content: center;
}


.highlight-item {
  /* width: calc(var(--width-of-first-item) * 1 + 200px + 2rem); */
  /* height: 100%; */
  /* position: absolute; */
  /* left: 0; */
  /* top: 50%; */
  /* transform: translateY(-50%); */
  display: grid;
  grid-template-columns: 30% 10% 1fr;
  gap: 1rem;
  align-items: center;

}

@media (max-width: 768px) {
  .highlight-item {
    grid-template-columns: auto 0% 1fr;
  }
}



.highlight-item>div:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1;
  padding: 1rem;
  /* height: 100%; */
  text-align: center;
  display: flex;
  margin-right: -4rem;
  justify-content: center;
}

.highlight-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
  max-height: 20rem;
}

.highlight-item>div:nth-child(2) {
  padding: 2rem 2rem 2rem 4rem;
  grid-row: 1;
  grid-column: 2 / -1;
  border-radius: 20px;
  height: 100%;
  border: 1px solid white;
  background: #1d1d1d;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1rem;
}

.highlight-item>div:nth-child(2)>div:nth-child(1) {
  font-size: 2rem;
}