
/* Candy Bear About page upgrade */
.about-page{
  width:min(1180px,calc(100% - 32px));
  margin:44px auto 72px;
}

.about-hero{
  position:relative;
  display:grid;
  grid-template-columns:minmax(320px, .9fr) minmax(420px, 1.1fr);
  gap:54px;
  align-items:center;
  padding:46px;
  overflow:hidden;
  border:1px solid rgba(122,77,43,.12);
  border-radius:38px;
  background:
    radial-gradient(circle at 12% 10%,rgba(246,184,197,.26),transparent 30%),
    radial-gradient(circle at 90% 85%,rgba(163,184,116,.22),transparent 34%),
    #fffaf1;
  box-shadow:0 24px 60px rgba(75,48,37,.10);
}

.about-hero::before,
.about-hero::after{
  content:"";
  position:absolute;
  width:180px;
  height:180px;
  border-radius:50%;
  border:1px solid rgba(122,77,43,.08);
}

.about-hero::before{
  left:-70px;
  bottom:-85px;
}

.about-hero::after{
  right:-70px;
  top:-80px;
}

.about-hero-art{
  position:relative;
  min-height:430px;
  display:grid;
  place-items:center;
}

.about-logo-frame{
  position:relative;
  width:min(100%,420px);
  aspect-ratio:1/1;
  display:grid;
  place-items:center;
  padding:24px;
  border-radius:50%;
  background:#fff;
  border:10px solid rgba(171,194,126,.42);
  box-shadow:
    0 24px 50px rgba(75,48,37,.14),
    inset 0 0 0 1px rgba(122,77,43,.08);
}

.about-logo-frame img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}

.about-spark{
  position:absolute;
  display:grid;
  place-items:center;
  color:#d98fa0;
  font-weight:900;
}

.spark-one{
  top:12%;
  left:4%;
  font-size:28px;
}

.spark-two{
  right:5%;
  bottom:16%;
  color:#94aa63;
  font-size:34px;
}

.spark-three{
  right:16%;
  top:8%;
  font-size:22px;
}

.about-kicker{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:6px 11px;
  margin-bottom:15px;
  border-radius:999px;
  background:#fff0d8;
  color:#a5653d;
  font-size:11px;
  font-weight:900;
  letter-spacing:.14em;
}

.about-hero-copy h1{
  margin:0 0 18px;
  font-size:clamp(42px,5vw,72px);
  line-height:.98;
  color:#4e3025;
}

.about-hero-copy p{
  max-width:620px;
  margin:0 0 16px;
  color:#755647;
  font-size:17px;
  line-height:1.75;
}

.about-hero-copy .about-lead{
  color:#5f4030;
  font-size:20px;
  font-weight:800;
  line-height:1.55;
}

.about-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px;
}

.about-actions .button{
  margin:0;
}

.about-secondary{
  background:#fff !important;
  color:#684736 !important;
  border:1px solid rgba(122,77,43,.18) !important;
}

.about-values{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
  margin-top:24px;
}

.about-value-card{
  min-height:240px;
  padding:28px;
  border:1px solid rgba(122,77,43,.11);
  border-radius:28px;
  background:#fffdf8;
  box-shadow:0 14px 34px rgba(75,48,37,.07);
}

.about-value-icon{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  margin-bottom:20px;
  border-radius:18px;
  background:#fff1dc;
  font-size:27px;
}

.about-value-card h2{
  margin:0 0 12px;
  color:#4e3025;
  font-size:23px;
}

.about-value-card p{
  margin:0;
  color:#806152;
  line-height:1.7;
}

.about-story-card{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:36px;
  align-items:center;
  margin-top:24px;
  padding:34px 38px;
  border-radius:30px;
  background:#4e3025;
  color:#fff8ee;
  box-shadow:0 20px 46px rgba(75,48,37,.16);
}

.about-story-card .about-kicker{
  background:rgba(255,255,255,.12);
  color:#ffe5b6;
}

.about-story-card h2{
  margin:0;
  font-size:clamp(28px,3vw,42px);
  line-height:1.1;
}

.about-story-card p{
  margin:0;
  color:#f2ded0;
  font-size:17px;
  line-height:1.75;
}

@media(max-width:900px){
  .about-hero{
    grid-template-columns:1fr;
    gap:26px;
    padding:30px;
  }

  .about-hero-art{
    min-height:auto;
  }

  .about-logo-frame{
    width:min(100%,320px);
  }

  .about-hero-copy{
    text-align:center;
  }

  .about-hero-copy p{
    margin-left:auto;
    margin-right:auto;
  }

  .about-actions{
    justify-content:center;
  }

  .about-values{
    grid-template-columns:1fr;
  }

  .about-story-card{
    grid-template-columns:1fr;
    text-align:center;
  }
}

@media(max-width:620px){
  .about-page{
    width:min(100% - 20px,1180px);
    margin:20px auto 48px;
  }

  .about-hero{
    padding:20px;
    border-radius:26px;
  }

  .about-logo-frame{
    width:min(100%,245px);
    padding:15px;
    border-width:7px;
  }

  .about-hero-copy h1{
    font-size:40px;
  }

  .about-hero-copy .about-lead{
    font-size:17px;
  }

  .about-hero-copy p{
    font-size:15px;
  }

  .about-actions{
    display:grid;
    grid-template-columns:1fr;
  }

  .about-actions .button{
    width:100%;
    justify-content:center;
  }

  .about-value-card{
    min-height:auto;
    padding:22px;
    border-radius:22px;
  }

  .about-story-card{
    padding:26px 22px;
    border-radius:24px;
  }
}


/* =========================================
   ABOUT PAGE HEADER / NAV / FOOTER FIX
   Self-contained so the page stays correct
   even when the shared stylesheet is cached.
========================================= */

.about-page-body{
  margin:0 !important;
  min-height:100vh;
  overflow-x:hidden;
  background:#fff6e8;
  color:#4e3025;
  font-family:"Nunito",Arial,sans-serif;
}

.about-page-body .header{
  position:sticky;
  top:0;
  z-index:5000;
  width:min(1180px,calc(100% - 32px));
  min-height:86px;
  margin:18px auto 0;
  padding:12px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  border:1px solid rgba(122,77,43,.12);
  border-radius:30px;
  background:rgba(255,250,241,.96);
  box-shadow:0 12px 34px rgba(75,48,37,.10);
  box-sizing:border-box;
  backdrop-filter:blur(12px);
}

.about-page-body .header .logo{
  flex:0 0 auto;
  width:190px;
  max-width:38vw;
  height:60px;
  display:flex;
  align-items:center;
}

.about-page-body .header .logo img{
  display:block !important;
  width:100% !important;
  height:100% !important;
  max-width:190px !important;
  max-height:60px !important;
  object-fit:contain !important;
}

.about-page-body .header nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
  margin-left:auto;
}

.about-page-body .header nav a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 14px;
  border-radius:999px;
  color:#5f4030;
  text-decoration:none;
  font-size:14px;
  font-weight:900;
  white-space:nowrap;
}

.about-page-body .header nav a:hover,
.about-page-body .header nav a[href="about.html"]{
  background:#fff0d8;
  color:#9a6038;
}

.about-page-body .menu-btn{
  display:none;
  width:48px;
  height:48px;
  align-items:center;
  justify-content:center;
  flex:0 0 48px;
  border-radius:16px;
  background:#fff0d8;
  color:#4e3025;
  font-size:30px;
  line-height:1;
  cursor:pointer;
}

.about-page-body .mobile-menu{
  position:fixed;
  top:0;
  right:-100%;
  z-index:6000;
  width:min(310px,86vw);
  height:100vh;
  padding:96px 24px 28px;
  display:flex;
  flex-direction:column;
  gap:10px;
  background:#fffaf1;
  box-shadow:-18px 0 50px rgba(75,48,37,.18);
  transition:right .25s ease;
  box-sizing:border-box;
}

.about-page-body .mobile-menu.active{
  right:0;
}

.about-page-body .mobile-menu a{
  display:flex;
  align-items:center;
  min-height:48px;
  padding:0 16px;
  border-radius:15px;
  color:#5f4030;
  text-decoration:none;
  font-weight:900;
}

.about-page-body .mobile-menu a:hover{
  background:#fff0d8;
}

.about-page-body footer{
  width:min(1180px,calc(100% - 32px));
  margin:0 auto 32px;
  padding:28px;
  display:grid;
  justify-items:center;
  gap:12px;
  border:1px solid rgba(122,77,43,.10);
  border-radius:28px;
  background:#fffaf1;
  text-align:center;
  box-sizing:border-box;
}

.about-page-body footer .footer-logo{
  width:120px;
}

.about-page-body footer .footer-logo img{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
}

.about-page-body footer p{
  margin:0;
  color:#806152;
}

.about-page-body footer a{
  color:#9a6038;
  font-weight:900;
  text-decoration:none;
}

@media(max-width:900px){
  .about-page-body .header{
    min-height:76px;
    margin-top:10px;
    padding:10px 14px;
    border-radius:24px;
  }

  .about-page-body .header .logo{
    width:165px;
    height:54px;
  }

  .about-page-body .header .logo img{
    max-width:165px !important;
    max-height:54px !important;
  }

  .about-page-body .header nav{
    display:none !important;
  }

  .about-page-body .menu-btn{
    display:flex !important;
  }
}

@media(max-width:620px){
  .about-page-body .header{
    width:calc(100% - 20px);
    min-height:70px;
    padding:8px 12px;
    border-radius:22px;
  }

  .about-page-body .header .logo{
    width:145px;
    max-width:62vw;
    height:50px;
  }

  .about-page-body .header .logo img{
    max-width:145px !important;
    max-height:50px !important;
  }

  .about-page-body .menu-btn{
    width:44px;
    height:44px;
    flex-basis:44px;
    font-size:27px;
  }

  .about-page-body footer{
    width:calc(100% - 20px);
    padding:24px 18px;
    border-radius:22px;
  }
}


/* =========================================
   CLEAN ABOUT HERO — remove repeated logos
========================================= */

.about-hero-clean{
  min-height:520px;
  grid-template-columns:minmax(0,1fr) 360px;
  padding:64px;
}

.about-hero-clean .about-hero-copy{
  max-width:700px;
  position:relative;
  z-index:2;
}

.about-tagline{
  margin:0 0 20px !important;
  color:#a5653d !important;
  font-size:clamp(22px,2.5vw,34px) !important;
  font-weight:900 !important;
  line-height:1.15 !important;
}

.about-decoration{
  position:relative;
  min-height:360px;
  display:grid;
  place-items:center;
}

.about-decoration::before{
  content:"";
  position:absolute;
  width:260px;
  height:260px;
  border-radius:50%;
  background:
    radial-gradient(circle at 35% 30%,rgba(246,184,197,.42),transparent 38%),
    radial-gradient(circle at 70% 72%,rgba(163,184,116,.38),transparent 42%),
    #fff7ea;
  border:1px solid rgba(122,77,43,.10);
  box-shadow:0 24px 50px rgba(75,48,37,.10);
}

.about-decoration::after{
  content:"CB";
  position:relative;
  z-index:2;
  display:grid;
  place-items:center;
  width:150px;
  height:150px;
  border-radius:50%;
  background:#fff;
  border:7px solid rgba(163,184,116,.38);
  color:#6f472f;
  font-size:54px;
  font-weight:1000;
  letter-spacing:-.08em;
  box-shadow:0 16px 34px rgba(75,48,37,.12);
}

.decor-circle{
  position:absolute;
  border-radius:50%;
  border:1px solid rgba(122,77,43,.10);
}

.decor-one{
  width:76px;
  height:76px;
  top:24px;
  right:18px;
  background:rgba(255,227,181,.55);
}

.decor-two{
  width:54px;
  height:54px;
  left:12px;
  bottom:34px;
  background:rgba(199,221,169,.45);
}

.decor-leaf{
  position:absolute;
  left:28px;
  top:64px;
  font-size:42px;
  transform:rotate(-15deg);
}

.decor-star{
  position:absolute;
  color:#d98fa0;
  font-size:28px;
  font-weight:900;
}

.decor-star-one{
  top:34px;
  left:42%;
}

.decor-star-two{
  right:14px;
  bottom:70px;
  color:#94aa63;
  font-size:34px;
}

.decor-heart{
  position:absolute;
  right:58px;
  top:92px;
  color:#d98fa0;
  font-size:26px;
}

@media(max-width:900px){
  .about-hero-clean{
    grid-template-columns:1fr;
    min-height:auto;
    padding:40px 30px;
  }

  .about-decoration{
    min-height:300px;
    order:-1;
  }

  .about-hero-clean .about-hero-copy{
    text-align:center;
    margin:0 auto;
  }
}

@media(max-width:620px){
  .about-hero-clean{
    padding:28px 20px;
  }

  .about-decoration{
    min-height:235px;
  }

  .about-decoration::before{
    width:205px;
    height:205px;
  }

  .about-decoration::after{
    width:118px;
    height:118px;
    font-size:42px;
    border-width:6px;
  }

  .decor-one{
    width:54px;
    height:54px;
  }

  .decor-two{
    width:40px;
    height:40px;
  }

  .decor-leaf{
    left:10px;
    top:40px;
    font-size:34px;
  }

  .about-tagline{
    font-size:23px !important;
  }
}


/* =========================================
   FINAL ABOUT HERO — NO CB, LIGHT DECOR ONLY
========================================= */

.about-hero-clean{
  min-height:430px !important;
  grid-template-columns:minmax(0,1fr) 300px !important;
  padding:52px 58px !important;
}

.about-hero-clean .about-hero-copy h1{
  margin-bottom:18px !important;
  line-height:.92 !important;
}

.about-hero-clean .about-hero-copy h1 span{
  display:inline-block;
  color:#6f472f;
}

.about-decoration{
  position:relative;
  min-height:280px !important;
  overflow:hidden;
}

.about-decoration::before,
.about-decoration::after{
  content:none !important;
  display:none !important;
}

.decor-soft-circle{
  position:absolute;
  display:block;
  border-radius:50%;
  border:1px solid rgba(122,77,43,.10);
}

.decor-soft-one{
  width:210px;
  height:210px;
  left:42px;
  top:32px;
  background:
    radial-gradient(circle at 35% 30%,rgba(246,184,197,.34),transparent 42%),
    radial-gradient(circle at 70% 70%,rgba(163,184,116,.28),transparent 44%),
    rgba(255,247,234,.85);
  box-shadow:0 24px 46px rgba(75,48,37,.08);
}

.decor-soft-two{
  width:82px;
  height:82px;
  right:8px;
  top:4px;
  background:rgba(255,227,181,.55);
}

.decor-leaf{
  position:absolute;
  left:8px;
  top:48px;
  font-size:42px;
  transform:rotate(-12deg);
}

.decor-star-one{
  top:18px;
  left:120px;
}

.decor-star-two{
  right:14px;
  bottom:34px;
}

.decor-heart{
  right:62px;
  top:78px;
}

@media(max-width:900px){
  .about-hero-clean{
    grid-template-columns:1fr !important;
    min-height:auto !important;
    padding:36px 28px !important;
  }

  .about-decoration{
    min-height:210px !important;
    order:-1;
  }

  .decor-soft-one{
    width:170px;
    height:170px;
    left:50%;
    top:18px;
    transform:translateX(-50%);
  }

  .decor-soft-two{
    width:62px;
    height:62px;
    right:12%;
  }

  .decor-leaf{
    left:18%;
    top:42px;
    font-size:34px;
  }

  .decor-star-one{
    left:39%;
    top:8px;
  }

  .decor-heart{
    right:24%;
    top:62px;
  }
}

@media(max-width:620px){
  .about-hero-clean{
    padding:26px 20px !important;
  }

  .about-decoration{
    min-height:180px !important;
  }

  .decor-soft-one{
    width:145px;
    height:145px;
  }

  .decor-soft-two{
    width:48px;
    height:48px;
  }

  .about-hero-copy h1{
    font-size:38px !important;
  }

  .about-tagline{
    font-size:21px !important;
  }
}
