/* ========================================
   CSS Variables & Reset
======================================== */
:root {
  --bg: #faf8f5;
  --fg: #3d2e1e;
  --card: #ffffff;
  --primary: #5a3d2b;
  --primary-fg: #faf8f5;
  --secondary: #f0ebe4;
  --secondary-fg: #5a3d2b;
  --muted: #f0ebe4;
  --muted-fg: #6b5a4a;
  --accent: #2e6b4a;
  --accent-fg: #faf8f5;
  --border: #ddd5ca;
  --input: #e8e2da;
  --destructive: #dc2626;
  --radius: 0.5rem;
}

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

html { font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }

/* ========================================
   Utility
======================================== */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-weight: 700; font-size: 0.875rem; border-radius: var(--radius);
  padding: 0.75rem 1.5rem; border: none; transition: all 0.2s;
}
.btn-primary { background: var(--primary); color: var(--primary-fg); }
.btn-primary:hover { opacity: 0.9; }
.btn-outline { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--primary-fg); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-secondary { background: var(--bg); color: var(--fg); }
.btn-secondary:hover { opacity: 0.9; }
.btn-block { width: 100%; }

.badge {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.75rem; font-weight: 500; padding: 0.25rem 0.75rem;
  border-radius: 9999px; border: 1px solid var(--border); background: var(--bg);
}

.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

.section-title { font-size: 1.5rem; font-weight: 700; text-align: center; margin-bottom: 1rem; }
.section-subtitle { color: var(--muted-fg); text-align: center; margin-bottom: 3rem; }

@media (min-width: 768px) {
  .container { padding: 0 2rem; }
  .section-title { font-size: 1.875rem; }
}

/* ========================================
   Header (sticky)
======================================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(250,248,245,0.9); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border); transition: all 0.3s;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.header-logo-sub { font-size: 0.625rem; color: var(--muted-fg); }
.header-logo-main { font-size: 1.125rem; font-weight: 700; }
.header-logo-img { height: 36px; width: auto; display: block; }
.header-nav { display: none; gap: 1.5rem; align-items: center; }
.header-nav a { font-size: 0.875rem; color: var(--muted-fg); transition: color 0.2s; }
.header-nav a:hover { color: var(--primary); }
.header-cta-btn { font-size: 0.8125rem; padding: 0.5rem 1rem; color: #fff; }
.header-nav a.header-cta-btn {
  color: #fff;
}

@media (min-width: 768px) {
  .header-nav { display: flex; }
}

/* Mobile menu */
.mobile-menu-btn {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.mobile-menu-btn span { display: block; width: 22px; height: 2px; background: var(--fg); border-radius: 2px; transition: all 0.3s; }
@media (min-width: 768px) { .mobile-menu-btn { display: none; } }

.mobile-nav {
  display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: rgba(250,248,245,0.98); backdrop-filter: blur(8px); z-index: 40;
  padding: 2rem 1rem; overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 0.875rem 0; font-size: 1rem;
  color: var(--fg); border-bottom: 1px solid var(--border);
}

/* ========================================
   Mobile CTA Bar
======================================== */
.mobile-cta-bar {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  background: var(--card); border-top: 1px solid var(--border);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.mobile-cta-bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 0.625rem 0; font-size: 0.625rem; font-weight: 700; gap: 0.25rem;
}
.mobile-cta-bar .cta-phone { background: var(--accent); color: var(--accent-fg); }
.mobile-cta-bar .cta-contact { background: var(--primary); color: var(--primary-fg); }
.mobile-cta-bar .cta-works { background: var(--secondary); color: var(--secondary-fg); }
.mobile-cta-bar svg { width: 20px; height: 20px; }
@media (min-width: 768px) { .mobile-cta-bar { display: none; } }

/* ========================================
   SVG Icons (inline)
======================================== */
.icon { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.icon-sm { width: 1rem; height: 1rem; }
.icon-lg { width: 1.75rem; height: 1.75rem; }

/* ========================================
   Hero Section
======================================== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 7rem 0 6rem;
}
@media (min-width: 768px) { .hero { padding: 5rem 0 3rem; } }

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(250,248,245,0.95), rgba(250,248,245,0.85), rgba(250,248,245,0.5));
}

.hero-content { position: relative; z-index: 10; max-width: 640px; }

/* Campaign POP - mobile banner */
.campaign-banner-mobile {
  display: block; position: absolute; top: 64px; left: 0; right: 0; z-index: 20;
  background: linear-gradient(to right, #dc2626, #b91c1c); color: #fff;
  padding: 0.625rem 1rem; animation: slideDown 0.5s ease-out;
}
@media (min-width: 768px) { .campaign-banner-mobile { display: none; } }

.campaign-banner-inner {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem; text-align: center;
}
.campaign-badge-sm {
  display: inline-flex; align-items: center; gap: 0.25rem;
  background: #fbbf24; color: #78350f; font-size: 0.625rem; font-weight: 700;
  padding: 0.125rem 0.5rem; border-radius: 9999px; flex-shrink: 0;
}
.campaign-text-sm { font-size: 0.75rem; font-weight: 700; }
.campaign-text-sm .hl { color: #fef08a; }

/* Campaign POP - desktop */
.campaign-pop-desktop {
  display: none; position: absolute; top: 100px; right: 5%; z-index: 20;
  animation: popBounce 0.6s ease-out;
}
@media (min-width: 768px) { .campaign-pop-desktop { display: block; } }

.campaign-pop-card {
  position: relative; background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #fff; padding: 1.25rem 1.5rem; border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(220,38,38,0.35), 0 4px 8px rgba(0,0,0,0.1);
  max-width: 240px; text-align: center;
}
.campaign-ribbon {
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  background: #fbbf24; color: #78350f; font-size: 0.75rem; font-weight: 700;
  padding: 0.25rem 1rem; border-radius: 9999px; white-space: nowrap; box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
.campaign-deadline { display: flex; align-items: center; justify-content: center; gap: 0.25rem; font-size: 0.75rem; opacity: 0.9; margin-top: 0.5rem; margin-bottom: 0.25rem; }
.campaign-subtitle { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.5rem; opacity: 0.95; }
.campaign-highlight { display: block; font-size: 1rem; font-weight: 700; color: #fef08a; text-shadow: 0 1px 2px rgba(0,0,0,0.2); }
.campaign-plus { display: block; font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.8); margin: 0.125rem 0; }
.campaign-gift { display: block; font-size: 1.125rem; font-weight: 800; margin-top: 0.25rem; text-shadow: 0 2px 4px rgba(0,0,0,0.2); }

@keyframes slideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes popBounce { 0% { transform: scale(0) rotate(-10deg); opacity: 0; } 60% { transform: scale(1.1) rotate(2deg); } 100% { transform: scale(1) rotate(0deg); opacity: 1; } }

.hero-badge-wood {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(90,61,43,0.1); border: 1px solid rgba(90,61,43,0.3);
  border-radius: 9999px; padding: 0.5rem 1rem; margin-bottom: 1.5rem;
  font-size: 0.875rem; font-weight: 500; color: var(--primary);
}
.hero h1 { font-size: 1.875rem; font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 1rem; }
.hero h1 .color { color: var(--primary); }
.hero-subcatch { font-size: 1.125rem; font-weight: 500; color: rgba(61,46,30,0.9); margin-bottom: 1rem; }
.hero-desc { font-size: 1rem; color: var(--muted-fg); line-height: 1.8; margin-bottom: 2rem; }
.hero-ctas { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.hero-note { font-size: 0.875rem; color: var(--muted-fg); }

@media (min-width: 640px) { .hero-ctas { flex-direction: row; } }
@media (min-width: 768px) {
  .hero h1 { font-size: 3rem; }
  .hero-subcatch { font-size: 1.5rem; }
}
@media (min-width: 1024px) { .hero h1 { font-size: 3.75rem; } }

/* ========================================
   Features Section
======================================== */
.features { padding: 4rem 0; }
@media (min-width: 768px) { .features { padding: 6rem 0; } }

.features-grid { display: grid; gap: 1.5rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card .feature-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.feature-card .feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-card-body { padding: 1.5rem; text-align: center; }
.feature-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--secondary); margin-top: -3rem; margin-bottom: 1rem;
  position: relative; z-index: 1; border: 4px solid var(--card);
}
.feature-icon svg { color: var(--primary); }
.feature-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-card .feature-catch { color: var(--primary); font-weight: 500; margin-bottom: 0.75rem; }
.feature-card .feature-detail { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; }

/* ========================================
   Problems Section
======================================== */
.problems { padding: 4rem 0; background: rgba(240,235,228,0.5); }
@media (min-width: 768px) { .problems { padding: 6rem 0; } }

.problems-grid { display: grid; gap: 1rem; max-width: 768px; margin: 0 auto 2.5rem; }
@media (min-width: 640px) { .problems-grid { grid-template-columns: repeat(2, 1fr); } }

.problem-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  background: var(--card); padding: 1rem; border-radius: var(--radius);
  border: 1px solid var(--border);
}
.problem-item svg { color: var(--accent); flex-shrink: 0; margin-top: 0.125rem; }
.problem-item span { font-size: 0.875rem; line-height: 1.6; }

.problems-cta-box {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 0.75rem; padding: 1.5rem 2rem; text-align: center;
  max-width: 768px; margin: 0 auto;
}
.problems-cta-box p { line-height: 1.8; margin-bottom: 1.5rem; }
.problems-cta-box .color { font-weight: 500; color: var(--primary); }

/* ========================================
   Solution Section
======================================== */
.solution { padding: 4rem 0; }
@media (min-width: 768px) { .solution { padding: 6rem 0; } }

.solution-items { max-width: 1024px; margin: 0 auto; }
.solution-item { display: flex; flex-direction: column; gap: 2rem; align-items: center; margin-bottom: 3rem; }
.solution-item:last-child { margin-bottom: 0; }
@media (min-width: 768px) {
  .solution-item { flex-direction: row; gap: 3rem; }
  .solution-item.reverse { flex-direction: row-reverse; }
}

.solution-img { width: 100%; flex-shrink: 0; }
@media (min-width: 768px) { .solution-img { width: 50%; } }
.solution-img-inner { aspect-ratio: 4/3; border-radius: 0.75rem; overflow: hidden; background: var(--secondary); }
.solution-img-inner img { width: 100%; height: 100%; object-fit: cover; }

.solution-text { width: 100%; }
@media (min-width: 768px) { .solution-text { width: 50%; } }
.solution-text h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; }
@media (min-width: 768px) { .solution-text h3 { font-size: 1.5rem; } }
.solution-text p { color: var(--muted-fg); line-height: 1.8; margin-bottom: 1rem; }
.solution-points { list-style: none; }
.solution-points li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; margin-bottom: 0.5rem; }
.solution-points li svg { color: var(--accent); flex-shrink: 0; }

/* ========================================
   Reasons Section
======================================== */
.reasons { padding: 4rem 0; background: rgba(240,235,228,0.5); }
@media (min-width: 768px) { .reasons { padding: 6rem 0; } }

.reasons-grid { display: grid; gap: 1.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .reasons-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reasons-grid { grid-template-columns: repeat(3, 1fr); } }

.reason-card-body { padding: 1.5rem; }
.reason-top { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; }
.reason-number { font-size: 1.875rem; font-weight: 700; color: rgba(90,61,43,0.3); line-height: 1; }
.reason-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; background: rgba(90,61,43,0.1); margin-bottom: 0.75rem;
}
.reason-icon svg { color: var(--primary); }
.reason-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.reason-card p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; margin-bottom: 0.75rem; }
.reason-badge {
  display: inline-block; font-size: 0.75rem; font-weight: 500;
  color: var(--accent); background: rgba(46,107,74,0.1);
  padding: 0.375rem 0.75rem; border-radius: 9999px;
}

.reasons-cta {
  background: var(--primary); border-radius: 0.75rem;
  padding: 2rem; text-align: center;
}
@media (min-width: 768px) { .reasons-cta { padding: 3rem; } }
.reasons-cta h3 { font-size: 1.25rem; font-weight: 700; color: var(--primary-fg); margin-bottom: 1rem; }
@media (min-width: 768px) { .reasons-cta h3 { font-size: 1.5rem; } }
.reasons-cta p { color: rgba(250,248,245,0.8); margin-bottom: 1.5rem; }

/* ========================================
   Works Section
======================================== */
.works { padding: 4rem 0; }
@media (min-width: 768px) { .works { padding: 6rem 0; } }

.works-grid { display: grid; gap: 1.5rem; margin-bottom: 2.5rem; }
@media (min-width: 640px) { .works-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .works-grid { grid-template-columns: repeat(3, 1fr); } }

.work-card { cursor: pointer; }
.work-card .work-img { aspect-ratio: 4/3; overflow: hidden; }
.work-card .work-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.work-card:hover .work-img img { transform: scale(1.05); }
.work-card-body { padding: 1rem; }
.work-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.work-card .work-desc { font-size: 0.875rem; color: var(--muted-fg); }
.work-tags { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-top: 0.75rem; }
.work-tag {
  font-size: 0.75rem; background: var(--secondary); color: var(--secondary-fg);
  padding: 0.125rem 0.5rem; border-radius: 9999px;
}

.works-btns { display: flex; flex-direction: column; align-items: center; gap: 1rem; }

/* Work Modal */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal-content {
  background: var(--bg); border-radius: 0.75rem; max-width: 500px; width: 100%;
  max-height: 90vh; overflow-y: auto; padding: 1.5rem; position: relative;
}
.modal-close {
  position: absolute; top: 0.75rem; right: 0.75rem; background: none; border: none;
  font-size: 1.5rem; color: var(--muted-fg); line-height: 1;
}
.modal-img { aspect-ratio: 16/9; border-radius: 0.5rem; overflow: hidden; margin-bottom: 1rem; }
.modal-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; }
.modal-desc { font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 1rem; }
.modal-detail {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.75rem; background: rgba(240,235,228,0.5); border-radius: 0.5rem;
  margin-bottom: 0.75rem;
}
.modal-detail svg { color: var(--primary); flex-shrink: 0; margin-top: 0.125rem; }
.modal-detail-label { font-size: 0.75rem; color: var(--muted-fg); margin-bottom: 0.125rem; }
.modal-detail-value { font-size: 0.875rem; }
.modal-detail.accent { background: rgba(46,107,74,0.1); border: 1px solid rgba(46,107,74,0.2); }
.modal-detail.accent svg { color: var(--accent); }
.modal-detail.accent .modal-detail-label { color: var(--accent); }
.modal-detail.accent .modal-detail-value { font-weight: 500; }

/* ========================================
   Craft Section
======================================== */
.craft { padding: 4rem 0; background: rgba(240,235,228,0.5); }
@media (min-width: 768px) { .craft { padding: 6rem 0; } }

.craft-grid { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 1024px) { .craft-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }

.craft-img { aspect-ratio: 4/3; border-radius: 0.75rem; overflow: hidden; order: 2; }
@media (min-width: 1024px) { .craft-img { order: 1; } }
.craft-img img { width: 100%; height: 100%; object-fit: cover; }

.craft-text { order: 1; }
@media (min-width: 1024px) { .craft-text { order: 2; } }
.craft-text h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.craft-text h2 .color { color: var(--primary); }
@media (min-width: 768px) { .craft-text h2 { font-size: 1.875rem; } }
.craft-text > p { color: var(--muted-fg); line-height: 1.8; margin-bottom: 2rem; }

.craft-point {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem; background: var(--card); border-radius: var(--radius);
  border: 1px solid var(--border); margin-bottom: 1rem;
}
.craft-point-icon {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(90,61,43,0.1); display: flex; align-items: center; justify-content: center;
}
.craft-point-icon svg { color: var(--primary); }
.craft-point h3 { font-weight: 700; margin-bottom: 0.25rem; }
.craft-point p { font-size: 0.875rem; color: var(--muted-fg); }

/* ========================================
   Process Section
======================================== */
.process { padding: 4rem 0; }
@media (min-width: 768px) { .process { padding: 6rem 0; } }

.process-timeline { max-width: 768px; margin: 0 auto; position: relative; }
.process-line {
  position: absolute; left: 24px; top: 0; bottom: 0;
  width: 2px; background: var(--border);
}
@media (min-width: 768px) { .process-line { left: 32px; } }

.process-step { display: flex; gap: 1rem; position: relative; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .process-step { gap: 1.5rem; } }

.process-icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--card); border: 2px solid var(--border);
  position: relative; z-index: 1;
}
@media (min-width: 768px) { .process-icon { width: 64px; height: 64px; } }
.process-icon svg { color: var(--primary); }
.process-icon.active { background: var(--primary); border-color: var(--primary); }
.process-icon.active svg { color: var(--primary-fg); }

.process-content { flex: 1; padding-bottom: 1.5rem; }
.process-step-label { font-size: 0.75rem; color: var(--muted-fg); margin-bottom: 0.25rem; }
.process-step-label .step-badge {
  display: inline-block; font-size: 0.75rem; font-weight: 500; color: var(--accent);
  background: rgba(46,107,74,0.1); padding: 0.125rem 0.5rem; border-radius: 9999px; margin-left: 0.5rem;
}
.process-content h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.25rem; }
.process-content p { font-size: 0.875rem; color: var(--muted-fg); }

/* ========================================
   Promise Section
======================================== */
.promise { padding: 4rem 0; background: rgba(240,235,228,0.5); }
@media (min-width: 768px) { .promise { padding: 6rem 0; } }

.promise-grid { display: grid; gap: 1.5rem; max-width: 960px; margin: 0 auto 2.5rem; }
@media (min-width: 768px) { .promise-grid { grid-template-columns: repeat(3, 1fr); } }

.promise-card-body { padding: 1.5rem; text-align: center; }
.promise-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(46,107,74,0.1); margin-bottom: 1rem;
}
.promise-icon svg { color: var(--accent); }
.promise-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.75rem; }
.promise-card p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; }

.promise-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }

/* ========================================
   FAQ Section
======================================== */
.faq { padding: 4rem 0; }
@media (min-width: 768px) { .faq { padding: 6rem 0; } }

.faq-list { max-width: 768px; margin: 0 auto; }
.faq-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 0.75rem; overflow: hidden;
}
.faq-question {
  display: flex; align-items: flex-start; gap: 0.75rem; width: 100%;
  background: none; border: none; text-align: left; padding: 1rem;
  font-size: 0.875rem; font-weight: 500; color: var(--fg); cursor: pointer;
}
@media (min-width: 768px) { .faq-question { font-size: 1rem; } }
.faq-q-badge {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: rgba(90,61,43,0.1); color: var(--primary);
  font-size: 0.75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.faq-arrow { margin-left: auto; flex-shrink: 0; transition: transform 0.3s; color: var(--muted-fg); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  color: var(--muted-fg); font-size: 0.875rem; line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 1rem 1rem 3.25rem; }

/* ========================================
   Contact Section
======================================== */
.contact { padding: 4rem 0; background: rgba(240,235,228,0.5); }
@media (min-width: 768px) { .contact { padding: 6rem 0; } }

.contact-grid { display: grid; gap: 2rem; max-width: 1024px; margin: 0 auto; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 3fr; } }

.contact-benefits { padding: 1.5rem; }
.contact-benefits h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 1rem; }
.contact-benefit-list { list-style: none; }
.contact-benefit-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.contact-benefit-num {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: rgba(46,107,74,0.1); color: var(--accent);
  font-size: 0.75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.contact-phone-box {
  margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border);
}
.contact-phone-box > p { font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 1rem; }
.contact-phone-link {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem; background: rgba(90,61,43,0.05); border: 1px solid rgba(90,61,43,0.2);
  border-radius: 0.5rem; transition: background 0.2s;
}
.contact-phone-link:hover { background: rgba(90,61,43,0.1); }
.contact-phone-link svg { color: var(--primary); }
.contact-phone-label { font-size: 0.75rem; color: var(--muted-fg); }
.contact-phone-number { font-size: 1.125rem; font-weight: 700; color: var(--primary); }
.contact-phone-note { font-size: 0.75rem; color: var(--muted-fg); margin-top: 0.5rem; }

/* Form */
.form-card-body { padding: 1.5rem; }
.form-steps { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 1.5rem; }
.form-step { display: flex; align-items: center; gap: 0.5rem; }
.form-step-circle {
  width: 32px; height: 32px; border-radius: 50%; font-size: 0.875rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  background: var(--muted); color: var(--muted-fg);
}
.form-step.active .form-step-circle { background: var(--primary); color: var(--primary-fg); }
.form-step.done .form-step-circle { background: var(--accent); color: var(--accent-fg); }
.form-step-label { font-size: 0.875rem; color: var(--muted-fg); }
.form-step.active .form-step-label { color: var(--primary); }
.form-step-line { width: 2rem; height: 2px; background: var(--border); }

.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.5rem; }
.form-label .req { color: var(--destructive); }
.form-input {
  width: 100%; height: 40px; padding: 0 0.75rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--bg); color: var(--fg); font-size: 0.875rem; font-family: inherit;
  outline: none; transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--accent); box-shadow: 0 0 0 2px rgba(46,107,74,0.2); }
.form-textarea { height: auto; min-height: 100px; padding: 0.5rem 0.75rem; resize: vertical; }
.form-select { appearance: auto; }
.form-error { font-size: 0.8125rem; color: var(--destructive); margin-top: 0.25rem; }

.contact-method-grid { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
@media (min-width: 640px) { .contact-method-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-method-btn {
  display: flex; flex-direction: column; align-items: center;
  padding: 1rem; border-radius: 0.5rem; border: 1px solid var(--border);
  background: var(--bg); transition: all 0.2s; cursor: pointer;
}
.contact-method-btn:hover { border-color: rgba(90,61,43,0.5); }
.contact-method-btn.selected { border-color: var(--primary); background: rgba(90,61,43,0.05); }
.contact-method-btn svg { color: var(--primary); margin-bottom: 0.5rem; }
.contact-method-btn .cm-label { font-size: 0.875rem; font-weight: 500; }
.contact-method-btn .cm-desc { font-size: 0.75rem; color: var(--muted-fg); }

.checkbox-row { display: flex; align-items: flex-start; gap: 0.75rem; }
.checkbox-custom {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 4px;
  border: 1px solid var(--border); background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s;
}
.checkbox-custom.checked { background: var(--primary); border-color: var(--primary); }
.checkbox-custom svg { color: var(--primary-fg); }
.checkbox-label { font-size: 0.875rem; cursor: pointer; }
.checkbox-label a { color: var(--primary); text-decoration: underline; }

.form-btns { display: flex; gap: 0.75rem; }
.form-btns .btn { flex: 1; }

.form-badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem;
  margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border);
}

/* ========================================
   Footer
======================================== */
.footer { background: var(--fg); color: var(--bg); padding: 3rem 0; padding-bottom: 7rem; }
@media (min-width: 768px) { .footer { padding-bottom: 3rem; } }

.footer-grid { display: grid; gap: 2rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

.footer-logo-sub { font-size: 0.625rem; opacity: 0.6; }
.footer-logo-main { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; }
.footer-logo-img { height: 36px; width: auto; display: block; margin-bottom: 1rem; background: #fff; padding: 4px 8px; border-radius: 4px; }

.footer-info-list { list-style: none; }
.footer-info-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; }
.footer-info-item svg { opacity: 0.6; flex-shrink: 0; margin-top: 0.125rem; }
.footer-info-label { font-size: 0.75rem; opacity: 0.6; display: block; }
.footer-info-value { font-size: 0.875rem; }
.footer-info-value a:hover { text-decoration: underline; }

.footer-certs h4 { font-size: 0.875rem; font-weight: 700; margin-bottom: 1rem; }
.footer-cert-list { list-style: none; }
.footer-cert-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; opacity: 0.8; margin-bottom: 0.5rem; }
.footer-cert-item svg { opacity: 0.6; flex-shrink: 0; }

.footer-divider { height: 1px; background: rgba(250,248,245,0.2); margin-bottom: 1.5rem; }
.footer-bottom {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  font-size: 0.75rem; opacity: 0.6;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-links { display: flex; gap: 1rem; }
.footer-links a:hover { opacity: 1; }


.contact-btn-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-btn-lead {
  color: var(--muted-fg);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.contact-main-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  padding: 1rem 1.75rem;
  width: 100%;
  justify-content: center;
}
-->