:root {
  --firban-green: #285543;
  --firban-white: #fff;
  --firban-accent: #e7d9be;
}
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  scroll-behavior: smooth;
  font-family: 'Inter', Arial, sans-serif;
  background: var(--firban-green);
  color: var(--firban-white);
  overflow-x: hidden;
}
body {
  min-height: 100vh;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body::-webkit-scrollbar { display: none; }

/* -------- DESKTOP HEADER -------- */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  z-index: 110;
  background: transparent;
  display: flex !important;
}
.header-inner {
  width: 100vw;
  padding: 10px 4vw 0 2vw;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo-circle {
  height: 46px;
  width: 46px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: #fff3;
  border: 2px solid #fff2;
  box-shadow: 0 3px 12px #0001;
  margin-right: 48px;
  margin-left: 12px;
  margin-top: 6px;
}
.nav {
  display: flex;
  gap: 65px;
  align-items: center;
  justify-content: flex-end;
}
.nav-btn {
  display: flex;
  align-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.38rem;
  color: var(--firban-white);
  background: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.06em;
  position: relative;
  transition: color 0.2s;
  padding: 0 4px 0 4px;
  outline: none;
  font-weight: 700;
  background: transparent;
}
.nav-btn.active,
.nav-btn:focus,
.nav-btn:active {
  color: var(--firban-accent);
  text-shadow: 0 2px 10px #fff3;
}
.nav-btn:after {
  content: '';
  display: block;
  position: absolute;
  left: 0; right: 0; bottom: -5px;
  height: 3px;
  width: 0%;
  background: var(--firban-accent);
  border-radius: 2px;
  transition: width 0.28s;
  margin: 0 auto;
  z-index: 2;
}
.nav-btn:hover:after,
.nav-btn:focus:after {
  width: 100%;
}
.nav-btn.active:after {
  width: 100%;
}

/* -------- MOBILE HEADER -------- */
.mobile-header {
  width: 100vw;
  position: fixed;
  top: 0; left: 0;
  z-index: 150;
  background: transparent;
  box-sizing: border-box;
  padding: 0;
  height: 65px;
  display: none !important;
}
.mobile-header-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 65px;
  padding: 0 14px 0 10px;
  width: 100vw;
  box-sizing: border-box;
}
.mobile-header-logo {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 13px;
  background: #fff3;
  border: 2px solid #fff2;
  box-shadow: 0 3px 12px #0001;
  display: inline-block;
}
.mobile-header-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--firban-accent);
  letter-spacing: 0.01em;
  margin-right: auto;
}
.mobile-header .hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 15px;
  z-index: 160;
}
.mobile-header .bar {
  width: 27px;
  height: 4px;
  background: var(--firban-accent);
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.28s;
}

/* --- HAMBURGER --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 140;
  margin-left: 8px;
  margin-top: 5px;
}
.hamburger .bar {
  width: 27px;
  height: 4px;
  background: var(--firban-accent);
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.28s;
}
.hamburger.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg);}
.hamburger.active .bar:nth-child(2) { opacity: 0;}
.hamburger.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg);}

/* -------- MOBILE NAV POPUP -------- */
.mobile-nav {
  display: none;
}
@media (max-width: 700px) {
  .nav { display: none !important; }
  .hamburger { display: flex; }
  .mobile-nav {
    position: absolute;
    top: 56px;
    right: 0px;
    width: 78vw;
    max-width: 200px;
    background: #fff;
    box-shadow: 0 6px 18px #0003;
    border-radius: 18px;
    padding: 16px 0 8px 0;
    flex-direction: column;
    align-items: flex-start;
    z-index: 999;
    transition: transform 0.33s cubic-bezier(.69,.18,.49,1.23), opacity 0.26s;
    opacity: 0;
    transform: translateY(-20px) scale(0.98);
    pointer-events: none;
  }
  .mobile-nav.open {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .mobile-nav .nav-btn {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--firban-green);
    background: none;
    border: none;
    text-align: right;
    font-weight: 700;
    width: 100%;
    padding: 13px 22px 11px 22px;
    margin: 0;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    transition: background 0.13s;
  }
  .mobile-nav .nav-btn.active,
  .mobile-nav .nav-btn:focus {
    color: var(--firban-accent);
    background: var(--firban-green);
  }
  .mobile-nav .nav-btn:not(:last-child) { border-bottom: 1px solid #f1f1f1; }
}

/* --- HEADER VISIBILITY CONTROL --- */
.header { display: flex !important; }
.mobile-header { display: none !important; }
@media (max-width: 700px) {
  .header { display: none !important; }
  .mobile-header { display: block !important; }
}

/* -------- LANDING SECTION -------- */
.landing {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.landing-desktop {
  display: block;
}
.landing-letters {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 101;
}
.big-f-container {
  position: absolute;
  top: 0; left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 5px;
  margin-top: 90px;
}
.big-f {
  font-family: 'Roboto Mono', monospace;
  font-size: 26vw;
  font-weight: 900;
  color: var(--firban-accent);
  line-height: 0.88;
  margin-top: -10px;
  opacity: 0.98;
  user-select: none;
  pointer-events: none;
  text-shadow: 0 2px 20px #0004;
}
.quote {
  font-family: 'Roboto Mono', monospace;
  font-size: 1.6vw;
  color: var(--firban-white);
  margin-top: 60px;
  margin-left: 22px;
  line-height: 1.3;
  max-width: 24vw;
  opacity: 0.96;
  text-shadow: 0 2px 10px #0004;
}
.big-c-container {
  position: absolute;
  right: 0;
  top: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  transform: translateY(-50%);
  margin-right: 15px;
  margin-top: 160px;
  height: auto;
  gap: 1vw;
}
.changing-word {
  font-family: 'Roboto Mono', monospace;
  font-size: 2.1vw;
  color: #fff;
  text-align: right;
  min-width: 180px;
  white-space: nowrap;
  overflow: visible;
  text-overflow: ellipsis;
  max-width: 25vw;
  max-height: 25vw;
  margin: 0;
  margin-top: 20px;
  margin-right: 20px;
  padding: 0;
  padding-bottom: 10px;
  line-height: 1.25;
}
.big-c {
  font-family: 'Roboto Mono', monospace;
  font-size: 26vw;
  font-weight: 900;
  color: var(--firban-accent);
  line-height: 0.89;
  opacity: 0.98;
  user-select: none;
  pointer-events: none;
  text-shadow: 0 2px 20px #0004;
  position: static;
  margin: 0;
}
.centerpiece {
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.7s, transform 1s;
  will-change: opacity, transform;
  z-index: 11;
}
.wavy-line {
  width: 100vw;
  max-width: 100vw;
  height: 80px;
  margin-top: 0px;
  display: block;
  filter: drop-shadow(0 0 6px #fff5);
  pointer-events: none;
  background: none;
}

.landing.fade-out .centerpiece { opacity: 0; pointer-events: none; }
.landing.fade-out .landing-letters { opacity: 0; pointer-events: none; transition: opacity 0.6s; }

/* -------- LANDING: MOBILE -------- */
@media (max-width: 700px) {
  .landing {
    width: 100vw;
    height: 100vh;
    min-height: 640px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    overflow: hidden;
    z-index: 10;
  }
  .landing-desktop {
    display: none !important;
  }
  .landing-mobile-video {
    display: block !important;
    position: relative;
    width: 100vw; height: 100vh;
    overflow: hidden;
    z-index: 2;
  }
  .landing-letters,
  .big-f-container,
  .big-f,
  .quote,
  .big-c-container,
  .changing-word,
  .big-c,
  .centerpiece,
  .wavy-line {
    display: none !important;
  }
}

/* Mobile landing video BG */
.mobile-landing-bg {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
  z-index: 1;
  filter: brightness(0.60) blur(0.6px);
  pointer-events: none;
}
.mobile-landing-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: linear-gradient(180deg, #00000044 0%, #285543bb 100%);
  z-index: 2;
  pointer-events: none;
}
.mobile-landing-logo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 38vw;
  max-width: 120px;
  min-width: 50px;
}
.mobile-landing-logo img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 8px 32px #0003;
}

/* --------- SECTION & PRODUCT CARDS --------- */
section {
  position: relative;
  width: 100vw;
  padding: 90px 0 60px 0;
  z-index: 1;
  box-sizing: border-box;
}
.parallax-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 140%;
  background: linear-gradient(120deg, #285543 70%, #364b40 100%);
  z-index: 0;
  pointer-events: none;
  will-change: transform;
  opacity: 0.96;
}
.section-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
  padding: 80px 36px 50px 36px;
  background: #285543;
  border-radius: 24px;
  box-shadow: 0 10px 44px rgba(0,0,0,0.10);
  text-align: center;
  color: var(--firban-white);
}
.section-content.products-section {
  background: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 auto;
  text-align: center;
  color: var(--firban-white);
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--firban-accent);
  margin-bottom: 16px;
  margin-top: 0;
  letter-spacing: 0.05em;
}
p {
  font-size: 1.13rem;
  line-height: 1.65;
  margin: 20px auto 0 auto;
  color: #f6f6f6;
  max-width: 700px;
}

/* -------- PRODUCTS SECTION -------- */
.products-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.products-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--firban-accent);
}
.product-cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 72px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.product-card {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 6px 32px #28554320;
  width: 400px;
  max-width: 90vw;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 34px 20px 30px 20px;
  position: relative;
  transition: box-shadow 0.2s;
}
.product-card:hover {
  box-shadow: 0 12px 40px #28554345;
}
.product-img {
  width: 90%;
  height: 390px;
  object-fit: cover;
  border-radius: 26px;
  background: #f3f3f3;
  margin-bottom: 20px;
  margin-top: 4px;
  box-shadow: 0 2px 12px #0001;
}
.media-container {
  position: relative;
  width: 90%;
  height: 390px;
  margin-bottom: 20px;
}
.media-container img,
.media-container video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
  top: 0;
  left: 0;
  transition: opacity 0.2s;
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #285543;
  margin-bottom: 32px;
  text-align: center;
}
.learn-more-btn {
  background: var(--firban-accent);
  color: #285543;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1.25rem;
  border: none;
  border-radius: 20px;
  padding: 13px 34px;
  margin-top: 8px;
  font-weight: 600;
  box-shadow: 0 2px 8px #0001;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.learn-more-btn:hover {
  background: #fff5;
  color: #c5a75a;
}

/* -------- PRODUCT POPUPS -------- */
.product-popup-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(2.5px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  z-index: 2147483646;
}
.product-popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.product-popup {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 700px;
  max-width: 96vw;
  background: #fff;
  border-radius: 0 32px 32px 0;
  box-shadow: 0 8px 44px #0003;
  z-index: 2147483647;
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.36s cubic-bezier(.58,.17,.51,1.17), opacity 0.23s;
  display: flex;
  flex-direction: column;
  padding: 0;
  pointer-events: none;
}
.product-popup.right {
  right: 0; left: unset;
  border-radius: 32px 0 0 32px;
  transform: translateX(120%);
}
.product-popup.active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
.popup-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  min-height: 600px;
  padding: 56px 42px 42px 42px;
  box-sizing: border-box;
  position: relative;
}
.popup-title {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  margin-bottom: 24px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.popup-title h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.7rem;
  font-weight: 800;
  color: #285543;
  letter-spacing: 0.03em;
  margin: 0;
  text-align: center;
  padding-bottom: 0;
}
.popup-underline {
  width: 370px;
  height: 3px;
  background: #e7d9be;
  margin-top: 8px;
  margin-bottom: 0;
  border-radius: 2px;
}
.popup-info {
  width: 100%;
  max-width: 520px;
  color: black;
  font-size: 1.18rem;
  line-height: 1.7;
  text-align: justify;
  margin: 0 auto;
}
.popup-info, .popup-info p {
  color: #222 !important;
}
.popup-close { display: none; }

/* -------- RESPONSIVE: PRODUCTS -------- */
@media (max-width: 900px) {
  .product-cards {
    flex-direction: column;
    gap: 28px;
  }
  .product-card { width: 90vw; }
  .product-popup {
    width: 96vw;
    border-radius: 0 0 36px 36px;
    left: 2vw;
    right: 2vw;
    top: unset; bottom: 0;
    transform: translateY(120%);
    transition: transform 0.36s cubic-bezier(.58,.17,.51,1.17), opacity 0.23s;
  }
  .product-popup.right {
    border-radius: 0 0 36px 36px;
  }
  .product-popup.active {
    transform: translateY(0);
  }
}

@media (max-width: 700px) {
  .products-section {
    padding: 0 10px;
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .products-section .product-cards {
    flex-direction: row !important;
    gap: 12px !important;
    justify-content: center;
    align-items: stretch;
    padding: 0 2vw;
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .products-section .product-card {
    width: 46vw !important;
    min-width: 0;
    max-width: 100vw;
    min-height: unset !important;
    height: auto !important;
    margin: 0;
    padding: 12px 4px 20px 4px;
    border-radius: 24px !important;
    box-shadow: 0 4px 16px #0001;
    padding-top: 10px;
    padding-bottom: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  .products-section .media-container {
    width: 90%;
    aspect-ratio: 3/4;
    min-height: 0;
    height: auto;
    margin-bottom: 12px;
    margin-top: 5px;
    margin-right: 5px;
    margin-left: 5px;
    border-radius: 18px;
    overflow: hidden;
    background: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .products-section .media-container img,
  .products-section .media-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    display: block;
    position: static;
    box-shadow: none;
  }
}
.products-section .product-card:first-child {
  margin-left: 0vw;
}
.products-section .product-card:last-child {
  margin-right: 4vw;
}

@media (max-width: 700px) {
  .learn-more-btn {
    font-size: 1rem;
    padding: 8px 18px;
    border-radius: 14px;
    min-width: unset;
    width: auto;
    white-space: nowrap;   /* Prevents the text from breaking into two lines */
    margin-top: 0px;
    margin-bottom: 0;
  }
  /* Optional: make buttons more compact in the cards */
  .products-section .product-card {
    padding-bottom: 10px;
  }
}

@media (max-width: 700px) {
  .learn-more-btn {
    font-size: 1rem;        /* smaller text */
    padding: 6px 13px;         /* tighter padding */
    border-radius: 12px;       /* slightly smaller radius */
    min-width: unset;
    width: auto;
    white-space: nowrap;
    margin-top: 0px;
    margin-bottom: 5px;
  }
}
@media (max-width: 700px) {
  .products-section .product-name {
    font-size: 1.5rem;   /* or adjust as small as you want */
    margin-bottom: 14px;
    margin-top: 0;
  }
}

@media (max-width: 700px) {
  .product-popup {
    width: 90vw !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    border-radius: 18px !important;
    max-height: 92vh !important;   /* increased height */
    min-height: 400px !important;  /* add min-height for taller popup */
    overflow-y: auto !important;
    box-sizing: border-box;
    padding: 0 !important;
    background: #fff;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .product-popup::-webkit-scrollbar { display: none; }
  .popup-content {
    padding: 14px 11px 16px 15px !important;
    min-height: unset !important;
  }
  .popup-title h3 {
    font-size: 1.5rem !important;
    margin-bottom: 0.02em !important;  /* less separation */
  }
  .popup-underline {
    width: 255px !important;
    height: 2px !important;
    margin: 3px auto 0 auto !important; /* smaller margin */
  }
  .popup-info {
    font-size: 0.93rem !important;
    max-width: 98vw !important;
    padding: 2vw 2vw;
    text-align: left;
    margin-top: 0.03em !important;     /* reduce top margin */
    margin-bottom: 1.5em;
  }
}



/* -------- ORDER SECTION -------- */
#order .section-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 110px auto 0 auto;
  padding: 60px 36px 50px 36px;
  background: rgba(34,44,39,0.93);
  border-radius: 32px;
  box-shadow: 0 18px 90px 0 rgba(33,43,39,0.18), 0 2px 18px #0003;
  text-align: center;
  color: var(--firban-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 390px;
}
#order .section-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 800;
  color: var(--firban-accent);
  margin-bottom: 28px;
  margin-top: 0;
  letter-spacing: 0.03em;
  text-align: center;
}
.order-desc {
  font-size: 1.12rem;
  color: #f7f7f7;
  margin-top: 12px;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.order-btn {
  display: inline-block;
  background: var(--firban-accent);
  color: #285543;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1.21rem;
  font-weight: 700;
  padding: 14px 38px;
  border-radius: 26px;
  text-decoration: none;
  box-shadow: 0 2px 10px #0002;
  transition: background 0.19s, color 0.19s, box-shadow 0.19s;
  margin-top: 8px;
}
.order-btn:hover {
  background: #fff5;
  color: #c5a75a;
  box-shadow: 0 4px 20px #28554328;
}
/* Responsive styles for mobile order */
@media (max-width: 600px) {
  #order .section-content {
    max-width: 97vw;
    margin: 68px auto 0 auto;
    padding: 24px 5vw 24px 5vw;
    border-radius: 16px;
    min-height: 0;
  }
  #order .section-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .order-desc {
    font-size: 0.98rem;
    margin-bottom: 18px;
    padding: 0 2vw;
    max-width: 96vw;
  }
  .order-btn {
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 18px;
  }
}

/* -------- ABOUT SECTION -------- */
.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 8vw 0 8vw;
  background: none;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
.about-title-container {
  width: 100%;
  text-align: center;
  margin-bottom: 8px;
}
.about-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--firban-accent);
  margin-bottom: 8px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.about-underline {
  width: 370px;
  max-width: 90vw;
  height: 4px;
  background: var(--firban-accent);
  margin: 0 auto;
  border-radius: 2px;
  box-shadow: 0 1px 8px #0001;
}
.about-card {
  background: #fff;
  color: #232323;
  border-radius: 18px;
  box-shadow: 0 2px 18px #28554340;
  padding: 36px 34px 28px 34px;
  margin-bottom: 24px;
  width: 100%;
  max-width: 900px;
  font-size: 1.13rem;
  text-align: left;
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.7;
  border: 1.5px solid #e7d9be;
}
.about-card h3 {
  color: #285543;
  font-family: 'Playfair Display', serif;
  margin-top: 0;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
.about-card p, .about-card li, .about-card span {
  color: #232323;
  font-size: 1.13rem;
  font-family: 'Inter', Arial, sans-serif;
}
.about-row-cards {
  display: flex;
  flex-direction: row;
  gap: 36px;
  justify-content: center;
  width: 100%;
  max-width: 1100px;
  margin-bottom: 30px;
}
.about-mission, .about-vision {
  max-width: 450px;
}
@media (max-width: 700px) {
  .about-row-cards {
    flex-direction: column !important;      /* CHANGE from row to column */
    gap: 16px !important;                   /* More vertical space */
    align-items: stretch;
    width: 100vw !important;
    margin-bottom: 0 !important;
  }
  .about-mission,
  .about-vision {
    max-width: 98vw !important;
    width: 96vw !important;
    box-sizing: border-box;
    margin: 0 auto;
    border-radius: 18px !important;
    font-size: 0.97rem !important;
    padding: 14px 10px 12px 10px !important;
  }
  .about-mission {
    margin-right: 18px !important;     /* Adds space to the right */
  }
  .about-vision {
    margin-left: 18px !important;      /* Adds space to the left */
  }
  .about-card h3 {
    font-size: 1.25rem !important;
    margin-bottom: 0.5em !important;
  }
}



/* -------- SOCIAL BAR & COPYRIGHT -------- */
.about-social-bar {
  width: 100vw;
  background: var(--firban-accent);
  color: #285543;
  padding: 20px 0 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -2px 14px #0001;
  margin: 0;
}
.find-us-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.28rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: black;
  letter-spacing: 0.04em;
}
.socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: 0;
}
.social-icon {
  width: 34px;
  height: 34px;
  transition: transform 0.18s, filter 0.18s;
  display: inline-block;
  filter: grayscale(0.2) contrast(1.1);
}
.social-icon:hover {
  transform: scale(1.17) rotate(-6deg);
  filter: grayscale(0) contrast(1.15) brightness(1.09);
}
.about-copyright-bar {
  width: 100vw;
  background: #285543;
  color: #fff;
  text-align: center;
  font-size: 0.95rem;
  padding: 13px 0 10px 0;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 0;
}
.about-social-bar, .about-copyright-bar {
  width: 100%;
  max-width: 100vw;
  margin: 0;
  left: 0;
  right: 0;
  position: relative;
  box-sizing: border-box;
}

/* -------- MISCELLANEOUS SECTION TWEAKS -------- */
#about .section-content {
  background: #285543 !important;
}
#about {
  min-height: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

@media (max-width: 700px) {
  .about-row-cards {
    margin-bottom: 20px !important; /* add space below mission/vision cards */
  }
  .about-social-bar {
    padding: 10px 0 8px 0 !important;
    min-height: 0 !important;
  }
  .find-us-text {
    font-size: 1.07rem !important;
    font-weight: 600 !important;
    margin-bottom: 7px !important;
  }
  .socials {
    gap: 17px !important;
    margin: 0 !important;
  }
  .about-copyright-bar {
    font-size: 0.78rem !important;
    padding: 6px 0 4px 0 !important;
    min-height: 0 !important;
  }
}
