:root {
  --bg: #f4f1eb;
  --surface: #ffffff;
  --primary: #3b6b4a;
  --primary-dark: #2b5138;
  --primary-light: #5a8e6d;
  --accent: #c86040;
  --accent-light: #e8946d;
  --warm: #ede4d5;
  --warm-dark: #d4c5ae;
  --text: #1d1d1d;
  --text-muted: #686868;
  --border: #ddd4c5;
  --white: #ffffff;
  --font-head: 'Fraunces', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --shadow: 0 4px 20px rgba(0,0,0,0.07);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 15px; scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; }
input, textarea, select { font-family: var(--font-body); }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--text); line-height: 1.2; margin-bottom: 10px; }
.section-header p { font-size: 0.92rem; color: var(--text-muted); max-width: 520px; margin: 0 auto; }
.section-label { display: inline-block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--primary); background: rgba(59,107,74,0.1); padding: 4px 12px; border-radius: 20px; margin-bottom: 12px; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 24px; font-size: 0.82rem; font-weight: 600; border-radius: var(--radius); border: 2px solid transparent; transition: all var(--transition); white-space: nowrap; }
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-accent { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-accent:hover { background: #b05030; border-color: #b05030; }
.btn-lg { padding: 13px 32px; font-size: 0.9rem; }

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

.card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--border); transition: transform var(--transition), box-shadow var(--transition); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

.site-header { background: var(--white); border-bottom: 1px solid var(--border); position: relative; z-index: 100; }
.header-inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.header-brand-row { display: flex; align-items: center; justify-content: center; padding: 18px 0 10px; position: relative; }
.brand-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--warm-dark)); }
.brand-line.right { background: linear-gradient(90deg, var(--warm-dark), transparent); }
.brand-link { font-family: var(--font-head); font-size: 1.35rem; font-weight: 700; color: var(--primary); letter-spacing: 0.02em; padding: 0 24px; white-space: nowrap; transition: color var(--transition); }
.brand-link:hover { color: var(--primary-dark); }
.nav-toggle { display: none; position: absolute; right: 0; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--primary); font-size: 1.15rem; padding: 8px; border-radius: var(--radius); transition: background var(--transition); }
.nav-toggle:hover { background: var(--warm); }
.header-nav-row { border-top: 1px solid var(--warm); }
.nav-list { display: flex; justify-content: center; align-items: center; }
.nav-list li a { display: block; padding: 10px 18px; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text); transition: color var(--transition); position: relative; }
.nav-list li a::after { content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px; background: var(--primary); transform: translateX(-50%); transition: width var(--transition); }
.nav-list li a:hover::after, .nav-list li a.active::after { width: 60%; }
.nav-list li a:hover, .nav-list li a.active { color: var(--primary); }
.nav-cta { background: var(--primary) !important; color: var(--white) !important; border-radius: var(--radius) !important; margin: 5px 8px !important; padding: 6px 16px !important; }
.nav-cta:hover { background: var(--primary-dark) !important; }
.nav-cta::after { display: none !important; }
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 997; opacity: 0; transition: opacity 0.3s ease; }
.nav-overlay.active { display: block; opacity: 1; }

.hero-section { background: var(--bg); min-height: 90vh; display: flex; align-items: center; overflow: hidden; position: relative; }
.hero-section::before { content: ''; position: absolute; right: 0; top: 0; width: 45%; height: 100%; background: var(--warm); clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%); }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; z-index: 1; width: 100%; }
.hero-content { padding: 60px 0; }
.hero-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--primary); margin-bottom: 16px; }
.hero-tag::before { content: ''; display: block; width: 24px; height: 2px; background: var(--primary); }
.hero-content h1 { font-family: var(--font-head); font-size: 2.8rem; font-weight: 700; line-height: 1.15; color: var(--text); margin-bottom: 18px; }
.hero-content h1 em { color: var(--primary); font-style: normal; }
.hero-content p { font-size: 0.95rem; color: var(--text-muted); max-width: 440px; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-img-wrap { position: relative; width: 380px; height: 420px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge { position: absolute; bottom: -20px; left: -20px; background: var(--primary); color: var(--white); border-radius: var(--radius-lg); padding: 16px 20px; text-align: center; box-shadow: var(--shadow); }
.hero-badge strong { display: block; font-family: var(--font-head); font-size: 1.6rem; line-height: 1; }
.hero-badge span { font-size: 0.72rem; opacity: 0.85; }

.rhythm-section { background: var(--primary-dark); padding: 60px 0; overflow: hidden; }
.rhythm-section .section-header h2 { color: var(--white); }
.rhythm-section .section-header p { color: rgba(255,255,255,0.7); }
.rhythm-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 40px; }
.rhythm-card { background: rgba(255,255,255,0.06); padding: 32px 24px; border-left: 1px solid rgba(255,255,255,0.08); transition: background var(--transition); }
.rhythm-card:hover { background: rgba(255,255,255,0.1); }
.rhythm-card:first-child { border-left: none; border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.rhythm-card:last-child { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.rhythm-time { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent-light); margin-bottom: 14px; }
.rhythm-icon { font-size: 1.8rem; color: var(--white); margin-bottom: 14px; }
.rhythm-card h3 { font-family: var(--font-head); font-size: 1.1rem; color: var(--white); margin-bottom: 8px; }
.rhythm-card p { font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

.philosophy-section { background: var(--white); }
.philosophy-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.philosophy-quote { position: relative; padding: 40px; }
.philosophy-quote::before { content: '\201C'; font-family: var(--font-head); font-size: 8rem; color: var(--warm-dark); position: absolute; top: -10px; left: 20px; line-height: 1; }
.philosophy-quote blockquote { font-family: var(--font-head); font-size: 1.5rem; font-weight: 500; font-style: italic; color: var(--text); line-height: 1.4; position: relative; z-index: 1; }
.philosophy-quote cite { display: block; font-size: 0.8rem; font-style: normal; color: var(--text-muted); margin-top: 16px; }
.philosophy-content h2 { font-family: var(--font-head); font-size: 1.8rem; color: var(--text); margin-bottom: 16px; }
.philosophy-content p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 12px; }
.philosophy-list { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.philosophy-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; }
.philosophy-list li i { color: var(--primary); margin-top: 2px; flex-shrink: 0; }

.pillars-section { background: var(--bg); }
.pillar-card { text-align: center; padding: 36px 28px; border-top: 3px solid var(--primary); }
.pillar-icon { width: 56px; height: 56px; background: rgba(59,107,74,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.pillar-icon i { font-size: 1.3rem; color: var(--primary); }
.pillar-card h3 { font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 10px; }
.pillar-card p { font-size: 0.82rem; color: var(--text-muted); }

.guides-section { background: var(--warm); }
.guides-list { display: flex; flex-direction: column; gap: 24px; }
.guide-card { display: grid; grid-template-columns: 80px 1fr auto; gap: 20px; align-items: center; background: var(--white); border-radius: var(--radius-lg); padding: 20px 24px; box-shadow: var(--shadow); }
.guide-num { font-family: var(--font-head); font-size: 2.5rem; font-weight: 700; color: var(--warm-dark); line-height: 1; }
.guide-info h3 { font-family: var(--font-head); font-size: 1rem; margin-bottom: 4px; }
.guide-info p { font-size: 0.8rem; color: var(--text-muted); }
.guide-tag { background: rgba(59,107,74,0.08); color: var(--primary); font-size: 0.72rem; font-weight: 600; padding: 4px 12px; border-radius: 20px; white-space: nowrap; }

.products-section { background: var(--white); }
.product-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--bg); border: 1px solid var(--border); transition: transform var(--transition), box-shadow var(--transition); }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-header { background: var(--primary); padding: 28px 24px; text-align: center; }
.product-icon { font-size: 2rem; color: rgba(255,255,255,0.85); margin-bottom: 12px; }
.product-header h3 { font-family: var(--font-head); font-size: 1.1rem; color: var(--white); }
.product-body { padding: 24px; }
.product-body p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.product-features { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.product-features li { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; }
.product-features li i { color: var(--primary); font-size: 0.7rem; }
.product-footer { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; border-top: 1px solid var(--border); }
.product-price { font-family: var(--font-head); font-size: 1.4rem; color: var(--primary); font-weight: 700; }
.product-price span { font-size: 0.75rem; font-family: var(--font-body); color: var(--text-muted); font-weight: 400; }

.seasonal-section { background: linear-gradient(135deg, #4a7c5a 0%, #3b6b4a 50%, #2d5438 100%); padding: 72px 0; }
.seasonal-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.seasonal-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent-light); margin-bottom: 14px; }
.seasonal-content h2 { font-family: var(--font-head); font-size: 1.9rem; color: var(--white); margin-bottom: 16px; }
.seasonal-content p { font-size: 0.88rem; color: rgba(255,255,255,0.75); margin-bottom: 20px; }
.seasonal-tips { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.seasonal-tip { background: rgba(255,255,255,0.08); border-radius: var(--radius); padding: 14px; }
.seasonal-tip i { color: var(--accent-light); margin-bottom: 6px; display: block; }
.seasonal-tip span { font-size: 0.78rem; color: rgba(255,255,255,0.85); display: block; }
.seasonal-visual { display: flex; justify-content: center; }
.season-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; width: 100%; max-width: 300px; }
.season-item { background: rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 20px 14px; text-align: center; }
.season-item i { font-size: 1.5rem; color: var(--white); margin-bottom: 8px; display: block; }
.season-item span { font-size: 0.75rem; color: rgba(255,255,255,0.8); }

.testimonials-section { background: var(--bg); }
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--border); position: relative; }
.testimonial-card::before { content: '\201C'; font-family: var(--font-head); font-size: 4rem; color: var(--warm-dark); position: absolute; top: 12px; right: 20px; line-height: 1; }
.testimonial-text { font-size: 0.85rem; color: var(--text); font-style: italic; line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--warm); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700; color: var(--primary); flex-shrink: 0; }
.author-name { font-size: 0.82rem; font-weight: 600; }
.author-detail { font-size: 0.72rem; color: var(--text-muted); }
.stars { color: #f5a623; font-size: 0.7rem; margin-bottom: 4px; }

.stats-section { background: var(--primary); padding: 56px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; text-align: center; }
.stat-item { padding: 24px 20px; border-right: 1px solid rgba(255,255,255,0.15); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; color: var(--white); line-height: 1; display: block; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.7); margin-top: 6px; display: block; }

.map-section { background: var(--white); }
.map-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.map-info h2 { font-family: var(--font-head); font-size: 1.7rem; margin-bottom: 20px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; }
.detail-icon { width: 38px; height: 38px; background: rgba(59,107,74,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.detail-icon i { color: var(--primary); font-size: 0.85rem; }
.detail-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 2px; }
.detail-value { font-size: 0.88rem; color: var(--text); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.map-embed iframe { width: 100%; height: 320px; border: none; display: block; }

.cta-section { background: var(--warm); padding: 80px 0; text-align: center; }
.cta-section h2 { font-family: var(--font-head); font-size: 2rem; margin-bottom: 14px; }
.cta-section p { font-size: 0.9rem; color: var(--text-muted); max-width: 480px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.subpage-hero { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); padding: 72px 0; position: relative; overflow: hidden; }
.subpage-hero::before { content: ''; position: absolute; right: -80px; top: -80px; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,0.04); }
.subpage-hero::after { content: ''; position: absolute; left: -40px; bottom: -60px; width: 260px; height: 260px; border-radius: 50%; background: rgba(255,255,255,0.03); }
.subpage-hero-inner { position: relative; z-index: 1; text-align: center; }
.subpage-hero .breadcrumb { display: flex; justify-content: center; align-items: center; gap: 8px; font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.subpage-hero .breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.subpage-hero .breadcrumb a:hover { color: var(--white); }
.subpage-hero h1 { font-family: var(--font-head); font-size: 2.4rem; color: var(--white); margin-bottom: 14px; }
.subpage-hero p { font-size: 0.92rem; color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto; }
.subpage-img-hero { background: var(--bg); }
.subpage-img-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 80px 0; }
.subpage-img-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.subpage-img-wrap img { width: 100%; height: 360px; object-fit: cover; }

.intro-section { background: var(--white); }
.intro-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; }
.intro-aside h2 { font-family: var(--font-head); font-size: 1.6rem; margin-bottom: 12px; }
.intro-aside .section-label { margin-bottom: 12px; }
.intro-body p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 14px; }
.intro-body p:last-child { margin-bottom: 0; }

.feature-cards-section { background: var(--bg); }
.feature-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--border); }
.feature-card-icon { width: 48px; height: 48px; border-radius: var(--radius); background: rgba(59,107,74,0.08); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feature-card-icon i { color: var(--primary); font-size: 1.1rem; }
.feature-card h3 { font-family: var(--font-head); font-size: 1rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.82rem; color: var(--text-muted); }

.highlight-section { background: var(--primary); padding: 72px 0; }
.highlight-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.highlight-content h2 { font-family: var(--font-head); font-size: 1.8rem; color: var(--white); margin-bottom: 16px; }
.highlight-content p { font-size: 0.88rem; color: rgba(255,255,255,0.75); margin-bottom: 12px; }
.highlight-list { display: flex; flex-direction: column; gap: 10px; }
.highlight-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.84rem; color: rgba(255,255,255,0.85); }
.highlight-list li i { color: var(--accent-light); margin-top: 2px; flex-shrink: 0; }
.highlight-visual { display: flex; flex-direction: column; gap: 16px; }
.highlight-card { background: rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 20px; }
.highlight-card h4 { font-family: var(--font-head); font-size: 0.95rem; color: var(--white); margin-bottom: 6px; }
.highlight-card p { font-size: 0.78rem; color: rgba(255,255,255,0.65); }

.steps-section { background: var(--warm); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 40px; left: 17%; width: 66%; height: 2px; background: var(--warm-dark); z-index: 0; }
.step-card { text-align: center; position: relative; z-index: 1; }
.step-num { width: 56px; height: 56px; background: var(--primary); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; margin: 0 auto 16px; box-shadow: 0 0 0 4px var(--warm); }
.step-card h3 { font-family: var(--font-head); font-size: 1rem; margin-bottom: 8px; }
.step-card p { font-size: 0.8rem; color: var(--text-muted); }

.tips-section { background: var(--white); }
.tips-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tip-item { padding: 20px; border-radius: var(--radius-lg); background: var(--bg); }
.tip-item i { font-size: 1.3rem; color: var(--primary); margin-bottom: 10px; display: block; }
.tip-item h4 { font-family: var(--font-head); font-size: 0.9rem; margin-bottom: 6px; }
.tip-item p { font-size: 0.78rem; color: var(--text-muted); }

.checklist-section { background: var(--bg); }
.checklist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.checklist-group h3 { font-family: var(--font-head); font-size: 1rem; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--warm-dark); }
.checklist-group ul { display: flex; flex-direction: column; gap: 8px; }
.checklist-group ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.83rem; }
.checklist-group ul li i { color: var(--primary); margin-top: 2px; flex-shrink: 0; }

.markers-section { background: var(--white); }
.markers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.marker-card { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.marker-head { background: var(--warm); padding: 20px; text-align: center; }
.marker-head i { font-size: 1.6rem; color: var(--primary); margin-bottom: 8px; display: block; }
.marker-head h3 { font-family: var(--font-head); font-size: 0.95rem; }
.marker-body { padding: 20px; }
.marker-body ul { display: flex; flex-direction: column; gap: 6px; }
.marker-body ul li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.8rem; color: var(--text-muted); }
.marker-body ul li i { color: var(--primary-light); margin-top: 2px; font-size: 0.65rem; }

.adjust-section { background: var(--warm); }
.adjust-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.adjust-side h3 { font-family: var(--font-head); font-size: 1.1rem; margin-bottom: 16px; }
.adjust-side ul { display: flex; flex-direction: column; gap: 10px; }
.adjust-side ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.84rem; }
.adjust-side ul li i { color: var(--primary); margin-top: 2px; flex-shrink: 0; }

.about-story { background: var(--white); }
.about-story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-story-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-story-img img { width: 100%; height: 380px; object-fit: cover; }
.about-story-content h2 { font-family: var(--font-head); font-size: 1.8rem; margin-bottom: 16px; }
.about-story-content p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 12px; }

.about-values { background: var(--bg); }
.about-numbers { background: var(--warm); padding: 60px 0; }
.about-number-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.about-num-item { text-align: center; padding: 20px; border-right: 1px solid var(--warm-dark); }
.about-num-item:last-child { border-right: none; }
.about-num-item strong { font-family: var(--font-head); font-size: 2.2rem; color: var(--primary); display: block; }
.about-num-item span { font-size: 0.78rem; color: var(--text-muted); }

.about-team { background: var(--white); }
.about-approach { background: var(--primary); padding: 72px 0; }
.about-approach .section-header h2 { color: var(--white); }
.about-approach .section-header p { color: rgba(255,255,255,0.7); }
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.approach-card { background: rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 28px; }
.approach-card i { font-size: 1.4rem; color: var(--accent-light); margin-bottom: 14px; display: block; }
.approach-card h3 { font-family: var(--font-head); font-size: 1rem; color: var(--white); margin-bottom: 8px; }
.approach-card p { font-size: 0.8rem; color: rgba(255,255,255,0.65); }

.about-community { background: var(--bg); }
.about-faq { background: var(--warm); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; }
.faq-q { width: 100%; background: none; border: none; padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; font-family: var(--font-body); font-size: 0.88rem; font-weight: 600; color: var(--text); cursor: pointer; text-align: left; }
.faq-q i { color: var(--primary); transition: transform var(--transition); flex-shrink: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 24px; }
.faq-a p { font-size: 0.84rem; color: var(--text-muted); padding-bottom: 18px; }
.faq-item.open .faq-a { max-height: 200px; }
.faq-item.open .faq-q i { transform: rotate(180deg); }

.contact-section { background: var(--bg); padding: 80px 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.contact-panel-left { background: var(--primary-dark); padding: 48px 40px; }
.contact-panel-left h2 { font-family: var(--font-head); font-size: 1.7rem; color: var(--white); margin-bottom: 12px; }
.contact-panel-left > p { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 36px; }
.contact-items { display: flex; flex-direction: column; gap: 22px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.c-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-icon i { color: var(--white); font-size: 0.85rem; }
.c-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 3px; }
.c-value { font-size: 0.88rem; color: var(--white); }
.contact-panel-right { background: var(--white); padding: 48px 40px; }
.contact-panel-right h3 { font-family: var(--font-head); font-size: 1.3rem; margin-bottom: 8px; }
.contact-panel-right > p { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 28px; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 6px; }
.form-group input, .form-group textarea { width: 100%; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 0.85rem; background: var(--bg); color: var(--text); transition: border-color var(--transition); outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-consent { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.form-consent input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--primary); flex-shrink: 0; }
.form-consent label { font-size: 0.78rem; color: var(--text-muted); cursor: pointer; }
.form-consent label a { color: var(--primary); text-decoration: underline; }

.contact-why { background: var(--warm); }
.contact-map { background: var(--white); }
.contact-map .map-embed iframe { height: 280px; }

.thankyou-wrap { display: flex; align-items: center; justify-content: center; flex-direction: column; text-align: center; padding: 40px 24px; }
.thankyou-icon { width: 80px; height: 80px; background: rgba(59,107,74,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.thankyou-icon i { font-size: 2rem; color: var(--primary); }
.thankyou-wrap h1 { font-family: var(--font-head); font-size: 2rem; margin-bottom: 12px; }
.thankyou-wrap p { font-size: 0.92rem; color: var(--text-muted); max-width: 480px; margin: 0 auto 28px; }
.thankyou-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.thankyou-section { min-height: calc(100vh - 180px); display: flex; align-items: center; justify-content: center; }

.policy-hero { background: var(--warm); padding: 56px 0; text-align: center; }
.policy-hero h1 { font-family: var(--font-head); font-size: 2rem; margin-bottom: 10px; }
.policy-hero p { font-size: 0.85rem; color: var(--text-muted); }
.policy-date { font-size: 0.75rem; color: var(--text-muted); margin-top: 6px; }
.policy-section { background: var(--white); padding: 60px 0; }
.policy-body h2 { font-family: var(--font-head); font-size: 1.3rem; color: var(--text); margin: 32px 0 12px; }
.policy-body h3 { font-family: var(--font-head); font-size: 1rem; color: var(--text); margin: 24px 0 8px; }
.policy-body p { font-size: 0.87rem; color: var(--text-muted); margin-bottom: 12px; line-height: 1.75; }
.policy-body ul, .policy-body ol { padding-left: 20px; margin-bottom: 12px; }
.policy-body ul li, .policy-body ol li { font-size: 0.87rem; color: var(--text-muted); margin-bottom: 6px; line-height: 1.7; }
.policy-body a { color: var(--primary); text-decoration: underline; }
.policy-toc { background: var(--bg); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 32px; }
.policy-toc h3 { font-size: 0.85rem; font-weight: 700; margin-bottom: 12px; }
.policy-toc ul { display: flex; flex-direction: column; gap: 6px; }
.policy-toc ul li a { font-size: 0.8rem; color: var(--primary); text-decoration: underline; }

.site-footer { background: var(--primary-dark); padding: 32px 0 20px; }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: start; margin-bottom: 24px; }
.footer-brand { font-family: var(--font-head); font-size: 1.1rem; color: var(--white); margin-bottom: 8px; }
.footer-tagline { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.75rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 0.73rem; color: rgba(255,255,255,0.4); }
.footer-policy { display: flex; gap: 16px; }
.footer-policy a { font-size: 0.73rem; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-policy a:hover { color: rgba(255,255,255,0.7); }

.privacy-bar { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1a1a; color: rgba(255,255,255,0.85); padding: 14px 24px; z-index: 9999; transform: translateY(0); transition: transform 0.4s ease; }
.privacy-bar.hidden { transform: translateY(100%); }
.privacy-bar-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.privacy-bar p { font-size: 0.78rem; flex: 1; min-width: 200px; }
.privacy-bar p a { color: var(--accent-light); text-decoration: underline; }
.privacy-bar-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-accept { background: var(--primary); color: var(--white); border: none; padding: 7px 18px; border-radius: var(--radius); font-size: 0.78rem; font-weight: 600; cursor: pointer; transition: background var(--transition); }
.btn-accept:hover { background: var(--primary-light); }
.btn-decline { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.2); padding: 7px 18px; border-radius: var(--radius); font-size: 0.78rem; cursor: pointer; transition: all var(--transition); }
.btn-decline:hover { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.8); }

@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat-item:nth-child(2) { border-right: none; }
  .about-number-grid { grid-template-columns: repeat(2, 1fr); }
  .about-number-grid .about-num-item:nth-child(2) { border-right: none; }
  .tips-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-content h1 { font-size: 2.2rem; }
  .philosophy-inner { gap: 40px; }
  .seasonal-inner { gap: 40px; }
  .map-inner { grid-template-columns: 1fr; }
  .subpage-img-hero-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 20px; }
  .footer-links { flex-wrap: wrap; gap: 12px; }
}

@media (max-width: 768px) {
  html { font-size: 14px; }
  .section { padding: 56px 0; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .header-nav-row { position: fixed; top: 0; right: -100%; width: min(300px, 100vw); height: 100vh; background: var(--primary-dark); z-index: 999; transition: right 0.35s ease; padding: 72px 32px 40px; border-top: none; overflow-y: auto; }
  .header-nav-row.open { right: 0; }
  .nav-list { flex-direction: column; align-items: flex-start; gap: 0; }
  .nav-list li { width: 100%; }
  .nav-list li a { color: var(--white); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.85rem; }
  .nav-list li a::after { display: none; }
  .nav-cta { background: var(--accent) !important; border-radius: var(--radius) !important; text-align: center; margin: 16px 0 0 !important; padding: 12px 0 !important; width: 100%; justify-content: center; display: block !important; }
  .brand-line { display: none; }
  .header-brand-row { justify-content: flex-start; }
  .hero-section::before { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { padding: 48px 0; }
  .hero-content h1 { font-size: 2rem; }
  .rhythm-track { grid-template-columns: 1fr; gap: 2px; }
  .rhythm-card:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .rhythm-card:last-child { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
  .philosophy-inner { grid-template-columns: 1fr; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .guides-list .guide-card { grid-template-columns: 1fr; }
  .guide-num { font-size: 1.5rem; }
  .seasonal-inner { grid-template-columns: 1fr; }
  .seasonal-visual { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .steps-grid::before { display: none; }
  .highlights-grid { grid-template-columns: 1fr; }
  .highlight-inner { grid-template-columns: 1fr; }
  .markers-grid { grid-template-columns: 1fr; }
  .adjust-inner { grid-template-columns: 1fr; }
  .checklist-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr 1fr; }
  .intro-inner { grid-template-columns: 1fr; gap: 20px; }
  .about-story-inner { grid-template-columns: 1fr; }
  .about-approach .approach-grid { grid-template-columns: 1fr; }
  .contact-panel-left, .contact-panel-right { padding: 36px 24px; }
  .subpage-hero h1 { font-size: 1.8rem; }
  .cta-section h2 { font-size: 1.6rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-policy { flex-wrap: wrap; gap: 10px; }
  .privacy-bar-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .tips-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
  .thankyou-actions { flex-direction: column; }
  .product-footer { flex-direction: column; align-items: flex-start; gap: 12px; }
  .section-header h2 { font-size: 1.6rem; }
}

@media (max-width: 320px) {
  html { font-size: 13px; }
  .container, .container-sm { padding: 0 12px; }
  .section { padding: 40px 0; }
  .section-sm { padding: 32px 0; }
  .btn { padding: 9px 14px; font-size: 0.76rem; }
  .btn-lg { padding: 10px 18px; font-size: 0.82rem; }
  .brand-link { font-size: 1.1rem; padding: 0 12px; }
  .hero-content h1 { font-size: 1.6rem; line-height: 1.2; }
  .hero-content p { font-size: 0.88rem; }
  .hero-tag { font-size: 0.68rem; }
  .section-header h2 { font-size: 1.4rem; }
  .section-header p { font-size: 0.86rem; }
  .rhythm-card { padding: 24px 16px; }
  .philosophy-quote { padding: 24px 16px; }
  .philosophy-quote::before { font-size: 5rem; left: 10px; }
  .philosophy-quote blockquote { font-size: 1.2rem; }
  .card { padding: 20px 16px; }
  .pillar-card { padding: 24px 16px; }
  .guide-card { padding: 16px; gap: 12px; }
  .product-card .product-header { padding: 20px 16px; }
  .product-card .product-body { padding: 16px; }
  .product-card .product-footer { padding: 12px 16px; }
  .product-price { font-size: 1.2rem; }
  .seasonal-section { padding: 48px 0; }
  .seasonal-content h2 { font-size: 1.5rem; }
  .seasonal-tips { grid-template-columns: 1fr; gap: 8px; }
  .seasonal-tip { padding: 10px; }
  .testimonial-card { padding: 20px 16px; }
  .testimonial-card::before { font-size: 3rem; top: 8px; right: 12px; }
  .stat-num { font-size: 2rem; }
  .stat-label { font-size: 0.72rem; }
  .subpage-hero { padding: 48px 0; }
  .subpage-hero h1 { font-size: 1.6rem; }
  .subpage-img-hero-inner { padding: 48px 0; }
  .contact-panel-left, .contact-panel-right { padding: 24px 16px; }
  .contact-panel-left h2 { font-size: 1.4rem; }
  .form-group input, .form-group textarea { padding: 8px 12px; font-size: 0.82rem; }
  .cta-section h2 { font-size: 1.4rem; }
  .cta-section p { font-size: 0.84rem; }
  .policy-hero h1 { font-size: 1.6rem; }
  .policy-body h2 { font-size: 1.1rem; }
  .policy-body h3 { font-size: 0.92rem; }
  .footer-inner { padding: 0; }
  .privacy-bar { padding: 12px 16px; }
  .privacy-bar p { font-size: 0.72rem; }
  .btn-accept, .btn-decline { padding: 6px 14px; font-size: 0.72rem; }
}
