

.about-page {
overflow: hidden;
}
.about-hero {
padding-top: 50px;
padding-bottom: 60px;
}
.about-hero-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
}
.about-hero-content {
max-width: 600px;
}
.about-title {
font-size: 3.5rem;
line-height: 1.1;
margin-bottom: 25px;
color: var(--text-dark);
}
.about-desc {
font-size: 1.15rem;
line-height: 1.8;
color: var(--text-dark);
opacity: 0.85;
margin-bottom: 40px;
}
.founder-card {
display: flex;
align-items: center;
gap: 20px;
background: #fff;
padding: 20px;
border-radius: 25px;
border: 1px solid rgba(0,0,0,0.04);
box-shadow: 0 15px 40px rgba(44, 54, 47, 0.05);
transition: transform 0.3s ease;
}
.founder-card:hover {
transform: translateY(-5px);
}
.founder-avatar {
width: 90px;
height: 90px;
border-radius: 50%;
overflow: hidden;
border: 3px solid var(--ui-light);
flex-shrink: 0;
}
.founder-avatar img {
width: 100%;
height: 100%;
object-fit: cover;
}
.founder-info {
display: flex;
flex-direction: column;
}
.founder-info strong {
font-family: var(--font-head);
font-size: 1.3rem;
color: var(--text-dark);
line-height: 1.2;
}
.founder-role {
font-size: 0.85rem;
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 700;
color: var(--green-fresh);
margin-bottom: 8px;
margin-top: 3px;
}
.founder-bio {
font-size: 0.9rem;
color: var(--text-dark);
opacity: 0.7;
margin: 0;
line-height: 1.4;
}
.about-hero-visual {
position: relative;
height: 600px;
display: flex;
align-items: center;
justify-content: center;
}
.visual-blob {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 80%;
height: 90%;
background: rgba(76, 133, 96, 0.08);
border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
z-index: 0;
animation: blob-morph 8s ease-in-out infinite alternate;
}
@keyframes blob-morph {
0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
100% { border-radius: 60% 40% 30% 70% / 50% 30% 60% 40%; }
}
.organic-img-shape {
position: relative;
z-index: 1;
width: 85%;
height: 85%;
object-fit: cover;
border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
box-shadow: 0 20px 50px rgba(44, 54, 47, 0.1);
}
.img-sub {
position: absolute;
bottom: 5%;
left: -10%;
width: 200px;
height: 200px;
object-fit: cover;
border-radius: 50%;
border: 10px solid var(--bg-color);
z-index: 2;
box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.hero-badge-float {
position: absolute;
top: 10%;
right: 0%;
background: var(--green-fresh);
color: #fff;
width: 110px;
height: 110px;
border-radius: 50%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
z-index: 2;
box-shadow: 0 10px 25px rgba(76, 133, 96, 0.3);
animation: float-small 4s ease-in-out infinite;
}
.hero-badge-float i {
font-size: 1.5rem;
margin-bottom: 5px;
}
.hero-badge-float span {
font-size: 0.85rem;
font-weight: 700;
line-height: 1.2;
text-transform: uppercase;
letter-spacing: 1px;
}
@media (max-width: 1024px) {
.about-hero-grid {
grid-template-columns: 1fr;
gap: 50px;
text-align: center;
}
.about-hero-content {
margin: 0 auto;
}
.founder-card {
text-align: left;
max-width: 500px;
margin: 0 auto;
}
.about-hero-visual {
height: 500px;
order: -1;
}
.img-sub {
left: 0;
width: 150px;
height: 150px;
}
.hero-badge-float {
right: 10%;
}
}
@media (max-width: 600px) {
.about-title {
font-size: 2.6rem;
}
.about-hero-visual {
height: 400px;
}
.founder-card {
flex-direction: column;
text-align: center;
}
.founder-role {
margin-bottom: 15px;
}
}
.history-grid {
display: grid;
grid-template-columns: 0.9fr 1.1fr;
gap: 80px;
align-items: center;
}
.history-visual {
position: relative;
border-radius: 40px;
padding: 20px 0 0 20px;
}
.history-visual::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 90%;
height: 90%;
border: 2px dashed var(--green-fresh);
border-radius: 40px;
z-index: 0;
opacity: 0.5;
}
.history-img {
position: relative;
z-index: 1;
width: 100%;
height: 700px;
object-fit: cover;
border-radius: 40px;
box-shadow: -15px 20px 50px rgba(44, 54, 47, 0.1);
}
.history-year-badge {
position: absolute;
bottom: 40px;
right: -30px;
background: var(--bg-color);
padding: 25px 35px;
border-radius: 20px;
box-shadow: 0 15px 40px rgba(0,0,0,0.08);
z-index: 2;
text-align: center;
border: 1px solid rgba(0,0,0,0.03);
}
.history-year-badge span {
display: block;
font-size: 0.85rem;
text-transform: uppercase;
letter-spacing: 2px;
color: #888;
margin-bottom: 5px;
}
.history-year-badge strong {
display: block;
font-family: var(--font-head);
font-size: 1.8rem;
color: var(--green-fresh);
line-height: 1;
}
.history-title {
font-size: 2.8rem;
line-height: 1.2;
margin-bottom: 30px;
}
.history-text {
display: flex;
flex-direction: column;
gap: 15px;
margin-bottom: 40px;
}
.history-text p {
font-size: 1.1rem;
line-height: 1.8;
color: var(--text-dark);
opacity: 0.85;
}
.history-text .highlight-text {
font-family: var(--font-head);
font-size: 1.3rem;
color: var(--green-fresh);
opacity: 1;
margin-top: 10px;
padding-left: 20px;
border-left: 3px solid var(--berry-accent);
}
.history-footer {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 30px;
padding-top: 30px;
border-top: 1px solid rgba(0,0,0,0.06);
}
.history-signature {
display: flex;
flex-direction: column;
}
.sig-name {
font-family: var(--font-head);
font-size: 2.8rem;
color: var(--text-dark);
line-height: 1;
}
.sig-title {
font-size: 0.85rem;
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 700;
color: #888;
margin-top: 5px;
padding-left: 10px;
}
.history-btn {
background: var(--bg-color);
color: var(--text-dark);
border: 2px solid var(--text-dark);
}
.history-btn:hover {
background: var(--text-dark);
color: #fff;
}
@media (max-width: 1024px) {
.history-grid {
grid-template-columns: 1fr;
gap: 50px;
}
.history-visual {
max-width: 500px;
margin: 0 auto;
}
.history-img {
height: 500px;
}
.history-year-badge {
right: -10px;
bottom: 20px;
}
}
@media (max-width: 600px) {
.history-title {
font-size: 2.2rem;
}
.history-footer {
flex-direction: column;
align-items: flex-start;
gap: 20px;
}
.history-btn {
width: 100%;
text-align: center;
justify-content: center;
}
}
.lio-wrapper {
background: var(--text-dark);
color: #fff;
border-radius: 40px;
padding: 60px;
box-shadow: 0 30px 60px rgba(44, 54, 47, 0.15);
position: relative;
overflow: hidden;
}
.lio-wrapper::before {
content: '';
position: absolute;
top: -50%;
left: -10%;
width: 600px;
height: 600px;
background: var(--green-fresh);
border-radius: 50%;
opacity: 0.2;
filter: blur(80px);
z-index: 0;
}
.lio-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
position: relative;
z-index: 2;
}
.lio-title {
font-size: 3.2rem;
color: #fff;
margin-bottom: 25px;
line-height: 1.1;
}
.lio-desc {
font-size: 1.1rem;
line-height: 1.8;
color: var(--ui-light);
opacity: 0.9;
margin-bottom: 15px;
}
.lio-benefits-box {
margin-top: 35px;
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.1);
padding: 35px 40px;
border-radius: 25px;
}
.benefits-title {
color: #fff;
font-family: var(--font-body);
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1.5px;
font-size: 0.9rem;
margin-bottom: 25px;
}
.lio-checklist {
display: flex;
flex-direction: column;
gap: 15px;
}
.lio-checklist li {
display: flex;
align-items: center;
gap: 15px;
font-size: 1.05rem;
font-weight: 500;
color: #fff;
}
.check-icon-wrap {
width: 28px;
height: 28px;
background: var(--berry-accent);
color: #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.75rem;
flex-shrink: 0;
box-shadow: 0 5px 15px rgba(200, 75, 83, 0.4);
}
.lio-visual-inner {
position: relative;
border-radius: 30px;
padding: 20px;
}
.lio-visual-inner::after {
content: '';
position: absolute;
inset: 0;
border: 2px solid rgba(255,255,255,0.2);
border-radius: 30px;
transform: rotate(3deg);
z-index: 0;
transition: 0.5s ease;
}
.lio-wrapper:hover .lio-visual-inner::after {
transform: rotate(0deg);
}
.lio-img {
width: 100%;
height: 600px;
object-fit: cover;
border-radius: 20px;
position: relative;
z-index: 1;
box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.ice-crystal {
position: absolute;
color: rgba(255,255,255,0.8);
font-size: 2rem;
z-index: 2;
animation: float-snow 6s ease-in-out infinite;
filter: drop-shadow(0 0 10px rgba(255,255,255,0.5));
}
.crystal-1 { top: 10%; right: -20px; font-size: 3rem; animation-delay: 0s; }
.crystal-2 { bottom: 20%; left: -30px; font-size: 2.2rem; animation-delay: 2s; }
.crystal-3 { top: 40%; left: 10%; font-size: 1.5rem; opacity: 0.5; animation-delay: 4s; }
@keyframes float-snow {
0% { transform: translateY(0) rotate(0deg); }
50% { transform: translateY(-20px) rotate(15deg); }
100% { transform: translateY(0) rotate(0deg); }
}
@media (max-width: 1024px) {
.lio-wrapper {
padding: 50px 30px;
}
.lio-grid {
grid-template-columns: 1fr;
gap: 50px;
}
.lio-visual-inner {
max-width: 500px;
margin: 0 auto;
}
.lio-img {
height: 450px;
}
}
@media (max-width: 600px) {
.lio-wrapper {
padding: 40px 20px;
}
.lio-title {
font-size: 2.4rem;
}
.lio-benefits-box {
padding: 25px 20px;
}
.lio-checklist li {
font-size: 0.95rem;
}
}
.manu-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
margin-top: 50px;
}
.manu-accordion {
display: flex;
flex-direction: column;
gap: 20px;
}
.manu-item {
background: #fff;
border: 1px solid rgba(0,0,0,0.05);
border-radius: 25px;
padding: 25px 30px;
cursor: pointer;
transition: all 0.4s ease;
box-shadow: 0 10px 30px rgba(44, 54, 47, 0.02);
}
.manu-item:hover {
border-color: rgba(76, 133, 96, 0.2);
}
.manu-item-header {
display: flex;
justify-content: space-between;
align-items: center;
}
.manu-item-header h3 {
font-size: 1.6rem;
margin: 0;
transition: color 0.3s;
}
.manu-item-header i {
font-size: 1.2rem;
color: var(--green-fresh);
transition: transform 0.4s ease;
}
.manu-item-body {
max-height: 0;
overflow: hidden;
opacity: 0;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.manu-item-body p {
font-size: 1.05rem;
line-height: 1.7;
color: var(--text-dark);
opacity: 0.8;
margin-top: 20px;
margin-bottom: 20px;
}
.manu-link {
display: inline-flex;
align-items: center;
gap: 10px;
color: var(--berry-accent);
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
font-size: 0.85rem;
padding-bottom: 5px;
border-bottom: 2px solid transparent;
}
.manu-link:hover {
border-color: var(--berry-accent);
gap: 15px;
}
.manu-item.active {
border-color: var(--green-fresh);
box-shadow: 0 20px 40px rgba(76, 133, 96, 0.08);
}
.manu-item.active .manu-item-header h3 {
color: var(--green-fresh);
}
.manu-item.active .manu-item-header i {
transform: rotate(-180deg);
}
.manu-item.active .manu-item-body {
max-height: 300px;
opacity: 1;
}
.manu-visual {
position: relative;
padding-right: 20px;
}
.manu-image-container {
position: relative;
width: 100%;
aspect-ratio: 4/5;
border-radius: 40px;
overflow: hidden;
z-index: 2;
box-shadow: 0 20px 50px rgba(44, 54, 47, 0.1);
}
.manu-img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0;
transform: scale(1.05);
transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.manu-img.active {
opacity: 1;
transform: scale(1);
}
.manu-shape {
position: absolute;
bottom: -30px;
right: -20px;
width: 70%;
height: 70%;
background: var(--text-dark);
border-radius: 40px 100px 40px 40px;
z-index: 1;
}
@media (max-width: 1024px) {
.manu-grid {
grid-template-columns: 1fr;
gap: 50px;
}
.manu-visual {
order: -1;
max-width: 500px;
margin: 0 auto;
}
.manu-image-container {
aspect-ratio: 1/1;
}
}
@media (max-width: 600px) {
.manu-item-header h3 {
font-size: 1.3rem;
}
.manu-item {
padding: 20px 20px;
}
}