/* =====================================================
   PURRFECT COMMUNITY — Global Stylesheet
   ===================================================== */

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

:root {
  --cream:   #FFF8F0;
  --orange:  #E07B54;
  --rose:    #D4A5A5;
  --sage:    #7FAD7C;
  --dark:    #3D2C2C;
  --mid:     #7A5C5C;
  --card-bg: #FFFFFF;
  --shadow:  0 6px 28px rgba(61, 44, 44, .10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.7;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
}

a { text-decoration: none; }

/* ── NAVBAR ── */
nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 248, 240, .92);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--rose);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--orange);
  text-decoration: none;
  letter-spacing: -.5px;
}
.logo span { color: var(--dark); }

.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  color: var(--dark);
  padding: 8px 16px;
  border-radius: 30px;
  transition: background .25s, color .25s;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--orange);
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}
.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 4px;
  transition: .3s;
}

/* ── PAGE HERO (shared) ── */
.page-hero {
  background: linear-gradient(135deg, #FFE4D6 0%, #FFD6C4 100%);
  padding: 72px 40px 60px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 12px;
}
.page-hero p {
  color: var(--mid);
  max-width: 500px;
  margin: 0 auto;
}

/* ── BUTTONS ── */
.btn {
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  display: inline-block;
  border: none;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(224, 123, 84, .3);
}
.btn-primary  { background: var(--orange); color: #fff; }
.btn-outline  { background: transparent; color: var(--orange); border: 2px solid var(--orange); }
.btn-light    { background: #fff; color: var(--orange); }
.btn-sage     { background: #fff; color: var(--sage); }

/* ── SECTION WRAPPER ── */
section { padding: 80px 40px; }

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--dark);
  margin-bottom: 10px;
}
.section-sub {
  color: var(--mid);
  margin-bottom: 48px;
  max-width: 480px;
}
.section-header { margin-bottom: 48px; }

/* ── CARDS FLEX ── */
.cards-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.card {
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  width: calc(50% - 12px);
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
}
.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(61, 44, 44, .15);
}

.card-img {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.card-body { padding: 20px 24px 24px; }
.card-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
  background: #FFEAE0;
  color: var(--orange);
}
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.card-text { color: var(--mid); font-size: .9rem; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: #fff;
  padding: 48px 40px 24px;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col { flex: 1; min-width: 180px; }
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--rose);
}
.footer-col p,
.footer-col a {
  color: rgba(255, 255, 255, .7);
  font-size: .9rem;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}
.footer-col a:hover { color: var(--orange); }

/* footer compact (single-row) */
footer.compact {
  padding: 40px 40px 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--orange);
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  font-size: .9rem;
}
.footer-links a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 20px;
  text-align: center;
  font-size: .85rem;
  color: rgba(255, 255, 255, .4);
}
footer.compact .footer-bottom {
  width: 100%;
  margin-top: 8px;
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  nav { padding: 0 20px; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 16px 20px;
    border-bottom: 2px solid var(--rose);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  section { padding: 60px 20px; }

  .card {
    width: 90%;
    margin: 0 auto;
  }

  .page-hero { padding: 60px 20px 48px; }

  footer { padding: 40px 20px 20px; }
  footer.compact { padding: 36px 20px 20px; }
}


/* =====================================================
   INDEX PAGE
   ===================================================== */

/* Hero */
.hero {
  text-align: center;
  padding: 100px 24px 80px;
  background: linear-gradient(160deg, #FFF1E6 0%, #FFE4D6 50%, #FFD6C4 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '🐾';
  position: absolute;
  font-size: 200px;
  opacity: .06;
  top: -40px;
  left: -40px;
  transform: rotate(-20deg);
}
.hero::after {
  content: '🐾';
  position: absolute;
  font-size: 160px;
  opacity: .06;
  bottom: -30px;
  right: -20px;
  transform: rotate(15deg);
}
.hero-badge {
  display: inline-block;
  background: var(--sage);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 18px;
}
.hero h1 em { color: var(--orange); font-style: normal; }
.hero p {
  max-width: 560px;
  margin: 0 auto 36px;
  color: var(--mid);
  font-size: 1.08rem;
}
.btn-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Stats bar */
.stats {
  background: var(--orange);
  padding: 40px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}
.stat-item { text-align: center; color: #fff; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
}
.stat-label { font-size: .9rem; opacity: .9; }

/* Tips */
.tips-bg { background: #FFF1E6; margin: 0; padding: 80px 40px; }
.tips-grid { display: flex; flex-wrap: wrap; gap: 24px; }
.tip-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 28px;
  width: calc(50% - 12px);
  border-left: 5px solid var(--orange);
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.tip-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 14px 36px rgba(61, 44, 44, .14);
}
.tip-icon { font-size: 2rem; margin-bottom: 12px; }
.tip-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.tip-card p { color: var(--mid); font-size: .9rem; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #5C3030 100%);
  border-radius: 24px;
  padding: 60px 48px;
  text-align: center;
  margin: 0 40px 80px;
  color: #fff;
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 14px;
}
.cta-banner p { opacity: .8; margin-bottom: 28px; }
.cta-banner .btn { background: var(--orange); color: #fff; }

@media (max-width: 700px) {
  .stats { padding: 30px 20px; }
  .tips-bg { padding: 60px 20px; }
  .tip-card { width: 90%; margin: 0 auto; }
  .cta-banner { margin: 0 20px 60px; padding: 40px 24px; }
}


/* =====================================================
   GALERI PAGE
   ===================================================== */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 36px 40px 0;
}
.filter-btn {
  padding: 8px 22px;
  border-radius: 30px;
  border: 2px solid var(--rose);
  background: transparent;
  color: var(--dark);
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: .2s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.cat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.cat-card {
  background: var(--card-bg);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
  width: calc(50% - 12px);
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
}
.cat-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 48px rgba(61, 44, 44, .16);
}
.cat-emoji-wrap {
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
}
.cat-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--orange);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}
.cat-info { padding: 20px 24px 26px; }
.cat-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.cat-origin { color: var(--sage); font-size: .85rem; font-weight: 700; margin-bottom: 10px; }
.cat-desc   { color: var(--mid);  font-size: .9rem;  margin-bottom: 14px; }

.cat-traits { display: flex; flex-wrap: wrap; gap: 6px; }
.trait {
  background: #FFEAE0;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
}

.adopt-section {
  background: var(--sage);
  padding: 64px 40px;
  text-align: center;
  color: #fff;
}
.adopt-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 14px;
}
.adopt-section p { opacity: .9; max-width: 500px; margin: 0 auto 28px; }

@media (max-width: 700px) {
  .filter-bar { padding: 24px 20px 0; }
  .cat-card { width: 90%; margin: 0 auto; }
  .adopt-section { padding: 48px 20px; }
}


/* =====================================================
   KOMUNITAS PAGE
   ===================================================== */

.content-wrap {
  display: flex;
  gap: 32px;
  padding: 60px 40px 80px;
  align-items: flex-start;
}
.main-col { flex: 1; }
.side-col  { width: 300px; flex-shrink: 0; }

/* Threads */
.thread-list { display: flex; flex-direction: column; gap: 16px; }
.thread-card {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 22px 26px;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
}
.thread-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 14px 36px rgba(61, 44, 44, .14);
}
.thread-top { display: flex; align-items: flex-start; gap: 14px; }
.thread-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.thread-meta { flex: 1; }
.thread-category {
  display: inline-block;
  font-size: .73rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  background: #FFEAE0;
  color: var(--orange);
  margin-bottom: 6px;
}
.thread-title  { font-weight: 700; font-size: 1.05rem; color: var(--dark); margin-bottom: 4px; }
.thread-author { font-size: .82rem; color: var(--mid); }
.thread-preview {
  color: var(--mid);
  font-size: .88rem;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #F0E8E0;
}
.thread-footer { display: flex; gap: 20px; margin-top: 12px; }
.thread-stat   { display: flex; align-items: center; gap: 5px; font-size: .82rem; color: var(--mid); }

/* Events */
.event-cards { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 24px; }
.event-card {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  width: calc(50% - 10px);
  transition: transform .3s, box-shadow .3s;
}
.event-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 14px 36px rgba(61, 44, 44, .14);
}
.event-date {
  background: var(--orange);
  color: #fff;
  border-radius: 12px;
  padding: 8px 14px;
  font-weight: 700;
  font-size: .85rem;
  display: inline-block;
  margin-bottom: 12px;
}
.event-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.event-desc { color: var(--mid); font-size: .88rem; margin-bottom: 12px; }
.event-tag {
  font-size: .78rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  background: #F0FFF4;
  color: var(--sage);
}

/* Sidebar */
.side-widget {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.side-widget h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--dark);
}
.member-item { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.member-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.member-name  { font-weight: 700; font-size: .9rem; }
.member-posts { font-size: .78rem; color: var(--mid); }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  padding: 5px 14px;
  border-radius: 20px;
  background: #FFEAE0;
  color: var(--orange);
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  transition: .2s;
}
.tag:hover { background: var(--orange); color: #fff; }

.join-card {
  background: linear-gradient(135deg, var(--orange), #C0604A);
  border-radius: 20px;
  padding: 28px;
  color: #fff;
  text-align: center;
}
.join-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.join-card p { opacity: .9; font-size: .88rem; margin-bottom: 18px; }

@media (max-width: 700px) {
  .content-wrap { flex-direction: column; padding: 36px 20px 60px; }
  .side-col { width: 100%; }
  .event-card { width: 90%; margin: 0 auto; }
}


/* =====================================================
   KONTAK PAGE
   ===================================================== */

.contact-wrap {
  display: flex;
  gap: 40px;
  padding: 64px 40px 80px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.info-col { width: 360px; flex-shrink: 0; display: flex; flex-direction: column; gap: 20px; }

.info-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform .3s, box-shadow .3s;
}
.info-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 14px 36px rgba(61, 44, 44, .14);
}
.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #FFEAE0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.info-title { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.info-text   { color: var(--mid); font-size: .9rem; line-height: 1.6; }

.social-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.social-card {
  flex: 1;
  min-width: 120px;
  background: var(--card-bg);
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--dark);
  transition: transform .3s, box-shadow .3s;
}
.social-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 12px 30px rgba(61, 44, 44, .14);
}
.social-icon { font-size: 2rem; margin-bottom: 8px; }
.social-name { font-weight: 700; font-size: .85rem; }

/* Form */
.form-col { flex: 1; min-width: 280px; }
.form-card {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  margin-bottom: 8px;
}
.form-sub { color: var(--mid); font-size: .93rem; margin-bottom: 30px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 8px;
  color: var(--dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid #EDD9CE;
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: .95rem;
  color: var(--dark);
  background: var(--cream);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(224, 123, 84, .12);
}
.form-group textarea { min-height: 140px; }
.form-row { display: flex; gap: 16px; }
.form-row .form-group { flex: 1; }

.btn-submit {
  width: 100%;
  padding: 15px;
  border-radius: 14px;
  background: var(--orange);
  color: #fff;
  border: none;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(224, 123, 84, .3);
}
.success-msg {
  display: none;
  background: #F0FFF4;
  border: 2px solid var(--sage);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  color: var(--sage);
  font-weight: 700;
  margin-top: 16px;
}

/* FAQ */
.faq-section { padding: 0 40px 80px; }
.faq-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 30px;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.faq-q {
  padding: 18px 24px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .2s;
}
.faq-q:hover { background: #FFF1E6; }
.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  color: var(--mid);
  font-size: .93rem;
  transition: max-height .3s, padding .3s;
}
.faq-item.open .faq-a { max-height: 200px; padding: 4px 24px 18px; }
.faq-arrow { transition: transform .3s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

@media (max-width: 700px) {
  .contact-wrap { padding: 40px 20px 60px; flex-direction: column; }
  .info-col { width: 100%; }
  .form-row { flex-direction: column; gap: 0; }
  .form-card { padding: 28px 20px; }
  .faq-section { padding: 0 20px 60px; }
}


/* =====================================================
   TENTANG PAGE
   ===================================================== */

.about-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #5C3030 100%);
  padding: 100px 40px 80px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '🐾';
  position: absolute;
  font-size: 200px;
  opacity: .05;
  top: -40px;
  left: -40px;
  transform: rotate(-20deg);
}
.about-hero::after {
  content: '🐱';
  position: absolute;
  font-size: 150px;
  opacity: .06;
  bottom: -30px;
  right: -20px;
}
.hero-tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.about-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 16px;
}
.about-hero p { max-width: 580px; margin: 0 auto; opacity: .85; font-size: 1.05rem; }

/* Story */
.story-wrap {
  display: flex;
  gap: 48px;
  padding: 80px 40px;
  align-items: center;
  flex-wrap: wrap;
}
.story-text { flex: 1; min-width: 280px; }
.story-text h2 { font-size: 2rem; margin-bottom: 16px; }
.story-text p { color: var(--mid); line-height: 1.85; margin-bottom: 14px; }
.highlight { color: var(--orange); font-weight: 700; }

.story-visual {
  width: 340px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #FFE4D6, #FFDDD0);
  border-radius: 32px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  box-shadow: 0 20px 60px rgba(224, 123, 84, .2);
}

/* Values */
.values-section { background: #FFF1E6; padding: 80px 40px; }
.values-flex { display: flex; flex-wrap: wrap; gap: 24px; }
.value-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 30px 28px;
  width: calc(50% - 12px);
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.value-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(61, 44, 44, .15);
}
.value-icon  { font-size: 2.2rem; margin-bottom: 14px; }
.value-title { font-size: 1.2rem; margin-bottom: 10px; }
.value-text  { color: var(--mid); font-size: .92rem; line-height: 1.7; }

/* Team */
.team-section { padding: 80px 40px; }
.team-grid { display: flex; flex-wrap: wrap; gap: 24px; }
.team-card {
  background: var(--card-bg);
  border-radius: 22px;
  padding: 32px 24px;
  width: calc(50% - 12px);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.team-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(61, 44, 44, .15);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  margin: 0 auto 16px;
}
.team-name { font-size: 1.2rem; margin-bottom: 4px; }
.team-role { color: var(--orange); font-weight: 700; font-size: .85rem; margin-bottom: 10px; }
.team-bio  { color: var(--mid); font-size: .88rem; }
.team-cat  { font-size: .8rem; margin-top: 10px; color: var(--mid); }
.team-cat span { color: var(--dark); font-weight: 600; }

/* Timeline */
.timeline-section {
  background: linear-gradient(135deg, var(--dark), #5C3030);
  padding: 80px 40px;
  color: #fff;
}
.timeline-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 48px;
  text-align: center;
}
.timeline { position: relative; max-width: 700px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, .2);
}
.tl-item { display: flex; gap: 24px; margin-bottom: 40px; align-items: flex-start; }
.tl-item:nth-child(even) { flex-direction: row-reverse; }
.tl-content {
  background: rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 20px 24px;
  flex: 1;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .1);
}
.tl-year  { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--orange); margin-bottom: 4px; }
.tl-event { font-weight: 700; margin-bottom: 6px; }
.tl-desc  { font-size: .88rem; opacity: .8; }
.tl-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 8px;
}

/* CTA section */
.cta-section {
  background: var(--orange);
  padding: 72px 40px;
  text-align: center;
  color: #fff;
}
.cta-section h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; margin-bottom: 14px; }
.cta-section p  { opacity: .9; max-width: 500px; margin: 0 auto 28px; }

@media (max-width: 700px) {
  .about-hero { padding: 72px 20px 60px; }
  .story-wrap { padding: 60px 20px; flex-direction: column; }
  .story-visual { width: 100%; max-width: 300px; margin: 0 auto; }
  .values-section { padding: 60px 20px; }
  .value-card { width: 90%; margin: 0 auto; }
  .team-section { padding: 60px 20px; }
  .team-card { width: 90%; margin: 0 auto; }
  .timeline-section { padding: 60px 20px; }
  .timeline::before { display: none; }
  .tl-item, .tl-item:nth-child(even) { flex-direction: column; }
  .cta-section { padding: 60px 20px; }
}
