/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ===== BASE ===== */
:root {
  --cream:   #F2EDE3;
  --olive:   #5B8140;
  --olive-dk:#405B2F;
  --footer:  #405B2F;
  --sage-bg: #EBF0E4;
  --card-bg: #F6F3EE;
  --text:    #1A1A1A;
  --muted:   #666;
  --light:   #999;
  --border:  #D8D2C8;
  --white:   #ffffff;
}

body {
  font-family: 'Figtree', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: #fff;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 8px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-size: 25px;
  font-weight: 700;
  color: var(--olive);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav__links a:hover { color: var(--olive); }

/* ===== HERO ===== */
.hero {
  background: var(--white);
  padding: 72px 0 96px;
  min-height: 880px;
  display: flex;
  align-items: center;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--olive);
  background: rgba(78, 94, 53, 0.13);
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 22px;
}

.hero__title {
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 18px;
}

.hero__sub {
  font-size: 18px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 24px;
}

.cta-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 16px;
  font-family: inherit;
  font-weight: 600;
  color: #fff;
  background: var(--olive);
  border-radius: 16px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.cta-btn:hover {
  background: var(--olive-dk);
  transform: translateY(-1px);
}

/* ===== HERO MOCK IMAGE ===== */
.hero__right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-mock-img {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.18));
}

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--cream);
  padding: 40px 0;
}

.stats-strip__inner {
  display: flex;
  justify-content: center;
  gap: 96px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.stat-num {
  font-size: 52px;
  font-weight: 700;
  color: var(--olive);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
}

/* ===== MID CTA ===== */
.mid-cta {
  background: #D8E5CC;
  padding: 60px 0;
}

.mid-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.mid-cta__title {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.mid-cta__sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 8px;
}

/* ===== FEATURES ===== */
.features {
  padding: 104px 0;
  background: #fff;
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--light);
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.section-title {
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 600;
  color: var(--text);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 15px;
  color: var(--muted);
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
  line-height: 1.75;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 32px;
  overflow: hidden;
}

.feature-card.sage { background: var(--sage-bg); }

.card-eyebrow {
  font-size: 14px;
  color: var(--light);
  margin-bottom: 8px;
  font-weight: 400;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}

.card-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* --- mock UI shared --- */
.mock-ui {
  margin-top: 4px;
}

.feature-img {
  width: 90%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.mock-inner {
  background: #fff;
  border-radius: 12px;
  padding: 14px;
}

.mock-bm { font-size: 12px; }

/* --- filter card --- */
.mock-filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.ftag {
  font-size: 12px;
  padding: 4px 11px;
  border-radius: 99px;
  background: #EEECEA;
  color: #777;
}

.ftag.on {
  background: #E6EDDA;
  color: var(--olive);
}

.mock-filter-tags.sm .ftag { font-size: 11px; }

.mock-cafe-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #EAE8E4;
}

.mock-cafe-img {
  height: 88px;
  background: linear-gradient(135deg, #C8BFB0, #B8C4A4);
}

.mock-cafe-body { padding: 10px 12px; }

.mock-cafe-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2px;
}

.mock-cafe-name {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
}

.mock-cafe-meta {
  font-size: 11px;
  color: var(--light);
  margin-bottom: 8px;
}

/* --- recommend card --- */
.mock-row-label {
  font-size: 11.5px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.mock-row-label.sm {
  font-size: 10.5px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 12px;
  margin-bottom: 8px;
}

.mock-rec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mock-rec-card {
  background: #F6F3EE;
  border-radius: 10px;
  overflow: hidden;
}

.mock-rec-img {
  height: 60px;
}

.mock-rec-img.r1 { background: linear-gradient(135deg, #C8BFB0, #B4B0A4); }
.mock-rec-img.r2 { background: linear-gradient(135deg, #B8C8A4, #A4B490); }

.mock-rec-info { padding: 8px; }

.mock-rec-name {
  font-size: 10px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.mock-rec-area {
  font-size: 10px;
  color: var(--light);
  margin-bottom: 4px;
}

.mock-chip-row { display: flex; flex-wrap: wrap; gap: 3px; }

.rchip {
  font-size: 9px;
  background: var(--sage-bg);
  color: var(--olive);
  padding: 2px 6px;
  border-radius: 8px;
}

.mock-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.mock-wide-img {
  height: 48px;
  border-radius: 8px;
}
.mock-wide-img.w1 { background: linear-gradient(135deg, #C8BFB0, #B0A898); }
.mock-wide-img.w2 { background: linear-gradient(135deg, #A8C0A0, #90A888); }

/* --- detail card --- */
.mock-detail-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3px;
}

.mock-detail-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.mock-share {
  font-size: 13px;
  color: var(--light);
}

.mock-detail-meta {
  font-size: 11px;
  color: var(--light);
  margin-bottom: 10px;
}

.mock-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 8px;
}

.dtag {
  font-size: 11px;
  background: #EEECEA;
  color: #555;
  padding: 3px 10px;
  border-radius: 99px;
}

.detail-usage-badge {
  display: inline-block;
  font-size: 11px;
  background: #E6EDDA;
  color: var(--olive);
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 10px;
}

.detail-info-line {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 8px;
}

.detail-desc-text {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 10px;
}

.mock-detail-img {
  height: 68px;
  background: linear-gradient(135deg, #C8BFB0, #B8C4A4);
  border-radius: 8px;
}

/* --- list card --- */
.mock-list { display: flex; flex-direction: column; gap: 10px; }

.mock-list-card {
  display: flex;
  gap: 10px;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  border: 1px solid #EAE8E4;
}

.mock-list-img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  flex-shrink: 0;
}
.mock-list-img.l1 { background: linear-gradient(135deg, #C8BFB0, #A8A090); }
.mock-list-img.l2 { background: linear-gradient(135deg, #B0C4A0, #90A880); }

.mock-list-body { flex: 1; min-width: 0; }

.mock-list-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2px;
}

.mock-list-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.mock-list-area {
  font-size: 11px;
  color: var(--light);
  margin-bottom: 5px;
}

.lchip {
  font-size: 10px;
  background: #EEECEA;
  color: #555;
  padding: 2px 8px;
  border-radius: 8px;
}

.badge-visited {
  display: inline-block;
  margin-top: 6px;
  font-size: 11px;
  background: #E6EDDA;
  color: var(--olive);
  padding: 2px 10px;
  border-radius: 8px;
}

.badge-wishlist {
  display: inline-block;
  margin-top: 6px;
  font-size: 11px;
  border: 1px solid #DDD;
  color: #888;
  padding: 2px 10px;
  border-radius: 8px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 104px 0;
  background: #fff;
  border-top: 1px solid #EEE9E2;
}

.testimonials__inner {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 64px;
  align-items: start;
}

.testimonials__left h2 {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.testimonials__left p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

.t-top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.t-card {
  background: var(--card-bg);
  border-radius: 14px;
  padding: 20px;
}

.t-quote {
  font-size: 14px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 16px;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.t-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #C9D6B2;
  flex-shrink: 0;
}

.t-info {
  display: flex;
  flex-direction: column;
}

.t-info strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.t-info span {
  font-size: 12px;
  color: var(--light);
}

/* ===== FAQ ===== */
.faq {
  padding: 104px 0;
  background: #fff;
  border-top: 1px solid #EEE9E2;
}

.faq__inner {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 64px;
  align-items: start;
}

.faq__heading {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.025em;
  position: sticky;
  top: 88px;
}

.faq__list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid #EAE8E3;
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--olive); }

.faq-icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--olive);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s;
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}

.faq-item.open .faq-a {
  grid-template-rows: 1fr;
}

.faq-a-inner {
  overflow: hidden;
}

.faq-a p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  padding-bottom: 22px;
}

/* ===== FAQ POLL ===== */
.faq-poll {
  margin-bottom: 22px;
  padding: 16px 18px;
  background: #F3FAF0;
  border: 0.5px solid var(--olive);
  border-radius: 12px;
}

.faq-poll .faq-poll__q {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  padding-bottom: 10px !important;
  margin-bottom: 0;
}

.faq-poll__btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.faq-poll-btn {
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 99px;
  border: 1px solid var(--text);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}

.faq-poll-btn:hover,
.faq-poll-btn:focus-visible {
  background: var(--text);
  color: #fff;
  outline: none;
}

.faq-poll__thanks {
  font-size: 13px;
  color: var(--olive);
  font-weight: 500;
  padding-bottom: 0 !important;
  margin-top: 10px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--footer);
  padding: 96px 0 48px;
  text-align: center;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__question {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
}

.footer__email {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0;
}

.footer__email a {
  color: #fff;
  text-decoration: none;
}

.footer__email a:hover { text-decoration: underline; }

.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin-top: 64px;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__right {
    order: 2;
  }

  .hero__title { font-size: clamp(26px, 5vw, 38px); }

  .features-grid { grid-template-columns: 1fr; }

  .faq__inner { grid-template-columns: 1fr; gap: 32px; }
  .faq__heading { position: static; }

  .testimonials__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .container { padding: 0 20px; }

  .nav { padding: 14px 0; }
  .nav__links { gap: 20px; }
  .nav__links a { font-size: 13px; }

  .hero { padding: 40px 0 40px; min-height: unset; }
  .hero__title { font-size: 26px; }
  .hero__sub { font-size: 15px; }

  .stats-strip__inner { gap: 40px; }
  .stat-num { font-size: 36px; }
  .stat-label { font-size: 13px; }

  .hero-mock-img { max-width: 280px; }

  .features { padding: 72px 0; }
  .section-sub { margin-bottom: 44px; }

  .feature-card { padding: 24px; }
  .feature-card h3 { font-size: 18px; }

  .testimonials { padding: 72px 0; }

  .t-top-row { grid-template-columns: 1fr; }

  .footer { padding: 72px 0 40px; }
  .footer__email { font-size: 18px; }
  .footer__copy { margin-top: 48px; }
}

/* Very small */
@media (max-width: 380px) {
  .hero__title { font-size: 23px; }
  .hero-mock-img { max-width: 240px; }
}

/* ===== SCROLL ANIMATIONS ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-animate] { opacity: 1; transform: none; transition: none; }
}
