/* Halaman dalam (contact, about, legal) — selaras tone store-home */
.store-inner {
  flex: 1;
  min-height: 50vh;
  padding-bottom: 48px;
}

.store-inner-hero {
  padding: clamp(32px, 6vw, 52px) 0 clamp(28px, 4vw, 40px);
  background: linear-gradient(165deg, #fff 0%, var(--store-paper) 50%, #eef7f0 100%);
  border-bottom: 1px solid var(--store-line);
  text-align: center;
}

.store-inner-hero h1 {
  font-family: var(--store-display);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 900;
  margin: 0 0 12px;
  color: var(--store-ink);
  letter-spacing: -0.02em;
}

.store-inner-hero p {
  margin: 0 auto;
  max-width: 36em;
  color: var(--store-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.store-inner-body {
  padding: clamp(28px, 4vw, 48px) 0;
}

/* Prose legal / policy */
.store-prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--store-ink);
}

.store-prose h1 {
  font-family: var(--store-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  margin: 0 0 20px;
  color: var(--store-ink);
}

.store-prose h2 {
  font-family: var(--store-display);
  font-size: 1.2rem;
  margin: 32px 0 12px;
  color: var(--store-accent);
}

.store-prose p,
.store-prose li {
  color: var(--store-muted);
}

.store-prose a {
  color: var(--store-accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.store-prose a:hover {
  color: var(--store-accent-hover);
}

.store-prose ol,
.store-prose ul {
  padding-left: 1.35em;
}

.store-prose li {
  margin-bottom: 8px;
}

.store-prose-footnote {
  margin-top: 40px;
  font-size: 0.88rem;
  color: var(--store-muted);
}

/* Contact */
.store-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.store-contact-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 20px;
}

.store-contact-card {
  background: var(--store-surface);
  border: 1px solid var(--store-line);
  border-radius: var(--store-radius);
  padding: clamp(22px, 4vw, 32px);
  box-shadow: var(--store-shadow);
}

.store-contact-intro {
  margin-bottom: 22px;
}

.store-contact-intro h1 {
  font-family: var(--store-display);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  margin: 0 0 10px;
  color: var(--store-ink);
}

.store-contact-intro p {
  margin: 0;
  color: var(--store-muted);
  line-height: 1.65;
}

.store-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 560px) {
  .store-form-grid {
    grid-template-columns: 1fr;
  }
}

.store-form-full {
  grid-column: 1 / -1;
}

.store-form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 6px;
  color: var(--store-ink);
}

.store-form-group input,
.store-form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--store-line);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: var(--store-font);
  background: #fff;
  box-sizing: border-box;
}

.store-form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.store-form-group input:focus,
.store-form-group textarea:focus {
  outline: none;
  border-color: var(--store-accent);
  box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.12);
}

.store-verify {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 20px;
  font-size: 0.9rem;
  color: var(--store-muted);
}

.store-verify input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.store-btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: none;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  font-family: var(--store-font);
  cursor: pointer;
  background: linear-gradient(135deg, var(--store-accent), #2d6a4f);
  color: #fff;
  box-shadow: 0 4px 16px rgba(27, 67, 50, 0.35);
  transition: transform 0.15s, opacity 0.2s;
}

.store-btn-submit:hover:not(:disabled) {
  transform: translateY(-1px);
}

.store-btn-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.store-form-msg {
  margin-top: 16px;
  font-size: 0.9rem;
}

.store-form-msg .success {
  color: #15803d;
  font-weight: 600;
}

.store-form-msg .error {
  color: #b91c1c;
  font-weight: 600;
}

.store-contact-note {
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--store-muted);
  line-height: 1.6;
}

.store-recaptcha {
  margin: 18px 0 8px;
}

.store-recaptcha .g-recaptcha > div {
  margin: 0 auto;
}

/* About page — bright sections */
.store-about-hero {
  padding: clamp(48px, 8vw, 72px) 0 clamp(40px, 6vw, 56px);
  background: linear-gradient(165deg, #fff 0%, var(--store-paper) 40%, #e8f4ec 100%);
  border-bottom: 1px solid var(--store-line);
  text-align: center;
}

.store-about-hero h1 {
  font-family: var(--store-display);
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 900;
  margin: 0 0 12px;
  color: var(--store-ink);
  letter-spacing: -0.02em;
}

.store-about-hero .sub {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--store-muted);
  max-width: 34em;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.store-about-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(24px, 5vw, 48px);
}

.store-stat {
  text-align: center;
}

.store-stat-num {
  font-family: var(--store-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 900;
  color: var(--store-accent);
  line-height: 1.1;
}

.store-stat-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--store-muted);
  margin-top: 6px;
}

.store-about-section {
  padding: clamp(44px, 6vw, 72px) 0;
}

.store-about-section.alt {
  background: var(--store-paper);
  border-top: 1px solid var(--store-line);
  border-bottom: 1px solid var(--store-line);
}

.store-section-title {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.store-section-title h2 {
  font-family: var(--store-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin: 0 0 10px;
  color: var(--store-ink);
}

.store-section-title p {
  margin: 0 auto;
  max-width: 36em;
  color: var(--store-muted);
  font-size: 1.02rem;
}

.store-mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  max-width: 1000px;
  margin: 0 auto;
}

.store-mv-card {
  background: var(--store-surface);
  border: 1px solid var(--store-line);
  border-radius: var(--store-radius);
  padding: 26px 22px;
  box-shadow: var(--store-shadow);
}

.store-mv-card .ic {
  font-size: 2rem;
  margin-bottom: 12px;
}

.store-mv-card h3 {
  font-family: var(--store-display);
  font-size: 1.15rem;
  margin: 0 0 14px;
  color: var(--store-ink);
}

.store-mv-card ul {
  margin: 0;
  padding-left: 1.2em;
  color: var(--store-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.store-mv-card li {
  margin-bottom: 8px;
}

.store-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.store-value-card {
  background: var(--store-surface);
  border: 1px solid var(--store-line);
  border-radius: var(--store-radius);
  padding: 22px 18px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.store-value-card:hover {
  box-shadow: var(--store-shadow);
  transform: translateY(-2px);
}

.store-value-card .ic {
  font-size: 2rem;
  margin-bottom: 10px;
}

.store-value-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--store-ink);
}

.store-value-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--store-muted);
  line-height: 1.55;
}

.store-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.store-cat-card {
  background: #fff;
  border: 1px solid var(--store-line);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
}

.store-cat-card .ic {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.store-cat-card h3 {
  font-size: 0.95rem;
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--store-ink);
}

.store-cat-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--store-muted);
  line-height: 1.5;
}

.store-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.store-team-card {
  background: var(--store-surface);
  border: 1px solid var(--store-line);
  border-radius: var(--store-radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--store-shadow);
}

.store-team-av {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--store-accent-soft);
  color: var(--store-accent);
  font-weight: 900;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-team-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 4px;
  color: var(--store-ink);
}

.store-team-role {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--store-accent);
  margin-bottom: 8px;
}

.store-team-desc {
  font-size: 0.88rem;
  color: var(--store-muted);
  line-height: 1.55;
  margin: 0;
}

.store-about-cta {
  padding: clamp(44px, 6vw, 64px) 0;
  background: linear-gradient(135deg, var(--store-accent) 0%, #2d6a4f 100%);
  color: #fff;
  text-align: center;
}

.store-about-cta h2 {
  font-family: var(--store-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin: 0 0 12px;
}

.store-about-cta p {
  margin: 0 auto 22px;
  max-width: 32em;
  opacity: 0.92;
  line-height: 1.6;
}

.store-about-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.store-about-cta .store-btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.45);
}

.store-about-cta .store-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

.store-about-cta .store-btn-primary {
  background: #fff;
  color: var(--store-accent);
  box-shadow: none;
}

.store-about-cta .store-btn-primary:hover {
  background: var(--store-accent-soft);
  color: var(--store-accent-hover);
}

/* body flex for sticky footer feel */
body.store-home {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body.store-home > main,
body.store-home > .store-inner {
  flex: 1;
}
