/* =========================================
   CHUSKI CAFE — Root Variables
========================================= */
:root {
  --cream: #F7F1E7;
  --cream-dark: #EFE6D6;
  --brown-dark: #2E1D13;
  --brown-text: #4A3527;
  --terracotta: #C1642F;
  --terracotta-dark: #A8531F;
  --terracotta-light: #E08A4F;
  --white: #FFFFFF;

  --font-display: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--brown-text);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  display: block;
}

.btn {
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

/* ---------- Layout container ---------- */
.section-container {
  width: 96%;
  max-width: 1350px;
  margin: auto;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--brown-dark);
  text-align: center;
  margin: 0 0 0.4rem;
}

.head-bottom-prop {
  width: 170px;
  margin: auto;
}

.head-bottom-prop img {
  width: 100%;
}

#journey-form {
  scroll-behavior: smooth;
  scroll-margin-top: 210px;
}

#FranchiseModel,
#FindCafe,
#get-in-touch {
  scroll-behavior: smooth;
  scroll-margin-top: 70px;
}


/* =========================================
   HEADER
========================================= */
.site-header {
  background-color: var(--cream);
  border-bottom: 1px solid #e6dcc9;
  position: relative;
  z-index: 100;
  position: sticky;
  top: 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0.4rem 0;
  position: relative;
}

.navbar-brand {
  display: flex;
  align-items: center;
  order: 1;
}

.logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

/* Nav collapse wrapper (links + actions) */
.navbar-collapse {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  flex: 1;
  order: 2;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: var(--brown-text);
  padding: 0.4rem 1rem;
  position: relative;
  transition: all 0.25s ease;
  display: inline-block;
}

.nav-link:hover {
  color: var(--terracotta);
}

.nav-link.active {
  color: var(--terracotta);
  font-weight: 500;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background-color: var(--terracotta);
  border-radius: 2px;
}

.nav-link.active::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4.5px;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--terracotta);
  border-radius: 50%;
}

/* Header action buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.btn-find-cafe {
  border: 1px solid var(--terracotta);
  color: var(--terracotta-dark);
  background: transparent;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.4rem 1.2rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.btn-find-cafe:hover {
  background-color: var(--terracotta);
  color: var(--white);
}

.btn-order-online {
  background-color: var(--terracotta);
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.4rem 1.2rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  transition: all 0.25s ease;
  border: 1px solid var(--terracotta);
}

.btn-order-online:hover {
  background-color: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  color: var(--white);
}

/* Mobile toggler button (hidden on desktop) */
.navbar-toggler {
  display: none;
  border: none;
  font-size: 1.8rem;
  color: var(--terracotta-dark);
  background: transparent;
  padding: 0.2rem 0.4rem;
  order: 3;
  z-index: 10;
}


@media (max-width: 1100px) {
  .navbar-toggler {
    display: block;
  }

  /* Collapse menu drops to its own full-width row instead of
     squeezing into the same row as the logo + toggler */
  .navbar-collapse {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    width: 100%;
    flex: 0 0 100%;
    background-color: var(--cream);
    padding: 1rem 0.5rem 1.5rem;
    border-top: 1px solid #e6dcc9;
    margin-top: 0.8rem;
    order: 4;
  }

  .navbar-collapse.show {
    display: flex;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    width: 100%;
  }

  .header-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .header-actions .btn {
    justify-content: center;
  }

}



@media (max-width: 570px) {
  .logo-img {
    height: 44px;
  }
}










/* =========================================
   HERO SECTION
========================================= */
.hero-section {
  background-image: url("images/hero-back.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
}

.hero-inner {
  display: flex;
  align-items: center;
}

.hero-text {
  width: 100%;
  max-width: 600px;
  padding: 1.5rem 0;
  z-index: 2;
}

.hero-image-space {
  flex: 1;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 3.4rem;
  line-height: 1.15;
  color: var(--brown-dark);
  margin: 0 0 0.8rem;
}

.text-accent {
  color: var(--terracotta);
}

.hero-bottom-prop {
  width: 200px;
}

.hero-bottom-prop img {
  width: 100%;
}

.hero-desc {
  font-size: 1rem;
  color: var(--brown-text);
  line-height: 1.5;
  max-width: 450px;
  margin: 0.6rem 0 1.4rem;
}

.hero-desc strong {
  color: var(--brown-dark);
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-explore {
  background-color: var(--terracotta);
  color: var(--white);
  font-weight: 500;
  padding: 0.6rem 1.6rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 2px solid var(--terracotta);
  transition: all 0.25s ease;
}

.btn-explore:hover {
  background-color: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  color: var(--white);
}

.btn-franchise {
  background-color: transparent;
  color: var(--brown-dark);
  font-weight: 500;
  padding: 0.6rem 1.6rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 2px solid #6d6d4ce1;
  transition: all 0.25s ease;
}

.btn-franchise:hover {
  background-color: #6d6d4ce1;
  color: var(--white);
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1200px) {
  .hero-section {
    background-position: -150px center;
  }
}

@media (max-width: 700px) {

  .hero-section {
    background-image: none;
    background: #F0E0CF;
  }

  .hero-inner {
    flex-direction: column;
    min-height: auto;
  }

  .hero-text {
    text-align: center;
    padding: 1.5rem 0;
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 2.8rem;
  }

  .hero-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-bottom-prop {
    margin: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image-space {
    display: none;
  }
}

@media (max-width: 440px) {

  .hero-text h1 {
    font-size: 2.4rem;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .btn-explore,
  .btn-franchise {
    width: 100%;
    justify-content: center;
  }

  .btn-explore {
  padding: 0.6rem 0.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    max-width: 260px;
    margin: auto;
  }
}












/* =========================================
   WHY CHUSKI CAFE
========================================= */
.why-section {
  background-color: var(--cream);
  padding: 1.5rem 0;
}


.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  position: relative;
  margin-top: 1.5rem;
}

.why-card {
  background-color: transparent;
  border: 2px solid #d8c9ac;
  border-radius: 10px;
  padding: 1.5rem 1rem;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.why-icon {
  max-width: 50px;
  height: 50px;
  margin-bottom: 0.8rem;
}

.why-icon-cup {
  height: 70px;
  margin-top: -20px;
}

.why-icon img {
  width: 100%;
  height: 100%;
}

.why-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--brown-dark);
  margin: 0 0 0.6rem;
}

.why-card p {
  font-size: 0.90rem;
  line-height: 1.4;
  color: var(--brown-text);
  opacity: 0.85;
  margin: 0;
  max-width: 260px;
  margin-inline: auto;
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

}













/* =========================================
   EXPLORE OUR MENU
========================================= */
.menu-section {
  background-color: var(--cream-dark);
  padding: 1.5rem 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
  position: relative;
}

.menu-card {
  position: relative;
  border-radius: 10px;
  border: 2px solid #d8c9ac;
  background: #505034;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  height: 160px;
}

.menu-card-content {
  padding: 1rem 1rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-icon {
  height: 40px;
  max-width: 40px;
}

.menu-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu-card-content h3 {
  font-weight: 400;
  font-size: 1.1rem;
  margin: 0 0 0.3rem;
  line-height: 1.2;
}

.menu-card-content p {
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
  opacity: 0.9;
}

.view-menu-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: fit-content;
  margin: 1.5rem auto 0;
  color: var(--terracotta-dark);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.25s ease;
  padding-bottom: 1px;
  border-bottom: 1px solid transparent;
}

.view-menu-link:hover {
  color: var(--terracotta);
  border-bottom: 1px solid var(--terracotta);
}

@media (max-width: 900px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .menu-heading {
    font-size: 1.6rem;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }
}















/* =========================================
   LUCKNOW ROOTS / BUILT TO GROW
========================================= */
.roots-section {
  position: relative;
  background-image: url("images/home-franchise-back.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.roots-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.roots-block {
  flex: 1;
  padding: 1rem 0rem;
  color: var(--white);
}

.roots-left {
  padding-left: 0;
}

.roots-right-inner {
  padding-left: 40px;
}

.roots-block h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  margin: 0 0 0.4rem;
}

.head-bottom-prop-inner {
  margin-left: 0;
  width: 130px;
}

.roots-block p {
  font-size: 0.92rem;
  line-height: 1.4;
  max-width: 90%;
  opacity: 0.8;
  margin: 0.4rem 0 1rem;
}

.roots-block .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.5rem 1.3rem;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.roots-block .btn:hover {
  background-color: var(--white);
  color: var(--brown-dark);
}

/* Center franchise badge image, overlapping both halves */
.roots-badge {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  width: 180px;
}

.roots-badge img {
  width: 100%;
  height: auto;
  display: block;
}



@media (max-width: 800px) {
  .roots-section {
    background: none;
  }

  .roots-container {
    flex-direction: column;
    text-align: center;
    width: 100%;
  }


  .roots-left {
    background: #505234;
  }

  .roots-right {
    background: #A94E18;
  }

  .roots-right-inner {
    padding-left: 0px;
  }

  .head-bottom-prop-inner {
    margin: auto;
  }

  .roots-block p {
    margin-left: auto;
    margin-right: auto;
  }

  .roots-badge {
    width: 130px;
    margin: -1.5rem auto;
  }
}
















/* =========================================
   FOOTER
========================================= */
.site-footer {
  background-color: #2E1D13;
  color: #E9DFCF;
  border-top: 3px solid #E9DFCF;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 2rem 0 1.4rem;
}

.footer-logo {
  height: 140px;
  width: auto;
  margin-bottom: 0.9rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #C9BBA3;
  margin: 0;
  max-width: 300px;
}


.social-icons {
  display: flex;
  gap: 0.7rem;
  margin-top: 1rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border: 1px solid #c4b4a5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E9DFCF;
  font-size: 1.1rem;
  transition: all 0.25s ease;
}

.social-icons a:hover {
  background-color: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}


.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  text-underline-offset: 5px;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  margin: 0 0 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-col ul li a {
  color: #C9BBA3;
  font-size: 0.88rem;
  transition: color 0.25s ease;
}

.footer-col ul li a:hover {
  color: var(--terracotta-light);
}

.footer-contact-list li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #C9BBA3;
  margin-bottom: 0.1rem;
}

.footer-contact-list li i {
  color: var(--terracotta-light);
  font-size: 0.95rem;
}







.footer-bottom {
  border-top: 1px solid #9d866e;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-bottom-inner p {
  font-size: 0.82rem;
  color: #B7A78D;
  margin: 0;
}


.footer-bottom-link {
  color: #a78143;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-bottom-link:hover {
  color: var(--terracotta-light);
}

.footer-bottom-developedBy {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom-developedBy p {
  transition: all 0.3s ease;
}

.footer-bottom-developedBy:hover p {
  color: var(--terracotta-light);
}

.footer-bottom-developedBy img {
  height: 22px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
}

.footer-legal a {
  color: #B7A78D;
  transition: color 0.25s ease;
}

.footer-legal a:hover {
  color: var(--terracotta-light);
}

.footer-legal span {
  color: #5a4633;
}

@media (max-width: 700px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 440px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: left;
  }


  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}



































/* =========================================
   about page
========================================= */

.about-hero-section {
  background-image: url("images/about-hero-back.webp");
}

.about-hero-section .hero-text {
  width: 100%;
  max-width: 600px;
  padding: 1.5rem 0;
  z-index: 2;
}


.hero-badge {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.about-hero-section .hero-bottom-prop {
  width: 120px;
  height: 10px;
  margin-left: -10px;
}

.about-hero-section .hero-desc {
  margin-bottom: 0;
  max-width: 520px;
}

.about-hero-section h2 {
  font-size: 1.2rem;
  font-weight: 600;
  font-family: var(--font-display);
  color: #454722;
  letter-spacing: 0.5px;
}



@media (max-width: 700px) {

  .about-hero-section {
    background-image: none;
    background: #F0E0CF;
  }

  .about-hero-section .hero-bottom-prop {
    margin: auto;
  }

}










.what-stand-grid {
  grid-template-columns: repeat(4, 1fr);
}

.what-stand-card-footer {
  height: 2px;
  width: 80px;
  background: var(--terracotta);
  margin-top: 20px;
}

.what-stand-card-footer::before {
  content: "";
  position: absolute;
  left: 50%;
  margin-top: -3px;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--terracotta);
  border-radius: 50%;
}


@media (max-width: 800px) {
  .what-stand-grid {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 440px) {
  .what-stand-grid {
    grid-template-columns: 1fr;
  }

}








/* about-experience */

.about-exp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: fit-content;
  margin: 1.5rem auto 0;
  background: var(--terracotta);
  color: #fff;
  padding: 0.4rem 1.4rem;
  border: 2px solid var(--terracotta);
  border-radius: 4px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.25s ease;
}

.about-exp-btn:hover {
  background: transparent;
  color: var(--terracotta);
}












/* =========================================
   BUILT FOR TODAY / READY FOR TOMORROW
========================================= */
.future-section {
  position: relative;
  background-image: url("images/built-today-back.webp");
  background-size: cover;
  background-position: left center;
  overflow: hidden;
}


.future-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 1.5rem 0;
}

.future-badge {
  flex: 0 0 auto;
  width: 190px;
}

.future-badge img {
  width: 100%;
  height: auto;
  display: block;
}

.future-content {
  flex: 1;
  color: var(--white);
}

.future-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  margin: 0 0 0.8rem;
}

.future-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 560px;
  opacity: 0.94;
  margin: 0 0 1rem;
}

.btn-franchise-with-us {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  color: var(--white);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.5rem 1.4rem;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.btn-franchise-with-us:hover {
  background-color: var(--white);
  color: var(--terracotta-dark);
}

@media (max-width: 600px) {
  .future-container {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .future-badge {
    width: 180px;
  }

  .future-content p {
    margin-left: auto;
    margin-right: auto;
  }
}

































/* franchise page */

.fr-format-grid {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 700px) {

  .fr-format-grid {
    grid-template-columns: 1fr;
  }
}













/* =========================================
   WHAT PARTNERS RECEIVE / INVESTMENT SNAPSHOT
========================================= */
.partners-section {
  background-color: var(--cream);
  padding: 1.5rem 0;
}


.investment-snapshot {
  margin-top: 2rem;
}


.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin: 0 6rem;
  margin-top: 1.5rem;
}

.investment-grid {
  grid-template-columns: repeat(5, 1fr);
  margin: 0 14rem;
  margin-top: 1.5rem;
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partner-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--terracotta-dark);
  margin-bottom: 0.7rem;
}

.partner-item p {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brown-text);
  margin: 0;
  line-height: 1.4;
  text-align: center;
}

.partner-price {
  font-size: 0.78rem;
  color: var(--terracotta-dark);
  font-weight: 600;
  margin-top: 0.3rem;
  text-align: center;
}

.investment-note {
  font-size: 0.78rem;
  color: var(--brown-text);
  opacity: 0.75;
  text-align: left;
  margin: 1rem 0 0;
  text-align: center;
}


@media (max-width: 1100px) {
  .partners-grid {
    margin: 0 0rem;
    margin-top: 1.5rem;
  }
}

@media (max-width: 480px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .partner-icon {
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
  }
}













.fr-growth-section {
  background-image: url("images/fr-growth-back.webp");
}

.fr-growth-section .head-bottom-prop {
  margin-left: 0;
  margin-bottom: 0.6rem;
  width: 140px;
}


@media (max-width: 600px) {
  .fr-growth-section .head-bottom-prop {
    margin: auto;
    margin-bottom: 0.6rem;
  }
}











/* =========================================
   START YOUR CHUSKI JOURNEY (FORM)
========================================= */
.journey-section {
  background-color: var(--cream);
  padding: 1.5rem 0 2rem;
}

.journey-card {
  border: 1px solid #e6d9bd;
  border-radius: 12px;
  background-color: #FBF6EC;
  padding: 1.5rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.journey-intro h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--brown-dark);
  margin: 0 0 0.5rem;
}

.journey-intro .head-bottom-prop {
  margin-left: -10px;
  margin-bottom: 10px;
}

.journey-intro p {
  font-size: 0.92rem;
  color: var(--brown-text);
  opacity: 0.85;
  margin: 0 0 1rem;
}

.journey-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.journey-form-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.journey-form input,
.journey-form select {
  width: 100%;
  border: 1px solid #d8c9ac;
  background-color: var(--white);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--brown-text);
}

.journey-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 16 16'%3E%3Cpath fill='%234A3527' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.journey-form input::placeholder {
  color: #9c8a72;
}

.journey-form input:focus,
.journey-form select:focus {
  outline: none;
  border-color: var(--terracotta);
}

.journey-note {
  font-size: 0.78rem;
  color: var(--brown-text);
  opacity: 0.75;
  margin: 0.2rem 0 0.8rem;
}

.btn-request-deck {
  width: 100%;
  background-color: var(--terracotta);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  border: 1.5px solid var(--terracotta);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-request-deck:hover {
  background-color: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
}

@media (max-width: 570px) {
  .journey-card {
    padding: 1.8rem 1.4rem;
  }

  .journey-intro h2 {
    font-size: 1.35rem;
  }
}

@media (max-width: 570px) {
  .journey-form-inputs {
    grid-template-columns: 1fr;
  }
}




























/* =========================================
   contact page
========================================= */

.contact-hero-section {
  background-image: url("images/contact-hero-back.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
}


@media (max-width: 700px) {

  .contact-hero-section {
    background-image: none;
    background: #F0E0CF;
  }

}











/* =========================================
   FIND YOUR CHUSKI
========================================= */

/* Location cards */
.locations-section {
  background-color: var(--cream);
  padding: 1.5rem 0 2rem;
}

.find-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.find-card {
  background-color: var(--white);
  border: 1px solid #e6dcc9;
  border-radius: 10px;
  overflow: hidden;
}

.find-card-image {
  position: relative;
  max-height: 200px;
  overflow: hidden;
}

.find-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.find-card-number {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--terracotta);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.find-card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}

.find-card-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--brown-dark);
  margin: 0 0 0.4rem;
}

.find-card-body p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--brown-text);
  opacity: 0.85;
  margin: 0 0 0.8rem;
}

.find-card-hours {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--terracotta-dark);
  font-weight: 500;
  margin-bottom: 1.1rem;
}

.btn-get-directions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  border: 1.5px solid #d8c9ac;
  color: var(--brown-dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65rem 1rem;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.btn-get-directions:hover {
  background-color: var(--brown-dark);
  border-color: var(--brown-dark);
  color: var(--white);
}


@media (max-width: 700px) {

  .find-cards {
    grid-template-columns: 1fr;
  }
}















/* =========================================
   CONTACT / GET IN TOUCH
========================================= */
.contact-section {
  background-color: var(--cream);
  padding: 1.5rem 0 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}

.contact-card {
  border-radius: 12px;
  padding: 1rem 1.4rem;
}

.card-get-in-touch {
  grid-column: 1;
  grid-row: 1;
  background-color: #FBF6EC;
  border: 1px solid #e6dcc9;
  position: relative;
  overflow: hidden;
}

.card-visit-us {
  grid-column: 2;
  grid-row: 1;
  color: var(--white);
  position: relative;
  overflow: hidden;
  background-image: url("images/contact-touch-back.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
}


.card-form {
  grid-column: 1 / -1;
  grid-row: 2;
  background-color: #FBF6EC;
  border: 1px solid #e6dcc9;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  margin: 0 0 0.4rem;
  text-align: left;
}

.contact-card .head-bottom-prop {
  margin-left: -10px;
}

.card-get-in-touch h3,
.card-form h3 {
  color: var(--brown-dark);
}

.card-visit-us h3 {
  color: var(--white);
  text-align: left;
}


/* Get in Touch list */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  position: relative;
  z-index: 2;
  margin-top: 1rem;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.contact-list li a {
  color: #4A3527;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: 500;
}

.contact-list li a:hover {
  color: var(--terracotta);
}

.contact-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  background-color: #454722;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-list strong {
  display: block;
  font-size: 1rem;
  color: var(--brown-dark);
  margin-bottom: 0.15rem;
}

.contact-list p {
  font-size: 0.95rem;
  color: var(--brown-text);
  opacity: 0.95;
  margin: 0;
}

.contact-sketch {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 200px;
  opacity: 0.5;
  pointer-events: none;
}

/* Visit Us list */
.visit-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  z-index: 2;
  max-width: 340px;
  margin-top: 1rem;
}

.visit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.visit-icon {
  color: var(--terracotta-light);
  font-size: 1.4rem;
  margin-top: 0.15rem;
}

.visit-list strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.visit-list p {
  font-size: 0.85rem;
  line-height: 1.5;
  opacity: 0.9;
  margin: 0;
}

.visit-hours {
  display: flex;
  gap: 1rem;
  font-size: 0.83rem;
  opacity: 0.9;
  padding-bottom: 0.6rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
  margin-bottom: 0.2rem;
}


.card-form h3 {
  text-align: center;
}

.card-form .head-bottom-prop {
  margin: auto;
}

/* Form card */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 1rem;
}


.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d8c9ac;
  background-color: var(--white);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--brown-text);
  resize: none;
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 16 16'%3E%3Cpath fill='%234A3527' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--terracotta);
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--brown-text);
}

.form-checkbox input {
  width: 16px;
  height: 16px;
  accent-color: var(--terracotta);
}

.btn-send-inquiry {
  width: 100%;
  background-color: var(--terracotta);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  border: 1.5px solid var(--terracotta);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-send-inquiry:hover {
  background-color: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
}

/* Bottom bar */
.contact-bottom-bar {
  border-top: 1px solid #e6dcc9;
  margin-top: 2.5rem;
}

.contact-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.2rem 0;
}

.contact-follow {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--brown-text);
}

.contact-socials {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.contact-socials a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--brown-text);
  font-size: 0.85rem;
  transition: color 0.25s ease;
}

.contact-socials a i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #454722;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.contact-socials a:hover {
  color: var(--terracotta-dark);
}

.contact-tagline {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--brown-dark);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 990px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .card-get-in-touch,
  .card-visit-us,
  .card-form {
    grid-column: 1;
  }

  .card-get-in-touch {
    grid-row: 1;
  }

  .card-visit-us {
    grid-row: 2;
  }

  .card-form {
    grid-row: 3;
  }

  .visit-list {
    max-width: 100%;
  }

  .visit-photo {
    position: static;
    width: 100%;
    height: 160px;
    border-radius: 8px;
    margin-top: 1.4rem;
  }

}

@media (max-width: 650px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .contact-follow {
    flex-direction: column;
    gap: 0.8rem;
  }
}

@media (max-width: 500px) {
  .contact-sketch {
    display: none;
  }

  .card-visit-us {
    background: #454722;
  }
}



































/* =========================================
   FULL MENU (menu page)
========================================= */
.full-menu-section {
  background-color: var(--cream);
  padding: 1.5rem 0 1rem;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.menu-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #e0d3b8;
  background-color: var(--white);
  color: var(--brown-text);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.menu-tab:hover {
  border-color: var(--terracotta);
  color: var(--terracotta-dark);
}

.menu-tab.active {
  background-color: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}

.menu-category-block {
  margin-bottom: 1.8rem;
}

.menu-category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.menu-category-head h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--brown-dark);
  margin: 0;
}

.menu-category-head h3 i {
  color: var(--terracotta);
  font-size: 1.3rem;
}

.view-full-menu-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--terracotta-dark);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.25s ease;
}

.view-full-menu-link:hover {
  color: var(--terracotta);
}

/* 4 products per row, as requested */
.menu-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.menu-product-card {
  background-color: var(--white);
  border: 1px solid #e6dcc9;
  border-radius: 10px;
  overflow: hidden;
}

.menu-product-card img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  display: block;
}

.menu-product-body {
  padding: 0.6rem 0.9rem;
}

.menu-product-body h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--brown-dark);
  margin: 0 0 0.4rem;
}

.menu-product-body p {
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--brown-text);
  opacity: 0.8;
  margin: 0 0 0.9rem;
  min-height: 2.4em;
}

.menu-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-product-footer span {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--brown-dark);
}

.menu-add-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--terracotta);
  background: transparent;
  color: var(--terracotta-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.menu-add-btn:hover {
  background-color: var(--terracotta);
  color: var(--white);
}

@media (max-width: 900px) {
  .menu-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 440px) {
  .menu-tabs {
    gap: 0.6rem;
  }

  .menu-tab {
    font-size: 0.82rem;
    padding: 0.55rem 0.9rem;
  }

  .menu-products-grid {
    grid-template-columns: 1fr;
  }

  .menu-category-head {
    flex-wrap: wrap;
    gap: 0.6rem;
  }
}

/* =========================================
   CHEF'S PICKS + PROMO
========================================= */
.chefs-section {
  background-color: var(--cream);
  padding: 0 0 4rem;
}

.chefs-picks-row {
  display: flex;
  gap: 1.4rem;
  margin-bottom: 1.6rem;
}

.chefs-picks-intro {
  flex: 0 0 240px;
  background-color: #3F5B45;
  color: var(--white);
  border-radius: 12px;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
}

.chefs-picks-intro h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 0 0.6rem;
}

.chefs-picks-intro .head-bottom-prop {
  margin: 0;
  margin-left: -10px;
  margin-bottom: 1rem;
}

.chefs-picks-intro p {
  font-size: 0.9rem;
  line-height: 1.55;
  opacity: 0.9;
  margin: 0;
}

/* 3 products per row, as requested */
.chefs-picks-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.chefs-card {
  position: relative;
  background-color: var(--white);
  border: 1px solid #e6dcc9;
  border-radius: 10px;
  overflow: hidden;
}

.chefs-card img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  display: block;
}

.chefs-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background-color: rgba(46, 29, 19, 0.85);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 5px;
  z-index: 2;
}

.chefs-badge i {
  color: var(--terracotta-light);
  font-size: 0.7rem;
}

.chefs-card-body {
  padding: 0.6rem 0.9rem;
}

.chefs-card-body h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--brown-dark);
  margin: 0 0 0.4rem;
}

.chefs-card-body p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--brown-text);
  opacity: 0.8;
  margin: 0 0 0.7rem;
}

.chefs-price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brown-dark);
}

/* Promo card — its own full-width row below Chef's Picks */
.menu-promo-card {
  display: flex;
  align-items: center;
  background-color: #F3E4CE;
  border-radius: 12px;
  overflow: hidden;
}

.promo-text {
  flex: 1;
  padding: 1rem 2rem;
}

.promo-text .head-bottom-prop {
  margin-left: -10px;
  margin-bottom: 1rem;
}

.promo-text h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--brown-dark);
  line-height: 1.3;
  margin: 0 0 0.8rem;
  max-width: 380px;
}

.btn-order-online-promo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--terracotta);
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.6rem 1.3rem;
  border-radius: 6px;
  border: 1px solid var(--terracotta);
  transition: all 0.25s ease;
}

.btn-order-online-promo:hover {
  background-color: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
}

.promo-image {
  flex: 0 0 10%;
  max-height: 220px;
  margin-right: 4rem;
}

.promo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .chefs-picks-row {
    flex-direction: column;
  }

  .chefs-picks-intro {
    flex: none;
  }

  .chefs-picks-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .menu-promo-card {
    flex-direction: column;
    text-align: center;
  }

  .promo-text h3 {
    max-width: 100%;
  }

  .promo-text .head-bottom-prop {
    margin: auto;
    margin-bottom: 1rem;
  }

  .promo-image {
    width: 20%;
    flex: none;
    margin: auto;
    margin-top: 1rem;
  }


}

@media (max-width: 500px) {
  .chefs-picks-grid {
    grid-template-columns: 1fr;
  }
}




























/* =========================================
   GALLERY PAGE
========================================= */
.gallery-section {
  background-color: var(--cream);
  padding: 2rem 0 2.5rem;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 3rem;
}

.gallery-filter {
  border: 1px solid #e0d3b8;
  background-color: var(--white);
  color: var(--brown-text);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  padding: 0.4rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.gallery-filter:hover {
  border-color: var(--terracotta);
  color: var(--terracotta-dark);
}

.gallery-filter.active {
  background-color: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}

/* Masonry-style grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item.span-tall {
  grid-row: span 2;
}

.gallery-item.span-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(46, 29, 19, 0.75), rgba(46, 29, 19, 0) 55%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0.9rem 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.gallery-overlay p {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 991.98px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 160px;
  }
}

@media (max-width: 650px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }

  .gallery-item.span-tall {
    grid-row: span 1;
  }

  .gallery-item.span-wide {
    grid-column: span 1;
  }

  .gallery-banner-inner h1 {
    font-size: 1.9rem;
  }
}

@media (max-width: 400px) {
  .gallery-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: 250px;
  }
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(20, 14, 8, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.gallery-lightbox.show {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox img {
  width: 90%;
  height: 85vh;
  border-radius: 8px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.lightbox-close:hover {
  background-color: var(--terracotta);
  border-color: var(--terracotta);
}
































/* =========================================
   TERMS & CONDITIONS PAGE
========================================= */
.legal-banner {
  background-color: #3F5B45;
  padding: 3rem 0;
}

.legal-banner-inner {
  text-align: center;
  color: var(--white);
}

.legal-banner-inner h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  margin: 0 0 0.6rem;
}

.legal-banner-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--terracotta-light);
  font-size: 1rem;
  margin-bottom: 0.9rem;
}

.legal-banner-divider::before,
.legal-banner-divider::after {
  content: "";
  width: 34px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
}

.legal-banner-inner p {
  font-size: 0.88rem;
  opacity: 0.85;
  margin: 0;
  margin-top: 1rem;
}

.legal-section {
  background-color: var(--cream);
  padding: 3.5rem 0 4.5rem;
}

.legal-container {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 1.5rem;
  background-color: var(--white);
  border: 1px solid #e6dcc9;
  border-radius: 10px;
  padding: 1.5rem 1.6rem;
}

.legal-toc h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brown-dark);
  margin: 0 0 1rem;
}

.legal-toc ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.legal-toc a {
  font-size: 0.85rem;
  color: var(--brown-text);
  opacity: 0.85;
  transition: color 0.25s ease;
}

.legal-toc a:hover {
  color: var(--terracotta-dark);
  opacity: 1;
}

.legal-content {
  max-width: 860px;
}

.legal-block {
  margin-bottom: 2.2rem;
  padding-bottom: 2.2rem;
  border-bottom: 1px dashed #e0d3b8;
}

.legal-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-block h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--brown-dark);
  margin: 0 0 0.8rem;
}

.legal-block p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--brown-text);
  opacity: 0.9;
  margin: 0;
}

.legal-block p a {
  color: var(--terracotta-dark);
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 700px) {
  .legal-container {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }
}

@media (max-width: 570px) {
  .legal-banner-inner h1 {
    font-size: 1.7rem;
  }

  .legal-block h2 {
    font-size: 1.1rem;
  }
}





























/* =========================================
   CAREERS PAGE
========================================= */
.careers-intro-section {
  background-color: var(--cream);
  padding: 1.5rem 0 1rem;
  text-align: center;
}

.careers-intro-inner h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--brown-dark);
  margin: 0 0 0.6rem;
}

.careers-intro-inner p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--brown-text);
  opacity: 0.9;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 1rem;
}

/* ---------- Perks ---------- */
.perks-section {
  background-color: var(--cream);
  padding: 1.5rem 0 2rem;
}

.perks-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--brown-dark);
  text-align: center;
  margin: 0 0 0.5rem;
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.perk-card {
  background-color: var(--white);
  border: 1px solid #e6dcc9;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  text-align: center;
}

.perk-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--cream-dark);
  color: var(--terracotta-dark);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.perk-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brown-dark);
  margin: 0 0 0.5rem;
}

.perk-card p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--brown-text);
  opacity: 0.85;
  margin: 0;
}

/* ---------- Open Positions ---------- */
.positions-section {
  background-color: var(--cream-dark);
  padding: 1.5rem 0;
}

.positions-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--brown-dark);
  text-align: center;
  margin: 0 0 0.5rem;
}

.positions-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.position-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background-color: var(--white);
  border: 1px solid #e6dcc9;
  border-radius: 10px;
  padding: 1rem 1.4rem;
}

.position-info h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--brown-dark);
  margin: 0 0 0.5rem;
}

.position-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.85rem;
  color: var(--terracotta-dark);
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.position-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.position-info p {
  font-size: 0.87rem;
  line-height: 1.55;
  color: var(--brown-text);
  opacity: 0.85;
  margin: 0;
  max-width: 560px;
}

.btn-apply-now {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1.5px solid var(--terracotta);
  color: var(--terracotta-dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65rem 1.3rem;
  border-radius: 6px;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.btn-apply-now:hover {
  background-color: var(--terracotta);
  color: var(--white);
}

/* ---------- General application CTA ---------- */
.careers-cta-section {
  background-color: var(--cream);
  padding: 1.5rem 0 2rem;
}

.careers-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  background-color: #3F5B45;
  color: var(--white);
  border-radius: 8px;
  padding: 1rem 1.5rem;
}

.careers-cta-text h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
}

.careers-cta-text p {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
  max-width: 480px;
}

.btn-send-resume {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--terracotta);
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  border: 1.5px solid var(--terracotta);
  white-space: nowrap;
  transition: all 0.25s ease;
}

.btn-send-resume:hover {
  background-color: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
}

@media (max-width: 800px) {
  .perks-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 600px) {
  .position-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-apply-now {
    width: 100%;
    justify-content: center;
  }

  .careers-cta-card {
    flex-direction: column;
    text-align: center;
  }

  .careers-cta-text p {
    max-width: 100%;
  }

  .btn-send-resume {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 440px) {
  .perks-grid {
    grid-template-columns: 1fr;
  }

  .careers-intro-inner h2,
  .perks-heading,
  .positions-heading {
    font-size: 1.4rem;
  }
}


























/* =========================================
   DOWNLOADS PAGE
========================================= */
.downloads-section {
  background-color: var(--cream);
  padding: 2.5rem 0 3rem;
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.download-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background-color: var(--white);
  border: 1px solid #e6dcc9;
  border-radius: 10px;
  padding: 1.4rem 1.5rem;
}

.download-icon {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background-color: var(--cream-dark);
  color: var(--terracotta-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.download-info {
  flex: 1;
}

.download-info h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--brown-dark);
  margin: 0 0 0.35rem;
}

.download-info p {
  font-size: 0.83rem;
  line-height: 1.5;
  color: var(--brown-text);
  opacity: 0.85;
  margin: 0 0 0.4rem;
}

.download-meta {
  font-size: 0.76rem;
  color: var(--terracotta-dark);
  font-weight: 600;
}

.btn-download {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1.5px solid var(--terracotta);
  color: var(--terracotta-dark);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.55rem 1rem;
  border-radius: 6px;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.btn-download:hover {
  background-color: var(--terracotta);
  color: var(--white);
}

.downloads-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--brown-text);
  opacity: 0.8;
  margin: 0;
}

.downloads-note a {
  color: var(--terracotta-dark);
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .downloads-grid {
    grid-template-columns: 1fr;
  }

  .download-card {
    flex-wrap: wrap;
  }

  .btn-download {
    width: 100%;
    justify-content: center;
  }
}