/* ==========================================================================
   FRUTAWISE LIMITED — perseve.isys.buzz / perseverisys.buzz
   DARK berry-near-black + cherry-coral fresh produce theme
   Design: crumb-trail nav, centered stack hero, category rows, metric band,
   statement band, CTA band, duo-band footer.
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background-color: #150D10;
  color: #CFBDC2;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: #E85D75;
  text-decoration: none;
}

a:hover {
  color: #F0738A;
}

p {
  margin: 0 0 1.15em;
}

h1,
h2,
h3,
h4 {
  font-family: Georgia, "Times New Roman", serif;
  color: #F6EDEF;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.5em;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   CRUMB-TRAIL NAVIGATION
   ========================================================================== */

.crumb-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #150D10;
  border-bottom: 1px solid #3A2028;
}

.crumb-nav.scrolled {
  border-bottom-color: #E85D75;
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-chip {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: #E85D75;
  position: relative;
}

.brand-apple {
  position: absolute;
  left: 12px;
  top: 14px;
  width: 16px;
  height: 16px;
  background-color: #F6EDEF;
  border-radius: 50%;
}

.brand-apple::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 9px;
  width: 8px;
  height: 6px;
  background-color: #F6EDEF;
  border-radius: 100% 0 100% 0;
  transform: rotate(-28deg);
}

.brand-apple::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 6px;
  width: 2px;
  height: 7px;
  background-color: #F6EDEF;
  border-radius: 2px;
  transform: rotate(-10deg);
}

.brand-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #F6EDEF;
}

.crumb-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.crumb-links a {
  color: #CFBDC2;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.crumb-links a:hover {
  color: #F6EDEF;
  border-bottom-color: #E85D75;
}

.crumb-links .sep {
  color: #A98E97;
  font-weight: 300;
  font-size: 15px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid #3A2028;
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle .bar {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #F6EDEF;
  border-radius: 2px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.4px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-primary {
  background-color: #E85D75;
  color: #F6EDEF;
  border-color: #E85D75;
}

.btn-primary:hover {
  background-color: #F0738A;
  border-color: #F0738A;
  color: #150D10;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #F6EDEF;
  border-color: #F6EDEF;
}

.btn-outline:hover {
  border-color: #E85D75;
  color: #F0738A;
  transform: translateY(-2px);
}

/* ==========================================================================
   CENTERED STACK HERO
   ========================================================================== */

.center-stack-hero {
  position: relative;
  background-color: #150D10;
  padding: 84px 24px 96px;
  text-align: center;
  overflow: hidden;
}

.center-stack-hero::before,
.center-stack-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.center-stack-hero::before {
  width: 360px;
  height: 360px;
  left: -140px;
  top: -120px;
  background-color: #1F1115;
}

.center-stack-hero::after {
  width: 300px;
  height: 300px;
  right: -130px;
  bottom: -100px;
  background-color: #1F1115;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-block;
  background-color: #E85D75;
  color: #F6EDEF;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: 56px;
  line-height: 1.12;
  margin-bottom: 26px;
}

.hero-title .line {
  display: block;
}

.hero-title .accent-word {
  color: #F0738A;
}

.hero-subcopy {
  font-size: 19px;
  line-height: 1.75;
  color: #CFBDC2;
  max-width: 720px;
  margin: 0 auto 38px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Fruit graphic — basket with apple, orange, banana, strawberry, watermelon */
.fruit-graphic {
  margin: 52px auto 0;
  max-width: 360px;
  padding: 26px 18px 16px;
  background-color: #241318;
  border: 1px solid #3A2028;
  border-radius: 24px;
}

.fruit-stage {
  position: relative;
  width: 300px;
  height: 164px;
  margin: 0 auto;
}

.f-handle {
  position: absolute;
  left: 88px;
  top: 2px;
  width: 124px;
  height: 76px;
  border: 8px solid #8A5A36;
  border-bottom: none;
  border-radius: 80px 80px 0 0;
  z-index: 1;
}

.f-basket-body {
  position: absolute;
  left: 16px;
  bottom: 4px;
  width: 268px;
  height: 68px;
  background:
    repeating-linear-gradient(45deg, #A9743F 0 5px, #8A5A36 5px 10px),
    #8A5A36;
  border: 2px solid #6E4528;
  border-radius: 6px 6px 22px 22px;
  z-index: 2;
}

.f-basket-rim {
  position: absolute;
  left: 10px;
  bottom: 62px;
  width: 280px;
  height: 16px;
  background-color: #8A5A36;
  border: 2px solid #6E4528;
  border-radius: 9px;
  z-index: 5;
}

.f-banana {
  position: absolute;
  left: 18px;
  bottom: 52px;
  width: 86px;
  height: 34px;
  background-color: #F7C548;
  border-radius: 60% 60% 40% 40% / 72% 72% 30% 30%;
  transform: rotate(-14deg);
  z-index: 3;
}

.f-banana::before {
  content: "";
  position: absolute;
  right: -6px;
  top: 9px;
  width: 8px;
  height: 8px;
  background-color: #7A4E2E;
  border-radius: 50%;
}

.f-banana::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  width: 58px;
  height: 5px;
  background-color: #FBE09A;
  border-radius: 4px;
}

.f-apple {
  position: absolute;
  left: 88px;
  bottom: 46px;
  width: 50px;
  height: 50px;
  background-color: #D0434D;
  border-radius: 48% 48% 50% 50% / 56% 56% 44% 44%;
  z-index: 3;
}

.f-apple::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 27px;
  width: 3px;
  height: 14px;
  background-color: #5E3A22;
  border-radius: 2px;
  transform: rotate(-12deg);
}

.f-apple::after {
  content: "";
  position: absolute;
  top: -13px;
  left: 17px;
  width: 18px;
  height: 11px;
  background-color: #4C9E4C;
  border-radius: 100% 0 100% 0;
  transform: rotate(-26deg);
}

.f-orange {
  position: absolute;
  left: 148px;
  bottom: 48px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 5px solid #E88B1D;
  background-color: #F2A63B;
  z-index: 3;
}

.f-orange::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: repeating-conic-gradient(#F9BE58 0deg 24deg, #EE9A2B 24deg 45deg);
}

.f-orange::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  background-color: #D97E1A;
  border-radius: 50%;
}

.f-strawberry {
  position: absolute;
  left: 214px;
  bottom: 48px;
  width: 42px;
  height: 52px;
  background-color: #D64353;
  border-radius: 46% 46% 52% 52% / 56% 56% 44% 44%;
  z-index: 3;
}

.f-strawberry::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 8px;
  width: 26px;
  height: 14px;
  background-color: #4C9E4C;
  border-radius: 60% 40% 60% 40%;
}

.f-strawberry::after {
  content: "";
  position: absolute;
  inset: 6px 5px 8px;
  background-image: radial-gradient(#F9E2B2 1.6px, transparent 1.7px);
  background-size: 9px 9px;
  border-radius: 50%;
}

.f-watermelon {
  position: absolute;
  left: 116px;
  bottom: 38px;
  width: 0;
  height: 0;
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
  border-bottom: 34px solid #3E7A3E;
  z-index: 4;
}

.f-watermelon::before {
  content: "";
  position: absolute;
  top: 5px;
  left: -19px;
  width: 0;
  height: 0;
  border-left: 19px solid transparent;
  border-right: 19px solid transparent;
  border-bottom: 26px solid #F0738A;
}

.f-watermelon::after {
  content: "";
  position: absolute;
  top: 12px;
  left: -11px;
  width: 3px;
  height: 3px;
  background-color: #5E3A22;
  border-radius: 50%;
  box-shadow: 8px 4px 0 #5E3A22, -4px 8px 0 #5E3A22;
}

/* Hero stat line */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 54px auto 0;
  max-width: 860px;
  position: relative;
  z-index: 2;
}

.hero-stat {
  flex: 1 1 0;
  padding: 0 18px;
}

.hero-stat .stat-value {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 700;
  color: #F6EDEF;
}

.hero-stat .stat-label {
  display: block;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #97717E;
  margin-top: 4px;
}

.hero-stat-divider {
  width: 1px;
  height: 46px;
  background-color: #E85D75;
}

/* ==========================================================================
   CATEGORY ROWS
   ========================================================================== */

.category-rows {
  background-color: #150D10;
  padding: 96px 24px 84px;
}

.cr-head {
  max-width: 880px;
  margin: 0 auto 60px;
  text-align: center;
}

.cr-kicker {
  color: #E85D75;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cr-head h2 {
  font-size: 42px;
  margin-bottom: 18px;
}

.cr-head p {
  font-size: 18px;
  color: #CFBDC2;
  max-width: 760px;
  margin: 0 auto;
}

.category-list {
  max-width: 1080px;
  margin: 0 auto;
}

.category-row {
  position: relative;
  display: grid;
  grid-template-columns: 56px 120px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid #3A2028;
}

.category-row:first-child {
  border-top: 2px solid #E85D75;
}

.category-row:last-child {
  border-bottom: 1px solid #3A2028;
}

.row-node {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #E85D75;
  justify-self: center;
}

.cat-chip {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background-color: #E85D75;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-text h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #F6EDEF;
}

.cat-text p {
  margin: 0;
  color: #CFBDC2;
  font-size: 16px;
}

.cat-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #97717E;
  white-space: nowrap;
  border: 1px solid #3A2028;
  border-radius: 999px;
  padding: 6px 14px;
}

.cr-outro {
  max-width: 860px;
  margin: 44px auto 0;
  text-align: center;
  color: #97717E;
  font-size: 17px;
  line-height: 1.8;
}

/* white glyphs inside category chips */
.glyph {
  display: block;
  position: relative;
  width: 28px;
  height: 28px;
}

.glyph-orange::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #F6EDEF 0 3px, transparent 3px 9px, #F6EDEF 9px 10px, transparent 10px);
}

.glyph-grapes::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #F6EDEF;
  box-shadow: 10px 6px 0 #F6EDEF, 4px 14px 0 #F6EDEF;
}

.glyph-banana {
  background-color: #F6EDEF;
  border-radius: 50%;
}

.glyph-banana::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 3px;
  width: 22px;
  height: 22px;
  background-color: #E85D75;
  border-radius: 50%;
}

.glyph-apple {
  width: 24px;
  height: 22px;
  background-color: #F6EDEF;
  border-radius: 50%;
  align-self: center;
  margin-top: 4px;
}

.glyph-apple::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 10px;
  width: 3px;
  height: 8px;
  background-color: #F6EDEF;
  border-radius: 2px;
  transform: rotate(-10deg);
}

.glyph-apple::after {
  content: "";
  position: absolute;
  top: -7px;
  left: 4px;
  width: 10px;
  height: 8px;
  background-color: #F6EDEF;
  border-radius: 100% 0 100% 0;
  transform: rotate(-26deg);
}

/* ==========================================================================
   METRIC BAND
   ========================================================================== */

.metric-band {
  background-color: #E85D75;
  padding: 64px 24px;
}

.metric-row {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}

.metric-item {
  flex: 1 1 0;
  text-align: center;
  padding: 6px 16px;
}

.metric-value {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  color: #F6EDEF;
}

.metric-label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FBDCE3;
}

.metric-divider {
  width: 1px;
  background-color: #F6EDEF;
  margin: 10px 0;
}

/* ==========================================================================
   STATEMENT BAND
   ========================================================================== */

.statement-band {
  background-color: #241318;
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
}

.statement-inner {
  max-width: 940px;
  margin: 0 auto;
  padding-left: 56px;
  border-left: 4px solid #E85D75;
}

.statement-inner h2 {
  font-size: 34px;
  margin-bottom: 22px;
  color: #F6EDEF;
}

.statement-inner p {
  font-size: 20px;
  line-height: 1.8;
  color: #CFBDC2;
  margin: 0 0 1.1em;
}

.statement-signature {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
  color: #F0738A;
}

/* ==========================================================================
   CTA BAND
   ========================================================================== */

.cta-band {
  background-color: #150D10;
  padding: 100px 24px;
  text-align: center;
}

.cta-inner {
  max-width: 720px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: 40px;
  margin-bottom: 18px;
}

.cta-inner p {
  font-size: 18px;
  color: #CFBDC2;
  margin-bottom: 34px;
}

/* ==========================================================================
   DUO-BAND FOOTER
   ========================================================================== */

.duo-band-footer {
  background-color: #150D10;
}

.footer-band-links {
  background-color: #241318;
  border-top: 1px solid #3A2028;
  padding: 34px 24px;
}

.footer-link-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  max-width: 1080px;
  margin: 0 auto;
}

.footer-link-row a {
  color: #F6EDEF;
  font-weight: 600;
  font-size: 15px;
  border-bottom: 2px solid transparent;
  padding-bottom: 3px;
}

.footer-link-row a:hover {
  color: #E85D75;
  border-bottom-color: #E85D75;
}

.footer-link-row .sep {
  color: #3A2028;
  font-size: 14px;
}

.footer-band-legal {
  background-color: #E85D75;
  padding: 26px 24px;
}

.footer-legal-text {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  font-size: 13.5px;
  color: #F6EDEF;
  line-height: 1.9;
}

.footer-legal-text a {
  color: #F6EDEF;
  font-weight: 700;
  border-bottom: 1px solid #F6EDEF;
}

.footer-legal-text a:hover {
  color: #150D10;
  border-bottom-color: #150D10;
}

/* ==========================================================================
   PAGE HERO (secondary pages: services, contact)
   ========================================================================== */

.page-hero {
  background-color: #150D10;
  padding: 76px 24px 66px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -140px;
  transform: translateX(-50%);
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background-color: #1F1115;
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.page-hero .page-kicker {
  color: #E85D75;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.page-hero h1 {
  font-size: 46px;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 18px;
  color: #CFBDC2;
  max-width: 700px;
  margin: 0 auto;
}

/* Shipping box with leaves (services motif) */
.shipping-box {
  position: relative;
  width: 120px;
  height: 96px;
  margin: 40px auto 0;
}

.shipping-box .box-body {
  position: absolute;
  left: 0;
  top: 18px;
  width: 120px;
  height: 78px;
  background-color: #A9743F;
  border: 3px solid #7A4E2E;
  border-radius: 6px;
}

.shipping-box .box-flap {
  position: absolute;
  left: 0;
  top: 8px;
  width: 120px;
  height: 22px;
  background-color: #8A5A36;
  border: 3px solid #6E4528;
  border-radius: 6px;
}

.shipping-box .box-tape {
  position: absolute;
  left: 46px;
  top: 8px;
  width: 28px;
  height: 88px;
  background-color: #E85D75;
  border-radius: 3px;
}

.shipping-box .box-leaf {
  position: absolute;
  top: -8px;
  left: 16px;
  width: 26px;
  height: 16px;
  background-color: #4C9E4C;
  border-radius: 100% 0 100% 0;
  transform: rotate(-30deg);
}

.shipping-box .box-leaf-2 {
  position: absolute;
  top: -2px;
  right: 8px;
  width: 22px;
  height: 14px;
  background-color: #3E7A3E;
  border-radius: 0 100% 0 100%;
  transform: rotate(24deg);
}

/* ==========================================================================
   SERVICES SECTIONS
   ========================================================================== */

.services-intro {
  background-color: #150D10;
  padding: 30px 24px 80px;
}

.services-list {
  max-width: 1060px;
  margin: 0 auto;
}

.service-block {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 34px;
  padding: 46px 0;
  border-top: 1px solid #3A2028;
}

.service-block:first-child {
  border-top: 2px solid #E85D75;
}

.service-number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  color: #E85D75;
}

.service-body h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.service-body p {
  margin: 0 0 1em;
  color: #CFBDC2;
  font-size: 16px;
}

.service-body .service-note {
  color: #97717E;
  font-size: 15px;
}

/* Process overview */
.process-section {
  background-color: #241318;
  padding: 88px 24px;
}

.process-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 54px;
}

.process-head h2 {
  font-size: 38px;
}

.process-head p {
  color: #CFBDC2;
  font-size: 17px;
}

.process-row {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}

.process-step {
  flex: 1 1 0;
  padding: 0 22px;
  text-align: center;
}

.process-step .step-num {
  display: inline-block;
  width: 46px;
  height: 46px;
  line-height: 46px;
  border-radius: 50%;
  background-color: #E85D75;
  color: #F6EDEF;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 16px;
}

.process-step h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 15px;
  color: #CFBDC2;
  margin: 0;
}

.process-divider {
  width: 1px;
  background-color: #3A2028;
  margin: 60px 0;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-section {
  background-color: #150D10;
  padding: 74px 24px 90px;
}

.contact-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 54px;
  align-items: start;
}

.contact-form-panel {
  background-color: #241318;
  border: 1px solid #3A2028;
  border-radius: 18px;
  padding: 38px 34px;
}

.contact-form-panel h2 {
  font-size: 26px;
  margin-bottom: 8px;
}

.contact-form-panel .form-intro {
  color: #97717E;
  font-size: 15px;
  margin-bottom: 26px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #F6EDEF;
  margin-bottom: 7px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 13px 15px;
  background-color: #150D10;
  border: 1px solid #3A2028;
  border-radius: 10px;
  color: #F6EDEF;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #E85D75;
}

.form-submit {
  width: 100%;
  margin-top: 6px;
}

.form-status {
  margin-top: 16px;
  font-size: 14px;
  color: #F0738A;
  min-height: 22px;
}

.contact-info-panel h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.info-card {
  background-color: #241318;
  border: 1px solid #3A2028;
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 16px;
}

.info-card .info-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #97717E;
  margin-bottom: 6px;
}

.info-card .info-value {
  color: #F6EDEF;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}

.info-card a {
  color: #F0738A;
}

.info-card a:hover {
  color: #E85D75;
}

.hours-note {
  background-color: #150D10;
  border: 1px dashed #3A2028;
  border-radius: 14px;
  padding: 20px 24px;
  margin-top: 18px;
  color: #CFBDC2;
  font-size: 15px;
}

/* FAQ accordion */
.faq-section {
  background-color: #150D10;
  padding: 40px 24px 110px;
}

.faq-head {
  text-align: center;
  margin-bottom: 40px;
}

.faq-head h2 {
  font-size: 36px;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background-color: #241318;
  border: 1px solid #3A2028;
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 700;
  color: #F6EDEF;
}

.faq-question .faq-arrow {
  flex: none;
  width: 14px;
  height: 14px;
  border-right: 2px solid #E85D75;
  border-bottom: 2px solid #E85D75;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.faq-item.open .faq-arrow {
  transform: rotate(225deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 22px;
}

.faq-answer p {
  color: #CFBDC2;
  font-size: 15.5px;
  margin: 0;
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */

.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 920px) {
  .category-row {
    grid-template-columns: 56px 96px 1fr;
  }

  .cat-tag {
    grid-column: 3;
    justify-self: start;
    margin-top: 4px;
  }

  .hero-title {
    font-size: 44px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: flex;
  }

  .crumb-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background-color: #241318;
    border-bottom: 1px solid #3A2028;
    padding: 14px 24px 22px;
    gap: 4px;
  }

  .crumb-links.open {
    display: flex;
  }

  .crumb-links a {
    display: block;
    padding: 12px 4px;
    font-size: 17px;
    border-bottom: 1px solid #3A2028;
  }

  .crumb-links .sep {
    display: none;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subcopy {
    font-size: 17px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 22px;
  }

  .hero-stat-divider {
    width: 44px;
    height: 1px;
  }

  .fruit-graphic {
    max-width: 320px;
  }

  .metric-row {
    flex-wrap: wrap;
  }

  .metric-item {
    flex: 1 1 40%;
  }

  .metric-divider {
    display: none;
  }

  .category-row {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 32px 0;
  }

  .row-node {
    position: absolute;
    left: 0;
    top: 20px;
  }

  .cat-chip {
    margin-left: 22px;
  }

  .cat-text {
    margin-left: 22px;
  }

  .cat-tag {
    grid-column: auto;
    justify-self: start;
    margin-left: 22px;
  }

  .statement-inner {
    padding-left: 26px;
  }

  .process-row {
    flex-direction: column;
    gap: 30px;
  }

  .process-divider {
    width: 1px;
    height: 0;
    margin: 0;
  }

  .service-block {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 34px 0;
  }

  .footer-link-row {
    gap: 8px 14px;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    text-align: center;
  }

  .fruit-stage {
    transform: scale(0.86);
    transform-origin: top center;
  }

  .metric-value {
    font-size: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
