* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font-family: inherit;
}

h1,
h2,
h3,
.logo,
footer strong {
  font-family: "Playfair Display", Georgia, serif;
}



.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  width: 18px;
  height: 2px;
  background: currentColor;
  display: block;
  position: relative;
  content: "";
}

.menu-btn span::before {
  position: absolute;
  top: -6px;
}

.menu-btn span::after {
  position: absolute;
  top: 6px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 78%;
  max-width: 360px;
  height: 100vh;
  background: var(--green);
  color: var(--cream);
  z-index: 1000;
  padding: 90px 34px;
  transition: 0.4s;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.25);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu .nav-link {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 30px;
  margin-bottom: 24px;
}

.close-menu {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 34px;
  cursor: pointer;
}

.page {
  display: none;
}

.page.active {
  display: block;
  animation: pageFade 0.45s ease;
}

@keyframes pageFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.04;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.08;
  color: var(--green);
  margin-bottom: 18px;
}

h3 {
  font-size: 26px;
  color: var(--green);
  margin-bottom: 10px;
}

p {
  color: #67564a;
}

.hero p {
  color: var(--white);
  font-size: 15.5px;
  max-width: 690px;
  margin: 0 auto 30px;
}

.btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  border: 0;
  font-size: 11px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-primary {
  background: var(--cream);
  color: var(--green);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: var(--gold);
  color: var(--dark);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--green);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.image-card,
.soft-card {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-card img,
.soft-card img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.dark-section {
  background: var(--green);
  color: var(--cream);
}

.dark-section h2,
.dark-section h3 {
  color: var(--cream);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--cream);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(75, 45, 28, 0.09);
  border: 1px solid rgba(75, 45, 28, 0.08);
  transition: 0.35s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.card img {
  width: 100%;
  height: 265px;
  object-fit: cover;
}

.card-body {
  padding: 28px;
}

.card-body small {
  color: var(--maroon);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 800;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.price {
  font-family: "Playfair Display", serif;
  color: var(--brown);
  font-size: 24px;
  font-weight: 700;
}

.mini-btn {
  background: var(--green);
  color: var(--cream);
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 30px 22px;
}

.floating-bean,
.floating-leaf,
.steam-line {
  position: absolute;
  display: block;
  opacity: 0.65;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.22));
}

.floating-bean {
  width: 58px;
  height: 82px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #d7a363, #7b4328 55%, #32170f 100%);
  animation: beanFloat 8s ease-in-out 2;
}

.floating-bean::after {
  content: "";
  position: absolute;
  top: 13%;
  left: 46%;
  width: 8px;
  height: 74%;
  border-radius: 50%;
  background: rgba(255, 230, 180, 0.42);
  transform: rotate(13deg);
}

.floating-leaf::after {
  content: "";
  position: absolute;
  left: 10%;
  top: 50%;
  width: 80%;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
  transform: rotate(-24deg);
}

.steam-line {
  width: 3px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(to top, transparent, rgba(255, 255, 255, 0.85), transparent);
  animation: steamRise 4.5s ease-in-out infinite;
}

.bean-1 {
  left: 8%;
  top: 25%;
  animation-delay: 0s;
  transform: rotate(-18deg);
}

.bean-2 {
  right: 10%;
  top: 58%;
  animation-delay: 1.8s;
  transform: rotate(22deg) scale(0.82);
}

.leaf-1 {
  right: 18%;
  top: 23%;
  animation-delay: 0.7s;
  transform: rotate(-35deg);
}

.leaf-2 {
  left: 16%;
  bottom: 18%;
  animation-delay: 2.2s;
  transform: rotate(22deg) scale(0.78);
}

.steam-1 {
  left: 48%;
  top: 16%;
  animation-delay: 0s;
}

.steam-2 {
  left: 52%;
  top: 18%;
  animation-delay: 1.1s;
  height: 75px;
}

.steam-3 {
  left: 56%;
  top: 15%;
  animation-delay: 2s;
  height: 95px;
}

@keyframes beanFloat {

  0%,
  100% {
    translate: 0 0;
    rotate: 0deg;
  }

  50% {
    translate: 18px -32px;
    rotate: 14deg;
  }
}

@keyframes leafFloat {

  0%,
  100% {
    translate: 0 0;
    rotate: 0deg;
  }

  50% {
    translate: -22px -26px;
    rotate: -12deg;
  }
}

@keyframes steamRise {
  0% {
    opacity: 0;
    transform: translateY(45px) scaleY(0.6);
  }

  45% {
    opacity: 0.75;
  }

  100% {
    opacity: 0;
    transform: translateY(-55px) scaleY(1.18);
  }
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  align-items: center;
  text-align: left;
  max-width: 1180px;
  width: 100%;
}

.hero-split .btn-group {
  justify-content: flex-start;
}

.hero-copy p {
  margin-left: 0;
  margin-right: 0;
}

.hero-order-card {
  background: rgba(255, 255, 255, 0.92);
  color: var(--green);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
  text-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-order-card strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 30px;
  line-height: 1.08;
  margin: 10px 0;
}

.hero-order-card p {
  color: #655345;
  font-size: 14px;
  margin-bottom: 18px;
}

.home-intro {
  background: #fffdf8;
}

.intro-grid {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: end;
}

.visual-story {
  background: #fbf4e9;
}

.visual-story img {
  height: 330px;
  width: 100%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(36, 20, 13, 0.12);
}

.home-title h2 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400;
  color: #111;
  margin-bottom: 8px;
}

.bean-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  color: #b89573;
  font-size: 24px;
  margin: 8px 0 26px;
}

.bean-divider::before,
.bean-divider::after {
  content: "";
  width: 90px;
  height: 1px;
  background: #c8a98b;
}

.home-title p {
  max-width: 980px;
  margin: auto;
  font-size: 21px;
  line-height: 1.7;
  color: #5f6368;
  letter-spacing: 0.8px;
}

.unique-icon video {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.home-about-style {
  max-width: 1400px;
  margin: 70px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 0 5%;
}

.home-about-text {
  padding: 60px;
  background: #fff;
  border-radius: 35px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.home-about-images {
  display: grid;
  grid-template-columns: 1.6fr .9fr;
  gap: 20px;
  align-items: center;
}

.forest-img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 35px;
}

.drag-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #c9825b;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 24px;
  z-index: 2;
}

.cart-items {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-controls button {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  cursor: pointer;
}

.remove-item {
  border: 0;
  background: var(--maroon);
  color: #fff;
  border-radius: 999px;
  padding: 8px 10px;
  cursor: pointer;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(75, 45, 28, 0.18);
  padding-top: 18px;
  margin-top: 12px;
}

.cart-total strong {
  font-size: 34px;
  color: var(--maroon);
}

.checkout-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.whatsapp-order,
.whatsapp-contact {
  background: var(--green);
  color: #fff;
  margin-top: 18px;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(38, 63, 42, 0.28);
  background: transparent;
  padding: 16px 0;
  font-size: 15px;
  outline: 0;
  color: var(--green);
  margin-bottom: 12px;
}

.contact-card textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-card button {
  background: var(--green);
  color: var(--cream);
  margin-top: 18px;
}

footer strong {
  color: var(--cream);
  font-size: 28px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.footer-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.footer-cta a,
.floating-contact a {
  background: var(--gold);
  color: var(--dark);
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .7px;
}

.footer-bottom {
  max-width: 1320px;
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.58);
}

.contact-card {
  background: rgba(255, 250, 243, 0.96) !important;
  color: var(--green);
  border-radius: 34px !important;
  padding: clamp(26px, 4vw, 44px) !important;
  box-shadow: 0 26px 70px rgba(36, 20, 13, 0.14) !important;
  border: 1px solid rgba(75, 45, 28, 0.12) !important;
}

.contact-card input,
.contact-card textarea,
.contact-card select {
  width: 100% !important;
  border: 1px solid rgba(75, 45, 28, 0.16) !important;
  border-radius: 16px !important;
  background: #ffffff !important;
  padding: 15px 18px !important;
  margin-bottom: 14px !important;
  color: var(--dark) !important;
  transition: .25s ease !important;
}

.contact-card input:focus,
.contact-card textarea:focus,
.contact-card select:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 4px rgba(201, 155, 88, 0.16) !important;
  transform: translateY(-1px);
}

.contact-card button,
.contact-card .btn {
  min-width: 150px;
  border-radius: 999px !important;
  box-shadow: 0 14px 34px rgba(38, 63, 42, 0.20);
}

footer {
  padding: 72px 7% 28px !important;
  background: linear-gradient(135deg, #25150e, #4b2d1c 54%, #263f2a) !important;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 8% 15%, rgba(201, 155, 88, .18), transparent 28%), radial-gradient(circle at 92% 78%, rgba(255, 250, 243, .10), transparent 24%);
  pointer-events: none;
}

footer>* {
  position: relative;
  z-index: 1;
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1.25fr .8fr 1.15fr 1fr !important;
  gap: 34px;
  max-width: 1320px;
  margin: 0 auto;
  align-items: start;
}

.footer-col h4 {
  color: #fff7ed !important;
  font-size: 17px !important;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.footer-col p,
.footer-col a,
.footer-col span {
  color: rgba(255, 247, 237, .82) !important;
  font-size: 14px;
  line-height: 1.8;
}

.footer-col a:hover,
.footer-links span:hover {
  color: var(--gold) !important;
}

.footer-social svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 0;
}

.footer-social a[title="Instagram"] svg,
.floating-contact svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social a:hover {
  background: var(--gold) !important;
  color: #1d120c !important;
  transform: translateY(-2px);
}

.footer-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.floating-contact a:hover {
  transform: translateY(-4px) scale(1.04);
}

.floating-contact svg {
  width: 28px;
  height: 28px;
}

.contact-info-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.contact-info-item,
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon,
.footer-contact-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f7a3f, #2d6a4f);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.contact-info-icon svg,
.footer-contact-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-text,
.footer-contact-text {
  display: grid;
  gap: 2px;
}

.contact-info-text small,
.footer-contact-text small {
  color: var(--gold);
  font-size: 11px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 800;
}

.contact-info-text a,
.contact-info-text span {
  color: #5f564f;
  font-weight: 600;
  line-height: 1.7;
}

.footer-contact-text a,
.footer-contact-text span {
  color: rgba(255, 247, 237, .84) !important;
  line-height: 1.65;
  font-weight: 600;
}

.contact-info-text a:hover,
.footer-contact-text a:hover {
  color: var(--gold) !important;
}

.footer-contact-list {
  display: grid;
  gap: 16px !important;
}

.contact-modern-hero {
  min-height: 62dvh !important;
}

.contact-left-panel {
  background: #ffffff;
  padding: clamp(38px, 5vw, 76px);
  color: #101340;
}

.contact-left-panel h2,
.contact-right-panel h2 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 30px;
}

.contact-intro {
  max-width: 560px;
  margin-bottom: 34px;
  color: #4f4b43;
  font-size: 17px;
  line-height: 1.75;
}

.modern-contact-list {
  display: grid;
  gap: 26px;
}

.modern-contact-icon svg {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-right-panel>* {
  position: relative;
  z-index: 1;
}

.contact-right-panel h2 {
  color: #fff;
}

.modern-contact-form {
  display: grid;
  gap: 18px;
}

.modern-contact-form textarea {
  min-height: 96px;
  resize: vertical;
}

.home-unique,
.bean-brew {
  background: #fff8ee;
  padding: 78px 6%;
  text-align: center;
  overflow: hidden;
}

.home-title {
  max-width: 1120px;
  margin: 0 auto;
  padding: 34px 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(120, 82, 45, 0.10);
  backdrop-filter: blur(4px);
}

.unique-three {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 68px auto 0;
}

.unique-box {
  min-height: 270px;
  padding: 38px 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(120, 82, 45, 0.10);
  box-shadow: 0 18px 45px rgba(36, 20, 13, 0.06);
  backdrop-filter: blur(4px);
}

.unique-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f8f2eb;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
  font-size: 54px;
  margin-bottom: 22px;
}

.unique-box h3,
.brew-text h3 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #000;
  margin-bottom: 14px;
}

.unique-box p,
.brew-text p {
  font-size: 18px;
  color: #909090;
  line-height: 1.6;
  max-width: 430px;
  margin: auto;
}

.home-about-style,
.home-story-style {
  max-width: 1320px;
  margin: 0 auto 38px;
  padding: 54px 5%;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 42px;
  min-height: auto;
  background: transparent;
  overflow: visible;
}

.home-story-style {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
}

.home-about-text,
.story-text {
  padding: 48px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(120, 82, 45, 0.11);
  box-shadow: 0 18px 45px rgba(36, 20, 13, 0.06);
  backdrop-filter: blur(5px);
  position: relative;
  z-index: 3;
  width: 100%;
  overflow: hidden;
}

.home-about-text h2,
.story-text h2 {
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.14;
}

.home-about-text p,
.story-text p {
  font-size: 18px;
  line-height: 1.72;
}

.home-about-images,
.story-images {
  min-height: 520px;
  padding: 28px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(120, 82, 45, 0.11);
  box-shadow: 0 18px 45px rgba(36, 20, 13, 0.06);
  backdrop-filter: blur(5px);
  overflow: hidden;
}

.forest-img,
.main-tribal-img {
  width: 100%;
  height: 470px;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: 0 18px 45px rgba(36, 20, 13, 0.14);
}

.coffee-img,
.bean-hand-img {
  position: absolute;
  width: 42%;
  height: 250px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  z-index: 2;
}

.coffee-img {
  position: static;
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
  align-self: center;
  left: 8%;
  bottom: 46px;
}

.bean-hand-img {
  position: absolute;
  width: 50%;
  height: 35%;
  object-fit: cover;
  right: 8%;
  top: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  bottom: 46px;
}

.brew-layout {
  margin-top: 90px;
  display: grid;
  grid-template-columns: .85fr 1.6fr .85fr;
  gap: 34px;
  align-items: center;
  max-width: 1180px;
  margin: 68px auto 0;
}

.brew-text {
  padding: 34px 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(120, 82, 45, 0.10);
  box-shadow: 0 18px 45px rgba(36, 20, 13, 0.06);
  backdrop-filter: blur(4px);
}

.brew-image-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 260px;
  padding: 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(120, 82, 45, 0.10);
  box-shadow: 0 18px 45px rgba(36, 20, 13, 0.06);
  overflow: hidden;
}

#home-page>section:not(.hero)>* {
  position: relative;
  z-index: 1;
}

.home-title,
.unique-box,
.home-about-text,
.home-about-images,
.story-images,
.story-text,
.brew-text,
.brew-image-wrap {
  background-clip: padding-box;
}

.home-unique {
  position: relative;
  background: linear-gradient(rgba(246, 238, 226, 0.82), rgba(246, 238, 226, 0.88)), var(--home-unique-bg) center / cover no-repeat;
  background-attachment: scroll;
}

.home-unique .home-title,
.home-unique .unique-box {
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(120, 82, 45, 0.14);
}

#home-page>section:not(.hero) {
  position: relative;
  overflow: visible;
  background: transparent !important;
  z-index: 1;
}

.home-unique,
.home-about-style,
.home-story-style,
.bean-brew {
  background: transparent !important;
  background-attachment: initial !important;
}

.home-title,
.unique-box,
.home-about-text,
.home-about-images,
.story-text,
.story-images,
.brew-text,
.brew-image-wrap {
  background: rgba(255, 255, 255, 0.88) !important;
  border: 1px solid rgba(118, 84, 48, 0.16) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.home-title p,
.unique-box p,
.home-about-text p,
.story-text p,
.brew-text p {
  color: #5f564f;
}

#home-page .home-about-style {
  max-width: 1420px !important;
  margin: 70px auto 48px !important;
  padding: 0 5% !important;
  display: grid !important;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr) !important;
  gap: 52px !important;
  align-items: stretch !important;
  background: transparent !important;
  overflow: visible !important;
}

#home-page .home-about-text {
  padding: clamp(34px, 4vw, 62px) !important;
  border-radius: 36px !important;
  background: rgba(255, 255, 255, 0.92) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  min-height: 560px !important;
  box-shadow: 0 26px 70px rgba(36, 20, 13, 0.12) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
}

#home-page .home-about-images {
  padding: 0 !important;
  min-height: 560px !important;
  display: grid !important;
  grid-template-columns: 1.45fr 0.85fr !important;
  gap: 20px !important;
  align-items: stretch !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  overflow: visible !important;
}

#home-page .home-about-images .forest-img,
#home-page .home-about-images .coffee-img {
  position: static !important;
  width: 100% !important;
  object-fit: cover !important;
  box-shadow: 0 26px 70px rgba(36, 20, 13, 0.16) !important;
  border: 10px solid rgba(255, 255, 255, 0.78) !important;
}

#home-page .home-about-images .forest-img {
  height: 560px !important;
  border-radius: 38px !important;
}

#home-page .home-about-images .coffee-img {
  height: 270px !important;
  border-radius: 30px !important;
  align-self: center !important;
}

#home-page .home-about-style,
#home-page .home-story-style {
  max-width: 1420px !important;
  border-radius: 0 !important;
}

#home-page .small-title,
#home-page .eyebrow {
  letter-spacing: 2.5px !important;
}

#home-page .bean-divider {
  color: var(--coffee-muted) !important;
}

#home-page .unique-icon {
  background: rgba(255, 247, 237, 0.92) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.20) !important;
}

#home-page .home-about-images,
#home-page .story-images,
#home-page .brew-image-wrap {
  padding: 22px !important;
}

#home-page .home-about-images .forest-img,
#home-page .home-about-images .coffee-img,
#home-page .story-images .main-tribal-img,
#home-page .story-images .bean-hand-img,
#home-page .brew-image-wrap img {
  border: 7px solid rgba(255, 247, 237, 0.82) !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.26) !important;
}

#home-page .home-story-style {
  display: grid !important;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr) !important;
  gap: 52px !important;
  align-items: stretch !important;
  padding-left: 5% !important;
  padding-right: 5% !important;
}

#home-page .story-text {
  padding: clamp(34px, 4vw, 62px) !important;
  border-radius: 36px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  min-height: 520px !important;
}

#home-page .story-images {
  min-height: 520px !important;
  display: grid !important;
  grid-template-columns: 1.25fr 0.9fr !important;
  gap: 20px !important;
  align-items: stretch !important;
  overflow: hidden !important;
  border-radius: 36px !important;
}

#home-page .story-images .main-tribal-img,
#home-page .story-images .bean-hand-img {
  position: static !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 470px !important;
  object-fit: cover !important;
  border-radius: 28px !important;
  margin: 0 !important;
}

#home-page .bean-brew {
  padding-bottom: 90px !important;
}

.inner-hero {
  min-height: 62dvh !important;
  padding: 120px 6% 70px !important;
}

.hero video,
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: 0;
  background-position: center center !important;
  background-size: cover !important;
  object-position: center center !important;
  background-repeat: no-repeat !important;
}

#about-page section:not(.hero) {
  background: #3f2619;
}

.about-intro-section,
.about-mission-section,
.about-values-section {
  padding: 78px 6%;
}

.about-panel {
  max-width: 1240px;
  margin: 0 auto;
  background: linear-gradient(145deg, #5b3a29, #6b4632);
  border: 1px solid rgba(255, 247, 237, 0.14);
  border-radius: 38px;
  padding: clamp(30px, 5vw, 64px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.25);
  color: #fff7ed;
  position: relative;
  overflow: hidden;
}

.about-panel::before,
.about-values-section::before,
.about-mission-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 18% 12%, rgba(255, 247, 237, .12), transparent 28%), radial-gradient(circle at 90% 80%, rgba(201, 155, 88, .10), transparent 30%);
  pointer-events: none;
}

.about-section-title {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.about-section-title h2 {
  color: #fff7ed;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4.8vw, 62px);
  margin-bottom: 14px;
}

.about-section-title p {
  color: #ead8c8;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.75;
  max-width: 980px;
  margin: 0 auto;
}

.about-bean-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 10px 0 24px;
  color: #c99b58;
  font-size: 26px;
}

.about-bean-divider::before,
.about-bean-divider::after {
  content: "";
  width: 92px;
  height: 1px;
  background: rgba(255, 247, 237, 0.40);
}

.about-mission-grid,
.about-vision-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-vision-grid {
  margin-top: 74px;
}

.about-mission-card {
  position: relative;
  background: linear-gradient(145deg, #5b3a29, #6b4632);
  border-radius: 36px;
  padding: clamp(30px, 4vw, 58px);
  border: 1px solid rgba(255, 247, 237, 0.14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-mission-card>* {
  position: relative;
  z-index: 1;
}

.about-mission-card .small-title {
  color: #c99b58 !important;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 800;
}

.about-mission-card h2 {
  color: #fff7ed;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 4vw, 54px);
  margin-bottom: 22px;
}

.about-mission-card p {
  color: #ead8c8;
  font-size: 18px;
  line-height: 1.85;
}

.about-img-card {
  border-radius: 36px;
  overflow: hidden;
  border: 10px solid rgba(255, 247, 237, 0.84);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  min-height: 440px;
  background: #2b190f;
}

.about-img-card img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  transition: transform .6s ease;
}

.about-img-card:hover img {
  transform: scale(1.04);
}

.about-banner {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #1d120c;
  padding: 0 !important;
}

.about-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .58;
  filter: saturate(1.02);
}

.about-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(29, 18, 12, .82), rgba(29, 18, 12, .45), rgba(29, 18, 12, .82));
}

.about-banner-content {
  position: relative;
  z-index: 1;
  max-width: 960px;
  padding: 40px 6%;
  text-align: center;
  color: #fff7ed;
}

.about-quote-mark {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 82px;
  color: #c99b58;
  line-height: 1;
  margin-bottom: 12px;
}

.about-banner h2 {
  color: #fff7ed;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.25;
  margin: 0;
}

.about-values-section {
  position: relative;
  overflow: hidden;
}

.about-values-wrap {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-values-title {
  text-align: center;
  margin-bottom: 56px;
}

.about-values-title h2 {
  color: #fff7ed;
  font-size: clamp(34px, 4.4vw, 58px);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.about-value-card {
  background: linear-gradient(145deg, #5b3a29, #6b4632);
  border: 1px solid rgba(255, 247, 237, .13);
  border-radius: 30px;
  padding: 34px 22px;
  text-align: center;
  box-shadow: 0 22px 55px rgba(0, 0, 0, .22);
  transition: .35s ease;
}

.about-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .30);
}

.about-value-icon svg {
  width: 38px;
  height: 38px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-value-card h3 {
  font-family: "Inter", system-ui, sans-serif;
  color: #fff7ed;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .7px;
  margin-bottom: 12px;
}

.about-value-card p {
  color: #ead8c8;
  font-size: 15px;
  line-height: 1.65;
}

#home-page {
  background: linear-gradient(rgba(255, 255, 255, 0.70), rgba(255, 255, 255, 0.72)), var(--home-bg-image) center top / cover fixed no-repeat !important;
  position: relative !important;
  overflow: hidden !important;
}

#home-page>section:not(.hero),
#home-page .home-unique,
#home-page .home-about-style,
#home-page .home-story-style,
#home-page .bean-brew {
  background: transparent !important;
  margin: 0 auto !important;
  padding-top: 70px !important;
  padding-bottom: 70px !important;
  overflow: visible !important;
}

#home-page>section:not(.hero)::before {
  content: none !important;
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='600' viewBox='0 0 900 600'%3E%3Cg fill='none' stroke='%237b5a35' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' opacity='.75'%3E%3Cpath d='M235 360c70-105 180-147 315-122'/%3E%3Cpath d='M327 302c-28-58-88-84-150-72 6 66 58 108 122 103'/%3E%3Cpath d='M428 260c-10-62 22-120 80-148 30 56 12 119-41 151'/%3E%3Cpath d='M546 239c55-44 123-44 178-9-35 55-98 73-155 43'/%3E%3Cellipse cx='376' cy='418' rx='47' ry='31' transform='rotate(-22 376 418)'/%3E%3Cpath d='M339 433c27-5 53-19 75-39'/%3E%3Cellipse cx='493' cy='414' rx='48' ry='31' transform='rotate(18 493 414)'/%3E%3Cpath d='M452 398c32 19 64 28 91 24'/%3E%3Cellipse cx='607' cy='360' rx='45' ry='29' transform='rotate(-18 607 360)'/%3E%3Cpath d='M572 373c30-8 56-22 75-43'/%3E%3Cpath d='M194 455c140 44 284 53 431 18'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: min(780px, 82%);
  opacity: 0.075;
  z-index: 0;
  pointer-events: none;
  display: none !important;
}

#home-page .home-title,
#home-page .unique-box,
#home-page .home-about-text,
#home-page .home-about-images,
#home-page .story-text,
#home-page .story-images,
#home-page .brew-text,
#home-page .brew-image-wrap {
  background: rgba(255, 255, 255, 0.88) !important;
  color: #222222 !important;
  border: 1px solid rgba(255, 255, 255, 0.55) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}

#home-page .home-title h2,
#home-page .unique-box h3,
#home-page .home-about-text h2,
#home-page .story-text h2,
#home-page .brew-text h3 {
  color: #222222 !important;
}

#home-page .home-title p,
#home-page .unique-box p,
#home-page .home-about-text p,
#home-page .story-text p,
#home-page .brew-text p,
#home-page .small-title {
  color: #5f564f !important;
}

#home-page .bean-divider,
#home-page .small-title {
  color: #8b5e3c !important;
}

#home-page .bean-divider::before,
#home-page .bean-divider::after {
  background: rgba(139, 94, 60, 0.45) !important;
}

#home-page .outline-dark {
  color: #263f2a !important;
  border: 2px solid #263f2a !important;
  background: transparent !important;
  width: fit-content !important;
}

#home-page .outline-dark:hover {
  color: #ffffff !important;
  background: #263f2a !important;
}

.small-title {
  font-size: 13px !important;
  letter-spacing: 2.5px;
  display: inline-flex !important;
  align-items: center;
  gap: 12px;
  padding: 12px 26px;
  margin-bottom: 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, #8b5e3c, #c99b58) !important;
  color: #fff !important;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(139, 94, 60, .35);
  transition: .35s ease;
}

.small-title:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(139, 94, 60, .45);
}

.coffee-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.outline-dark {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 34px;
  margin-top: 28px;
  border: 2px solid #8b5e3c !important;
  border-radius: 50px;
  background: linear-gradient(135deg, #8b5e3c, #c99b58) !important;
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: .35s ease;
  box-shadow: 0 12px 30px rgba(139, 94, 60, .35);
}

.outline-dark span {
  font-size: 18px;
  transition: .35s ease;
}

.outline-dark:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #c99b58, #8b5e3c) !important;
  color: #fff !important;
  box-shadow: 0 20px 45px rgba(139, 94, 60, .45);
}

.outline-dark:hover span {
  transform: translateX(6px);
}

.franchise-section {
  padding: 90px 6%;
  position: relative;
  overflow: hidden;
}

.franchise-wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: stretch;
}

.franchise-content,
.franchise-card-panel {
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(139, 94, 60, 0.18);
  border-radius: 36px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.franchise-content {
  padding: clamp(34px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.franchise-content h2 {
  color: #222 !important;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.08;
  margin-bottom: 20px;
}

.franchise-content p {
  color: #5f564f !important;
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 22px;
}

.franchise-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 22px 0 8px;
}

.franchise-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(139, 94, 60, 0.09);
  color: #4b2d1c;
  font-size: 14px;
  font-weight: 800;
}

.franchise-highlight span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #8b5e3c, #c99b58);
  color: #fff;
  flex-shrink: 0;
}

.franchise-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.franchise-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  border: 2px solid #8b5e3c;
  background: linear-gradient(135deg, #8b5e3c, #c99b58);
  color: #fff !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: .35s ease;
  box-shadow: 0 12px 30px rgba(139, 94, 60, .32);
}

.franchise-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(139, 94, 60, .42);
}

.franchise-btn.secondary {
  background: transparent;
  color: #8b5e3c !important;
}

.franchise-btn.secondary:hover {
  background: #8b5e3c;
  color: #fff !important;
}

.franchise-card-panel {
  padding: 32px;
}

.franchise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.franchise-card {
  min-height: 178px;
  padding: 26px 22px;
  border-radius: 26px;
  background: linear-gradient(145deg, #5b3a29, #6b4632);
  color: #fff7ed;
  border: 1px solid rgba(255, 247, 237, .14);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .18);
  transition: .35s ease;
}

.franchise-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(0, 0, 0, .26);
}

.franchise-card .franchise-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: rgba(255, 247, 237, .92);
  color: #5b3a29;
  font-size: 24px;
}

.franchise-card h3 {
  font-family: "Inter", system-ui, sans-serif;
  color: #fff7ed !important;
  font-size: 18px;
  margin-bottom: 8px;
}

.franchise-card p {
  color: #ead8c8 !important;
  font-size: 14px;
  line-height: 1.6;
}

.franchise-steps {
  max-width: 1280px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.franchise-step {
  padding: 20px 16px;
  text-align: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(139, 94, 60, 0.14);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .10);
}

.franchise-step strong {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5e3c, #c99b58);
  color: #fff;
}

.franchise-step span {
  color: #4b2d1c;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
}

#home-page .franchise-section {
  padding-top: 70px !important;
  padding-bottom: 45px !important;
  margin-bottom: 0 !important;
}

#home-page .franchise-card-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 22px;
}

.franchise-map-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 28px;
  background: #f5f7f7;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .10);
}

#home-page .franchise-steps {
  margin-top: 22px !important;
  margin-bottom: 0 !important;
}

#home-page .franchise-section+section {
  margin-top: 0 !important;
  padding-top: 55px !important;
}

.franchise-page-section {
  background: #3f2619;
  color: #fff7ed;
  padding: 86px 6%;
}

.franchise-page-section.light {
  background: #fff8ee;
  color: #1d120c;
}

.franchise-page-wrap {
  max-width: 1240px;
  margin: 0 auto;
}

.franchise-page-title {
  max-width: 920px;
  margin: 0 auto 54px;
  text-align: center;
}

.franchise-page-title h2 {
  color: inherit;
  font-size: clamp(34px, 4.8vw, 62px);
}

.franchise-page-title p {
  color: inherit;
  opacity: .82;
  font-size: 18px;
  line-height: 1.75;
}

.franchise-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.franchise-info-card {
  background: linear-gradient(145deg, #5b3a29, #6b4632);
  border: 1px solid rgba(255, 247, 237, .14);
  border-radius: 30px;
  padding: 30px 22px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, .22);
  color: #fff7ed;
}

.franchise-info-card strong {
  display: block;
  font-size: 30px;
  color: #c99b58;
  margin-bottom: 10px;
  font-family: "Playfair Display", Georgia, serif;
}

.franchise-info-card span {
  font-size: 14px;
  line-height: 1.55;
  color: #ead8c8;
}

.franchise-model-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.franchise-model {
  background: #fff;
  border-radius: 34px;
  padding: 38px;
  box-shadow: 0 22px 55px rgba(36, 20, 13, .12);
  border: 1px solid rgba(139, 94, 60, .12);
}

.franchise-model h3 {
  color: #263f2a;
  font-size: 30px;
  margin-bottom: 15px;
}

.franchise-model p {
  color: #5f564f;
  font-size: 17px;
  line-height: 1.75;
}

.franchise-model ul {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.franchise-model li {
  padding: 13px 16px;
  border-radius: 16px;
  background: rgba(139, 94, 60, .08);
  color: #4b2d1c;
  font-weight: 700;
}

.franchise-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.franchise-process-card {
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 26px;
  padding: 26px 18px;
  text-align: center;
}

.franchise-process-card b {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5e3c, #c99b58);
  margin: 0 auto 16px;
  color: #fff;
}

.franchise-process-card h3 {
  color: #fff7ed;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
}

.franchise-process-card p {
  color: #ead8c8;
  font-size: 14px;
  line-height: 1.55;
}

.franchise-contact-box {
  max-width: 980px;
  margin: 0 auto;
  background: linear-gradient(145deg, #5b3a29, #6b4632);
  border-radius: 36px;
  padding: clamp(32px, 5vw, 60px);
  text-align: center;
  border: 1px solid rgba(255, 247, 237, .14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
}

.franchise-contact-box h2 {
  color: #fff7ed;
}

.franchise-contact-box p {
  color: #ead8c8;
  font-size: 18px;
  margin-bottom: 24px;
}

.franchise-contact-box .franchise-btn {
  margin: auto;
}

#about-page {
  background: linear-gradient(rgba(255, 250, 243, .82), rgba(255, 250, 243, .88)), var(--about-page-bg-image) center top / cover fixed no-repeat !important;
}

#about-page section:not(.hero),
#about-page .about-intro-section,
#about-page .about-mission-section,
#about-page .about-values-section {
  background: transparent !important;
}

#about-page .about-panel,
#about-page .about-mission-card,
#about-page .about-value-card {
  background: rgba(255, 255, 255, .90) !important;
  color: #222 !important;
  border: 1px solid rgba(139, 94, 60, .18) !important;
  box-shadow: 0 24px 70px rgba(36, 20, 13, .14) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}

#about-page .about-panel::before,
#about-page .about-values-section::before,
#about-page .about-mission-card::before {
  display: none !important;
}

#about-page .about-section-title h2,
#about-page .about-mission-card h2,
#about-page .about-values-title h2,
#about-page .about-value-card h3 {
  color: #263f2a !important;
}

#about-page .about-section-title p,
#about-page .about-mission-card p,
#about-page .about-value-card p {
  color: #5f564f !important;
}

#about-page .about-bean-divider::before,
#about-page .about-bean-divider::after {
  background: rgba(139, 94, 60, .45) !important;
}

#about-page .about-img-card {
  background: #fff !important;
  border: 8px solid rgba(255, 255, 255, .88) !important;
  box-shadow: 0 26px 70px rgba(36, 20, 13, .18) !important;
}

#about-page .about-banner {
  background: #fff8ee !important;
}

#about-page .about-banner img {
  opacity: .82 !important;
}

#about-page .about-banner::after {
  background: linear-gradient(90deg, rgba(38, 63, 42, .74), rgba(38, 63, 42, .28), rgba(38, 63, 42, .74)) !important;
}

:root {
  --cream: #f6eee2;
  --cream-light: #fffaf3;
  --brown: #4b2d1c;
  --dark: #1d120c;
  --green: #2a3a2c;
  --green-light: #526e52;
  --maroon: #682e2a;
  --gold: #c99b58;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(36, 20, 13, 0.16);
  --home-unique-bg: url("https://images.unsplash.com/photo-1442512595331-e89e73853f31?auto=format&fit=crop&w=1800&q=80");
  --home-page-full-bg: url("https://res.cloudinary.comhtt/djahytrwo/image/upload/v1782804803/cof_kp1uz6.jpg");
  --coffee-bg: #ffffff;
  --coffee-card: #5b3a29;
  --coffee-card-soft: #6b4632;
  --coffee-cream: #fff7ed;
  --coffee-muted: #ead8c8;
  --coffee-line: rgba(255, 247, 237, 0.14);
  --home-bg-image: url("https://res.cloudinary.com/djahytrwo/image/upload/v1782822637/c2_yklwgh.jpg");
  --about-page-bg-image: url("https://res.cloudinary.com/djahytrwo/image/upload/v1782822486/c1_sktwbc.jpg");
  --sus-card: #3f5b3e;
  --sus-card-soft: #4e6b4c;
  --sus-line: rgba(255, 247, 237, .16);
}

#sustainability-page {
  background: #f4efe4;
}

.sus-intro-section,
.sus-stats-section,
.sus-pillars-section,
.sus-commit-section {
  padding: 84px 6%;
}

.sus-intro-panel {
  max-width: 1180px;
  margin: 0 auto;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(38, 63, 42, .14);
  border-radius: 38px;
  padding: clamp(32px, 5vw, 60px);
  box-shadow: 0 26px 70px rgba(36, 20, 13, .10);
  text-align: center;
}

.sus-intro-panel h2 {
  color: #263f2a;
}

.sus-intro-panel p {
  max-width: 880px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
}

.sus-stats-section {
  background: linear-gradient(145deg, var(--sus-card), var(--sus-card-soft));
}

.sus-stats-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.sus-stat-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid var(--sus-line);
  border-radius: 28px;
  padding: 34px 22px;
  text-align: center;
}

.sus-stat-card strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 44px;
  color: #fff7ed;
  margin-bottom: 8px;
}

.sus-stat-card span {
  color: #dcebd8;
  font-size: 14px;
  letter-spacing: .6px;
  font-weight: 700;
  text-transform: uppercase;
}

.sus-pillars-section .home-title h2 {
  color: #263f2a;
}

.sus-pillar-grid {
  max-width: 1280px;
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.sus-pillar-card {
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(38, 63, 42, .10);
  box-shadow: 0 22px 55px rgba(36, 20, 13, .10);
  transition: .35s ease;
}

.sus-pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(36, 20, 13, .16);
}

.sus-pillar-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.sus-pillar-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #3f5b3e, #6b8a68);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.sus-commit-section {
  background: linear-gradient(rgba(38, 63, 42, .86), rgba(38, 63, 42, .90)), url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1800&q=80") center / cover no-repeat;
}

.sus-commit-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.sus-commit-text {
  color: #fff7ed;
}

.sus-commit-text h2 {
  color: #fff7ed;
}

.sus-commit-text p {
  color: #e7ecd9;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.sus-commit-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.sus-commit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 247, 237, .16);
  border-radius: 18px;
  padding: 16px 18px;
  color: #fff7ed;
  font-weight: 700;
  font-size: 14.5px;
}

.sus-commit-item span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #c99b58, #8b5e3c);
  color: #fff;
  flex-shrink: 0;
}

.sus-commit-img {
  border-radius: 34px;
  overflow: hidden;
  border: 8px solid rgba(255, 247, 237, .85);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .30);
}

.sus-commit-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

a,
button,
.nav-link,
.btn,
img {
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease, color .35s ease, opacity .35s ease;
}

.card,
.sus-pillar-card,
.about-value-card,
.about-img-card,
.franchise-card,
.franchise-format-card,
.franchise-info-card,
.unique-box,
.sus-stat-card,
.franchise-benefit-pill,
.franchise-support-item,
.franchise-process-card,
.franchise-step {
  transition: transform .45s cubic-bezier(.2, .8, .2, 1), box-shadow .45s ease;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .8, .2, 1);
  will-change: opacity, transform;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.in-view {
  transition-delay: var(--reveal-delay, 0s);
}

.tribal-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 6px 0 0;
  opacity: .75;
}

.tribal-divider span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c99b58;
}

.tribal-divider span:nth-child(2) {
  width: 30px;
  height: 7px;
  border-radius: 4px;
  background: linear-gradient(90deg, #8b5e3c, #c99b58);
}

.section-frame {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.franchise-page-stats-wrap {
  margin-top: 46px;
}

.franchise-visual-hero {
  min-height: 100dvh !important;
}

.franchise-hero-grid {
  position: relative;
  z-index: 4;
  width: min(1240px, 100%);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
  text-align: left;
}

.franchise-hero-grid .hero-content {
  max-width: none !important;
  text-align: left !important;
}

.franchise-hero-grid .hero-content p {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.franchise-visual-card {
  background: rgba(255, 255, 255, .92);
  border-radius: 34px;
  padding: 26px;
  color: #263f2a;
  text-shadow: none;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .26);
  border: 1px solid rgba(255, 255, 255, .45);
}

.franchise-visual-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 26px;
  margin-bottom: 22px;
}

.franchise-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.franchise-hero-stat {
  padding: 15px 12px;
  border-radius: 18px;
  background: rgba(139, 94, 60, .10);
  text-align: center;
}

.franchise-hero-stat strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  color: #8b5e3c;
}

.franchise-hero-stat span {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .7px;
}

.franchise-benefit-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.franchise-benefit-pill {
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(139, 94, 60, .15);
  border-radius: 24px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(36, 20, 13, .10);
}

.franchise-benefit-pill b {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, #8b5e3c, #c99b58);
  color: #fff;
  font-size: 25px;
}

.franchise-benefit-pill h3 {
  color: #263f2a !important;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  margin-bottom: 8px;
}

.franchise-benefit-pill p {
  color: #5f564f !important;
  font-size: 14px;
  line-height: 1.55;
}

.franchise-format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.franchise-format-card {
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(139, 94, 60, .12);
  box-shadow: 0 22px 55px rgba(36, 20, 13, .12);
  transition: .35s ease;
}

.franchise-format-card:hover {
  transform: translateY(-8px);
}

.franchise-format-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.franchise-format-body {
  padding: 28px;
}

.franchise-format-body h3 {
  color: #263f2a !important;
  font-size: 25px;
}

.franchise-format-body p {
  color: #5f564f !important;
  margin-bottom: 18px;
}

.franchise-format-body ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.franchise-format-body li {
  color: #4b2d1c;
  background: rgba(139, 94, 60, .08);
  padding: 10px 13px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 13px;
}

.franchise-support-visual {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 38px;
  align-items: center;
}

.franchise-support-image {
  border-radius: 38px;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, .82);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .22);
}

.franchise-support-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.franchise-support-list {
  display: grid;
  gap: 16px;
}

.franchise-support-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  background: rgba(255, 255, 255, .92);
  border-radius: 24px;
  padding: 22px;
  border: 1px solid rgba(139, 94, 60, .14);
  box-shadow: 0 16px 40px rgba(36, 20, 13, .10);
}

.franchise-support-item b {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, #8b5e3c, #c99b58);
  color: #fff;
  font-size: 24px;
}

.franchise-support-item h3 {
  color: #263f2a !important;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 17px;
  margin-bottom: 5px;
}

.franchise-support-item p {
  color: #5f564f !important;
  font-size: 14px;
  line-height: 1.6;
}

.franchise-form-section {
  background: linear-gradient(rgba(38, 63, 42, .88), rgba(38, 63, 42, .90)), url("https://images.unsplash.com/photo-1509042239860-f550ce710b93?auto=format&fit=crop&w=1800&q=80") center / cover no-repeat !important;
}

.franchise-form-wrap {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.franchise-form-info {
  color: #fff7ed;
  padding: 34px 0;
}

.franchise-form-info h2 {
  color: #fff7ed !important;
  font-size: clamp(34px, 4vw, 56px);
}

.franchise-form-info p {
  color: #ead8c8 !important;
  font-size: 18px;
  line-height: 1.75;
}

.franchise-contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.franchise-contact-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  color: #fff !important;
  background: linear-gradient(135deg, #8b5e3c, #c99b58);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
}

.franchise-contact-action.call {
  background: rgb(15, 15, 15);
  border: 1px solid rgba(255, 255, 255, .35);
}

.franchise-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.franchise-field.full {
  grid-column: 1 / -1;
}

.franchise-field label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8b5e3c;
  margin-bottom: 7px;
}

.franchise-field input,
.franchise-field select,
.franchise-field textarea {
  width: 100%;
  border: 1px solid rgba(139, 94, 60, .18);
  border-radius: 16px;
  padding: 14px 15px;
  font-size: 14px;
  outline: none;
  background: #fffaf3;
  color: #263f2a;
}

.franchise-field textarea {
  min-height: 110px;
  resize: vertical;
}

.franchise-submit-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.franchise-submit-row button,
.franchise-submit-row a {
  flex: 1;
  min-width: 190px;
}

.franchise-note {
  font-size: 12px;
  color: #6d5c51;
  margin-top: 12px;
}

.sus-page-section.dark {
  background: #263f2a;
  color: #fff7ed;
}

.sus-wrap {
  max-width: 1240px;
  margin: 0 auto;
}

.sus-title {
  max-width: 900px;
  margin: 0 auto 56px;
  text-align: center;
}

.sus-title h2 {
  color: #263f2a;
  font-size: clamp(34px, 4.8vw, 62px);
}

.sus-title p {
  color: #5f564f;
  font-size: 18px;
  line-height: 1.75;
}

.sus-page-section.dark .sus-title h2 {
  color: #fff7ed;
}

.sus-page-section.dark .sus-title p {
  color: #ead8c8;
}

.sus-hero-grid {
  position: relative;
  z-index: 4;
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 42px;
  align-items: center;
  text-align: left;
}

.sus-hero-grid .hero-content {
  text-align: left !important;
  max-width: none !important;
}

.sus-hero-grid .hero-content p {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.sus-hero-card {
  background: rgba(255, 255, 255, .92);
  border-radius: 34px;
  padding: 24px;
  color: #263f2a;
  text-shadow: none;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
}

.sus-hero-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 26px;
  margin-bottom: 18px;
}

.sus-hero-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.sus-step b {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, #8b5e3c, #c99b58);
  color: #fff;
  font-size: 25px;
}

.sus-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.sus-pillar {
  background: #fff;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(139, 94, 60, .14);
  box-shadow: 0 24px 60px rgba(36, 20, 13, .12);
}

.sus-pillar img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.sus-pillar-body {
  padding: 30px;
}

.sus-pillar-body h3 {
  color: #263f2a;
  font-size: 28px;
}

.sus-pillar-body p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #5f564f;
  margin-bottom: 16px;
}

.sus-pillar-body ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.sus-pillar-body li {
  color: #4b2d1c;
  background: rgba(139, 94, 60, .08);
  padding: 11px 13px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
}

.sus-shade-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.sus-shade-img {
  border-radius: 38px;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, .82);
  box-shadow: 0 28px 75px rgba(0, 0, 0, .22);
}

.sus-shade-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.sus-benefits {
  display: grid;
  gap: 16px;
}

.sus-benefit {
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(139, 94, 60, .14);
  border-radius: 24px;
  padding: 22px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  box-shadow: 0 16px 38px rgba(36, 20, 13, .10);
}

.sus-benefit b {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #8b5e3c, #c99b58);
  color: #fff;
  font-size: 23px;
}

.sus-benefit h3 {
  font-family: "Inter", system-ui, sans-serif;
  color: #263f2a;
  font-size: 17px;
  margin-bottom: 5px;
}

.sus-benefit p {
  color: #5f564f;
  font-size: 14px;
}

.sus-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sus-impact-card {
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 30px;
  padding: 34px 22px;
  text-align: center;
}

.sus-impact-card strong {
  display: block;
  color: #c99b58;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 46px;
  line-height: 1;
  margin-bottom: 8px;
}

.sus-impact-card span {
  color: #fff7ed;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
}

.sus-packaging {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.sus-packaging-img {
  background: #fff;
  border-radius: 38px;
  padding: 22px;
  box-shadow: 0 26px 70px rgba(36, 20, 13, .14);
}

.sus-packaging-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 28px;
}

.sus-packaging-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.sus-pack-card {
  background: #fff;
  border: 1px solid rgba(139, 94, 60, .14);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(36, 20, 13, .10);
}

.sus-pack-card b {
  font-size: 28px;
}

.sus-pack-card h3 {
  color: #263f2a;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 17px;
  margin: 8px 0;
}

.sus-pack-card p {
  color: #5f564f;
  font-size: 14px;
}

/* =========================================================
   VISUAL STORY - ALL IMAGES SAME SIZE
========================================================= */

.sus-gallery {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 18px !important;
    width: 100% !important;
    align-items: stretch !important;
}

.sus-gallery img {
    width: 100% !important;
    height: 230px !important;
    min-height: 230px !important;
    max-height: 230px !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 24px !important;
    box-shadow: 0 18px 45px rgba(36, 20, 13, 0.12) !important;
}

/* Remove the old different heights */
.sus-gallery img:nth-child(2),
.sus-gallery img:nth-child(5) {
    height: 230px !important;
    min-height: 230px !important;
    max-height: 230px !important;
}
@media (max-width: 1050px) {
    .sus-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .sus-gallery img,
    .sus-gallery img:nth-child(2),
    .sus-gallery img:nth-child(5) {
        height: 230px !important;
        min-height: 230px !important;
        max-height: 230px !important;
    }
}

@media (max-width: 600px) {
    .sus-gallery {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .sus-gallery img,
    .sus-gallery img:nth-child(2),
    .sus-gallery img:nth-child(5) {
        height: 240px !important;
        min-height: 240px !important;
        max-height: 240px !important;
    }
}

.sus-cta {
  text-align: center;
  background: linear-gradient(rgba(38, 63, 42, .84), rgba(38, 63, 42, .88)), url("https://images.unsplash.com/photo-1497935586351-b67a49e012bf?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
  border-radius: 42px;
  padding: clamp(44px, 6vw, 80px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .24);
}

.sus-cta h2 {
  color: #fff7ed;
}

.sus-cta p {
  color: #ead8c8;
  max-width: 760px;
  margin: 0 auto 24px;
  font-size: 18px;
}

#sustainability-page .sus-shade-grid {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(460px, 1.05fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}

#sustainability-page .sus-shade-img {
  border-radius: 36px;
  border: 10px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 80px rgba(36, 20, 13, 0.16);
  overflow: hidden;
}

#sustainability-page .sus-shade-img img {
  width: 100%;
  height: clamp(430px, 48vw, 560px);
  object-fit: cover;
  object-position: center;
}

#sustainability-page .sus-shade-grid>div:last-child {
  max-width: 620px;
}

#sustainability-page .sus-shade-grid h2 {
  font-size: clamp(42px, 4.4vw, 66px);
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--green);
}

#sustainability-page .sus-shade-grid>div:last-child>p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 26px;
  color: #5f4d41;
}

#sustainability-page .sus-benefits {
  display: grid;
  gap: 18px;
}

#sustainability-page .sus-benefit {
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(139, 94, 60, 0.12);
  box-shadow: 0 16px 45px rgba(36, 20, 13, 0.08);
}

#sustainability-page .sus-benefit b {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  font-size: 24px;
  flex-shrink: 0;
}

#sustainability-page .sus-benefit h3 {
  font-size: 18px;
  margin-bottom: 4px;
  color: #14351f;
}

#sustainability-page .sus-benefit p {
  font-size: 14.5px;
  line-height: 1.55;
  color: #5f4d41;
}

.offerings-menu-wrap {
  max-width: 1380px;
  margin: 0 auto;
}

.franchise-enquiry-form {
  background: rgba(255, 250, 243, .98) !important;
  border-radius: 34px !important;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 26px 70px rgba(36, 20, 13, .14) !important;
  border: 1px solid rgba(75, 45, 28, .12) !important;
}

.franchise-field input,
.franchise-field textarea,
.franchise-field select {
  border-radius: 16px !important;
  border: 1px solid rgba(75, 45, 28, .16) !important;
  background: #fff !important;
  transition: .25s ease !important;
}

.franchise-field input:focus,
.franchise-field textarea:focus,
.franchise-field select:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 4px rgba(201, 155, 88, .16) !important;
  outline: none !important;
}

.small-title,
#home-page .small-title,
.about-mission-card .small-title,
.sus-page-section .small-title,
.franchise-page .small-title,
.franchise-section .small-title {
  color: #ffffff !important;
  background: linear-gradient(135deg, #8b5e3c, #c99b58) !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .22) !important;
}

.small-title .coffee-icon {
  color: #ffffff !important;
}

.whatsapp-icon,
.footer-contact-icon.whatsapp-icon {
  background: #25D366 !important;
  color: #ffffff !important;
  box-shadow: 10px 10px 0 rgba(37, 211, 102, 0.18), 0 16px 36px rgba(37, 211, 102, 0.26) !important;
}

.whatsapp-icon::before,
.footer-contact-icon.whatsapp-icon::before {
  background: rgba(37, 211, 102, 0.18) !important;
}

.whatsapp-icon svg,
.footer-contact-icon.whatsapp-icon svg,
.floating-contact .whatsapp svg {
  fill: #ffffff !important;
  stroke: none !important;
}

.floating-contact .whatsapp:hover {
  transform: translateY(-4px) scale(1.08) !important;
  box-shadow: 0 22px 54px rgba(37, 211, 102, .55) !important;
}

.footer-cta a.whatsapp {
  background: #25D366 !important;
  color: #ffffff !important;
}

.small-title,
#home-page .small-title,
#about-page .small-title,
#story-page .small-title,
#sustainability-page .small-title,
#franchise-page .small-title,
#contact-page .small-title {
  color: #ffffff !important;
  background: linear-gradient(135deg, #8b5e3c, #c99b58) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .22) !important;
}

.footer-social a i,
.footer-contact-icon i,
.modern-contact-icon i,
.floating-contact a i,
.story-real-icon i {
  font-size: inherit;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social a {
  width: 46px !important;
  height: 46px !important;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .08)) !important;
  border: 1px solid rgba(255, 247, 237, .20) !important;
  color: var(--cream);
  font-weight: 800;
  transition: .3s ease;
  font-size: 21px !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .20), 0 12px 26px rgba(0, 0, 0, .22) !important;
}

.footer-social a[title="LinkedIn"] {
  color: #ffffff !important;
}

.footer-social a[title="X"] {
  color: #ffffff !important;
}

.footer-social a[title="Facebook"] {
  color: #ffffff !important;
}

.footer-social a[title="Instagram"] {
  color: #ffffff !important;
}

.footer-contact-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: linear-gradient(145deg, #8b5e3c, #c99b58) !important;
  border: 2px solid rgba(255, 247, 237, .55) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), 0 14px 30px rgba(0, 0, 0, .25) !important;
  font-size: 19px !important;
  color: #ffffff !important;
}

.footer-contact-item:hover .footer-contact-icon,
.modern-contact-row:hover .modern-contact-icon {
  transform: translateY(-3px) scale(1.04);
}

.floating-contact .whatsapp {
  background: radial-gradient(circle at 32% 25%, rgba(255, 255, 255, .35), transparent 26%), linear-gradient(145deg, #25D366, #128C7E) !important;
  color: #ffffff !important;
  border: 4px solid #ffffff !important;
  box-shadow: 0 18px 45px rgba(37, 211, 102, .42), inset 0 1px 0 rgba(255, 255, 255, .35) !important;
  font-size: 34px !important;
}

.floating-contact .mail {
  background: radial-gradient(circle at 32% 25%, rgba(255, 255, 255, .45), transparent 28%), linear-gradient(145deg, #fff7ed, #e8d3bb) !important;
  color: #4b2d1c !important;
  border: 4px solid #ffffff !important;
  font-size: 27px !important;
}

.floating-contact a {
  box-shadow: 0 16px 40px rgba(0, 0, 0, .24) !important;
  text-align: center;
  width: 64px !important;
  height: 64px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 2px solid rgba(255, 255, 255, .85);
  transition: .3s ease;
}

.contact-split-section {
  background: linear-gradient(135deg, #fff8ee, #f2e2ce) !important;
  padding: 88px 6%;
}

.contact-split-wrap {
  max-width: 1420px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 32px 90px rgba(75, 45, 28, .18) !important;
  border-radius: 28px !important;
  overflow: hidden !important;
  background: #fff;
}

.contact-left-panel h2 {
  color: #4b2d1c !important;
}

.contact-right-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(35deg, transparent 48%, rgba(255, 247, 237, .08) 50%, transparent 52%), linear-gradient(-35deg, transparent 48%, rgba(255, 247, 237, .06) 50%, transparent 52%) !important;
  background-size: 90px 90px !important;
  opacity: .65 !important;
  pointer-events: none;
}

.modern-contact-row {
  display: grid;
  grid-template-columns: 86px 1fr;
  align-items: center;
  gap: 24px;
  color: #3b2418 !important;
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 600;
  line-height: 1.55;
  transition: .3s ease;
}

.modern-contact-row:hover {
  transform: translateX(6px);
  color: #8b5e3c !important;
}

.modern-contact-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .35), transparent 26%), linear-gradient(145deg, #8b5e3c, #c99b58) !important;
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 12px 12px 0 rgba(139, 94, 60, .16), 0 16px 34px rgba(75, 45, 28, .22) !important;
  font-size: 29px !important;
  border: 3px solid #fff7ed !important;
  transition: .3s ease !important;
}

.modern-contact-icon::before {
  content: "";
  position: absolute;
  inset: -10px auto auto -12px;
  width: 34px;
  height: 58px;
  background: rgba(201, 155, 88, .20) !important;
  border-radius: 18px;
  transform: rotate(-18deg);
  z-index: 0;
}

.modern-contact-form input,
.modern-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 247, 237, .35) !important;
  background: rgba(255, 255, 255, .96) !important;
  color: #1d120c;
  padding: 19px 22px;
  font-size: 16px;
  outline: 0;
  border-radius: 14px !important;
  box-shadow: 0 10px 28px rgba(29, 18, 12, .08) !important;
}

.modern-contact-form input:focus,
.modern-contact-form textarea:focus {
  box-shadow: 0 0 0 4px rgba(201, 155, 88, .24), 0 14px 36px rgba(29, 18, 12, .14) !important;
  border-color: #c99b58 !important;
}

.modern-contact-form button {
  margin-top: 2px;
  width: 100%;
  height: 66px;
  border: 2px solid rgba(255, 247, 237, .65) !important;
  border-radius: 999px;
  background: linear-gradient(135deg, #c99b58, #fff7ed) !important;
  color: #4b2d1c !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: .3s ease;
  font-size: 15px;
  box-shadow: 0 18px 45px rgba(29, 18, 12, .22) !important;
}

.modern-contact-form button:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #8b5e3c, #4b2d1c) !important;
  color: #ffffff !important;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
}

.story-organic-section,
.story-values-section,
.story-process-section {
  background: #fff8ee;
  position: relative;
  overflow: hidden;
}

#story-page .hero-content {
  max-width: 980px;
}

.story-organic-wrap,
.story-process-wrap {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.story-organic-image,
.story-process-image {
  border-radius: 36px;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, .78);
  box-shadow: 0 26px 70px rgba(75, 45, 28, .18);
}

.story-organic-image img,
.story-process-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.story-organic-content,
.story-process-wrap>div:first-child {
  background: linear-gradient(145deg, #5b3a29, #6b4632);
  border: 1px solid rgba(255, 247, 237, .14);
  border-radius: 36px;
  padding: clamp(32px, 4vw, 58px);
  box-shadow: 0 26px 70px rgba(75, 45, 28, .20);
}

.story-organic-content h2,
.story-process-wrap h2,
#story-page .story-values-section h2 {
  color: #fff7ed;
}

.story-values-section .section-head h2 {
  color: #4b2d1c !important;
}

.story-organic-content p,
.story-process-wrap p {
  color: #ead8c8;
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 16px;
}

.story-clean-grid {
  max-width: 1320px;
  margin: 54px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.story-clean-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 34px 26px;
  box-shadow: 0 20px 55px rgba(75, 45, 28, .10);
  border: 1px solid rgba(75, 45, 28, .10);
  transition: .35s ease;
}

.story-clean-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(75, 45, 28, .16);
}

.story-real-icon {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: radial-gradient(circle at 30% 22%, rgba(255, 255, 255, .36), transparent 26%), linear-gradient(145deg, #263f2a, #8b5e3c);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 31px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), 0 16px 36px rgba(38, 63, 42, .20);
  margin-bottom: 22px;
}

.story-clean-card h3 {
  color: #4b2d1c;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.story-clean-card p {
  color: #67564a;
  font-size: 15.5px;
  line-height: 1.75;
}

.story-note {
  margin-top: 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 247, 237, .12);
  color: #fff7ed;
  border: 1px solid rgba(255, 247, 237, .18);
  font-weight: 700;
}

.story-note i {
  color: #c99b58;
  margin-top: 4px;
}

.logo:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .28) !important;
}

#home-page .hero .hero-content:hover {
  transform: translateY(12px);
  background: rgba(29, 18, 12, .58) !important;
}

.card,
.product-card,
.offering-card,
.franchise-card,
.franchise-format-card,
.franchise-process-card,
.franchise-support-item,
.contact-card,
.cart-panel {
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
}

.card:hover,
.product-card:hover,
.offering-card:hover,
.franchise-card:hover,
.franchise-format-card:hover,
.franchise-process-card:hover,
.franchise-support-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(36, 20, 13, .18) !important;
}

.product-card img {
  transition: transform .45s ease, filter .45s ease;
}

.product-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.04);
}

.shop-products {
  align-items: stretch;
}

.product-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 8px;
  color: #5f564f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.product-qty input {
  width: 74px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(75, 45, 28, .20);
  background: #fffaf3;
  color: var(--brown);
  text-align: center;
  font-weight: 800;
  outline: 0;
  transition: .25s ease;
}

.product-qty input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 155, 88, .16);
}

.mini-btn,
.btn,
.franchise-btn,
.franchise-contact-action,
.modern-contact-form button {
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease !important;
}

.mini-btn:hover,
.btn:hover,
.franchise-btn:hover,
.franchise-contact-action:hover,
.modern-contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(36, 20, 13, .22) !important;
}

.checkout-section {
  background: linear-gradient(135deg, #fffaf3, #f4eadb) !important;
}

.checkout-section .grid-2 {
  max-width: 1320px;
  margin: 0 auto;
}

.cart-panel {
  background: linear-gradient(145deg, #fffaf3, #efe1ce) !important;
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 18px 45px rgba(36, 20, 13, 0.10);
  border: 1px solid rgba(75, 45, 28, .13) !important;
}

.cart-line:hover {
  transform: translateX(4px);
  box-shadow: 0 12px 28px rgba(36, 20, 13, .10);
}

.qty-controls button,
.remove-item {
  transition: .25s ease;
}

.qty-controls button:hover {
  transform: scale(1.08);
  background: var(--gold) !important;
  color: var(--dark) !important;
}

.remove-item:hover {
  transform: translateY(-2px);
  background: #8b2f2a !important;
}

.footer-brand-logo {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(255, 247, 237, .92);
  border: 2px solid rgba(255, 247, 237, .75);
  padding: 7px;
  margin-bottom: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .22);
}

.footer-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.footer-social a,
.floating-contact a {
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease !important;
}

.footer-social a:hover,
.floating-contact a:hover {
  transform: translateY(-5px) scale(1.06) !important;
}

#home-page .hero {
  margin-bottom: 0 !important;
  align-items: flex-end !important;
  justify-content: center !important;
  padding: 150px 7% 58px !important;
}

#home-page .hero .hero-content {
  max-width: 820px !important;
  margin: 0 auto !important;
  padding: 24px 34px !important;
  border-radius: 28px !important;
  background: rgba(29, 18, 12, .46) !important;
  border: 1px solid rgba(255, 247, 237, .18) !important;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .25) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  transform: translateY(0) !important;
  transition: .45s ease;
}

#home-page .hero .hero-content p {
  max-width: 820px !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
  margin-bottom: 0 !important;
}

.product-card {
  position: relative;
}

.product-card .card-body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 265px;
}

.shop-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.shop-actions .price-row {
  flex: 1;
  margin-top: 0 !important;
}

.wishlist-btn {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border: 0;
  border-radius: 50%;
  background: #fff7ed;
  color: #682e2a;
  box-shadow: 0 12px 28px rgba(36, 20, 13, .12);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease, background .3s ease, color .3s ease, box-shadow .3s ease;
}

.wishlist-btn:hover,
.wishlist-btn.active {
  background: #682e2a;
  color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 18px 42px rgba(104, 46, 42, .25);
}

.cart-line {
  display: grid;
  grid-template-columns: 56px 1fr auto auto !important;
  gap: 14px !important;
  align-items: center;
  background: #fffaf2;
  border-radius: 16px;
  padding: 14px;
  border: 1px solid rgba(75, 45, 28, .10);
  transition: .28s ease;
}

.cart-thumb {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(36, 20, 13, .16);
}

.checkout-next-btn,
.pay-now-btn,
.back-cart-btn {
  margin-top: 18px;
  border: 0;
  cursor: pointer;
}

.checkout-next-btn {
  background: linear-gradient(135deg, #263f2a, #526e52) !important;
  color: #fff !important;
}

.payment-section {
  display: none;
  background: #fff7ed;
  padding: 82px 7%;
}

.payment-section.active {
  display: block;
  animation: pageFade .45s ease;
}

.payment-wrap {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.payment-card,
.final-summary-card {
  background: linear-gradient(145deg, #fffaf3, #efe1ce);
  border: 1px solid rgba(75, 45, 28, .13);
  border-radius: 34px;
  padding: clamp(26px, 4vw, 44px);
  box-shadow: 0 24px 70px rgba(36, 20, 13, .12);
}

.payment-card input,
.payment-card select {
  width: 100%;
  border: 1px solid rgba(75, 45, 28, .16);
  border-radius: 16px;
  background: #fff;
  padding: 15px 18px;
  margin-bottom: 14px;
  outline: 0;
  transition: .25s ease;
}

.payment-card input:focus,
.payment-card select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 155, 88, .16);
}

.payment-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.final-summary-card {
  display: none;
  margin-top: 28px;
  background: linear-gradient(145deg, #263f2a, #526e52);
  color: #fff7ed;
}

.final-summary-card.show {
  display: block;
}

.final-summary-card h2,
.final-summary-card p,
.final-summary-card strong {
  color: #fff7ed !important;
}

.final-summary-card pre {
  white-space: pre-wrap;
  font-family: inherit;
  color: #fff7ed;
  background: rgba(255, 255, 255, .10);
  border-radius: 18px;
  padding: 18px;
  margin-top: 16px;
}

.branches-hero {
  min-height: 60vh;
}

.branches-section {
  background: #fff8ee;
  padding: 86px 6%;
}

.branches-wrap {
  max-width: 1280px;
  margin: 0 auto;
}

.branches-title {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px;
}

.branches-title .eyebrow {
  color: var(--gold);
}

.branches-title h2 {
  color: var(--green);
}

.branches-title p {
  font-size: 17px;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.branch-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 75px rgba(36, 20, 13, .16);
}

.branch-card h3 {
  color: var(--brown);
  font-size: 28px;
}

.branch-card p {
  margin: 10px 0;
}

.branch-card a {
  color: var(--green);
  font-weight: 800;
}

.branch-details {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(75, 45, 28, .12);
  display: grid;
  gap: 8px;
}

.branch-expansion {
  margin-top: 54px;
  background: linear-gradient(135deg, #263f2a, #4b2d1c);
  border-radius: 34px;
  padding: 42px;
  color: #fff7ed;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 32px;
  align-items: center;
}

.branch-expansion h3,
.branch-expansion p {
  color: #fff7ed;
}

.branch-state-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.branch-state-list span {
  background: rgba(255, 247, 237, .12);
  border: 1px solid rgba(255, 247, 237, .18);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  font-weight: 800;
}

footer.clean-footer {
  padding: 0 !important;
  background: linear-gradient(rgba(48, 22, 13, .86), rgba(48, 22, 13, .90)), url("https://res.cloudinary.com/nkk7o7nj/image/upload/v1789188605/footerbanner.jpg") center/cover no-repeat !important;
  color: #fff7df !important;
  overflow: hidden;
}

.clean-footer .footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255, 247, 223, .45);
}

.clean-footer .footer-box {
  padding: 42px 34px;
  border-right: 1px solid rgba(255, 247, 223, .45);
  min-height: 260px;
}

.clean-footer .footer-box:last-child {
  border-right: 0;
}

.clean-footer h4 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 20px !important;
  line-height: 1.2;
  color: #fff3c4 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 22px;
}

.clean-footer p,
.clean-footer a,
.clean-footer span {
  color: #fff7df !important;
  font-size: 16px !important;
  line-height: 1.7;
  font-weight: 600;
}

.clean-footer a:hover,
.clean-footer .nav-link:hover {
  color: #f3c975 !important;
}

.clean-footer .footer-links {
  gap: 15px;
}

.clean-footer .social-panel,
.clean-footer .payment-panel {
  padding: 28px 34px;
  text-align: center;
}

.clean-footer .footer-social {
  justify-content: center;
  margin-top: 16px;
}

.clean-footer .footer-social a {
  width: 48px !important;
  height: 48px !important;
  background: #fff7df !important;
  color: #5b2d1e !important;
  border: 0 !important;
  font-size: 20px;
}

.clean-footer .footer-social a:hover {
  background: #f3c975 !important;
  transform: translateY(-4px);
}

.payment-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
}

.pay-chip {
  min-width: 82px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff7df;
  color: #5b2d1e !important;
  border-radius: 6px;
  font-size: 13px !important;
  font-weight: 900 !important;
}

.clean-footer .footer-copy {
  text-align: center;
  padding: 24px 18px;
  font-weight: 800;
  color: #fff3c4;
}

.clean-footer .footer-brand-mini {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.clean-footer .footer-brand-mini img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff7df;
  object-fit: contain;
}

.clean-footer .footer-brand-mini strong {
  color: #fff3c4;
  font-size: 26px;
}

.info-page-section {
  background: #fff8ee;
  padding: 90px 7%;
}

.info-page-wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 26px;
}

.info-card {
  background: #fff;
  border: 1px solid rgba(75, 45, 28, 0.12);
  border-radius: 30px;
  padding: clamp(28px, 4vw, 54px);
  box-shadow: 0 22px 60px rgba(36, 20, 13, 0.10);
}

.info-card h2 {
  color: var(--green);
  margin-bottom: 12px;
}

.info-card h3 {
  color: var(--brown);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 21px;
  margin-top: 24px;
}

.info-card p,
.info-card li {
  color: #5f564f;
  font-size: 16px;
  line-height: 1.8;
}

.info-card ul {
  margin: 14px 0 0 20px;
}

.info-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.info-highlight {
  background: #f6eee2;
  border-radius: 22px;
  padding: 22px;
  border: 1px solid rgba(75, 45, 28, 0.10);
}

.info-highlight i {
  color: var(--gold);
  font-size: 26px;
  margin-bottom: 12px;
}

.info-highlight strong {
  display: block;
  color: var(--green);
  margin-bottom: 6px;
}

@media (max-width:900px) {
  .payment-wrap {
    grid-template-columns: 1fr;
  }

  .cart-line {
    grid-template-columns: 52px 1fr !important;
  }

  .qty-controls {
    justify-content: flex-start;
  }

  .info-highlight-grid {
    grid-template-columns: 1fr;
  }
}

.real-icon,
.unique-icon.real-icon,
.franchise-card .franchise-icon.real-icon {
  width: 82px !important;
  height: 82px !important;
  border-radius: 24px !important;
  padding: 7px !important;
  background: linear-gradient(145deg, #fff8ee, #ead6bd) !important;
  box-shadow: 0 16px 36px rgba(75, 45, 28, 0.18) !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.real-icon img,
.unique-icon.real-icon img,
.franchise-card .franchise-icon.real-icon img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 18px !important;
  display: block !important;
  transition: transform .45s ease, filter .45s ease;
}

.unique-box:hover .real-icon img,
.franchise-card:hover .real-icon img,
.sus-step:hover .real-step-icon img {
  transform: scale(1.08);
  filter: saturate(1.12) contrast(1.05);
}

.real-step-icon {
  width: 72px !important;
  height: 72px !important;
  margin: 0 auto 14px !important;
  border-radius: 22px !important;
  padding: 6px !important;
  background: linear-gradient(145deg, #fff8ee, #ead6bd) !important;
  box-shadow: 0 14px 30px rgba(75, 45, 28, 0.16) !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: transparent !important;
}

.real-step-icon img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 16px !important;
  transition: transform .45s ease, filter .45s ease;
}

.sus-hero-point {
  padding: 14px;
  border-radius: 18px;
  background: rgba(139, 94, 60, .10);
  font-weight: 800;
  font-size: 13px;
  color: #4b2d1c;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.sus-hero-point img {
  width: 34px !important;
  height: 34px !important;
  border-radius: 10px !important;
  object-fit: cover !important;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .18) !important;
}

.brew-image-wrap img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  filter: saturate(1.05) contrast(1.03);
}

.brew-text h3 {
  letter-spacing: -.2px;
}

.sus-benefit .real-step-icon,
.sus-pack-card .real-step-icon,
.franchise-benefit-pill .real-step-icon {
  width: 58px !important;
  height: 58px !important;
  margin: 0 0 12px 0 !important;
  border-radius: 18px !important;
  padding: 5px !important;
}

.sus-benefit .real-step-icon {
  flex: 0 0 58px !important;
}

.coffee-icon img {
  width: 100% !important;
  height: 100% !important;
  border-radius: 50% !important;
  object-fit: cover !important;
}

.eyebrow,
.small-title,
.branches-title .eyebrow,
.section-head .eyebrow,
.franchise-page-title .eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  width: fit-content !important;
  padding: 8px 15px !important;
  border-radius: 999px !important;
  background: rgba(201, 155, 88, .16) !important;
  color: #8d5c24 !important;
  border: 1px solid rgba(201, 155, 88, .25) !important;
  box-shadow: 0 8px 22px rgba(75, 45, 28, .08) !important;
}

.hero .eyebrow {
  color: #fff7ed !important;
  background: rgba(201, 155, 88, .22) !important;
  border-color: rgba(255, 247, 237, .25) !important;
}

.home-title .bean-divider,
.about-bean-divider {
  color: #c99b58 !important;
}

.real-icon,
.unique-icon.real-icon,
.franchise-card .franchise-icon.real-icon,
.real-step-icon {
  background: #fffaf3 !important;
  overflow: hidden !important;
  box-shadow: 0 18px 40px rgba(75, 45, 28, .16) !important;
  border: 3px solid rgba(255, 255, 255, .8) !important;
}

.real-icon img,
.unique-icon.real-icon img,
.franchise-icon.real-icon img,
.real-step-icon img,
.story-real-icon img,
.coffee-icon img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.unique-icon.real-icon img {
  border-radius: 22px !important;
}

.nav-cart-btn b,
#shopCartCount {
  position: absolute;
  top: -4px;
  right: -5px;
  min-width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #8b5a2b;
  color: #fff;
  font-size: 10px;
  line-height: 17px;
  text-align: center;
}

.shop-icon-strip-section {
  padding: 22px 7% !important;
  background: #fffaf3 !important;
}

.shop-icon-strip {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

.shop-icon-strip button {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(75, 45, 28, .12);
  color: #4b2d1c;
  box-shadow: 0 14px 32px rgba(75, 45, 28, .10);
  display: grid;
  place-items: center;
  position: relative;
  cursor: pointer;
  transition: .3s ease;
}

.shop-icon-strip button i {
  font-size: 21px;
}

.shop-icon-strip button span {
  position: absolute;
  opacity: 0;
  transform: translateY(10px);
  bottom: -24px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: #4b2d1c;
  transition: .3s ease;
}

.shop-icon-strip button:hover {
  transform: translateY(-5px);
  background: #263f2a;
  color: #fff;
}

.shop-icon-strip button:hover span {
  opacity: 1;
  transform: translateY(0);
}

.plant-cup-title {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  color: #263f2a !important;
}

.plant-cup-title h2 {
  color: #263f2a !important;
  font-family: "Playfair Display", Georgia, serif !important;
  font-weight: 800 !important;
}

.plant-cup-title p {
  color: #67564a !important;
}

.sus-step .real-step-icon,
.sus-benefit .real-step-icon,
.sus-pack-card .real-step-icon {
  border-radius: 18px !important;
}

.sus-step .real-step-icon img,
.sus-benefit .real-step-icon img,
.sus-pack-card .real-step-icon img {
  filter: saturate(1.1) contrast(1.03);
}

@media (max-width:760px) {
  .plant-cup-flow {
    grid-template-columns: 1fr;
  }

  .plant-step:not(:last-child)::after {
    right: 50%;
    top: auto;
    bottom: -22px;
    transform: translateX(50%) rotate(90deg);
  }

  .shop-icon-strip {
    justify-content: center;
  }

  .nav-shop-icons {
    display: none;
  }

  .branch-card {
    min-height: 360px;
  }
}

.nav-cart-btn b {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #8b5a2b;
  color: #fff;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.eyebrow,
.small-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(201, 155, 88, .16);
  color: #a06f34 !important;
  letter-spacing: 4px !important;
  font-weight: 900 !important;
  box-shadow: inset 0 0 0 1px rgba(201, 155, 88, .16);
}

.hero .eyebrow,
.dark-section .eyebrow,
footer .eyebrow {
  background: rgba(255, 247, 237, .14);
  color: var(--gold) !important;
}

.branch-badge {
  display: inline-flex;
  padding: 7px 13px;
  border-radius: 999px;
  background: #21482c !important;
  color: #fff !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
  width: fit-content;
  box-shadow: 0 12px 30px rgba(38, 63, 42, .20);
}

.branch-details a,
.branch-details span {
  transition: .25s ease;
}

.branch-details a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.franchise-flow-detail-section {
  position: relative;
  overflow: hidden;
}

.franchise-flow-detail-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 250, 243, .90), rgba(255, 250, 243, .96)), url("https://images.unsplash.com/photo-1554118811-1e0d58224f24?auto=format&fit=crop&w=1800&q=85") center/cover no-repeat;
  z-index: 0;
}

.franchise-flow-detail-section>* {
  position: relative;
  z-index: 1;
}

.franchise-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.franchise-flow-card {
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(75, 45, 28, .12);
  border-radius: 28px;
  padding: 28px 22px;
  box-shadow: 0 18px 45px rgba(36, 20, 13, .10);
  transition: .35s ease;
}

.franchise-flow-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(36, 20, 13, .16);
}

.franchise-flow-card span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 18px;
}

.franchise-flow-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.franchise-flow-card p {
  font-size: 14.5px;
  line-height: 1.65;
}

.sus-step .real-step-icon,
.franchise-benefit-pill .real-step-icon {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(36, 20, 13, .18);
  background: #fff7ed;
}

.sus-step .real-step-icon img,
.franchise-benefit-pill .real-step-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sus-step:hover .real-step-icon img,
.franchise-benefit-pill:hover .real-step-icon img {
  transform: scale(1.08);
  transition: .45s ease;
}

#navSearchBtn,
.shop-icon-strip-section {
  display: none !important;
}

.header.scrolled .nav-icon-btn,
.header.light .nav-icon-btn {
  background: #fffaf3 !important;
}

.nav-icon-btn:hover {
  transform: translateY(-3px) !important;
  color: var(--dark) !important;
  background: var(--gold) !important;
}

.branch-card {
  background: #fffaf3 !important;
  border-radius: 28px;
  padding: 34px !important;
  border: 1px solid rgba(75, 45, 28, .10);
  box-shadow: 0 20px 55px rgba(36, 20, 13, .10);
  transition: .35s ease;
  position: relative;
  overflow: hidden;
  min-height: 480px !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-end !important;
}

.branch-card::before {
  content: "" !important;
  position: absolute !important;
  width: auto !important;
  height: auto !important;
  right: auto !important;
  top: auto !important;
  border-radius: 28px !important;
  background: rgba(201, 155, 88, .16);
  inset: 0 !important;
  background-size: cover !important;
  background-position: center !important;
  opacity: .62 !important;
  transition: .45s ease !important;
  transform: scale(1.02) !important;
  filter: saturate(1.08) contrast(1.05) !important;
}

.branch-card::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(180deg, rgba(255, 250, 243, .30) 0%, rgba(255, 250, 243, .76) 40%, rgba(255, 250, 243, .98) 88%) !important;
  border-radius: 28px !important;
  z-index: 1 !important;
}

.branch-card:hover::before {
  transform: scale(1.10) !important;
  opacity: .72 !important;
}

.branch-card>* {
  position: relative !important;
  z-index: 2 !important;
}

.branch-araku::before {
  background-image: url("https://images.unsplash.com/photo-1588508065123-287b28e013da?auto=format&fit=crop&w=1600&q=85") !important;
}

.branch-tirupathi::before {
  background-image: url("https://images.unsplash.com/photo-1627896255424-697dc0a5a7d7?auto=format&fit=crop&w=1600&q=85") !important;
}

.branch-franchise::before {
  background-image: url("https://images.unsplash.com/photo-1559925393-8be0ec4767c8?auto=format&fit=crop&w=1600&q=85") !important;
}

.store-experience-panel {
  margin-top: 42px;
  padding: 42px;
  border-radius: 34px;
  background: linear-gradient(rgba(255, 250, 243, .90), rgba(255, 250, 243, .94)), url("https://images.unsplash.com/photo-1554118811-1e0d58224f24?auto=format&fit=crop&w=1800&q=85") center/cover no-repeat;
  box-shadow: 0 24px 70px rgba(36, 20, 13, .12);
  border: 1px solid rgba(75, 45, 28, .10);
}

.store-panel-title {
  margin-bottom: 28px !important;
}

.store-experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.store-experience-grid article {
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(75, 45, 28, .10);
  border-radius: 24px;
  padding: 26px 20px;
  box-shadow: 0 16px 38px rgba(36, 20, 13, .09);
  transition: .3s ease;
}

.store-experience-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(36, 20, 13, .15);
}

.store-experience-grid i {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--cream);
  margin-bottom: 16px;
}

.store-experience-grid h3 {
  color: var(--brown);
  font-size: 21px;
}

.store-experience-grid p {
  font-size: 14.5px;
  line-height: 1.65;
}

.payment-icons-row {
  align-items: center !important;
}

.payment-icons-row .pay-chip {
  min-width: 104px !important;
  height: 54px !important;
  gap: 8px !important;
  border-radius: 10px !important;
  background: #fff7df !important;
  color: #4b2d1c !important;
  border: 1px solid rgba(255, 247, 223, .60) !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12) !important;
}

.payment-icons-row .pay-chip i {
  font-size: 22px !important;
  color: #8b5a2b !important;
}

.payment-icons-row .pay-chip b {
  font-size: 12px !important;
  line-height: 1 !important;
  color: #4b2d1c !important;
}

.account-hero {
  min-height: 56vh !important;
}

.auth-section {
  background: #fff8ee;
  padding: 86px 6%;
}

.auth-wrap {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 36px;
  align-items: center;
}

.auth-copy,
.auth-card {
  border-radius: 34px;
  background: #fffaf3;
  border: 1px solid rgba(75, 45, 28, .10);
  box-shadow: 0 24px 70px rgba(36, 20, 13, .12);
  padding: 42px;
}

.auth-copy h2 {
  color: var(--green);
}

.auth-benefits {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.auth-benefits span {
  font-weight: 800;
  color: var(--green);
}

.auth-benefits i {
  color: var(--gold);
  margin-right: 8px;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

.auth-tab {
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  background: #efe1ce;
  color: var(--brown);
  font-weight: 900;
  cursor: pointer;
  transition: .25s ease;
}

.auth-tab.active {
  background: var(--green);
  color: var(--cream);
}

.auth-form {
  display: none;
}

.auth-form.active {
  display: grid;
  gap: 14px;
}

.auth-form h3 {
  color: var(--brown);
}

.auth-form input {
  width: 100%;
  border: 1px solid rgba(75, 45, 28, .15);
  border-radius: 16px;
  padding: 15px 18px;
  background: #fff;
  outline: 0;
}

.auth-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 155, 88, .16);
}

.auth-form .btn {
  margin-top: 8px;
  background: var(--green) !important;
  color: var(--cream) !important;
}

.auth-note {
  font-size: 13px;
  color: #8a7565;
}

.about-value-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  border-radius: 22px;
  background: #fff7ed !important;
  color: #5b3a29;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .22);
  overflow: hidden !important;
  padding: 6px !important;
}

.about-value-icon img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 18px !important;
  display: block !important;
  filter: saturate(1.08) contrast(1.04) !important;
}

#shop-page .payment-section,
#shop-page #paymentSection,
#shop-page .payment-card,
#shop-page .final-summary-card {
  display: none !important;
}

#shop-page .checkout-section .grid-2 {
  align-items: start !important;
}

#goPayment,
#whatsappFormOrder,
#whatsappOrder,
.whatsapp-order,
.whatsapp-contact,
.modern-contact-row[href*="wa.me"],
.franchise-contact-action[href*="wa.me"],
.footer-cta a.whatsapp,
.floating-contact .whatsapp {
  background: #5b3a29 !important;
  color: #fff7ed !important;
  border-color: #5b3a29 !important;
}

#goPayment:hover,
#whatsappFormOrder:hover,
#whatsappOrder:hover,
.whatsapp-order:hover,
.whatsapp-contact:hover {
  background: #7b4b2f !important;
  color: #fff !important;
  transform: translateY(-3px);
}

#about-page .about-value-icon.value-photo-icon,
#about-page .about-value-icon {
  width: 96px !important;
  height: 96px !important;
  min-width: 96px !important;
  border-radius: 26px !important;
  background: #b27a43 !important;
  padding: 7px !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 18px 38px rgba(75, 45, 28, .24) !important;
  margin: 0 auto 26px !important;
}

#about-page .about-value-card:hover .about-value-icon img {
  transform: scale(1.1) !important;
}

#shop-page .payment-section,
#paymentSection,
.payment-section,
.final-summary-card {
  display: none !important;
}

#shop-page .checkout-next-btn,
#shop-page .whatsapp-order,
#shop-page #whatsappFormOrder,
#shop-page #whatsappOrder,
.whatsapp-contact,
.modern-contact-row[href*="wa.me"],
.franchise-contact-action[href*="wa.me"] {
  background: #5b3a29 !important;
  color: #fff7ed !important;
  border-color: #5b3a29 !important;
}

#shop-page .checkout-next-btn:hover,
#shop-page .whatsapp-order:hover,
.whatsapp-contact:hover,
.modern-contact-row[href*="wa.me"]:hover {
  background: #7b4b2f !important;
  color: #fff !important;
}

#shop-page .cart-panel::after {
  content: "WhatsApp ordering only. Send your selected products to Tribe Cafe on WhatsApp. Our team will confirm availability, delivery option and next process directly." !important;
  display: block;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #fff7ed;
  color: #5b3a29;
  font-weight: 700;
  line-height: 1.6;
  border: 1px solid rgba(91, 58, 41, .14);
}

@media (max-width:1200px) {
  .plant-cup-flow {
    grid-template-columns: repeat(3, 1fr);
  }

  .plant-step:nth-child(3)::after {
    display: none;
  }

  #about-page .about-values-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fff7ed, #ead8c8, #4b2d1c);
  transition: opacity .55s ease, visibility .55s ease;
}

.page-loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-card {
  background: rgba(255, 250, 243, .92);
  border: 1px solid rgba(75, 45, 28, .15);
  border-radius: 32px;
  padding: 34px 42px;
  text-align: center;
  box-shadow: 0 30px 90px rgba(29, 18, 12, .28);
  color: #4b2d1c;
}

.loader-card strong {
  font-size: 32px;
  display: block;
  margin: 8px 0 4px;
  color: #263f2a;
}

.loader-card p {
  color: #6b4632;
  font-weight: 700;
  letter-spacing: .4px;
}

.loader-beans {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}

.loader-beans span {
  width: 24px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #d9a060, #7a3f21 58%, #2b1209);
  position: relative;
  animation: loaderBean 1s ease-in-out infinite;
}

.loader-beans span:nth-child(2) {
  animation-delay: .16s;
}

.loader-beans span:nth-child(3) {
  animation-delay: .32s;
}

.loader-beans span::after {
  content: "";
  position: absolute;
  top: 12%;
  left: 48%;
  width: 3px;
  height: 76%;
  border-radius: 50%;
  background: rgba(255, 230, 190, .42);
  transform: rotate(15deg);
}

@keyframes loaderBean {

  0%,
  100% {
    transform: translateY(0) rotate(-8deg)
  }

  50% {
    transform: translateY(-12px) rotate(8deg)
  }
}

.floating-leaf {
  width: 78px;
  height: 42px;
  border-radius: 0 100% 0 100%;
  background: linear-gradient(135deg, rgba(184, 205, 139, 0.82), rgba(47, 92, 48, 0.78));
  animation: leafFloat 11s ease-in-out infinite;
  display: none !important;
}

.hero-animation .floating-bean {
  background-image: linear-gradient(rgba(0, 0, 0, .08), rgba(0, 0, 0, .22)), url("https://images.unsplash.com/photo-1447933601403-0c6688de566e?auto=format&fit=crop&w=300&q=80") !important;
  background-size: cover !important;
  background-position: center !important;
  border: 1px solid rgba(255, 230, 190, .35);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .32);
}

.hero-animation .floating-bean::after {
  background: rgba(255, 241, 213, .45) !important;
  width: 6px !important;
}

.bean-3 {
  left: 18%;
  top: 56%;
  animation-delay: 2.6s;
  transform: rotate(38deg) scale(.7);
}

.bean-4 {
  right: 22%;
  top: 28%;
  animation-delay: 3.4s;
  transform: rotate(-28deg) scale(.92);
}

#paymentSection,
.payment-section {
  display: none !important;
}

.branch-map-panel {
  margin-top: 34px;
  padding: 34px;
  border-radius: 34px;
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(75, 45, 28, .12);
  box-shadow: 0 22px 60px rgba(36, 20, 13, .10);
}

.branch-map-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.branch-map-card {
  background: #fffaf3;
  border-radius: 24px;
  padding: 18px;
  border: 1px solid rgba(75, 45, 28, .12);
  box-shadow: 0 14px 34px rgba(36, 20, 13, .08);
}

.branch-map-card h3 {
  font-size: 21px;
  color: #4b2d1c;
  margin-bottom: 12px;
}

.branch-map-card iframe {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 18px;
  filter: saturate(.95) contrast(.96);
}

.modern-contact-icon.whatsapp-icon,
.contact-info-icon.whatsapp-icon,
.footer-contact-icon.whatsapp-icon,
.footer-cta a.whatsapp,
.whatsapp-order,
.whatsapp-contact {
  background: linear-gradient(135deg, #6b4632, #4b2d1c) !important;
  color: #fff7ed !important;
}

.contact-right-panel {
  padding: clamp(38px, 5vw, 76px);
  background: linear-gradient(135deg, #6b4632, #4b2d1c) !important;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.franchise-enquiry-form input,
.franchise-enquiry-form select,
.franchise-enquiry-form textarea {
  background: #fff !important;
}

.final-order-hint {
  font-size: 13px;
  margin-top: 12px;
  color: #6b4632;
  font-weight: 700;
}

@media (max-width:1050px) {
  .franchise-wrap {
    grid-template-columns: 1fr;
  }

  .franchise-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .franchise-model-grid {
    grid-template-columns: 1fr;
  }

  .franchise-process {
    grid-template-columns: repeat(2, 1fr);
  }

  .sus-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sus-pillar-grid {
    grid-template-columns: 1fr;
  }

  .sus-commit-wrap {
    grid-template-columns: 1fr;
  }

  .sus-commit-img img {
    height: 320px;
  }

  .franchise-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .franchise-hero-grid,
  .franchise-support-visual,
  .franchise-form-wrap {
    grid-template-columns: 1fr;
  }

  .franchise-benefit-strip,
  .franchise-format-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .franchise-hero-grid .hero-content {
    text-align: center !important;
  }

  .franchise-hero-grid .hero-content p {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .sus-hero-grid,
  .sus-shade-grid,
  .sus-packaging {
    grid-template-columns: 1fr;
  }

  .sus-timeline,
  .sus-pillars,
  .sus-impact-grid,
  .sus-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .sus-hero-grid .hero-content {
    text-align: center !important;
  }

  .sus-hero-grid .hero-content p {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .branch-grid,
  .branch-expansion,
  .clean-footer .footer-main,
  .clean-footer .footer-mid {
    grid-template-columns: 1fr 1fr;
  }

  .branch-expansion {
    grid-template-columns: 1fr;
  }

  .branch-state-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .branch-map-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.modern-contact-row.whatsapp-row {
  background: transparent !important;
  color: #11154b !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

.modern-contact-row.whatsapp-row:hover {
  transform: translateX(6px) !important;
  color: #4b2d1c !important;
  background: transparent !important;
}

.modern-contact-icon.phone-icon,
.modern-contact-icon.whatsapp-icon,
.modern-contact-icon.email-icon,
.modern-contact-icon.location-icon {
  width: 70px !important;
  height: 70px !important;
  border-radius: 18px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
  font-size: 30px !important;
  box-shadow: 12px 12px 0 rgba(75, 45, 28, .14) !important;
  overflow: hidden !important;
  position: relative !important;
  background: linear-gradient(135deg, #c89454, #8b5e2d) !important;
}

.modern-contact-icon.whatsapp-icon {
  background: linear-gradient(135deg, #8b5a36, #4b2d1c) !important;
}

.modern-contact-icon.phone-icon::before,
.modern-contact-icon.whatsapp-icon::before,
.modern-contact-icon.email-icon::before,
.modern-contact-icon.location-icon::before {
  content: "" !important;
  position: absolute !important;
  inset: -10px auto auto -12px !important;
  width: 34px !important;
  height: 58px !important;
  background: rgba(255, 255, 255, .16) !important;
  border-radius: 18px !important;
  transform: rotate(-18deg) !important;
  z-index: 1 !important;
}

.modern-contact-icon i {
  position: relative !important;
  z-index: 2 !important;
}

#branches-page .branch-card h3,
#branches-page .branch-card p,
#branches-page .branch-details span,
#branches-page .branch-details a {
  text-shadow: 0 1px 0 rgba(255, 255, 255, .45);
}

#branches-page {
  background: #fff8ee !important;
}

#branches-page .branches-hero {
  min-height: 72vh !important;
  align-items: center !important;
}

#branches-page .branches-hero .hero-bg {
  filter: saturate(1.05) contrast(1.05) !important;
}

#branches-page .branches-hero::after {
  background: radial-gradient(circle at 50% 38%, rgba(201, 155, 88, .24), transparent 28%), linear-gradient(90deg, rgba(29, 18, 12, .90), rgba(38, 63, 42, .58), rgba(29, 18, 12, .86)) !important;
}

#branches-page .hero-content {
  max-width: 1020px !important;
}

#branches-page .hero-content h1 {
  font-size: clamp(42px, 6vw, 84px) !important;
}

#branches-page .hero-content p {
  max-width: 760px !important;
  font-size: 17px !important;
}

.branch-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 34px auto 0;
  max-width: 850px;
}

.branch-hero-stat {
  background: rgba(255, 247, 237, .14);
  border: 1px solid rgba(255, 247, 237, .22);
  border-radius: 22px;
  padding: 18px 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .18);
}

.branch-hero-stat strong {
  display: block;
  color: #fff7ed;
  font-size: 28px;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1;
}

.branch-hero-stat span {
  display: block;
  color: rgba(255, 247, 237, .84);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
  margin-top: 8px;
}

#branches-page .branches-section {
  padding: 96px 6% !important;
  background: radial-gradient(circle at 10% 6%, rgba(201, 155, 88, .22), transparent 28%), radial-gradient(circle at 92% 36%, rgba(38, 63, 42, .12), transparent 24%), linear-gradient(180deg, #fff8ee, #f3e5d2 54%, #fff8ee) !important;
}

#branches-page .branches-wrap {
  max-width: 1360px !important;
}

#branches-page .branches-title {
  max-width: 920px !important;
  margin-bottom: 58px !important;
}

#branches-page .branches-title h2 {
  color: #263f2a !important;
  font-size: clamp(34px, 4.4vw, 58px) !important;
}

#branches-page .branches-title p {
  color: #6b4632 !important;
  font-size: 17px !important;
}

.branch-brand-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 0 0 34px;
}

.branch-brand-item {
  border-radius: 24px;
  padding: 22px 20px;
  background: rgba(255, 250, 243, .86);
  border: 1px solid rgba(75, 45, 28, .12);
  box-shadow: 0 16px 45px rgba(36, 20, 13, .08);
  display: flex;
  gap: 14px;
  align-items: center;
}

.branch-brand-item i {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #263f2a, #526e52);
  color: #fff7ed;
  box-shadow: 0 12px 30px rgba(38, 63, 42, .20);
}

.branch-brand-item strong {
  display: block;
  color: #4b2d1c;
  font-weight: 900;
  line-height: 1.15;
}

.branch-brand-item span {
  display: block;
  color: #7b6758;
  font-size: 13px;
  line-height: 1.35;
  margin-top: 3px;
}

#branches-page .branch-grid {
  align-items: stretch !important;
  gap: 30px !important;
}

#branches-page .branch-card {
  position: relative !important;
  overflow: hidden !important;
  min-height: 500px !important;
  padding: 0 !important;
  background: #1d120c !important;
  border: 1px solid rgba(75, 45, 28, .14) !important;
  box-shadow: 0 28px 80px rgba(36, 20, 13, .18) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  border-radius: 34px !important;
}

#branches-page .branch-card::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background-size: cover !important;
  background-position: center !important;
  opacity: 1 !important;
  transform: scale(1.01) !important;
  transition: .45s ease !important;
  z-index: 0 !important;
  width: auto !important;
  height: auto !important;
  right: auto !important;
  top: auto !important;
  border-radius: 0 !important;
}

#branches-page .branch-card::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to top, rgba(29, 18, 12, .96) 0%, rgba(29, 18, 12, .78) 42%, rgba(29, 18, 12, .18) 100%) !important;
  z-index: 1 !important;
}

#branches-page .branch-card:hover::before {
  opacity: 1 !important;
  transform: scale(1.08) !important;
}

#branches-page .branch-card>* {
  position: relative !important;
  z-index: 2 !important;
}

#branches-page .branch-card-content {
  padding: 30px !important;
  margin-top: auto !important;
  min-height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
}

#branches-page .branch-araku::before {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1400&q=85") !important;
}

#branches-page .branch-tirupathi::before {
  background-image: url("https://images.unsplash.com/photo-1626606076701-cf4ae64b2b2f?auto=format&fit=crop&w=1400&q=85") !important;
}

#branches-page .branch-franchise::before {
  background-image: url("https://images.unsplash.com/photo-1559925393-8be0ec4767c8?auto=format&fit=crop&w=1400&q=85") !important;
}

#branches-page .branch-badge {
  width: fit-content !important;
  background: #c99b58 !important;
  color: #1d120c !important;
  box-shadow: 0 14px 34px rgba(201, 155, 88, .28) !important;
  margin-bottom: 18px !important;
}

#branches-page .branch-card h3 {
  color: #fff7ed !important;
  font-size: 31px !important;
  line-height: 1.08 !important;
  margin-bottom: 12px !important;
}

#branches-page .branch-card p {
  color: rgba(255, 247, 237, .84) !important;
  margin: 0 0 8px !important;
}

#branches-page .branch-details {
  border-top: 1px solid rgba(255, 247, 237, .18) !important;
  margin-top: 22px !important;
  padding-top: 20px !important;
  gap: 12px !important;
}

#branches-page .branch-details a,
#branches-page .branch-details span {
  color: rgba(255, 247, 237, .92) !important;
  font-weight: 750 !important;
}

#branches-page .branch-details i {
  color: #c99b58 !important;
  width: 22px !important;
}

.branch-action-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.branch-action-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 247, 237, .12);
  border: 1px solid rgba(255, 247, 237, .22);
  color: #fff7ed !important;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .8px;
  font-weight: 900;
  transition: .3s ease;
}

.branch-action-row a:hover {
  background: #fff7ed;
  color: #263f2a !important;
  transform: translateY(-3px);
}

#branches-page .branch-map-panel,
#branches-page .store-experience-panel,
.branch-cta-panel {
  margin-top: 54px !important;
  padding: clamp(26px, 4vw, 46px) !important;
  border-radius: 38px !important;
  background: rgba(255, 250, 243, .82) !important;
  border: 1px solid rgba(75, 45, 28, .12) !important;
  box-shadow: 0 24px 70px rgba(36, 20, 13, .10) !important;
}

#branches-page .branch-map-grid {
  gap: 24px !important;
}

#branches-page .branch-map-card {
  padding: 20px !important;
  border-radius: 28px !important;
  background: #fffaf3 !important;
  transition: .3s ease !important;
}

#branches-page .branch-map-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(36, 20, 13, .14);
}

#branches-page .branch-map-card h3 {
  color: #4b2d1c !important;
  font-size: 23px !important;
}

#branches-page .branch-map-card iframe {
  height: 285px !important;
  border-radius: 22px !important;
}

#branches-page .store-experience-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}

#branches-page .store-experience-grid article {
  background: linear-gradient(145deg, #5b3a29, #263f2a) !important;
  border-radius: 26px !important;
  padding: 28px 22px !important;
  min-height: 230px !important;
  color: #fff7ed !important;
  box-shadow: 0 18px 48px rgba(36, 20, 13, .16) !important;
  transition: .3s ease !important;
}

#branches-page .store-experience-grid article:hover {
  transform: translateY(-7px);
}

#branches-page .store-experience-grid i {
  width: 54px !important;
  height: 54px !important;
  border-radius: 50% !important;
  background: rgba(255, 247, 237, .14) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #c99b58 !important;
  font-size: 22px !important;
  margin-bottom: 18px !important;
}

#branches-page .store-experience-grid h3,
#branches-page .store-experience-grid p {
  color: #fff7ed !important;
}

#branches-page .store-experience-grid p {
  opacity: .82 !important;
}

#branches-page .branch-expansion {
  border-radius: 38px !important;
  padding: clamp(30px, 4.5vw, 54px) !important;
  background: linear-gradient(rgba(38, 63, 42, .92), rgba(75, 45, 28, .94)), url("https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=1800&q=85") center/cover no-repeat !important;
  box-shadow: 0 28px 80px rgba(36, 20, 13, .20) !important;
}

#branches-page .branch-state-list span {
  min-height: 84px !important;
  display: grid !important;
  place-items: center !important;
  color: #fff7ed !important;
  transition: .3s ease !important;
}

#branches-page .branch-state-list span:hover {
  transform: translateY(-4px);
  background: rgba(201, 155, 88, .24) !important;
}

.branch-cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #fffaf3, #ead8c8) !important;
}

.branch-cta-panel h3 {
  color: #263f2a !important;
  font-size: clamp(28px, 3vw, 42px) !important;
}

.branch-cta-panel p {
  color: #6b4632 !important;
  max-width: 720px;
}

.branch-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.branch-cta-actions a {
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .8px;
  text-transform: uppercase;
  background: #263f2a;
  color: #fff7ed !important;
  transition: .3s ease;
}

.branch-cta-actions a.call {
  background: #c99b58;
  color: #1d120c !important;
}

.branch-cta-actions a:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(36, 20, 13, .18);
}

.tribal-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0 !important;
  background-image: linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, .65) 50%, transparent 52%), linear-gradient(-45deg, transparent 48%, rgba(255, 255, 255, .45) 50%, transparent 52%);
  background-size: 70px 70px;
  display: none !important;
  background: none !important;
}

.nav-left {
  order: 1 !important;
  display: flex !important;
  align-items: center !important;
  gap: 22px !important;
  flex: 0 0 auto !important;
  margin: 0 !important;
}

.nav-link {
  cursor: pointer;
  position: relative;
  padding-bottom: 5px;
  white-space: nowrap !important;
}

.logo {
  width: 110px !important;
  height: 110px !important;
}

.logo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  border-radius: 50% !important;
  transition: .35s ease;
}

.logo.nav-link::after,
.logo::after {
  content: none !important;
  display: none !important;
}

.menu-btn {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  order: 4 !important;
}

.clean-footer .footer-mid {
  display: flex !important;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(255, 247, 223, .45) !important;
  justify-content: center !important;
  align-items: center !important;
}

.clean-footer .social-panel {
  border-right: 0 !important;
  width: 100% !important;
  text-align: center !important;
}

.clean-footer .payment-panel,
.payment-panel,
.payment-icons-row {
  display: none !important;
}

.reveal-3d {
  opacity: 0;
  transform: translateY(60px) rotateX(-14deg) scale(.96);
  transform-origin: 50% 100%;
  transition: opacity .9s ease, transform 1.1s cubic-bezier(.2, .8, .2, 1);
  will-change: transform, opacity;
}

.reveal-3d.in-view {
  opacity: 1;
  transform: translateY(0) rotateX(0) scale(1);
}

[data-tilt] {
  transform-style: preserve-3d;
  transition: transform .4s cubic-bezier(.2, .8, .2, 1), box-shadow .4s ease;
  will-change: transform;
}

[data-tilt]:hover {
  box-shadow: 0 40px 90px rgba(36, 20, 13, 0.28);
}

[data-tilt]>* {
  transform: translateZ(30px);
}

[data-tilt] img,
[data-tilt] video {
  transform: translateZ(60px);
  transition: transform .5s ease;
}

[data-tilt]:hover img,
[data-tilt]:hover video {
  transform: translateZ(80px) scale(1.04);
}

.product-card,
.franchise-card,
.value-card,
.offer-card,
.contact-card,
.home-unique .unique-card,
.offerings-menu-section .menu-card,
.home-about-style .about-card,
.about-values-section .value-card {
  transform-style: preserve-3d;
  transition: transform .5s cubic-bezier(.2, .8, .2, 1), box-shadow .5s ease;
  will-change: transform;
}

h1,
h2,
.logo {
  text-shadow: 0 1px 0 rgba(255, 255, 255, .15), 0 2px 0 rgba(75, 45, 28, .10), 0 6px 18px rgba(36, 20, 13, .18);
}

@keyframes float3d {

  0%,
  100% {
    transform: translateY(0) rotateX(0) rotateY(0);
  }

  25% {
    transform: translateY(-14px) rotateX(6deg) rotateY(6deg);
  }

  50% {
    transform: translateY(-6px) rotateX(-4deg) rotateY(-6deg);
  }

  75% {
    transform: translateY(-18px) rotateX(4deg) rotateY(3deg);
  }
}

.hero video,
.hero img {
  will-change: transform;
}

.hero {
  position: relative;
  min-height: 100dvh !important;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  height: auto !important;
  padding: 120px 6% 80px !important;
  perspective: 1400px;
}

.hero .hero-content,
.hero h1,
.inner-hero h1 {
  transform-style: preserve-3d;
  animation: heroLift 1.4s cubic-bezier(.2, .8, .2, 1) both;
}

@keyframes heroLift {
  0% {
    opacity: 0;
    transform: translateZ(-200px) translateY(40px) rotateX(-18deg);
  }

  100% {
    opacity: 1;
    transform: translateZ(0) translateY(0) rotateX(0);
  }
}

section {
  padding: 82px 7%;
  transform-style: preserve-3d;
}

.about-banner img,
.sus-page-section img,
.home-story-style img {
  transition: transform .8s cubic-bezier(.2, .8, .2, 1), box-shadow .8s ease;
  transform-style: preserve-3d;
}

.about-banner:hover img,
.sus-page-section:hover img,
.home-story-style:hover img {
  transform: perspective(1200px) rotateY(-4deg) rotateX(3deg) scale(1.02);
  box-shadow: 0 40px 90px rgba(36, 20, 13, .35);
}

.btn,
button.btn,
.nav-icon-btn {
  transform-style: preserve-3d;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn:hover,
button.btn:hover {
  transform: translateY(-3px) translateZ(10px) rotateX(6deg);
  box-shadow: 0 18px 40px rgba(36, 20, 13, .28);
}

.btn:active {
  transform: translateY(1px) translateZ(0) rotateX(0);
}

.product-card:hover {
  transform: perspective(1200px) rotateY(-6deg) rotateX(4deg) translateY(-8px);
  box-shadow: 0 40px 80px rgba(36, 20, 13, .28);
}

.bean-orbit {
  position: fixed;
  inset: auto 4% 6% auto;
  width: 120px;
  height: 120px;
  pointer-events: none;
  z-index: 5;
  perspective: 600px;
}

.bean-orbit span {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 22px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #7a4a2c, #2a160b 70%);
  box-shadow: inset -3px -4px 6px rgba(0, 0, 0, .5), 0 6px 12px rgba(0, 0, 0, .25);
  animation: orbit 9s linear infinite;
  transform-style: preserve-3d;
}

.bean-orbit span::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent 46%, rgba(0, 0, 0, .55) 50%, transparent 54%);
}

.bean-orbit span:nth-child(2) {
  animation-delay: -3s;
}

.bean-orbit span:nth-child(3) {
  animation-delay: -6s;
}

@keyframes orbit {
  0% {
    transform: rotateY(0deg) translateZ(50px) rotateY(0deg);
  }

  100% {
    transform: rotateY(360deg) translateZ(50px) rotateY(-360deg);
  }
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 12px;
  background: #1d120c;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 10000;
  font-weight: 700;
  text-decoration: none;
  transition: top .25s ease;
}

.skip-link:focus {
  top: 12px;
  outline: 3px solid #c99b58;
}

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible,
.nav-icon-btn:focus-visible,
.menu-btn:focus-visible,
.close-menu:focus-visible,
.nav-link:focus-visible {
  outline: 3px solid #c99b58 !important;
  outline-offset: 3px;
  border-radius: 6px;
  box-shadow: 0 0 0 5px rgba(201, 155, 88, .25) !important;
}

.home-unique p,
.offerings-menu-section p,
.home-about-style p,
.home-story-style p,
.franchise-section p,
.about-intro-section p,
.about-mission-section p,
.about-values-section p,
.sus-page-section p,
.contact-split-section p,
footer p,
.value-card p,
.franchise-card p,
.unique-card p,
.about-card p {
  color: #2a1a0f;
}

.small-title,
.section-label,
.eyebrow {
  color: #4b2d1c !important;
}

a:not(.btn):not(.nav-icon-btn):hover,
a:not(.btn):not(.nav-icon-btn):focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

#navCartCount {
  min-width: 18px;
  text-align: center;
}

.menu-btn,
.close-menu,
.nav-icon-btn {
  min-width: 44px;
  min-height: 44px;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-contrast: more) {
  body {
    color: #000;
    background: #fffdf8;
  }

  .btn {
    outline: 2px solid #000;
  }
}

.footer-social a[href*="wa.me"],
.footer-social a[href^="mailto:"],
.footer-cta a.whatsapp,
.footer-cta a[href^="mailto:"] {
  display: none !important;
}

.tc-chat-fab:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 24px 55px rgba(36, 20, 13, .45);
}

.tc-chat-fab .tc-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #c99b58;
  color: #1d120c;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
}

.tc-chat-panel.open {
  display: flex;
}

@keyframes tcPop {
  from {
    opacity: 0;
    transform: translateY(20px) scale(.9);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.tc-chat-header {
  background: linear-gradient(135deg, #263f2a, #4b2d1c);
  color: #f6eee2;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tc-chat-header .tc-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #c99b58;
  color: #1d120c;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-family: "Playfair Display", serif;
  font-size: 18px;
}

.tc-chat-header h4 {
  font-family: "Playfair Display", serif;
  margin: 0;
  font-size: 17px;
}

.tc-chat-header p {
  margin: 0;
  font-size: 11px;
  opacity: .8;
}

.tc-chat-header button {
  margin-left: auto;
  background: transparent;
  border: 0;
  color: #f6eee2;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}

.tc-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  background: #f6eee2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tc-msg {
  max-width: 82%;
  padding: 10px 13px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
}

.tc-msg.bot {
  background: #fff;
  border: 1px solid rgba(75, 45, 28, .12);
  border-bottom-left-radius: 4px;
  color: #1d120c;
}

.tc-msg.user {
  background: #263f2a;
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.tc-typing {
  display: inline-flex;
  gap: 4px;
  padding: 8px 0;
}

.tc-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4b2d1c;
  opacity: .5;
  animation: tcDot 1s infinite;
}

.tc-typing span:nth-child(2) {
  animation-delay: .15s;
}

.tc-typing span:nth-child(3) {
  animation-delay: .3s;
}

@keyframes tcDot {

  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: .4;
  }

  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

.tc-suggest {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.tc-suggest button {
  background: #fff;
  border: 1px solid rgba(75, 45, 28, .2);
  color: #4b2d1c;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  transition: .2s ease;
}

.tc-suggest button:hover {
  background: #c99b58;
  color: #1d120c;
  border-color: #c99b58;
}

.tc-chat-input {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid rgba(75, 45, 28, .15);
  background: #fffaf3;
}

.tc-chat-input input {
  flex: 1;
  border: 1px solid rgba(75, 45, 28, .2);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  color: #1d120c;
}

.tc-chat-input input:focus {
  outline: 2px solid #c99b58;
  outline-offset: 1px;
}

.tc-chat-input button {
  background: #263f2a;
  color: #fff;
  border: 0;
  width: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 16px;
}

.tc-chat-input button:hover {
  background: #4b2d1c;
}

a,
button,
.nav-link,
.card,
.soft-card,
.image-card,
.franchise-card,
.fm-tab,
.fm-card li {
  transition: background-color .28s ease, color .28s ease, border-color .28s ease, box-shadow .28s ease, transform .28s ease, opacity .28s ease !important;
}

#franchise-menu-section {
  position: relative !important;
  padding: 92px 6% !important;
  background: radial-gradient(circle at 12% 14%, rgba(201, 155, 88, .20), transparent 28%), radial-gradient(circle at 92% 82%, rgba(38, 63, 42, .16), transparent 30%), linear-gradient(135deg, #fffaf3 0%, #f6eee2 100%) !important;
  overflow: hidden !important;
}

#franchise-menu-section::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(75, 45, 28, .10);
  border-radius: 44px;
  pointer-events: none;
}

#franchise-menu-section .franchise-menu-block {
  position: relative !important;
  max-width: 1240px !important;
  margin: 0 auto !important;
  padding: clamp(28px, 4vw, 52px) !important;
  border-radius: 38px !important;
  background: rgba(255, 255, 255, .86) !important;
  border: 1px solid rgba(75, 45, 28, .14) !important;
  box-shadow: 0 28px 80px rgba(36, 20, 13, .14) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}

#franchise-menu-section .franchise-menu-block::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 155, 88, .22), rgba(75, 45, 28, .08));
  pointer-events: none;
}

#franchise-menu-section .fm-head {
  position: relative;
  z-index: 1;
  padding: 28px 22px 8px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(75, 45, 28, .06), rgba(201, 155, 88, .10));
}

#franchise-menu-section .fm-tabs {
  position: sticky !important;
  top: 96px !important;
  border-radius: 22px !important;
  padding: 10px !important;
  background: rgba(255, 250, 243, .96) !important;
  border: 1px solid rgba(75, 45, 28, .13) !important;
  box-shadow: 0 16px 38px rgba(36, 20, 13, .12) !important;
}

#franchise-menu-section .fm-tab {
  border-radius: 16px !important;
  font-weight: 800 !important;
}

#franchise-menu-section .fm-card {
  position: relative;
  border-radius: 30px !important;
  padding: clamp(24px, 3vw, 38px) !important;
  background: linear-gradient(145deg, rgba(255, 250, 243, .96), rgba(246, 238, 226, .94)) !important;
  border: 1px solid rgba(75, 45, 28, .14) !important;
  box-shadow: 0 22px 58px rgba(36, 20, 13, .12) !important;
  overflow: hidden;
}

#franchise-menu-section .fm-card li {
  padding: 16px 16px !important;
  border: 1px solid rgba(75, 45, 28, .08) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, .72) !important;
}

#franchise-menu-section .fm-card li:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(36, 20, 13, .10);
  border-color: rgba(201, 155, 88, .35) !important;
}

#franchise-menu-section .fm-signature {
  background: linear-gradient(145deg, #4b2d1c, #263f2a) !important;
}

#franchise-menu-section .fm-signature li {
  background: rgba(255, 247, 237, .10) !important;
  border-color: rgba(255, 247, 237, .16) !important;
}

footer .floating-contact {
  display: none !important;
}

body>.floating-contact {
  position: fixed !important;
  left: 20px !important;
  right: auto !important;
  bottom: 25px !important;
  z-index: 9999 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  width: auto !important;
  pointer-events: auto !important;
}

body>.floating-contact a {
  width: 60px !important;
  height: 60px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, .92) !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .24) !important;
  font-size: 24px !important;
  text-indent: 0 !important;
}

body>.floating-contact a:hover {
  transform: translateY(-4px) scale(1.08) !important;
  box-shadow: 0 20px 46px rgba(0, 0, 0, .30) !important;
}

body>.floating-contact .whatsapp {
  background: #25D366 !important;
}

body>.floating-contact .call {
  background: #263f2a !important;
}

body>.floating-contact .mail {
  background: #c99b58 !important;
  color: #1d120c !important;
}

.tc-chat-fab {
  position: fixed;
  left: auto !important;
  bottom: 25px !important;
  z-index: 9999 !important;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(140deg, #263f2a, #4b2d1c);
  color: #f6eee2;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 40px rgba(36, 20, 13, .35);
  transition: transform .25s ease, box-shadow .25s ease;
  font-size: 24px;
  right: 20px !important;
}

.tc-chat-panel {
  position: fixed;
  left: auto !important;
  bottom: 96px !important;
  z-index: 9999;
  width: 340px;
  max-width: calc(100vw - 24px);
  height: 480px;
  max-height: calc(100vh - 120px);
  background: #fffaf3;
  color: #1d120c;
  border-radius: 20px;
  overflow: hidden;
  display: none;
  flex-direction: column;
  box-shadow: 0 30px 80px rgba(36, 20, 13, .35);
  border: 1px solid rgba(75, 45, 28, .15);
  font-family: "Inter", sans-serif;
  transform-origin: bottom right !important;
  animation: tcPop .3s cubic-bezier(.2, .8, .2, 1);
  right: 20px !important;
}

.floating-contact,
footer .floating-contact,
.tc-global-floating-contact {
  display: none !important;
}

#tcEveryPageFloatingButtons {
  position: fixed !important;
  right: 28px !important;
  top: 56% !important;
  bottom: auto !important;
  left: auto !important;
  transform: translateY(-50%) !important;
  z-index: 2147483647 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  pointer-events: auto !important;
  visibility: visible !important;
  opacity: 1 !important;
}

#tcEveryPageFloatingButtons a {
  width: 66px !important;
  height: 66px !important;
  min-width: 66px !important;
  min-height: 66px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  border: 4px solid #ffffff !important;
  box-shadow: 0 16px 42px rgba(0, 0, 0, .30) !important;
  transition: transform .3s ease, box-shadow .3s ease, filter .3s ease !important;
  line-height: 1 !important;
}

#tcEveryPageFloatingButtons a:hover {
  transform: translateY(-4px) scale(1.08) !important;
  box-shadow: 0 22px 55px rgba(0, 0, 0, .38) !important;
  filter: brightness(1.07) !important;
}

#tcEveryPageFloatingButtons i {
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#tcEveryPageFloatingButtons .tc-whatsapp {
  background: radial-gradient(circle at 32% 24%, rgba(255, 255, 255, .35), transparent 28%), #25D366 !important;
  color: #ffffff !important;
  font-size: 34px !important;
}

#tcEveryPageFloatingButtons .tc-call {
  background: #263f2a !important;
  color: #ffffff !important;
  font-size: 28px !important;
}

#tcEveryPageFloatingButtons .tc-mail {
  background: #c99b58 !important;
  color: #1d120c !important;
  font-size: 28px !important;
}

#tcEveryPageFloatingButtons .tc-chat {
  background: #4b2d1c !important;
  color: #ffffff !important;
  font-size: 27px !important;
}

.franchise-menu-block {
  max-width: 1280px;
  margin: 0 auto;
  padding: 70px 5% 40px;
}

.fm-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}

.fm-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  color: var(--brown);
  margin: 10px 0 14px;
  font-family: "Playfair Display", Georgia, serif;
}

.fm-head p {
  color: #3a2418;
  font-size: 16px;
}

.fm-tabs {
  position: sticky;
  top: 78px;
  z-index: 50;
  background: rgba(255, 250, 243, .96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(75, 45, 28, .12);
  border-radius: 999px;
  padding: 8px;
  margin: 0 auto 28px;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  max-width: 100%;
  box-shadow: 0 12px 30px rgba(36, 20, 13, .10);
}

.fm-tabs::-webkit-scrollbar {
  display: none;
}

.fm-tab {
  flex: 0 0 auto;
  background: transparent;
  border: none;
  color: #4b2d1c;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: .25s ease;
  letter-spacing: .3px;
}

.fm-tab:hover {
  background: rgba(201, 155, 88, .15);
  color: var(--brown);
}

.fm-tab.active {
  background: linear-gradient(135deg, #4b2d1c, #263f2a);
  color: #fff7ed;
  box-shadow: 0 8px 20px rgba(36, 20, 13, .25);
}

.fm-tab:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.fm-panel {
  display: none;
  animation: fmFade .4s ease;
}

.fm-panel.active {
  display: block;
}

@keyframes fmFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fm-card {
  background: linear-gradient(160deg, #fffaf3, #f6eee2);
  border: 1px solid rgba(75, 45, 28, .12);
  border-radius: 22px;
  padding: 30px 28px;
  box-shadow: 0 18px 44px rgba(36, 20, 13, .08);
}

.fm-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--brown);
  font-size: 26px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(201, 155, 88, .4);
  scroll-margin-top: 170px;
}

.fm-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px 28px;
}

.fm-card li {
  display: grid;
  gap: 3px;
  font-size: 14.5px;
  line-height: 1.55;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(75, 45, 28, .10);
}

.fm-card li:last-child {
  border-bottom: none;
}

.fm-card li strong {
  color: #2a1a0f;
  font-weight: 700;
  font-size: 15px;
}

.fm-card li span {
  color: #5a4032;
  font-size: 13px;
}

.fm-signature {
  background: linear-gradient(160deg, #4b2d1c, #263f2a);
  color: #fff7ed;
  border: none;
}

.fm-signature h3 {
  color: #fff7ed;
  border-bottom-color: rgba(201, 155, 88, .55);
}

.fm-signature li {
  border-bottom-color: rgba(255, 247, 237, .15);
}

.fm-signature li strong {
  color: var(--gold);
}

.fm-signature li span {
  color: rgba(255, 247, 237, .82);
}

.fm-note {
  text-align: center;
  margin-top: 26px;
  color: #5a4032;
  font-size: 13px;
  font-style: italic;
}

@media (max-width:600px) {
  .franchise-menu-block {
    padding: 50px 4% 30px;
  }

  .fm-tabs {
    top: 70px;
    padding: 6px;
  }

  .fm-tab {
    font-size: 13px;
    padding: 9px 14px;
  }

  .fm-card {
    padding: 22px 18px;
  }

  .fm-card h3 {
    font-size: 22px;
  }
}

footer .floating-contact,
footer .tc-chat-fab,
footer .tc-chat-panel {
  display: none !important;
}

.floating-contact {
  position: fixed !important;
  right: auto !important;
  bottom: 96px !important;
  z-index: 998 !important;
  display: flex !important;
  gap: 12px !important;
  flex-direction: column;
  left: 18px !important;
}

@media (max-width:720px) {
  .franchise-section {
    padding: 56px 5%;
  }

  .franchise-content,
  .franchise-card-panel {
    border-radius: 28px;
    padding: 26px 20px;
  }

  .franchise-highlights,
  .franchise-grid,
  .franchise-steps {
    grid-template-columns: 1fr;
  }

  .franchise-content p {
    font-size: 16px;
  }

  .franchise-actions {
    flex-direction: column;
  }

  .franchise-btn {
    width: 100%;
  }

  .franchise-info-grid,
  .franchise-process {
    grid-template-columns: 1fr;
  }

  .franchise-page-section {
    padding: 56px 5%;
  }

  .franchise-map-img {
    height: 220px;
  }

  #about-page {
    background: linear-gradient(rgba(255, 250, 243, .90), rgba(255, 250, 243, .93)), var(--about-page-bg-image) center top / cover scroll no-repeat !important;
  }

  .sus-intro-section,
  .sus-stats-section,
  .sus-pillars-section,
  .sus-commit-section {
    padding: 56px 5%;
  }

  .sus-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .sus-stat-card {
    padding: 24px 16px;
  }

  .sus-stat-card strong {
    font-size: 34px;
  }

  .sus-intro-panel {
    padding: 30px 22px;
    border-radius: 28px;
  }

  .franchise-hero-stats,
  .franchise-benefit-strip,
  .franchise-format-grid,
  .franchise-form-grid {
    grid-template-columns: 1fr;
  }

  .franchise-visual-card img,
  .franchise-support-image img {
    height: 280px;
  }

  .franchise-support-item {
    grid-template-columns: 1fr;
  }

  .sus-page-section {
    padding: 56px 5%;
  }

  .sus-timeline,
  .sus-pillars,
  .sus-impact-grid,
  .sus-packaging-cards,
  .sus-gallery,
  .sus-hero-points {
    grid-template-columns: 1fr;
  }

  .sus-hero-card img,
  .sus-shade-img img,
  .sus-packaging-img img {
    height: 280px;
  }

  .sus-benefit {
    grid-template-columns: 1fr;
  }

  .product-qty {
    justify-content: space-between;
  }

  #home-page .hero {
    padding: 130px 5% 42px !important;
  }

  #home-page .hero .hero-content h1 {
    font-size: 34px !important;
  }

  #home-page .hero .hero-content {
    padding: 22px 18px !important;
    border-radius: 24px !important;
  }

  .payment-grid-2 {
    grid-template-columns: 1fr;
  }

  .branch-grid,
  .branch-state-list,
  .clean-footer .footer-main,
  .clean-footer .footer-mid {
    grid-template-columns: 1fr;
  }

  .clean-footer .footer-box,
  .clean-footer .social-panel {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 247, 223, .35);
  }

  .clean-footer .footer-box {
    padding: 30px 22px;
    min-height: auto;
  }

  .branch-expansion {
    padding: 28px 20px;
  }

  .real-icon,
  .unique-icon.real-icon,
  .franchise-card .franchise-icon.real-icon {
    width: 70px !important;
    height: 70px !important;
    border-radius: 20px !important;
  }

  .real-step-icon {
    width: 64px !important;
    height: 64px !important;
  }

  #about-page .about-values-grid {
    grid-template-columns: 1fr !important;
  }

  #about-page .about-value-card {
    min-height: auto !important;
  }

  #about-page .about-value-icon {
    width: 84px !important;
    height: 84px !important;
    min-width: 84px !important;
  }

  .branch-map-grid {
    grid-template-columns: 1fr;
  }

  .branch-map-panel {
    padding: 20px;
  }

  .branch-map-card iframe {
    height: 220px;
  }

  .loader-card {
    padding: 28px 24px;
    width: 86%;
  }

  .bean-3,
  .bean-4 {
    display: none !important;
  }

  #branches-page .branch-card {
    min-height: 390px !important;
    padding: 28px !important;
  }

  .modern-contact-icon.phone-icon,
  .modern-contact-icon.whatsapp-icon,
  .modern-contact-icon.email-icon,
  .modern-contact-icon.location-icon {
    width: 54px !important;
    height: 54px !important;
    font-size: 24px !important;
  }

  .floating-contact {
    left: 12px !important;
    right: auto !important;
    bottom: 88px !important;
    grid-template-columns: none !important;
    display: grid !important;
  }
}

footer .floating-contact,
footer .floating-contact-widget,
.page .floating-contact,
.page .floating-contact-widget,
.tc-chat-fab,
.tc-chat-panel,
.tc-global-floating-contact {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.floating-contact-widget {
  position: fixed !important;
  left: 20px !important;
  bottom: 25px !important;
  z-index: 99999 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  width: auto !important;
  height: auto !important;
  background: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.floating-contact-widget a {
  width: 58px !important;
  height: 58px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
  font-size: 24px !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25) !important;
  transition: 0.3s ease !important;
  text-decoration: none !important;
  border: 3px solid #fff !important;
}

.floating-contact-widget a:hover {
  transform: translateY(-4px) scale(1.08) !important;
}

.floating-contact-widget .whatsapp {
  background: #25D366 !important;
}

.floating-contact-widget .call {
  background: #263f2a !important;
}

.floating-contact-widget .email {
  background: #c99b58 !important;
  color: #1d120c !important;
}

.floating-contact-widget .chat {
  background: #682e2a !important;
}

footer .floating-contact,
footer .floating-contact-widget,
.page .floating-contact,
.page .floating-contact-widget,
#tcEveryPageFloatingButtons,
.tc-global-floating-contact {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

#globalFloatingContactWidget a {
  width: 66px !important;
  height: 66px !important;
  min-width: 66px !important;
  min-height: 66px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  text-decoration: none !important;
  border: 4px solid #ffffff !important;
  box-shadow: 0 16px 42px rgba(0, 0, 0, .28) !important;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease !important;
  line-height: 1 !important;
}

#globalFloatingContactWidget a:hover {
  transform: translateY(-4px) scale(1.07) !important;
  box-shadow: 0 22px 55px rgba(0, 0, 0, .36) !important;
  filter: brightness(1.06) !important;
}

#globalFloatingContactWidget i {
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#globalFloatingContactWidget .whatsapp {
  background: #25D366 !important;
  color: #ffffff !important;
  font-size: 34px !important;
}

#globalFloatingContactWidget .call {
  background: #263f2a !important;
  color: #ffffff !important;
  font-size: 29px !important;
}

#globalFloatingContactWidget .email {
  background: #c99b58 !important;
  color: #1d120c !important;
  font-size: 28px !important;
}

#globalFloatingContactWidget .chat {
  background: #682e2a !important;
  color: #ffffff !important;
  font-size: 28px !important;
}

#home-page .hero .hero-content h1 {
  font-size: clamp(42px, 6vw, 84px) !important;
  line-height: 1.02 !important;
  margin-bottom: 14px !important;
  font-weight: 800 !important;
  letter-spacing: -0.5px !important;
}

#globalFloatingContactWidget {
  position: fixed !important;
  left: auto !important;
  top: auto !important;
  bottom: 22px !important;
  right: 22px !important;
  transform: none !important;
  transition: top 0.22s ease !important;
  z-index: 2147483647 !important;
  display: block !important;
  flex-direction: column !important;
  gap: 16px !important;
  width: 64px !important;
  height: 64px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

#globalFloatingContactWidget .tc-fab-toggle {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: linear-gradient(135deg, #4b2d1c, #c99b58);
  color: #fff7ed;
  box-shadow: 0 16px 40px rgba(36, 20, 13, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: transform 0.3s cubic-bezier(.2, .8, .2, 1), box-shadow 0.3s ease;
}

#globalFloatingContactWidget .tc-fab-toggle:hover {
  transform: scale(1.06);
  box-shadow: 0 20px 50px rgba(36, 20, 13, 0.45);
}

#globalFloatingContactWidget.open .tc-fab-toggle {
  transform: rotate(225deg);
  background: linear-gradient(135deg, #263f2a, #4b2d1c);
}

#globalFloatingContactWidget .tc-fab-icon-plus,
#globalFloatingContactWidget .tc-fab-icon-close {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s ease;
}

#globalFloatingContactWidget .tc-fab-icon-close {
  opacity: 0;
}

#globalFloatingContactWidget.open .tc-fab-icon-plus {
  opacity: 0;
}

#globalFloatingContactWidget.open .tc-fab-icon-close {
  opacity: 1;
}

#globalFloatingContactWidget .tc-fab-items {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 64px;
  height: 64px;
  pointer-events: none;
}

#globalFloatingContactWidget .tc-fab-items a {
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 21px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .28);
  border: 2px solid rgba(255, 255, 255, .85);
  opacity: 0;
  transform: scale(0.3) translateY(0);
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(.2, .8, .2, 1), opacity 0.3s ease;
  transition-delay: 0s;
}

#globalFloatingContactWidget.open .tc-fab-items a {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(calc(-1 * (var(--tc-i) + 1) * 68px));
  transition-delay: calc(var(--tc-i) * 0.05s);
}

#globalFloatingContactWidget .tc-fab-items a.whatsapp {
  background: #25D366;
}

#globalFloatingContactWidget .tc-fab-items a.call {
  background: #263f2a;
}

#globalFloatingContactWidget .tc-fab-items a.email {
  background: #c99b58;
  color: #1d120c;
}

#globalFloatingContactWidget .tc-fab-items a.chat {
  background: #682e2a;
}

#globalFloatingContactWidget .tc-fab-items a:hover {
  transform: scale(1.1) translateY(calc(-1 * (var(--tc-i) + 1) * 68px)) !important;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--cream-light);
  color: #1d120c;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
  perspective: none !important;
  perspective-origin: 50% 20%;
}

header .nav-left .nav-link,
.header .nav-right .nav-link {
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    padding: 12px 0 !important;
}

.header .nav-left,
.header .nav-right {
  gap: 30px !important;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 12px 6%;
  color: var(--white);
  transition: all .4s ease;
}

.header.scrolled {
  background: rgba(18, 18, 18, .55) !important;
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, .30);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 34px !important;
  font-size: 25;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 700;
}

.nav-left .nav-link,
.nav-right .nav-link {
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  transition: .35s ease;
}

.nav-left .nav-link:hover,
.nav-right .nav-link:hover {
  color: #c99b58 !important;
  transform: translateY(-2px);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px !important;
  background: #c99b58 !important;
  transition: 0.3s;
}

.logo {
  width: 120px !important;
  height: 120px !important;
  border-radius: 50% !important;
  border: 2px solid rgba(255, 255, 255, .55) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  cursor: pointer !important;
  background: #fff8ef !important;
  margin: 0 28px;
  transition: .35s ease !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .16) !important;
  padding: 6px !important;
  order: 3 !important;
  min-width: 100px !important;
  margin-left: 18px !important;
  flex: 0 0 auto !important;
}

.header.scrolled .logo {
  width: 90px !important;
  height: 90px !important;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .42), rgba(0, 0, 0, .72)) !important;
}

.hero-content h1 {
  font-size: 72px !important;
  line-height: 1.05 !important;
  letter-spacing: -2px !important;
  color: #fff;
}

.hero-content p {
  font-size: 18px !important;
  line-height: 1.8 !important;
  color: rgba(255, 255, 255, .92) !important;
  max-width: 620px;
  margin: auto;
}

.hero-content .btn {
  padding: 15px 34px !important;
  border-radius: 50px;
  font-size: 13px !important;
  font-weight: 700;
  transition: .35s;
}

.hero-content .btn:hover {
  transform: translateY(-4px);
}

.hero-animation {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  display: none !important;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 760px !important;
  padding: 55px !important;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.28);
  align-self: flex-end;
  margin-bottom: 80px;
  background: rgba(22, 16, 12, .40) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 35px;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 25px 70px rgba(0, 0, 0, .45);
  text-align: center;
  animation: heroFade 1.2s ease;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#home-page .hero.home-hero-v2 {
  min-height: 100vh !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: 150px 6% 100px !important;
  position: relative !important;
  overflow: hidden !important;
}

#home-page .hero.home-hero-v2::after {
  background: linear-gradient(100deg, rgba(10, 8, 6, .80), rgba(10, 8, 6, .30) 55%, rgba(10, 8, 6, .55)) !important;
}

#home-page .hero-v2-content.hero-content {
  max-width: 700px !important;
  text-align: left !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  border: 0 !important;
  animation: none !important;
  position: relative;
  z-index: 5;
}

#home-page .hero-v2-content h1 {
  font-family: "Playfair Display", Georgia, serif !important;
  font-weight: 800 !important;
  font-size: clamp(28px, 3.4vw, 48px) !important;
  line-height: 1.18 !important;
  letter-spacing: -0.3px !important;
  text-align: left !important;
  color: #fff !important;
  margin-bottom: 18px !important;
  max-width: 620px !important;
}

#home-page .hero-v2-content p {
  text-align: left !important;
  margin: 0 0 36px !important;
  max-width: 540px !important;
  font-size: 16px !important;
  line-height: 1.75 !important;
  color: rgba(255, 255, 255, .88) !important;
}

.hero-v2-stars {
  color: #c99b58;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.hero-v2-rating strong {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  margin-bottom: 4px;
}

.hero-v2-rating span {
  font-size: 13px;
  color: rgba(255, 255, 255, .78);
}

.hero-v2-cupimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-v2-bottom-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 6;
}

.hero-v2-shop {
  background: linear-gradient(135deg, #c99b58, #8b5e3c) !important;
  color: #fff !important;
  padding: 16px 32px !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 1.2px !important;
  border-radius: 999px !important;
  white-space: nowrap;
  cursor: pointer;
}

.hero-v2-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-v2-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .20);
  color: #fff;
  padding: 13px 18px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}

.hero-v2-pill i {
  color: #c99b58;
}

.hero-v2-scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .85);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-v2-scroll-line {
  width: 1px;
  height: 34px;
  position: relative;
  background: rgba(255, 255, 255, .3);
}

.hero-v2-scroll-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c99b58;
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0% {
    top: 0;
    opacity: 1;
  }

  100% {
    top: 30px;
    opacity: 0;
  }
}

.hero-v2-rating {
  position: absolute;
  top: 150px;
  right: 6%;
  z-index: 6;
  background: rgba(20, 14, 10, .55);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  padding: 22px 26px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .30);
  max-width: 230px;
  animation: heroCardFloat 5.5s ease-in-out infinite;
}
.hero-v2-cupimg {
    border-radius: 30px;
    overflow: hidden;
}

.hero-v2-cupimg img {
    border-radius: 30px;
}
.hero-v2-cupimg {
  position: absolute;
  right: 6%;
  bottom: 205px;
  z-index: 5;
  width: 300px;
  height: 210px;
  border-radius: 24px;
  overflow: visible !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
  animation: heroCardFloat 6.5s ease-in-out infinite;
  animation-delay: 1.2s;
}

@keyframes heroCardFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-14px) rotate(0.6deg);
  }
}

.hero-v2-mini-bean {
  position: absolute;
  width: 16px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #a9713f, #3c1c0e 75%);
  box-shadow: 0 8px 16px rgba(0, 0, 0, .35);
  z-index: 4;
}

.hero-v2-mini-bean::after {
  content: "";
  position: absolute;
  top: 12%;
  left: 46%;
  width: 2px;
  height: 76%;
  border-radius: 50%;
  background: rgba(255, 225, 190, .5);
  transform: rotate(12deg);
}

.bean-a {
  right: -26px;
  bottom: 18px;
  animation: miniBeanFloat 3.2s ease-in-out infinite;
}

.bean-b {
  right: -10px;
  bottom: -6px;
  animation: miniBeanFloat 3.6s ease-in-out infinite;
  animation-delay: .4s;
  transform: scale(0.85);
}

.bean-c {
  right: 14px;
  bottom: -22px;
  animation: miniBeanFloat 4s ease-in-out infinite;
  animation-delay: .8s;
  transform: scale(0.7);
}

@keyframes miniBeanFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-6deg);
  }

  50% {
    transform: translateY(-10px) rotate(6deg);
  }
}

.hero-v2-rating.reveal,
.hero-v2-cupimg.reveal {
  opacity: 0;
  transform: translateY(30px) scale(.96);
  transition: opacity .8s ease, transform .9s cubic-bezier(.2, .8, .2, 1);
}

.hero-v2-rating.reveal.in-view,
.hero-v2-cupimg.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }

  .reveal-3d {
    opacity: 1;
    transform: none;
  }

  .hero-v2-rating,
  .hero-v2-cupimg,
  .hero-v2-mini-bean {
    animation: none !important;
  }
}

.offerings-menu-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:rgba(28,18,12,.58);   /* dark overlay */
    z-index:1;
}

.offerings-menu-title {
  max-width: 900px;
  margin: 0 auto 70px;
  text-align: center;
  position: relative;
}

.menu-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 50px;
  background: #fff;
  color: #6a3e22;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
  margin-bottom: 25px;
}

.menu-badge i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #8B5E3C, #C99B58);
  color: #fff;
  font-size: 15px;
}

.offerings-menu-title h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, #8b5e3c, #c99b58);
  border-radius: 3px;
}

.offerings-menu-title h2 span {
  display: block;
  margin-top: 8px;
  background: linear-gradient(90deg, #8B5E3C, #C99B58);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.offerings-menu-title p {
  max-width: 720px;
  margin: auto;
  font-size: 18px;
  line-height: 1.9;
  color: #6b625b;
}

.offering-card h3::before {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  margin: 0 auto 10px;
  background: #c99b58;
  border-radius: 2px;
}

.nav-icon-btn {
  width: 48px !important;
  height: 48px !important;
  border: 1px solid rgba(75, 45, 28, .12) !important;
  background: rgba(255, 255, 255, .72) !important;
  color: var(--green) !important;
  position: relative !important;
  cursor: pointer;
  font-size: 18px;
  display: inline-flex;
  place-items: center;
  transition: .28s ease;
  border-radius: 50% !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(36, 20, 13, .10) !important;
  flex-shrink: 0 !important;
  z-index: 3 !important;
}

@media (max-width: 1200px) and (min-width: 1051px) {
  .nav-right {
    gap: 16px !important;
  }

  .nav-left {
    gap: 16px !important;
  }

  .header .logo {
    width: 66px !important;
    height: 66px !important;
    min-width: 66px !important;
    margin-left: 16px !important;
  }
}

.nav-wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  width: 100% !important;
  flex-wrap: nowrap !important;
  padding-right: 0 !important;
}

.nav-right {
  margin-left: 0 !important;
  gap: 20px !important;
  order: 2 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  flex: 0 1 auto !important;
  min-width: 0 !important;
  flex-wrap: nowrap !important;
  overflow: visible !important;
}

.nav-shop-icons {
  display: inline-flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin-left: auto !important;
  color: currentColor;
  flex: 0 0 auto !important;
  z-index: 3 !important;
  position: relative !important;
  margin-right: 70px !important;
  flex-shrink: 0 !important;
  padding-right: 0 !important;
}

.header .logo {
  width: 60px !important;
  height: 60px !important;
  min-width: 60px !important;
  margin-left: 0 !important;
  z-index: 1 !important;
  flex-shrink: 0 !important;
  position: relative !important;
}

.header.scrolled .logo,
.header.light .logo {
  width: 50px !important;
  height: 50px !important;
  border-color: rgba(38, 63, 42, .28) !important;
  min-width: 50px !important;
  box-shadow: 0 10px 26px rgba(38, 63, 42, .15) !important;
}

.nav-icon-btn,
.nav-cart-btn {
  position: relative !important;
  z-index: 5 !important;
  background: rgba(255, 255, 255, .90) !important;
  width: 44px !important;
  height: 44px !important;
}

@media (max-width: 1050px) {
  .contact-split-wrap {
    grid-template-columns: 1fr;
  }

  .menu-btn {
    display: flex;
  }

  .grid-2,
  .intro-grid,
  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-split .btn-group {
    justify-content: center;
  }

  .hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .unique-three,
  .home-about-style,
  .home-story-style,
  .brew-layout {
    grid-template-columns: 1fr;
  }

  .home-about-style,
  .home-story-style,
  .brew-layout,
  .unique-three {
    grid-template-columns: 1fr;
  }

  .home-about-text,
  .story-text {
    padding: 34px 24px;
  }

  .home-about-images,
  .story-images {
    min-height: auto;
  }

  .forest-img,
  .main-tribal-img {
    height: 360px;
  }

  .coffee-img,
  .bean-hand-img {
    position: relative;
    width: 100%;
    height: 240px;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 18px;
  }

  .brew-image-wrap {
    grid-template-columns: 1fr;
  }

  .brew-image-wrap img {
    height: 230px;
  }

  #home-page .home-about-style {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
    padding: 40px 5% !important;
  }

  #home-page .home-about-text {
    min-height: auto !important;
  }

  #home-page .home-about-images {
    min-height: auto !important;
    grid-template-columns: 1fr !important;
  }

  #home-page .home-about-images .forest-img {
    height: 420px !important;
  }

  #home-page .home-about-images .coffee-img {
    height: 240px !important;
  }

  #home-page>section:not(.hero),
  #home-page .home-unique,
  #home-page .home-about-style,
  #home-page .home-story-style,
  #home-page .bean-brew {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  #home-page .home-story-style {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  #home-page .story-text {
    min-height: auto !important;
  }

  #home-page .story-images {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }

  #home-page .story-images .main-tribal-img,
  #home-page .story-images .bean-hand-img {
    min-height: 300px !important;
    height: 340px !important;
  }

  .hero {
    min-height: 100svh !important;
  }

  .about-mission-grid,
  .about-vision-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-vision-grid .about-mission-card {
    order: 1;
  }

  .about-vision-grid .about-img-card {
    order: 2;
  }

  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-img-card,
  .about-img-card img {
    min-height: 360px;
  }

  .about-banner {
    min-height: 460px;
  }

  #sustainability-page .sus-shade-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  #sustainability-page .sus-shade-grid>div:last-child {
    max-width: 100%;
  }

  #sustainability-page .sus-shade-img img {
    height: 420px;
  }

  .story-organic-wrap,
  .story-process-wrap,
  .story-clean-grid {
    grid-template-columns: 1fr;
  }

  .story-organic-image img,
  .story-process-image img {
    height: 380px;
  }

  .franchise-flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .branch-card {
    min-height: 360px;
  }

  .store-experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .auth-wrap {
    grid-template-columns: 1fr;
  }

  .branch-hero-stats,
  .branch-brand-strip,
  #branches-page .branch-grid,
  #branches-page .store-experience-grid,
  #branches-page .branch-map-grid,
  #branches-page .branch-state-list {
    grid-template-columns: 1fr 1fr !important;
  }

  #branches-page .branch-expansion,
  .branch-cta-panel {
    grid-template-columns: 1fr !important;
  }

  .logo {
    width: 84px !important;
    height: 84px !important;
    min-width: 84px !important;
    margin-left: 0 !important;
  }

  .hero-v2-rating,
  .hero-v2-cupimg {
    display: none !important;
  }

  .header.scrolled .logo,
  .header.light .logo {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
  }

  .nav-left,
  .nav-right {
    display: none !important;
  }

  .nav-wrap {
    grid-template-columns: auto 1fr auto;
    justify-content: flex-end !important;
    gap: 14px !important;
  }

  .header .logo {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    margin-left: 0 !important;
  }
}

#home-page .home-unique {
  padding: 110px 6% !important;
  position: relative;
  overflow: hidden;
}

#home-page .home-unique::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(201, 155, 88, .14), transparent 32%), radial-gradient(circle at 88% 80%, rgba(139, 94, 60, .12), transparent 34%);
  pointer-events: none;
  z-index: 0;
}

#home-page .home-title {
  position: relative;
  z-index: 1;
  max-width: 920px !important;
  margin: 0 auto 34px !important;
  padding: 64px 64px !important;
  border-radius: 34px !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 250, 243, .92)) !important;
  border: 1px solid rgba(201, 155, 88, .28) !important;
  box-shadow: 0 4px 0 rgba(201, 155, 88, .35) inset, 0 40px 90px rgba(36, 20, 13, .18) !important;
  text-align: center;
  overflow: hidden;
}

#home-page .home-title::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 155, 88, .20), transparent 70%);
  pointer-events: none;
}

#home-page .home-title::before {
  content: "☕";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  color: #fff;
  background: linear-gradient(135deg, #8b5e3c, #c99b58);
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 14px 32px rgba(139, 94, 60, .35);
}

#home-page .home-title h2 {
  font-family: "Playfair Display", Georgia, serif !important;
  font-weight: 700 !important;
  font-size: clamp(34px, 4.2vw, 56px) !important;
  letter-spacing: -0.3px !important;
  margin-bottom: 4px !important;
  background: linear-gradient(135deg, #1d120c, #6b4632 60%, #8b5e3c) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

#home-page .home-title .bean-divider {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px !important;
  margin: 22px 0 28px !important;
}

#home-page .home-title .bean-divider::before,
#home-page .home-title .bean-divider::after {
  content: "" !important;
  width: 70px !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, #c99b58, transparent) !important;
}

#home-page .home-title p {
  font-family: "Inter", system-ui, sans-serif !important;
  font-size: 18px !important;
  line-height: 1.85 !important;
  color: #5f564f !important;
  letter-spacing: 0.2px !important;
  max-width: 740px !important;
  margin: 0 auto !important;
}

#home-page .unique-three {
  position: relative;
  z-index: 1;
  max-width: 1200px !important;
  margin: 64px auto 0 !important;
  gap: 32px !important;
}

#home-page .unique-box {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 250, 243, .90)) !important;
  border: 1px solid rgba(201, 155, 88, .20) !important;
  border-radius: 30px !important;
  padding: 48px 34px !important;
  box-shadow: 0 24px 60px rgba(36, 20, 13, .12) !important;
  transition: transform .45s cubic-bezier(.2, .8, .2, 1), box-shadow .45s ease, border-color .45s ease !important;
  text-align: center;
  overflow: hidden;
}

#home-page .unique-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8b5e3c, #c99b58, #8b5e3c);
  opacity: 0;
  transition: opacity .4s ease;
}

#home-page .unique-box:hover {
  transform: translateY(-12px) !important;
  box-shadow: 0 40px 90px rgba(36, 20, 13, .22) !important;
  border-color: rgba(201, 155, 88, .45) !important;
}

#home-page .unique-box:hover::before {
  opacity: 1;
}

#home-page .unique-icon.real-icon {
  width: 92px !important;
  height: 92px !important;
  margin: 0 auto 26px !important;
  border-radius: 26px !important;
  border: 3px solid rgba(255, 255, 255, .95) !important;
  box-shadow: 0 18px 40px rgba(75, 45, 28, .26) !important;
  transition: transform .45s ease !important;
}

#home-page .unique-box:hover .unique-icon.real-icon {
  transform: scale(1.06) rotate(-2deg);
}

#home-page .unique-box h3 {
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: 25px !important;
  font-weight: 700 !important;
  color: #1d120c !important;
  margin-bottom: 16px !important;
  position: relative;
  display: inline-block;
}

#home-page .unique-box h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, #8b5e3c, #c99b58);
  border-radius: 2px;
}

#home-page .unique-box p {
  font-size: 15.5px !important;
  line-height: 1.8 !important;
  color: #6b5c4f !important;
}

.plant-cup-section {
  background: #fff8ee !important;
  padding: 100px 5% 110px !important;
  position: relative;
}

.plant-cup-title.home-title {
  max-width: 900px !important;
}

.plant-cup-flow {
  max-width: 1500px !important;
  margin: 50px auto 0 !important;
  display: grid;
  grid-template-columns: repeat(6, minmax(160px, 1fr));
  gap: 26px !important;
  position: relative;
}

.plant-step {
  background: linear-gradient(180deg, #ffffff, #fffaf3) !important;
  border-radius: 26px !important;
  overflow: hidden !important;
  box-shadow: 0 20px 50px rgba(36, 20, 13, .12) !important;
  border: 1px solid rgba(201, 155, 88, .20) !important;
  position: relative;
  transition: transform .45s cubic-bezier(.2, .8, .2, 1), box-shadow .45s ease !important;
}

.plant-step:hover {
  transform: translateY(-12px) !important;
  box-shadow: 0 36px 80px rgba(36, 20, 13, .22) !important;
}

.plant-step img {
  width: 100%;
  height: 210px !important;
  object-fit: cover;
  transition: transform .6s ease, filter .6s ease;
  filter: saturate(1.08) contrast(1.04);
}

.plant-step:hover img {
  transform: scale(1.08);
  filter: saturate(1.18) contrast(1.08);
}

.plant-step::before {
  content: "";
  position: absolute;
  top: 178px;
  left: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5e3c, #c99b58);
  box-shadow: 0 12px 28px rgba(139, 94, 60, .40), 0 0 0 4px #fff;
  z-index: 3;
}

.plant-step:nth-child(1)::after {
  content: "1";
}

.plant-step:nth-child(2)::after {
  content: "2";
}

.plant-step:nth-child(3)::after {
  content: "3";
}

.plant-step:nth-child(4)::after {
  content: "4";
}

.plant-step:nth-child(5)::after {
  content: "5";
}

.plant-step:nth-child(6)::after {
  content: "6";


  
}

.plant-step::after {
  position: absolute;
  top: 178px;
  left: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  z-index: 4;
  pointer-events: none;
}

.plant-step-body h3 {
  font-size: 21px !important;
  margin-bottom: 10px !important;
  color: #1d120c !important;
  font-family: "Playfair Display", Georgia, serif !important;
  font-weight: 700 !important;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 30px;
}

.plant-step-body p {
  font-size: 14.5px !important;
  line-height: 1.75 !important;
  color: #6b5c4f !important;
}



.plant-step-body {
  padding: 30px 22px 26px !important;
  text-align: left;
  position: relative;
}

@media (max-width: 760px) {
  .plant-cup-flow {
    grid-template-columns: 1fr !important;
  }

  .plant-step img {
    height: 230px !important;
  }
}

.offerings-menu-section {
 
  position: relative;
  
}

.offerings-menu-title h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  color: #3d2417;
  line-height: 1.1;
  margin-bottom: 18px;
}

.offerings-menu-title::after {
  content: "";
  width: 120px;
  height: 5px;
  border-radius: 20px;
  margin: 35px auto 0;
  display: block;
  background: linear-gradient(90deg, #8B5E3C, #C99B58);
}

.offerings-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 30px !important;
  align-items: stretch;
  position: relative;
  z-index: 1;
  max-width: 1500px !important;
  margin: 0 auto !important;
}

.offering-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 34px 75px rgba(36, 20, 13, .22) !important;
}

.offering-card {
  background: #fff !important;
  overflow: hidden !important;
  min-height: auto !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 18px 45px rgba(36, 20, 13, .10) !important;
  transition: transform .4s cubic-bezier(.2, .8, .2, 1), box-shadow .4s ease !important;
  border-radius: 22px !important;
  border: 1px solid rgba(75, 45, 28, .10) !important;
  position: relative;
}

.offering-card img {
  width: 100% !important;
  height: 260px !important;
  object-fit: cover !important;
  object-position: center;
  transition: transform .6s ease, filter .6s ease !important;
}

.offering-card:hover img {
  transform: scale(1.10);
  filter: saturate(1.12) contrast(1.05);
}

.offering-card::before {
  content: "Explore";
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  background: linear-gradient(135deg, #8b5e3c, #c99b58);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(139, 94, 60, .35);
}

.offering-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 260px;
  background: linear-gradient(to top, rgba(29, 18, 12, .55), transparent 55%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
  z-index: 2;
}

.offering-card:hover::after {
  opacity: 1;
}

.offering-card-cta {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translate(-50%, 20px);
  opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
  z-index: 4;
  background: #fff;
  color: #1d120c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .30);
  white-space: nowrap;
}

.offering-card:hover .offering-card-cta {
  opacity: 1;
  transform: translate(-50%, 0);
}

.offering-card h3 {
  font-family: "Inter", system-ui, sans-serif !important;
  font-size: 19px !important;
  line-height: 1.2;
  color: #1d120c !important;
  font-weight: 800 !important;
  margin: 0 !important;
  padding: 20px 20px 8px !important;
  text-align: left !important;
  letter-spacing: 0.2px !important;
  text-transform: none !important;
  position: relative;
}

.offering-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px 20px;
  margin-top: auto;
}

.offering-card-meta .stars {
  color: #c99b58;
  font-size: 13px;
  letter-spacing: 1px;
}

.offering-card-meta span {
  font-size: 12.5px;
  color: #8a7565;
  font-weight: 700;
}

@media (max-width: 1280px) {
  .offerings-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 900px) {
  .footer-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .offering-card img {
    height: 220px;
  }

  .offerings-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 560px) {
  .offerings-menu-title h2 {
    font-size: 30px;
    letter-spacing: 2px;
  }

  .offerings-menu-title p {
    font-size: 15.5px;
  }

  .offerings-menu-section {
    padding: 64px 5% !important;
  }

  .offerings-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .offering-card img {
    height: 230px !important;
  }
}

#about-page .about-values-section {
  padding: 120px 5% 130px !important;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 15% 0%, rgba(201, 155, 88, .10), transparent 40%), radial-gradient(circle at 100% 100%, rgba(38, 63, 42, .08), transparent 40%), #f4efe4 !important;
}

#about-page .about-values-title {
  position: relative;
  z-index: 2;
  margin-bottom: 80px !important;
}

#about-page .about-values-title::before {
  content: "VALUES";
  position: absolute;
  top: -46px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(60px, 9vw, 130px);
  font-weight: 800;
  letter-spacing: 10px;
  color: rgba(139, 94, 60, .06);
  white-space: nowrap;
  z-index: -1;
  pointer-events: none;
}

#about-page .about-values-title h2 {
  font-family: "Playfair Display", Georgia, serif !important;
  font-weight: 800 !important;
  font-size: clamp(38px, 4.8vw, 62px) !important;
  letter-spacing: -0.5px !important;
  background: linear-gradient(135deg, #1d3a24, #2a5c3a 55%, #4b7a52) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  margin-bottom: 8px !important;
}

#about-page .about-bean-divider {
  color: #8b5e3c !important;
  position: relative;
  z-index: 2;
}

#about-page .about-values-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(180px, 1fr)) !important;
  gap: 26px !important;
  align-items: stretch !important;
  position: relative;
  z-index: 2;
}

#about-page .about-value-card {
  min-height: 330px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: 52px 30px 42px !important;
  background: rgba(255, 255, 255, .7) !important;
  border-radius: 34px !important;
  position: relative;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, .6) !important;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .8) inset, 0 30px 70px rgba(36, 20, 13, .14) !important;
  overflow: visible !important;
  transition: transform .5s cubic-bezier(.2, .8, .2, 1), box-shadow .5s ease !important;
}

#about-page .about-value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 34px;
  padding: 1.5px;
  background: linear-gradient(135deg, #c99b58, transparent 30%, transparent 70%, #8b5e3c);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}

#about-page .about-value-card:hover {
  transform: translateY(-16px) !important;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .9) inset, 0 50px 110px rgba(36, 20, 13, .24) !important;
}

#about-page .about-value-card:hover::before {
  opacity: 1;
}

#about-page .about-values-grid .about-value-card:nth-child(1) {
  --n: "01";
}

#about-page .about-values-grid .about-value-card:nth-child(2) {
  --n: "02";
}

#about-page .about-values-grid .about-value-card:nth-child(3) {
  --n: "03";
}

#about-page .about-values-grid .about-value-card:nth-child(4) {
  --n: "04";
}

#about-page .about-values-grid .about-value-card:nth-child(5) {
  --n: "05";
}

#about-page .about-value-card::after {
  content: var(--n);
  position: absolute;
  top: -18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #263f2a, #4b7a52);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(38, 63, 42, .35), 0 0 0 5px #f4efe4;
  z-index: 3;
}

#about-page .about-value-icon {
  background: linear-gradient(135deg, #b27a43, #8b5e3c) !important;
  color: #fff !important;
  width: 108px !important;
  height: 108px !important;
  border-radius: 28px !important;
  padding: 8px !important;
  box-shadow: 0 0 0 8px rgba(201, 155, 88, .10), 0 0 40px rgba(201, 155, 88, .25), 0 20px 44px rgba(75, 45, 28, .30) !important;
  margin: 0 auto 30px !important;
  transition: transform .5s cubic-bezier(.2, .8, .2, 1), box-shadow .5s ease !important;
  animation: valueIconFloat 5s ease-in-out infinite;
}

#about-page .about-values-grid .about-value-card:nth-child(2) .about-value-icon {
  animation-delay: .3s;
}

#about-page .about-values-grid .about-value-card:nth-child(3) .about-value-icon {
  animation-delay: .6s;
}

#about-page .about-values-grid .about-value-card:nth-child(4) .about-value-icon {
  animation-delay: .9s;
}

#about-page .about-values-grid .about-value-card:nth-child(5) .about-value-icon {
  animation-delay: 1.2s;
}

@keyframes valueIconFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

#about-page .about-value-card:hover .about-value-icon {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 0 0 10px rgba(201, 155, 88, .16), 0 0 55px rgba(201, 155, 88, .38), 0 24px 50px rgba(75, 45, 28, .36) !important;
}

#about-page .about-value-icon img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 20px !important;
  display: block !important;
  opacity: 1 !important;
  filter: saturate(1.18) contrast(1.08) brightness(1.04) !important;
  transition: .35s ease !important;
}

#about-page .about-value-card h3 {
  color: #1d3a24 !important;
  font-size: 16.5px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  margin-bottom: 6px !important;
  font-family: "Inter", system-ui, sans-serif !important;
  font-weight: 800 !important;
  text-align: center;
}

#about-page .about-value-card h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, #8b5e3c, #c99b58);
  border-radius: 3px;
}

#about-page .about-value-card p {
  color: #6b5c4f !important;
  font-size: 14.5px !important;
  line-height: 1.8 !important;
  max-width: 235px !important;
  margin: 18px auto 0 !important;
  text-align: center !important;
}

@media (max-width: 1200px) {
  .plant-cup-flow {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  #about-page .about-values-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 720px) {
  .floating-bean {
    width: 38px;
    height: 56px;
    opacity: 0.42;
  }

  .floating-leaf {
    width: 52px;
    height: 30px;
    opacity: 0.42;
  }

  .steam-line {
    opacity: 0.35;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }

  .floating-contact svg {
    width: 25px;
    height: 25px;
  }

  .contact-info-item,
  .footer-contact-item {
    gap: 13px;
  }

  .contact-info-icon,
  .footer-contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .contact-info-icon svg,
  .footer-contact-icon svg {
    width: 19px;
    height: 19px;
  }

  .contact-split-section {
    padding: 48px 5%;
  }

  .modern-contact-row {
    grid-template-columns: 58px 1fr;
    gap: 16px;
    font-size: 15.5px;
  }

  .modern-contact-icon {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    box-shadow: 8px 8px 0 rgba(230, 41, 41, 0.16);
  }

  .modern-contact-icon svg {
    width: 26px;
    height: 26px;
  }

  .contact-left-panel,
  .contact-right-panel {
    padding: 34px 22px;
  }

  .modern-contact-form input,
  .modern-contact-form textarea {
    padding: 16px 18px;
  }

  body {
    font-size: 14px;
  }

  section {
    padding: 64px 6%;
  }

  h1 {
    font-size: 34px;
  }

  .hero {
    min-height: 86vh;
  }

  .inner-hero {
    min-height: 54vh;
  }

  .cards,
  .feature-grid,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .card img,
  .image-card img,
  .soft-card img {
    height: 330px;
  }

  .cart-line {
    grid-template-columns: 1fr;
    text-align: left;
  }

  footer {
    text-align: left;
    padding-bottom: 92px;
  }

  .home-unique,
  .bean-brew {
    padding: 56px 5%;
  }

  .home-title {
    padding: 26px 18px;
  }

  .home-title h2 {
    font-size: 34px;
  }

  .home-title p {
    font-size: 16px;
    letter-spacing: 0;
  }

  .unique-three {
    margin-top: 36px;
  }

  .unique-box {
    min-height: auto;
    padding: 28px 20px;
  }

  .home-about-style,
  .home-story-style {
    padding: 34px 5%;
    gap: 24px;
  }

  .home-about-text h2,
  .story-text h2 {
    font-size: 32px;
  }

  .home-about-text p,
  .story-text p,
  .unique-box p,
  .brew-text p {
    font-size: 16px;
  }

  .forest-img,
  .main-tribal-img {
    height: 300px;
  }

  .home-unique {
    background-attachment: scroll;
  }

  #home-page .home-about-style {
    margin: 38px auto !important;
    padding: 28px 5% !important;
    gap: 24px !important;
  }

  #home-page .home-about-text {
    padding: 30px 22px !important;
    border-radius: 28px !important;
  }

  #home-page .home-about-images .forest-img {
    height: 300px !important;
    border-radius: 28px !important;
    border-width: 7px !important;
  }

  #home-page .home-about-images .coffee-img {
    height: 210px !important;
    border-radius: 24px !important;
    border-width: 7px !important;
  }

  #home-page>section:not(.hero),
  #home-page .home-unique,
  #home-page .home-about-style,
  #home-page .home-story-style,
  #home-page .bean-brew {
    padding-top: 34px !important;
    padding-bottom: 34px !important;
  }

  #home-page .home-title,
  #home-page .unique-box,
  #home-page .home-about-text,
  #home-page .story-text,
  #home-page .brew-text {
    border-radius: 26px !important;
  }

  #home-page .home-about-images,
  #home-page .story-images,
  #home-page .brew-image-wrap {
    padding: 14px !important;
    border-radius: 26px !important;
  }

  .hero,
  .inner-hero {
    min-height: 100svh !important;
    padding: 105px 24px 56px !important;
  }

  .hero h1 {
    font-size: clamp(36px, 10vw, 54px) !important;
  }

  .hero p {
    font-size: 15px !important;
    max-width: 95% !important;
  }

  .about-intro-section,
  .about-mission-section,
  .about-values-section {
    padding: 48px 5%;
  }

  .about-panel,
  .about-mission-card {
    border-radius: 28px;
  }

  .about-img-card {
    border-radius: 28px;
    border-width: 7px;
  }

  .about-img-card,
  .about-img-card img {
    min-height: 280px;
  }

  .about-banner {
    min-height: 420px;
  }

  .about-banner h2 {
    font-size: 28px;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-bean-divider::before,
  .about-bean-divider::after {
    width: 60px;
  }

  #home-page {
    background: linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.80)), var(--home-bg-image) center top / cover scroll no-repeat !important;
  }

  #sustainability-page .sus-shade-grid h2 {
    font-size: 36px;
  }

  #sustainability-page .sus-shade-img {
    border-width: 7px;
    border-radius: 28px;
  }

  #sustainability-page .sus-shade-img img {
    height: 300px;
  }

  #sustainability-page .sus-benefit {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 18px;
  }

  #sustainability-page .sus-benefit b {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    font-size: 20px;
  }

  .story-organic-image,
  .story-process-image {
    border-width: 7px;
    border-radius: 28px;
  }

  .story-organic-image img,
  .story-process-image img {
    height: 300px;
  }

  .story-organic-content,
  .story-process-wrap>div:first-child {
    border-radius: 28px;
    padding: 30px 22px;
  }

  .story-clean-card {
    border-radius: 24px;
    padding: 28px 22px;
  }

  .floating-contact a {
    padding: 12px 10px;
    width: 56px !important;
    height: 56px !important;
  }

  .floating-contact .whatsapp {
    font-size: 30px !important;
  }

  .floating-contact .mail {
    font-size: 24px !important;
  }

  .franchise-flow-grid {
    grid-template-columns: 1fr;
  }

  .eyebrow,
  .small-title {
    letter-spacing: 2px !important;
  }

  .branch-card {
    min-height: 410px !important;
    padding: 26px !important;
  }

  .store-experience-panel {
    padding: 28px 18px;
  }

  .store-experience-grid {
    grid-template-columns: 1fr;
  }

  .auth-copy,
  .auth-card {
    padding: 28px 20px;
  }

  .payment-icons-row .pay-chip {
    min-width: 92px !important;
  }

  #branches-page .branches-hero {
    min-height: 68vh !important;
  }

  .branch-hero-stats,
  .branch-brand-strip,
  #branches-page .branch-grid,
  #branches-page .store-experience-grid,
  #branches-page .branch-map-grid,
  #branches-page .branch-state-list {
    grid-template-columns: 1fr !important;
  }

  #branches-page .branches-section {
    padding: 64px 5% !important;
  }

  #branches-page .branch-card {
    min-height: 430px !important;
  }

  #branches-page .branch-card-content {
    padding: 24px !important;
  }

  #branches-page .branch-map-card iframe {
    height: 230px !important;
  }

  .header {
    padding: 10px 5% !important;
  }

  .logo {
    width: 74px !important;
    height: 74px !important;
    min-width: 74px !important;
  }

  .bean-orbit {
    display: none;
  }

  .floating-contact {
    left: 12px !important;
    right: auto !important;
    grid-template-columns: none !important;
    bottom: 88px !important;
    display: flex !important;
  }

  body>.floating-contact {
    left: 14px !important;
    bottom: 18px !important;
    gap: 10px !important;
    display: flex !important;
    flex-direction: column !important;
  }

  body>.floating-contact a {
    width: 54px !important;
    height: 54px !important;
    font-size: 22px !important;
  }

  #franchise-menu-section {
    padding: 58px 4% !important;
  }

  #franchise-menu-section::before {
    inset: 10px;
    border-radius: 28px;
  }

  #franchise-menu-section .franchise-menu-block {
    border-radius: 28px !important;
  }

  #franchise-menu-section .fm-tabs {
    top: 78px !important;
    border-radius: 18px !important;
  }

  .tc-chat-fab {
    right: 14px !important;
    bottom: 18px !important;
  }

  .tc-chat-panel {
    right: 12px !important;
    bottom: 84px !important;
  }

  #tcEveryPageFloatingButtons {
    right: 12px !important;
    top: 58% !important;
    gap: 10px !important;
  }

  #tcEveryPageFloatingButtons a {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;
    border-width: 3px !important;
  }

  #tcEveryPageFloatingButtons .tc-whatsapp {
    font-size: 28px !important;
  }

  #tcEveryPageFloatingButtons .tc-call,
  #tcEveryPageFloatingButtons .tc-mail,
  #tcEveryPageFloatingButtons .tc-chat {
    font-size: 22px !important;
  }

  .floating-contact-widget {
    left: 12px !important;
    bottom: 16px !important;
    gap: 10px !important;
  }

  .floating-contact-widget a {
    width: 52px !important;
    height: 52px !important;
    font-size: 21px !important;
  }

  #globalFloatingContactWidget a {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;
    border-width: 3px !important;
  }

  #globalFloatingContactWidget .whatsapp {
    font-size: 28px !important;
  }

  #globalFloatingContactWidget .call,
  #globalFloatingContactWidget .email,
  #globalFloatingContactWidget .chat {
    font-size: 22px !important;
  }

  #home-page .hero .hero-content h1 {
    font-size: clamp(34px, 9vw, 46px) !important;
    letter-spacing: -0.2px !important;
  }

  #globalFloatingContactWidget {
    left: 12px !important;
    top: 50% !important;
    gap: 12px !important;
    right: 14px !important;
    bottom: 14px !important;
    width: 56px !important;
    height: 56px !important;
  }

  #globalFloatingContactWidget .tc-fab-toggle {
    width: 56px;
    height: 56px;
    font-size: 21px;
  }

  #globalFloatingContactWidget .tc-fab-items,
  #globalFloatingContactWidget .tc-fab-items a {
    width: 44px;
    height: 44px;
  }

  #globalFloatingContactWidget.open .tc-fab-items a {
    transform: scale(1) translateY(calc(-1 * (var(--tc-i) + 1) * 58px));
  }

  #home-page .hero.home-hero-v2 {
    padding: 130px 6% 90px !important;
  }

  .hero-v2-bottom-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-v2-pills {
    justify-content: center;
  }

  .hero-v2-shop {
    width: 100%;
    text-align: center;
  }

  .header .logo {
    width: 58px !important;
    height: 58px !important;
    min-width: 58px !important;
  }

  .header.scrolled .logo,
  .header.light .logo {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
  }

  #home-page .home-unique {
    padding: 64px 5% !important;
  }

  #home-page .home-title {
    padding: 40px 26px !important;
    border-radius: 26px !important;
  }

  #home-page .unique-three {
    margin-top: 40px !important;
  }

  #home-page .unique-box {
    padding: 36px 24px !important;
  }

  #about-page .about-values-section {
    padding: 70px 5% 70px !important;
  }

  #about-page .about-values-title::before {
    display: none;
  }

  #about-page .about-values-grid {
    grid-template-columns: 1fr !important;
  }

  #about-page .about-value-card {
    padding: 44px 24px 34px !important;
  }
}

.sus-page-section {
  padding: 100px 3%;
  background: #fff8ee;
  overflow: visible;
}

.sus-timeline {
  display: grid;
  grid-template-columns: repeat(7, minmax(160px, 1fr));
  gap: 20px;
  position: relative;
  align-items: start;
  margin-top: 40px;
  overflow: visible;
}

.sus-timeline::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 135px;
  height: 2px;
  background: linear-gradient(90deg, #8b5e3c, #c99b58);
  background-size: 200% 100%;
  opacity: .45;
  z-index: 0;
  animation: pathShimmer 4s linear infinite;
}

@keyframes pathShimmer {

  0% {
    background-position: 0% 0;
  }

  100% {
    background-position: 200% 0;
  }

}

.sus-step {
  background: #fff;
  border: 1px solid rgba(201, 155, 88, .15);
  border-radius: 26px;
  padding: 22px 14px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
  transition: .45s;
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding-bottom: 28px;
  width: 100%;
  min-width: 0;
}

.sus-step:hover {
  transform: translateY(-14px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, .16);
}

.sus-step .real-step-icon {
  position: relative;
  width: 100%;
  height: 170px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.sus-step .real-step-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: .6s;
}

.sus-step:hover .real-step-icon img {
  transform: scale(1.08);
}

.sus-step .real-step-icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, .35));
}

.sus-timeline .sus-step:nth-child(1) {
  --n: "1";
}

.sus-timeline .sus-step:nth-child(2) {
  --n: "2";
}

.sus-timeline .sus-step:nth-child(4) {
  --n: "4";
}

.sus-timeline .sus-step:nth-child(5) {
  --n: "5";
}

.sus-timeline .sus-step:nth-child(6) {
  --n: "6";
}

.sus-timeline .sus-step:nth-child(7) {
  --n: "7";
}

.sus-step .real-step-icon::before {
  content: var(--n);
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5e3c, #c99b58);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .22);
  border: 4px solid #fff;
  z-index: 5;
}

.sus-step h3 {
  font-family: "Playfair Display", serif;
  color: #27452f;
  font-size: 18px;
  margin-bottom: 6px;
  font-weight: 700;
  text-align: center;
  padding: 0 14px;
  margin: 20px 0 10px;
  line-height: 1.3;
}

.sus-step h3::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  margin: 10px auto 0;
  background: #c99b58;
}

.sus-step p {
  font-size: 14px;
  line-height: 1.8;
  color: #6c5d52;
  text-align: center;
  padding: 0 18px;
  margin: 0;
}

.sus-timeline .sus-step:nth-child(3) {
  --n: "3";
  margin-top: -28px;
  border: 1px solid rgba(201, 155, 88, .45);
  box-shadow: 0 28px 70px rgba(139, 94, 60, .18);
}

.sus-timeline .sus-step:nth-child(3) .real-step-icon {
  height: 190px;
}

@media (max-width:1400px) {
  .sus-timeline {
    grid-template-columns: repeat(4, 1fr);
  }

  .sus-timeline::before {
    display: none;
  }

  .sus-timeline .sus-step:nth-child(3) {
    margin-top: 0;
  }
}

@media (max-width:992px) {
  .home-about-style {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-about-images {
    grid-template-columns: 1fr;
  }

  .forest-img {
    height: 450px;
  }

  .coffee-img {
    height: 220px;
  }

  .sus-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .sus-step .real-step-icon {
    height: 160px;
  }
}

@media (max-width:768px) {
  .small-title {
    padding: 10px 20px;
    font-size: 11px !important;
    letter-spacing: 2px;
    gap: 10px;
  }

  .coffee-icon {
    width: 24px;
    height: 24px;
    font-size: 13px;
  }

  .sus-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .sus-step .real-step-icon {
    height: 145px;
  }

  .sus-step h3 {
    font-size: 17px;
  }
}

@media (max-width:480px) {
  .sus-timeline {
    grid-template-columns: 1fr;
  }

  .sus-step {
    max-width: 340px;
    margin: auto;
  }
}

.card,
.unique-box,
.home-about-text,
.story-text,
.brew-text,
.hero-content {
  will-change: transform;
  transform: translateZ(0);
}

/* ===== PREMIUM DISCOVER SECTION ===== */

#home-page .home-title {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px;
  border-radius: 42px;
  overflow: hidden;

  background: #ffffff !important;

  border: 1px solid rgba(201, 155, 88, .18);

  box-shadow:
    0 30px 80px rgba(0, 0, 0, .10);

  backdrop-filter: none !important;
}

#home-page .home-title::before {

  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 7px;

  background: linear-gradient(90deg, #c99b58, #8b5e3c, #c99b58);

}

#home-page .home-title::after {

  content: "";

  position: absolute;

  right: -100px;

  top: -100px;

  width: 260px;

  height: 260px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(201, 155, 88, .15), transparent 70%);

}

#home-page .home-title h2 {

  font-size: 68px !important;

  color: #213828 !important;

  font-family: "Playfair Display", serif;

  font-weight: 700;

  margin-bottom: 20px;

}

#home-page .home-title p {

  max-width: 760px;

  margin: auto;

  font-size: 20px;

  line-height: 2;

  color: #666 !important;

}

#home-page .bean-divider {

  margin: 28px 0 35px;

  gap: 20px;

}

#home-page .bean-divider::before,
#home-page .bean-divider::after {

  width: 120px;

  background: linear-gradient(90deg,
      transparent,
      #c99b58,
      transparent);

}

#home-page .unique-icon {

  width: 70px;

  height: 70px;

  background: #fff;

  border-radius: 50%;

  border: 1px solid rgba(201, 155, 88, .25);

  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);

}

/*================ PREMIUM DISCOVER SECTION ================*/

#home-page .home-title {

  position: relative;

  max-width: 1200px;

  margin: auto;

  padding: 80px 70px;

  background: #fff;

  border-radius: 42px;

  overflow: hidden;

  border: 1px solid rgba(201, 155, 88, .18);

  box-shadow:
    0 35px 90px rgba(0, 0, 0, .08);

}

#home-page .home-title::before {

  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 7px;

  background: linear-gradient(90deg,
      #c99b58,
      #8b5e3c,
      #c99b58);

}

.premium-tag {

  display: inline-block;

  padding: 10px 22px;

  background: #f8f2eb;

  border-radius: 40px;

  font-size: 12px;

  letter-spacing: 2px;

  font-weight: 700;

  color: #8b5e3c;

  margin-bottom: 25px;

}

#home-page .home-title h2 {

  font-size: 64px;

  font-family: "Playfair Display", serif;

  color: #22382d;

  margin-bottom: 20px;

}

#home-page .bean-divider {

  display: flex;

  justify-content: center;

  align-items: center;

  margin: 25px 0 35px;

}

#home-page .bean-divider span {

  width: 70px;

  height: 70px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: #fff;

  font-size: 30px;

  border: 1px solid rgba(201, 155, 88, .2);

  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

}

#home-page .bean-divider::before,
#home-page .bean-divider::after {

  content: "";

  width: 130px;

  height: 1px;

  background: linear-gradient(90deg,
      transparent,
      #c99b58,
      transparent);

}

#home-page .home-title p {

  max-width: 760px;

  margin: auto;

  font-size: 20px;

  line-height: 2;

  color: #666;

}

.premium-stats {

  margin-top: 50px;

  display: flex;

  justify-content: center;

  gap: 80px;

  flex-wrap: wrap;

}

.premium-item {

  text-align: center;

}

.premium-item h3 {

  font-size: 40px;

  color: #8b5e3c;

  font-family: "Playfair Display";

  margin-bottom: 10px;

}

.premium-item span {

  font-size: 13px;

  text-transform: uppercase;

  letter-spacing: 2px;

  color: #777;

}
.logo {
  width: 200px !important;
  height: 200px !important;
}

.logo img {
  width: 200% !important;
  height: 200% !important;
  object-fit: contain !important;
  border-radius: 50% !important;
  transition: .35s ease;
}/* FORCE TRIBE CAFE HEADER LOGO SIZE */
header#header .nav-wrap > .logo {
    width: 110px !important;
    height: 110px !important;
    min-width: 110px !important;
    min-height: 110px !important;
    max-width: 110px !important;
    max-height: 110px !important;

    flex: 0 0 110px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

header#header .nav-wrap > .logo img {
    width: 100% !important;
    height: 100% !important;

    min-width: 0 !important;
    min-height: 0 !important;
    max-width: none !important;
    max-height: none !important;

    object-fit: contain !important;
    border-radius: 50% !important;
}
/* FIX: Make all 6 process numbers identical */
.plant-step::before {
    content: "";
    position: absolute;
    top: 178px;
    left: 20px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5e3c, #c99b58);
    box-shadow: 0 12px 28px rgba(139, 94, 60, .40), 0 0 0 4px #fff;
    z-index: 3;
}

.plant-step::after {
    position: absolute;
    top: 178px;
    left: 20px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    z-index: 4;
    pointer-events: none;
}

.plant-step:nth-child(1)::after {
    content: "1" !important;
}

.plant-step:nth-child(2)::after {
    content: "2" !important;
}

.plant-step:nth-child(3)::after {
    content: "3" !important;
}

.plant-step:nth-child(4)::after {
    content: "4" !important;
}

.plant-step:nth-child(5)::after {
    content: "5" !important;
}

.plant-step:nth-child(6)::after {
    content: "6" !important;
}
@media (max-width: 768px) {

    .plant-step::after {
        width: 44px !important;
        height: 44px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        top: 82px !important;
        z-index: 10 !important;
    }

    .plant-step:nth-child(1)::after { content: "1" !important; }
    .plant-step:nth-child(2)::after { content: "2" !important; }
    .plant-step:nth-child(3)::after { content: "3" !important; }
    .plant-step:nth-child(4)::after { content: "4" !important; }
    .plant-step:nth-child(5)::after { content: "5" !important; }
    .plant-step:nth-child(6)::after { content: "6" !important; }
}
/* ===== TRIBE CAFE PREMIUM COLORS ===== */

.franchise-page-section h2,
section h2 {
    color: #3B1F14;
}

.franchise-page-section h2 span,
section h2 span {
    color: #A66A3F;
}

/* Crafted With Passion section text */
section p {
    color: #5E4A3F;
}

/* Gold/brown decorative lines */
section .divider,
section .line,
section .small-title::after {
    background-color: #C58A4A;
}

/* Premium brown buttons */
button,
.btn,
a.btn {
    background-color: #3B1F14;
    color: #FFF8ED;
}

button:hover,
.btn:hover,
a.btn:hover {
    background-color: #A66A3F;
    color: #FFFFFF;
}

/* Highlight / accent color */
.highlight,
.accent {
    color: #A66A3F;
}
/* ===== NAVBAR MENU WHITE ===== */

.navbar a,
.navbar .nav-link,
.nav-menu a,
.nav-links a {
    color: #ffffff !important;
}

/* Keep menu white on hover */
.navbar a:hover,
.navbar .nav-link:hover,
.nav-menu a:hover,
.nav-links a:hover {
    color: #ffffff !important;
}

/* Active menu also white */
.navbar a.active,
.navbar .nav-link.active,
.nav-menu a.active,
.nav-links a.active {
    color: #ffffff !important;
}
/* =========================================
   FORCE NAVBAR MENU WHITE - ALL STATES
========================================= */

header nav a,
header nav ul li a,
.navbar a,
.navbar .nav-link,
.nav-menu a,
.nav-links a {
    color: #ffffff !important;
}

/* Scrolled navbar */
header.scrolled nav a,
header.scrolled nav ul li a,
.navbar.scrolled a,
.navbar.scrolled .nav-link,
.scrolled .nav-menu a,
.scrolled .nav-links a {
    color: #ffffff !important;
}

/* Hover */
header nav a:hover,
header nav ul li a:hover,
.navbar a:hover,
.navbar .nav-link:hover,
.nav-menu a:hover,
.nav-links a:hover {
    color: #ffffff !important;
}

/* Active item */
header nav a.active,
header nav ul li a.active,
.navbar a.active,
.navbar .nav-link.active {
    color: #ffffff !important;
}
/* About banner - smooth zoom in/out */
.about-banner {
  overflow: hidden;
}

.about-banner img {
  animation: aboutBannerZoom 8s ease-in-out infinite alternate;
  transform-origin: center center;
}

@keyframes aboutBannerZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }
}
@media (max-width: 760px) {
    .plant-cup-flow {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 28px !important;
    }

    .plant-step {
        width: 92% !important;
        max-width: 360px !important;
        margin: 0 auto !important;
    }

    .plant-step img {
        height: 230px !important;
    }
}


@media (max-width: 760px) {

    /* Small rating card */
    .hero-v2-rating {
        display: block !important;
        position: absolute !important;
        top: 78px !important;
        right: 10px !important;
        width: 145px !important;
        max-width: 145px !important;
        padding: 12px 8px !important;
        border-radius: 18px !important;
        z-index: 20 !important;
        text-align: center !important;
    }

    .hero-v2-rating strong {
        font-size: 14px !important;
    }

    .hero-v2-rating span {
        font-size: 10px !important;
    }

    .hero-v2-rating .stars {
        font-size: 11px !important;
    }

   
   
}
@media (min-width: 761px) {

    .franchise-format-grid {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 22px !important;
        align-items: start !important;
    }

    .franchise-format-grid .franchise-format-card {
        width: 100% !important;
        grid-column: auto !important;
        grid-row: auto !important;
    }
}
@media (max-width: 760px) {
    .home-about-text .outline-dark.nav-link {
        display: block !important;
        width: fit-content !important;
        margin: 25px auto 0 !important;
    }
}
@media (max-width: 760px) {
    .outline-dark.nav-link {
        display: block !important;
        width: fit-content !important;
        margin: 25px auto 0 !important;
    }
}
@media (max-width: 760px) {

    /* Center hero content */
    #home-page .hero-v2-content.hero-content {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        margin: 0 auto !important;
    }

    /* Center main heading */
    #home-page .hero-v2-content h1 {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 100% !important;
    }

    /* Center description */
    #home-page .hero-v2-content p {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Move rating down and keep it away from menu */
    .hero-v2-rating {
        top: 145px !important;
        right: 12px !important;
        z-index: 4 !important;
    }

    /* Keep hamburger above rating */
    .menu-btn {
        position: relative !important;
        z-index: 30 !important;
    }
}
/* =========================================================
   TRIBE CAFE - VISUAL STORY GALLERY
   Equal-size images
========================================================= */

.sus-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    width: 100%;
    align-items: stretch;
}

.sus-gallery img {
    width: 100%;
    height: 220px;
    display: block;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.sus-gallery img:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
}


/* Tablet */
@media (max-width: 900px) {
    .sus-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .sus-gallery img {
        height: 220px;
    }
}


/* Mobile */
@media (max-width: 600px) {
    .sus-gallery {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sus-gallery img {
        height: 230px;
    }
}
/* =========================================================
   TRIBE CAFE JOURNEY - FINAL CLEAN CARD DESIGN
   NO NUMBERS
========================================================= */

.sus-timeline {
    display: grid !important;
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
    gap: 18px !important;
    align-items: stretch !important;
    position: relative !important;
}

/* Equal-size cards */
.sus-timeline .sus-step {
    position: relative !important;
    margin: 0 !important;
    padding: 18px 14px 24px !important;
    min-width: 0 !important;
    min-height: 360px !important;
    height: 360px !important;

    background: #ffffff !important;
    border: 1px solid rgba(75, 45, 28, 0.10) !important;
    border-radius: 24px !important;

    box-shadow: 0 18px 45px rgba(36, 20, 13, 0.10) !important;

    overflow: visible !important;
    transform: none !important;
}

/* Remove special styling from card 3 */
.sus-timeline .sus-step:nth-child(3) {
    margin-top: 0 !important;
    height: 360px !important;
    min-height: 360px !important;
    border: 1px solid rgba(75, 45, 28, 0.10) !important;
    box-shadow: 0 18px 45px rgba(36, 20, 13, 0.10) !important;
}

/* Equal image size */
.sus-timeline .sus-step .real-step-icon {
    position: relative !important;
    display: block !important;

    width: 100% !important;
    height: 145px !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden !important;
    border-radius: 18px !important;

    background: none !important;
    box-shadow: none !important;
}

/* Image */
.sus-timeline .sus-step .real-step-icon img {
    width: 100% !important;
    height: 100% !important;

    display: block !important;
    object-fit: cover !important;

    border-radius: 18px !important;
}

/* REMOVE ALL NUMBER CIRCLES */
.sus-timeline .sus-step .real-step-icon::before {
    content: none !important;
    display: none !important;
}

/* REMOVE IMAGE DARK OVERLAY */
.sus-timeline .sus-step .real-step-icon::after {
    display: none !important;
}

/* Remove number variables */
.sus-timeline .sus-step:nth-child(1),
.sus-timeline .sus-step:nth-child(2),
.sus-timeline .sus-step:nth-child(3),
.sus-timeline .sus-step:nth-child(4),
.sus-timeline .sus-step:nth-child(5),
.sus-timeline .sus-step:nth-child(6),
.sus-timeline .sus-step:nth-child(7) {
    --n: none !important;
}

/* Titles */
.sus-timeline .sus-step h3 {
    margin: 18px 0 8px !important;
    padding: 0 8px !important;

    text-align: center !important;

    font-family: "Playfair Display", Georgia, serif !important;
    font-size: 18px !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;

    color: #27452f !important;
}

/* Gold divider */
.sus-timeline .sus-step h3::after {
    content: "" !important;

    display: block !important;

    width: 30px !important;
    height: 2px !important;

    margin: 9px auto 0 !important;

    background: #c99b58 !important;
}

/* Description */
.sus-timeline .sus-step p {
    margin: 0 !important;
    padding: 0 8px !important;

    text-align: center !important;

    font-size: 14px !important;
    line-height: 1.7 !important;

    color: #6c5d52 !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) {

    .sus-timeline {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }

    .sus-timeline .sus-step {
        height: 360px !important;
        min-height: 360px !important;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .sus-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .sus-timeline .sus-step {
        height: 350px !important;
        min-height: 350px !important;
    }
}


@media (max-width: 480px) {

    .sus-timeline {
        grid-template-columns: 1fr !important;
    }

    .sus-timeline .sus-step {
        width: 100% !important;
        max-width: 340px !important;
        height: 350px !important;
        min-height: 350px !important;
        margin: 0 auto !important;
    }
}
/* =========================================================
   SUSTAINABILITY PAGE - REMOVE ALL ANIMATIONS
========================================================= */

/* Disable animations and transitions */
#sustainability-page *,
#sustainability-page *::before,
#sustainability-page *::after {
    animation: none !important;
    transition: none !important;
}

/* Keep everything in its normal position */
#sustainability-page .hero-content,
#sustainability-page .sus-hero-card,
#sustainability-page .sus-hero-grid,
#sustainability-page .sus-hero-points,
#sustainability-page .sus-hero-point {
    transform: none !important;
    opacity: 1 !important;
}

/* Disable image zoom */
#sustainability-page img {
    transform: none !important;
}

/* Disable hover movement */
#sustainability-page .sus-hero-card:hover,
#sustainability-page .sus-hero-point:hover,
#sustainability-page .sus-step:hover,
#sustainability-page .sus-benefit:hover,
#sustainability-page .sus-pack-card:hover {
    transform: none !important;
}

/* Disable image hover zoom */
#sustainability-page img:hover {
    transform: none !important;
}
/* =========================================================
   REMOVE FRANCHISE IMAGE ANIMATION
   ========================================================= */

.franchise-card .real-icon img,
.franchise-card:hover .real-icon img {
    transform: none !important;
    transition: none !important;
    filter: none !important;
}

/* Keep the franchise card itself completely still */
.franchise-card,
.franchise-card:hover {
    transform: none !important;
}
/* FRANCHISE IMAGE - COMPLETELY STATIC */

.franchise-card,
.franchise-card:hover,
.franchise-card[data-tilt],
.franchise-card[data-tilt]:hover {
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

.franchise-card *,
.franchise-card:hover *,
.franchise-card[data-tilt] *,
.franchise-card[data-tilt]:hover * {
    animation: none !important;
    transition: none !important;
}

.franchise-card img,
.franchise-card:hover img,
.franchise-card[data-tilt] img,
.franchise-card[data-tilt]:hover img {
    transform: none !important;
    animation: none !important;
    transition: none !important;
    filter: none !important;
}
/* =========================================================
   FRANCHISE VISUAL CARD - REMOVE ALL ANIMATIONS
   ========================================================= */

/* Main franchise visual card */
.franchise-visual-card,
.franchise-visual-card:hover,
.franchise-visual-card.reveal,
.franchise-visual-card.reveal.in-view,
.franchise-visual-card.reveal-3d,
.franchise-visual-card.reveal-3d.in-view {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
}

/* Image inside franchise visual card */
.franchise-visual-card img,
.franchise-visual-card:hover img,
.franchise-visual-card.reveal img,
.franchise-visual-card.reveal-3d img,
.franchise-visual-card[data-tilt] img,
.franchise-visual-card[data-tilt]:hover img {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    filter: none !important;
}

/* Disable any hover movement */
.franchise-visual-card:hover {
    transform: none !important;
    box-shadow: 0 26px 70px rgba(0, 0, 0, .26) !important;
}

/* Disable 3D/tilt effect */
.franchise-visual-card[data-tilt],
.franchise-visual-card[data-tilt]:hover {
    transform: none !important;
    transition: none !important;
}

/* Disable movement on everything inside this card */
.franchise-visual-card *,
.franchise-visual-card *:hover {
    animation: none !important;
}

/* Keep image completely fixed */
.franchise-visual-card img {
    transform: none !important;
    scale: 1 !important;
}
/* =========================================================
   FRANCHISE LAUNCH PROCESS - COLOR UPDATE
   ========================================================= */

/* Main section */
.franchise-page-section {
    background: #f5eadc !important;
    color: #3b261b !important;
}

/* Section heading */
.franchise-page-section h2 {
    color: #5a3826 !important;
}

/* Section subtitle */
.franchise-page-section > p,
.franchise-page-section .section-subtitle {
    color: #6f5849 !important;
}

/* Process cards */
.franchise-page-section .franchise-process-card {
    background: #fffaf3 !important;
    border: 1px solid rgba(139, 94, 60, 0.20) !important;
    color: #3b261b !important;
    box-shadow: 0 12px 30px rgba(75, 45, 28, 0.10) !important;
}

/* Number circles */
.franchise-page-section .franchise-process-card b {
    background: linear-gradient(135deg, #8b5e3c, #c99b58) !important;
    color: #ffffff !important;
}

/* Card titles */
.franchise-page-section .franchise-process-card h3 {
    color: #4b2d1c !important;
}

/* Card descriptions */
.franchise-page-section .franchise-process-card p {
    color: #6f5849 !important;
}

/* Keep cards still */
.franchise-page-section .franchise-process-card:hover {
    transform: none !important;
    background: #fffaf3 !important;
    box-shadow: 0 12px 30px rgba(75, 45, 28, 0.10) !important;
}
@media (min-width: 769px) {

    /* Reduce gap between Sustainability and Franchise */
    .header .nav-left {
        gap: 24px !important;
    }

    .header .nav-right {
        gap: 18px !important;
    }

    /* Keep user + cart close to Tribe Cafe logo */
    .header .nav-right {
        margin-right: 0 !important;
    }

    .header .nav-right .nav-icon,
    .header .nav-right .icon-btn,
    .header .nav-right a {
        margin-left: 0 !important;
    }

    /* Reduce space around the logo */
    .header .logo {
        margin-left: 10px !important;
        margin-right: 10px !important;
    }
}
/* =========================================================
   DESKTOP HEADER - FINAL NAVBAR ALIGNMENT
   ========================================================= */

@media (min-width: 1051px) {

    .nav-wrap {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 0 !important;
        width: 100% !important;
        padding-right: 0 !important;
    }

    /* Left navigation */
    .nav-left {
        display: flex !important;
        align-items: center !important;
        gap: 24px !important;
        flex: 0 0 auto !important;
    }

    /* Right navigation */
    .nav-right {
        display: flex !important;
        align-items: center !important;
        gap: 24px !important;

        margin-left: 28px !important;

        flex: 0 0 auto !important;
    }

    /* Account + Cart */
    .nav-shop-icons {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;

        margin-left: 18px !important;
        margin-right: 12px !important;

        flex: 0 0 auto !important;
    }

    /* Tribe Cafe logo */
    .header .logo {
        width: 76px !important;
        height: 76px !important;
        min-width: 76px !important;

        margin: 0 !important;
        padding: 5px !important;

        flex: 0 0 auto !important;
    }

    /* Icons */
    .nav-icon-btn {
        width: 44px !important;
        height: 44px !important;
    }

    /* Remove the old large spacing */
    .nav-shop-icons {
        margin-right: 0 !important;
    }
}
@media (min-width: 1051px) {

    .nav-wrap {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 0 !important;
    }

    /* 1. Home - Sustainability */
    .nav-left {
        order: 1 !important;
        display: flex !important;
        align-items: center !important;
        gap: 22px !important;
        margin: 0 !important;
    }

    /* 2. Franchise - Contact */
    .nav-right {
        order: 2 !important;
        display: flex !important;
        align-items: center !important;
        gap: 22px !important;
        margin-left: 24px !important;
        margin-right: 0 !important;
    }

    /* 3. Account + Cart */
    .nav-shop-icons {
        order: 3 !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;

        margin-left: 14px !important;
        margin-right: 14px !important;

        flex: 0 0 auto !important;
    }

    /* 4. Tribe Cafe Logo */
    .header .logo {
        order: 4 !important;

        width: 76px !important;
        height: 76px !important;
        min-width: 76px !important;

        margin: 0 !important;
        padding: 4px !important;

        flex: 0 0 auto !important;
    }

    .nav-icon-btn {
        width: 44px !important;
        height: 44px !important;
    }

    /* Prevent old rules from moving icons */
    .nav-shop-icons {
        margin-right: 14px !important;
    }

    .header .logo {
        margin-left: 0 !important;
    }
}
/* =========================================================
   TRIBE CAFE - FIX NAVBAR BACKGROUND
   ALWAYS KEEP NAVBAR DARK
   ========================================================= */

.header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;

    background: rgba(25, 25, 25, 0.88) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;

    z-index: 99999 !important;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.20) !important;

    transition: background-color 0.25s ease,
                box-shadow 0.25s ease !important;
}

/* Keep same background even after scrolling */
.header.scrolled {
    background: rgba(25, 25, 25, 0.88) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
}

/* Keep navbar text visible */
.header .nav-link,
.header .nav-left .nav-link,
.header .nav-right .nav-link {
    color: #ffffff !important;
}

/* Active menu */
.header .nav-link.active {
    color: #ffffff !important;
}

/* Logo stays above background */
.header .logo {
    position: relative !important;
    z-index: 2 !important;
}
/* =========================================================
   TRIBE CAFE - SUSTAINABILITY CTA TEXT
   ========================================================= */

.sus-cta h2 {
    color: #FFF8EA !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45) !important;
}

.sus-cta p {
    color: #F6E6C8 !important;
    font-size: 18px !important;
    line-height: 1.7 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55) !important;
}
/* Center Know More button - desktop */

/* =========================================================
   CENTER ALL READ MORE / KNOW MORE BUTTONS
   ========================================================= */

#home-page .home-about-text .outline-dark,
#home-page .story-text .outline-dark,
#home-page .home-about-text .nav-link,
#home-page .story-text .nav-link {
    display: block !important;
    width: fit-content !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
/* =========================================================
   FINAL TRIBE CAFE HEADER
   MENU LEFT + LOGO RIGHT
   ========================================================= */

@media (min-width: 1051px) {

    header#header .nav-wrap {
        width: 100% !important;
        max-width: 1400px !important;
        height: 105px !important;
        margin: 0 auto !important;
        padding: 0 35px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;

        gap: 0 !important;
        flex-wrap: nowrap !important;
    }

    /* LEFT MENU */
    header#header .nav-left {
        display: flex !important;
        align-items: center !important;
        gap: 20px !important;

        order: 1 !important;
        flex: 0 0 auto !important;
        margin: 0 !important;
    }

    /* RIGHT MENU - immediately after sustainability */
    header#header .nav-right {
        display: flex !important;
        align-items: center !important;
        gap: 20px !important;

        order: 2 !important;
        flex: 0 0 auto !important;

        margin: 0 0 0 20px !important;
    }

    /* MENU TEXT */
    header#header .nav-left .nav-link,
    header#header .nav-right .nav-link {
        font-size: 15px !important;
        font-weight: 700 !important;
        letter-spacing: .5px !important;
        white-space: nowrap !important;
        padding: 10px 0 !important;
    }

    /* REMOVE ACCOUNT + CART */
    header#header .nav-shop-icons {
        display: none !important;
    }

    /* LOGO AT FAR RIGHT */
    header#header .nav-wrap > .logo {
        order: 3 !important;

        width: 82px !important;
        height: 82px !important;
        min-width: 82px !important;
        min-height: 82px !important;

        margin-left: auto !important;
        margin-right: 0 !important;

        padding: 4px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        flex: 0 0 auto !important;
    }

    header#header .nav-wrap > .logo img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        border-radius: 50% !important;
    }
}


/* =========================================================
   LAPTOP SCREEN
   ========================================================= */

@media (min-width: 1051px) and (max-width: 1250px) {

    header#header .nav-wrap {
        padding: 0 20px !important;
    }

    header#header .nav-left {
        gap: 14px !important;
    }

    header#header .nav-right {
        gap: 14px !important;
        margin-left: 14px !important;
    }

    header#header .nav-left .nav-link,
    header#header .nav-right .nav-link {
        font-size: 13px !important;
        letter-spacing: .3px !important;
    }

    header#header .nav-wrap > .logo {
    width: 105px !important;
    height: 105px !important;
    min-width: 105px !important;
}
}
/* =========================================================
   FINAL OVERRIDE - NAVBAR TRANSPARENT AT TOP
   DARK ONLY AFTER SCROLL
   ========================================================= */

.header {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    transition: background 0.35s ease,
                box-shadow 0.35s ease,
                backdrop-filter 0.35s ease !important;
}

/* When scrolling */
.header.scrolled {
    background: rgba(25, 25, 25, 0.92) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25) !important;
}


/* =========================================================
   FINAL OVERRIDE - FRANCHISE DESCRIPTION
   ========================================================= */

.franchise-form-info p {
    color: #6f5849 !important;
    opacity: 1 !important;
}
/* =========================================================
   NAVBAR - TRANSPARENT AT TOP / BLACK ON SCROLL
   ========================================================= */

.header {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    transition: all 0.35s ease !important;
}

/* Black background only after scrolling */
.header.scrolled {
    background: #191919 !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25) !important;
}

/* Menu stays visible */
.header .nav-link,
.header .nav-left .nav-link,
.header .nav-right .nav-link {
    color: #ffffff !important;
}

/* Active menu */
.header .nav-link.active {
    color: #ffffff !important;
}
/* =========================================================
   NAVBAR - TRANSPARENT AT TOP / BLACK ON SCROLL
   ========================================================= */

.header {
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition: all 0.35s ease !important;
}

.header.scrolled {
    background:
        linear-gradient(
            rgba(18, 18, 18, 0.78),
            rgba(18, 18, 18, 0.78)
        ),
        url("https://res.cloudinary.com/nkk7o7nj/image/upload/v1789120822/contactbanner.jpg")
        center center / cover no-repeat !important;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25) !important;

    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

.header .nav-link,
.header .nav-left .nav-link,
.header .nav-right .nav-link {
    color: #ffffff !important;
}

/* =========================================================
   KNOW MORE / READ MORE BUTTON - PERFECT CENTER
   ========================================================= */

#home-page .home-about-text .outline-dark,
#home-page .story-text .outline-dark {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;

    width: 145px !important;
    height: 48px !important;

    padding: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;

    line-height: normal !important;
}
/* =========================================================
   CENTER BUTTON TEXT
   KNOW MORE / READ MORE / TALK TO US
   ========================================================= */

#home-page .home-about-text .outline-dark,
#home-page .story-text .outline-dark,
#home-page .franchise-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;

    padding: 0 !important;
    line-height: normal !important;
}
#home-page .home-about-text .outline-dark,
#home-page .story-text .outline-dark,
#home-page .home-about-text .outline-dark:hover,
#home-page .story-text .outline-dark:hover,
#home-page .home-about-text .outline-dark:focus,
#home-page .story-text .outline-dark:focus,
#home-page .home-about-text .outline-dark:active,
#home-page .story-text .outline-dark:active {
    text-decoration: none !important;
}

#home-page .home-about-text .outline-dark::before,
#home-page .home-about-text .outline-dark::after,
#home-page .story-text .outline-dark::before,
#home-page .story-text .outline-dark::after {
    display: none !important;
    content: none !important;
}
.franchise-actions .franchise-btn {
    height: 56px !important;
    padding: 0 32px !important;
}

.franchise-actions .franchise-btn:first-child {
    min-width: 230px !important;
}

.franchise-actions .franchise-btn.secondary {
    min-width: 165px !important;
}
/* Remove underline effect from Franchise buttons */
.franchise-actions .franchise-btn,
.franchise-actions .franchise-btn:hover,
.franchise-actions .franchise-btn:focus,
.franchise-actions .franchise-btn:active {
    text-decoration: none !important;
    text-decoration-line: none !important;
}

/* Remove animated underline */
.franchise-actions .franchise-btn::before,
.franchise-actions .franchise-btn::after {
    content: none !important;
    display: none !important;
    width: 0 !important;
    opacity: 0 !important;
    transform: none !important;
}
/* Remove Shop from mobile menu */
@media (max-width: 1050px) {
    .mobile-menu .nav-link[data-page="shop"] {
        display: none !important;
    }
}
/* Fix tribal image face cropping on mobile */
@media (max-width: 1050px) {
    #home-page .story-images .main-tribal-img {
        object-position: center 20% !important;
    }
}
/* =========================================================
   REMOVE ALL UNDERLINE EFFECTS
   ========================================================= */

/* All links - normal, hover, focus, active */
a,
a:hover,
a:focus,
a:active,
a:visited {
    text-decoration: none !important;
    text-decoration-line: none !important;
}

/* Remove global hover underline */
a:not(.btn):not(.nav-icon-btn):hover,
a:not(.btn):not(.nav-icon-btn):focus-visible {
    text-decoration: none !important;
    text-decoration-line: none !important;
}

/* Footer links */
footer a,
footer a:hover,
footer a:focus,
footer a:active,
footer a:visited,
.footer-col a,
.footer-col a:hover,
.footer-col a:focus,
.footer-col a:active,
.footer-col a:visited,
.footer-links a,
.footer-links a:hover,
.footer-links a:focus,
.footer-links a:active {
    text-decoration: none !important;
    text-decoration-line: none !important;
}

/* Remove navigation underline animation */
.nav-link::before,
.nav-link::after,
.nav-link:hover::before,
.nav-link:hover::after,
.nav-link.active::before,
.nav-link.active::after {
    text-decoration: none !important;
}

/* Specifically disable the nav underline line */
.nav-link::after {
    display: none !important;
    width: 0 !important;
    content: none !important;
}
