
:root {
  --green:    #2E7D32;
  --green-dk: #1B5E20;
  --green-lt: #E8F5E9;
  --black:    #0F0F0F;
  --gray-2:   #3A3A3C;
  --gray-3:   #6B7280;
  --gray-4:   #9CA3AF;
  --gray-5:   #E5E7EB;
  --gray-6:   #F5F5F5;
  --white:    #FFFFFF;
  --bg:       #E3ECE5;
  --r-md: 16px; --r-lg: 22px; --r-xl: 32px;
  --sh-sm: 0 1px 4px rgba(0,0,0,.05);
  --sh-md: 0 4px 24px rgba(0,0,0,.07);
  --sh-lg: 0 8px 48px rgba(0,0,0,.10);
  --ease: cubic-bezier(.25,.46,.45,.94);
  --font: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font); background: var(--bg); color: var(--black); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img    { display: block; max-width: 100%; }
a      { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
.page { width: 100%; max-width: 430px; margin: 0 auto; background: var(--bg); }
.sec           { padding: 0 20px; margin-bottom: 22px; }
.card          { background: var(--white); border-radius: var(--r-lg); box-shadow: var(--sh-md); overflow: hidden; }
.eyebrow       { font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--green); }
.divider       { height: 1px; background: var(--gray-5); margin: 0 20px 18px; }
.section-title { font-size: 16px; font-weight: 700; letter-spacing: -.3px; color: var(--black); }
.hero { position: relative; overflow: hidden; background: linear-gradient(170deg, #172e19 0%, #2E7D32 50%, #388E3C 100%); }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .12; mix-blend-mode: luminosity; pointer-events: none; }
.hero-inner { position: relative; z-index: 1; padding: 42px 16px 30px; display: flex; flex-direction: column; align-items: center; gap: 0; }
.avatar { width: 108px; height: 108px; border-radius: 50%; background: rgba(255,255,255,.14); border: 2.5px solid rgba(255,255,255,.28); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-bottom: 12px; overflow: hidden; position: relative; }
.avatar-img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; position: absolute; inset: 0; z-index: 2; }
.avatar-placeholder { position: relative; z-index: 1; }
.avatar-img:not([style*="display: none"]) ~ .avatar-placeholder { display: none; }
.hero-text { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; }
.sub-brand { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; color: rgba(255,255,255,.75); letter-spacing: .05em; }
.sub-brand .line { width: 20px; height: 1.5px; background: rgba(255,255,255,.35); flex-shrink: 0; }
.sub-brand strong { color: rgba(255,255,255,.9); font-weight: 600; }
.hero h1 { font-size: 28px; font-weight: 700; color: var(--white); letter-spacing: -.6px; line-height: 1.1; }
.hero h1 em { font-style: normal; font-weight: 700; color: #FFFFFF; }
.hero-tagline { font-size: 15px; color: rgba(255,255,255,.72); font-style: italic; line-height: 1.55; }
.pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 5px; }
.pill { font-size: 11px; font-weight: 500; color: rgba(255,255,255,.85); background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); padding: 4px 8px; border-radius: 100px; transition: background .2s, border-color .2s; }
.pill:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.3); }
.hero-wave { display: block; width: 100%; height: 28px; fill: var(--bg); margin-top: -1px; }
.stats-strip { display: flex; justify-content: space-around; align-items: center; padding: 12px 10px; border-top: 1.5px solid rgba(0,0,0,0.06); border-bottom: 1.5px solid rgba(0,0,0,0.06); margin: 0 20px 22px; }
.stat-item { text-align: center; flex: 1; position: relative; }
.stat-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 25%; height: 50%; width: 1px; background: rgba(0,0,0,0.08); }
.stat-num { font-size: 16px; font-weight: 700; color: var(--green); display: block; letter-spacing: -.3px; line-height: 1.2; }
.stat-lbl { font-size: 9.5px; color: var(--gray-3); margin-top: 3px; display: block; line-height: 1.2; }
.cta-section { padding: 0 20px; margin-top: 18px; margin-bottom: 6px; }
.cta-btn { display: block; width: 100%; background: var(--green); color: var(--white); text-align: center; padding: 17px 28px; border-radius: var(--r-xl); font-size: 15.5px; font-weight: 600; letter-spacing: -.1px; box-shadow: 0 6px 28px rgba(46,125,50,.28); transition: background .2s var(--ease), transform .18s var(--ease), box-shadow .2s var(--ease); }
.cta-btn:hover  { background: var(--green-dk); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(46,125,50,.36); }
.cta-btn:active { transform: translateY(0) scale(0.97); transition: transform 0.1s var(--ease); }
.cta-hint { text-align: center; font-size: 12.5px; color: var(--gray-4); margin-top: 6px; margin-bottom: 12px; }
.about-img  { width: 100%; height: 280px; object-fit: cover; object-position: center 20%; }
.about-body { padding: 18px 20px 22px; }
.about-body .eyebrow { display: block; margin-bottom: 8px; }
.about-body p { font-size: 15px; line-height: 1.75; color: var(--gray-2); }
.about-body strong { color: var(--black); font-weight: 600; }
.eco { margin: 0 20px 22px; background: var(--white); border-radius: var(--r-lg); box-shadow: var(--sh-sm); border: 1px solid var(--gray-5); padding: 18px 20px; display: flex; align-items: center; gap: 16px; transition: transform .25s var(--ease), box-shadow .25s var(--ease); cursor: pointer; }
.eco:hover { transform: translateY(-4px) scale(1.02); box-shadow: var(--sh-lg); }
.eco:hover .eco-arrow { transform: translateX(3px); }
.eco-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--green-lt); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; position: relative; }
.eco-img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; z-index: 2; }
.eco-img:not([style*="display: none"]) ~ .eco-placeholder { display: none; }
.eco-label { font-size: 10.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--green); margin-bottom: 2px; }
.eco-name  { font-size: 15.5px; font-weight: 700; color: var(--black); }
.eco-desc  { font-size: 11px; color: var(--gray-3); margin-top: 1px; }
.eco-arrow { margin-left: auto; flex-shrink: 0; transition: transform .22s var(--ease); }
.vid-thumb { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; cursor: pointer; }
.vid-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.vid-thumb:hover img { transform: scale(1.04); }
.vid-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.5) 0%, rgba(0,0,0,.05) 55%); display: flex; align-items: center; justify-content: center; }
.play-btn { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.94); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,.2); transition: transform .2s var(--ease); }
.vid-thumb:hover .play-btn { transform: scale(1.1); }
.play-btn svg { margin-left: 3px; }
.vid-meta { padding: 14px 18px 18px; display: flex; align-items: center; gap: 12px; }
.vid-title { flex: 1; }
.vid-title h3    { font-size: 15px; font-weight: 600; color: var(--black); letter-spacing: -.1px; }
.vid-title small { font-size: 12.5px; color: var(--gray-4); margin-top: 2px; display: block; }
.grid-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.link-more { font-size: 12px; font-weight: 500; color: var(--green); transition: opacity .18s; }
.link-more:hover { opacity: .6; }
.photo-grid { display: flex; gap: 10px; overflow-x: auto; margin: 0 -20px; padding: 0 20px 8px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.photo-grid::-webkit-scrollbar { display: none; }
.photo-tile { position: relative; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 3 / 2; cursor: pointer; width: 175px; min-width: 175px; flex-shrink: 0; scroll-snap-align: start; }
.photo-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); will-change: transform; }
.photo-tile:hover img { transform: scale(1.07); }
.tile-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,.58) 0%, transparent 100%); padding: 22px 11px 9px; font-size: 11px; font-weight: 500; color: rgba(255,255,255,.94); }
.rev-header   { display: flex; align-items: center; gap: 10px; margin-bottom: 5px; }
.star-badge   { font-size: 11px; font-weight: 600; color: var(--green); background: var(--green-lt); padding: 3px 10px; border-radius: 100px; }
.rev-subtitle { font-size: 11.5px; color: var(--gray-4); font-style: italic; margin-bottom: 14px; }
.rev-scroll   { display: flex; gap: 11px; overflow-x: auto; padding-bottom: 6px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.rev-scroll::-webkit-scrollbar { display: none; }
.rev-card  { width: 350px; min-width: 350px; max-width: 350px; flex-shrink: 0; scroll-snap-align: start; background: var(--white); border-radius: var(--r-lg); padding: 17px; box-shadow: var(--sh-md); white-space: normal; }
.rev-top   { display: flex; align-items: center; gap: 10px; margin-bottom: 9px; }
.rev-av    { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; flex-shrink: 0; position: relative; overflow: hidden; }
.rev-av-img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; z-index: 2; border-radius: 50%; }
.rev-av-letter { position: relative; z-index: 1; }
.rev-name  { font-size: 14px; font-weight: 600; color: var(--black); }
.rev-meta  { font-size: 11.5px; color: var(--gray-4); margin-top: 1px; }
.rev-stars { font-size: 11px; color: #F59E0B; letter-spacing: .5px; }
.rev-body  { font-size: 14px; color: var(--gray-2); line-height: 1.65; font-style: italic; margin-top: 8px; white-space: normal; }
.rev-body::before { content: '\201C'; }
.rev-body::after  { content: '\201D'; }
.swipe-hint { text-align: center; font-size: 11px; color: var(--gray-4); margin-top: 9px; }
.faq-title { font-size: 16px; font-weight: 700; letter-spacing: -.3px; margin-bottom: 13px; }
.faq-list  { display: flex; flex-direction: column; gap: 5px; }
.faq-item  { background: var(--white); border-radius: var(--r-md); box-shadow: var(--sh-sm); overflow: hidden; }
.faq-btn   { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; background: none; border: none; text-align: left; gap: 12px; transition: background .15s; }
.faq-btn:hover { background: var(--gray-6); }
.faq-btn span  { font-size: 14.5px; font-weight: 500; color: var(--black); line-height: 1.4; }
.faq-ico { width: 20px; height: 20px; border-radius: 50%; background: var(--gray-6); color: var(--gray-3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s, color .2s; }
.faq-ico svg { width: 10px; height: 10px; transition: transform .28s var(--ease); }
.faq-item.open .faq-ico svg { transform: rotate(180deg); }
.faq-item.open .faq-ico     { background: var(--green-lt); color: var(--green); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .32s var(--ease); }
.faq-inner { padding: 0 14px 12px; font-size: 13.5px; color: var(--gray-3); line-height: 1.68; }
.bottom-section { background: #F0F4F1; border-top: 1px solid var(--gray-5); padding-top: 18px; }
.social-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; padding: 0 20px; margin-bottom: 16px; }
.soc { width: 54px; height: 54px; background: var(--white); color: var(--black); border-radius: var(--r-md); border: 1.5px solid var(--gray-5); box-shadow: var(--sh-sm); display: flex; align-items: center; justify-content: center; transition: transform .25s var(--ease), border-color .2s, color .2s, background-color .2s, box-shadow .2s; }
.soc:hover { transform: translateY(-4px); border-color: var(--green); color: var(--white); background: var(--green); box-shadow: 0 6px 20px rgba(46,125,50,0.25); }
.soc svg   { width: 24px; height: 24px; }
.footer { padding: 0 20px 16px; text-align: center; }
.footer-logo { font-size: 14.5px; font-weight: 700; color: var(--black); letter-spacing: -.2px; margin-bottom: 5px; }
.footer-logo em { font-style: normal; color: var(--green); }
.footer-tag  { font-size: 13px; color: var(--gray-3); font-style: italic; }
.footer-copy { margin-top: 14px; font-size: 11px; color: var(--gray-4); }
.sr    { opacity: 0; transform: translateY(16px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.sr.in { opacity: 1; transform: none; }
@media (min-width: 640px) {
  body { padding: 24px; min-height: 100vh; }
  .page { max-width: 520px; border-radius: 28px; overflow: hidden; box-shadow: 0 16px 64px rgba(0,0,0,.09); background: var(--bg); }
  .hero-wave   { fill: var(--bg); }
  .hero-inner  { padding: 52px 32px 40px; }
  .hero h1     { font-size: 30px; }
  .divider     { margin: 0 28px 26px; }
  .cta-section { padding: 0 28px; }
  .sec         { padding: 0 28px; }
  .eco         { margin: 0 28px 28px; }
  .social-row  { padding: 0 28px; }
  .footer      { padding: 24px 28px 22px; }
  .about-img   { height: 300px; object-position: center 20%; }
  .rev-card    { min-width: 270px; }
}
@media (min-width: 1024px) {
  body { padding: 40px; display: flex; justify-content: center; align-items: flex-start; min-height: 100vh; }
  .page { max-width: 1200px; border-radius: 28px; overflow: hidden; box-shadow: 0 20px 80px rgba(0,0,0,.10); background: var(--bg); }
  .hero-inner  { flex-direction: row; align-items: center; text-align: left; padding: 48px 52px 42px; gap: 32px; }
  .avatar      { margin-bottom: 0; width: 124px; height: 124px; }
  .hero-text   { align-items: flex-start; text-align: left; flex: 1; }
  .sub-brand   { justify-content: flex-start; font-size: 13.5px; }
  .hero h1     { font-size: 40px; letter-spacing: -.8px; }
  .hero-tagline{ font-size: 16.5px; }
  .pills       { justify-content: flex-start; gap: 9px; }
  .pill        { font-size: 13.5px; padding: 7px 18px; }
  .stats-strip { display: flex; justify-content: space-around; align-items: center; padding: 20px 52px; border-top: 1px solid var(--gray-5); border-bottom: 1px solid var(--gray-5); margin: 0; border-radius: 0; box-shadow: none; background: none; }
  .stat-item   { text-align: center; }
  .stat-item::after { display: none; }
  .stat-num    { font-size: 24px; font-weight: 700; color: var(--green); display: block; letter-spacing: -.5px; }
  .stat-lbl    { font-size: 11px; color: var(--gray-4); margin-top: 2px; display: block; }
  .cta-section { padding: 20px 52px 0; margin-bottom: 0; }
  .cta-btn     { max-width: 520px; margin: 0 auto; }
  .cta-hint    { text-align: center; margin-bottom: 20px; font-size: 13.5px; }
  .divider     { margin: 0 52px 22px; }
  .sec         { padding: 0 52px; margin-bottom: 26px; }
  .eco         { margin: 0 52px 22px; }
  .about-body p { font-size: 16.5px; line-height: 1.8; }
  .rev-body { font-size: 15px; }
  .faq-btn span { font-size: 15.5px; }
  .faq-inner { font-size: 14.5px; }
  .eco-name { font-size: 17.5px; }
  .eco-desc { font-size: 14px; }
  .eco-icon { width: 56px; height: 56px; border-radius: 14px; }
  .about-card  { display: flex; flex-direction: row; }
  .about-img   { width: 330px; min-width: 330px; height: auto; min-height: 230px; flex-shrink: 0; }
  .photo-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; overflow-x: visible; margin: 0; padding: 0; }
  .photo-tile  { width: 100%; min-width: unset; max-width: none; flex-shrink: 1; scroll-snap-align: none; }
  .rev-scroll  { display: grid; grid-template-columns: repeat(3, 1fr); overflow: visible; scroll-snap-type: none; padding-bottom: 0; gap: 14px; }
  .rev-card    { width: 100%; min-width: unset; max-width: none; scroll-snap-align: none; }
  .swipe-hint  { display: none; }
  .faq-list    { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; align-items: start; }
  .bottom-section { display: flex; align-items: center; justify-content: space-between; padding: 24px 52px; border-top: 1px solid var(--gray-5); }
  .bottom-section .social-row { margin-bottom: 0; padding: 0; justify-content: flex-start; }
  .bottom-section .footer     { border-top: none; padding: 0; text-align: right; }
  .bottom-section .footer-copy{ margin-top: 6px; }
}
@media (min-width: 1280px) {
  .page         { max-width: 1320px; }
  .hero h1      { font-size: 42px; }
  .hero-inner   { padding: 68px 60px 60px; gap: 52px; }
  .stats-strip  { padding: 22px 60px; }
  .cta-section  { padding-left: 60px; padding-right: 60px; }
  .divider      { margin-left: 60px; margin-right: 60px; }
  .sec          { padding: 0 60px; }
  .eco          { margin-left: 60px; margin-right: 60px; }
  .bottom-section { padding: 28px 60px; }
}
.lightbox { display: flex; opacity: 0; pointer-events: none; transition: opacity .3s var(--ease); position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; overflow: hidden; background-color: rgba(0,0,0,0.85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); align-items: center; justify-content: center; flex-direction: column; }
.lightbox.show { opacity: 1; pointer-events: auto; }
.lightbox-content { display: block; max-width: 90%; max-height: 80vh; border-radius: var(--r-lg); box-shadow: 0 10px 40px rgba(0,0,0,0.5); object-fit: contain; transform: scale(.95); transition: transform .3s var(--ease); }
.lightbox.show .lightbox-content { transform: scale(1); }
.lightbox-caption { display: block; width: 90%; max-width: 600px; text-align: center; color: var(--white); margin-top: 14px; font-size: 14px; font-weight: 500; letter-spacing: -.1px; opacity: 0; transition: opacity .3s var(--ease); }
.lightbox.show .lightbox-caption { opacity: 1; }
.lightbox-close { position: absolute; top: 20px; right: 24px; color: var(--white); font-size: 38px; font-weight: 300; cursor: pointer; transition: opacity .2s; }
.lightbox-close:hover { opacity: .7; }
