/* =============================================
   ABOUT PAGE — about.css
   ============================================= */

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content:'';
  position:absolute; inset:0;
  background: radial-gradient(circle at 30% 50%, rgba(26,115,232,0.25) 0%, transparent 60%),
              radial-gradient(circle at 80% 30%, rgba(255,107,53,0.15) 0%, transparent 50%);
}
.page-hero-content { position:relative; z-index:1; }
.page-hero .section-tag { background:rgba(255,255,255,0.12); color:#fff; border-color:rgba(255,255,255,0.2); }
.page-hero h1 {
  font-family:var(--font-display); font-size:clamp(2rem,5vw,3.2rem);
  font-weight:800; color:#fff; margin:14px 0 12px;
}
.page-hero p { color:rgba(255,255,255,0.75); font-size:1.1rem; }
.hero-wave { line-height:0; margin-top:-2px; }
.hero-wave svg { display:block; width:100%; height:60px; }

/* CLASSIC PHOTO STRIP */
.classic-strip-section {
  position: relative;
  margin-top: -24px;
  padding: 0 0 36px;
  z-index: 2;
}

.classic-strip-shell {
  background: linear-gradient(180deg, #fdfaf3 0%, #f6f0e3 100%);
  border: 1px solid rgba(120, 98, 58, 0.14);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(22, 33, 62, 0.1);
  padding: 34px;
}

.classic-strip-shell .section-header {
  margin-bottom: 34px;
}

.classic-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.classic-photo-card {
  background: #fffdf8;
  border: 1px solid #e4dac4;
  border-radius: 22px;
  padding: 14px;
  box-shadow: 0 14px 30px rgba(90, 77, 49, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.classic-photo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 34px rgba(90, 77, 49, 0.18);
}

.classic-photo-frame {
  background: linear-gradient(180deg, #faf4e7 0%, #f3e7d1 100%);
  border: 1px solid #ddcfb5;
  border-radius: 16px;
  padding: 10px;
}

.classic-photo-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(120, 98, 58, 0.12);
}

.classic-photo-caption {
  text-align: center;
  padding: 18px 10px 8px;
}

.classic-photo-label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 14px;
  border-radius: 999px;
  background: #efe3cb;
  color: #7a5b2b;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.classic-photo-caption h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}

.classic-photo-caption p {
  color: var(--text-light);
  font-size: 0.93rem;
}

/* STORY */
.story-section { background:#f0f4ff; }
.story-grid {
  display:grid; grid-template-columns:1fr 1.2fr; gap:60px; align-items:center;
}
.story-visual {
  position:relative; padding:40px 0;
  display:flex; justify-content:center;
}
.store-card {
  background:#fff; border-radius:24px; padding:36px 32px;
  box-shadow: 0 12px 40px rgba(26,115,232,0.15);
  text-align:center; border:3px solid #e8f0fe;
  width:280px;
}
.store-icon { font-size:4rem; margin-bottom:14px; }
.store-card h3 { font-family:var(--font-display); font-size:1.4rem; font-weight:800; color:var(--text); margin-bottom:6px; }
.store-card p  { color:var(--text-light); font-size:0.95rem; margin-bottom:16px; }
.store-tags { display:flex; flex-wrap:wrap; gap:8px; justify-content:center; }
.store-tags span {
  background:#e8f0fe; color:var(--primary); border-radius:50px;
  padding:5px 14px; font-size:0.82rem; font-weight:700;
}
.floating-badge {
  position:absolute;
  background:#fff; border-radius:50px;
  padding:9px 18px; font-size:0.88rem; font-weight:700;
  box-shadow:0 6px 20px rgba(0,0,0,0.12);
  white-space:nowrap; animation: badgeBob 4s ease-in-out infinite;
}
.badge1 { top:50px; right:10px; color:var(--primary); border:2px solid #e8f0fe; animation-delay:0s; }
.badge2 { top:50%; left:0; transform:translateY(-50%); color:var(--green); border:2px solid #d5f5e3; animation-delay:1.2s; }
.badge3 { bottom:30px; right:10px; color:var(--secondary); border:2px solid #fde8df; animation-delay:0.6s; }
@keyframes badgeBob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.badge2 { animation: badgeBob2 4s ease-in-out 1.2s infinite; }
@keyframes badgeBob2 { 0%,100%{transform:translateY(-50%)} 50%{transform:translateY(calc(-50% - 8px))} }

.story-text .section-tag { margin-bottom:12px; }
.story-text .section-title { text-align:left; margin-bottom:20px; }
.story-text p { color:var(--text-light); margin-bottom:14px; line-height:1.85; }

/* VALUES */
.values-section { background:#fff; }
.values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.value-card {
  background:var(--bg); border-radius:var(--radius); padding:32px 26px;
  border:2px solid transparent; transition:all 0.3s; position:relative; overflow:hidden;
}
.value-card:hover { border-color:var(--primary); background:#fff; transform:translateY(-6px); box-shadow:var(--card-shadow); }
.value-num {
  position:absolute; top:16px; right:20px;
  font-family:var(--font-display); font-size:2.8rem; font-weight:800;
  color:var(--primary); opacity:0.08; line-height:1;
}
.value-icon { font-size:2.4rem; margin-bottom:14px; }
.value-card h3 { font-family:var(--font-display); font-size:1.15rem; font-weight:800; margin-bottom:8px; color:var(--text); }
.value-card p  { color:var(--text-light); font-size:0.93rem; }

/* SHOPS */
.shops-section { background:var(--bg); }
.shops-grid { display:grid; grid-template-columns:1fr 1fr; gap:28px; }
.shop-card {
  background:#fff; border-radius:var(--radius); padding:36px 32px;
  box-shadow:var(--card-shadow); border:2px solid #e8f0fe;
  transition:all 0.3s; text-align:center; position:relative;
}
.shop-card:hover { transform:translateY(-6px); border-color:var(--primary); }
.shop-badge {
  position:absolute; top:18px; right:18px;
  background:var(--primary); color:#fff;
  font-size:0.78rem; font-weight:700; padding:5px 14px; border-radius:50px;
}
.shop-emoji { font-size:3.5rem; margin-bottom:14px; }
.shop-card h3 { font-family:var(--font-display); font-size:1.3rem; font-weight:800; margin-bottom:12px; color:var(--text); }
.shop-card p  { color:var(--text-light); line-height:1.9; margin-bottom:18px; }
.shop-tel { display:block; font-size:1.25rem; font-weight:800; color:var(--primary); text-decoration:none; margin-bottom:16px; }

/* TEAM */
.team-section { background:#fff; }
.team-features { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.tf-item {
  background:var(--bg); border-radius:var(--radius); padding:32px 24px; text-align:center;
  transition:all 0.3s; border:2px solid transparent;
}
.tf-item:hover { border-color:var(--primary); background:#fff; transform:translateY(-5px); box-shadow:var(--card-shadow); }
.tf-icon { font-size:2.6rem; margin-bottom:14px; }
.tf-item h4 { font-family:var(--font-display); font-size:1.15rem; font-weight:800; margin-bottom:10px; color:var(--text); }
.tf-item p  { color:var(--text-light); font-size:0.93rem; }

/* ABOUT CTA */
.about-cta { background:linear-gradient(135deg,var(--primary),#4285f4); padding:80px 0; }
.cta-box { text-align:center; }
.cta-box h2 { font-family:var(--font-display); font-size:2rem; font-weight:800; color:#fff; margin-bottom:12px; }
.cta-box p  { color:rgba(255,255,255,0.82); font-size:1.05rem; }

/* RESPONSIVE */
@media (max-width:900px) {
  .classic-strip-shell {
    padding: 28px 24px;
  }
  .classic-strip-grid {
    grid-template-columns: 1fr 1fr;
  }
  .story-grid   { grid-template-columns:1fr; }
  .story-visual { display:none; }
  .values-grid  { grid-template-columns:1fr 1fr; }
  .shops-grid   { grid-template-columns:1fr; }
  .team-features{ grid-template-columns:1fr 1fr; }
}
@media (max-width:600px) {
  .classic-strip-section {
    margin-top: -14px;
    padding-bottom: 20px;
  }
  .classic-strip-shell {
    padding: 22px 18px;
    border-radius: 22px;
  }
  .classic-strip-grid {
    grid-template-columns: 1fr;
  }
  .values-grid  { grid-template-columns:1fr; }
  .team-features{ grid-template-columns:1fr; }
}
