/* ── INFO PAGES ── */
.nav-back {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.2s;
  width: 80px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-back:hover { color: var(--red); }

.info-hero {
  background: var(--red-bg);
  padding: 56px 24px 48px;
  border-bottom: 1px solid var(--border);
}

.info-hero-inner {
  max-width: 680px;
  margin: 0 auto;
}

.info-hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.info-title {
  font-family: var(--serif);
  font-size: clamp(40px, 10vw, 64px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--black);
  line-height: 1;
}

.info-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.info-body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-body h2 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--black);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.info-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}

.info-body p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--gray);
}

.info-body a { color: var(--red); }

.info-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--gray);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.info-contact-row:last-child { border-bottom: none; }
.info-contact-row strong { color: var(--black); min-width: 120px; }

.info-table {
  border: 1px solid var(--border);
  overflow: hidden;
}

.info-table-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--gray);
}
.info-table-row:last-child { border-bottom: none; }
.info-price { font-weight: 700; color: var(--red); font-size: 15px; }

.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { padding-top: 0; }

.info-empty {
  font-size: 18px;
  color: var(--gray);
  font-style: italic;
  font-family: var(--serif);
  padding: 40px 0;
  text-align: center;
}

/* About page */
.about-hero-img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  display: block;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-value {
  background: var(--red-bg);
  border: 1px solid var(--border);
  padding: 24px 20px;
}

.about-value-num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 8px;
  line-height: 1;
}

.about-value-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.about-value p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

@media (min-width: 640px) {
  .info-hero { padding: 72px 40px 56px; }
  .info-page { padding: 56px 40px 100px; }
  .about-values { grid-template-columns: repeat(4, 1fr); }
}

.about-value--wide {
  grid-column: 1 / -1;
  background: var(--black);
  border-color: var(--black);
}

.about-value--wide .about-value-num { color: #F1948A; }
.about-value--wide .about-value-title { color: #fff; }
.about-value--wide p { color: #888; }
.about-value--wide strong { color: #F1948A; }

@media (min-width: 640px) {
  .about-values { grid-template-columns: repeat(4, 1fr); }
  .about-value--wide { grid-column: 1 / -1; }
}

/* ── Contact form ── */
.contact-form-wrap {
  border-top: 2px solid var(--red);
  padding-top: 32px;
}

.contact-form-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cf-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.cf-input {
  background: var(--white);
  border: 1.5px solid var(--red);
  border-radius: 0;
  padding: 14px 16px;
  font-size: 15px;
  font-family: var(--sans);
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.cf-input:focus {
  border-color: var(--red-dark);
  border-width: 2px;
}

.cf-input::placeholder { color: #ccc; }

.cf-textarea {
  resize: none;
  height: 120px;
  line-height: 1.6;
}

.cf-submit {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 16px 40px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-end;
  clip-path: polygon(0% 3%, 2% 0%, 98% 1%, 100% 4%, 99% 96%, 97% 100%, 3% 99%, 1% 97%);
}
.cf-submit:hover { background: var(--red-dark); }
.cf-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.cf-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 0;
  text-align: center;
}

.cf-success-icon { font-size: 32px; color: var(--red); }
.cf-success-text { font-size: 16px; color: var(--gray); font-family: var(--serif); font-style: italic; }

.cf-counter {
  font-size: 11px;
  color: var(--red);
  text-align: right;
  margin-top: 4px;
  font-weight: 600;
}

.cf-textarea {
  height: 90px;
}

/* Hide default scrollbar on textarea */
.cf-textarea {
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-y: scroll;
}
.cf-textarea::-webkit-scrollbar { display: none; }

/* Custom scrollbar wrapper */
.cf-textarea-wrap {
  position: relative;
  overflow: hidden;
  border: 1.5px solid var(--red);
}

/* Remove border from textarea itself since wrapper has it */
.cf-textarea {
  border: none !important;
  padding-right: 16px;
  width: 100%;
  box-sizing: border-box;
}

.cf-scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: var(--red-bg);
}

.cf-scrollbar-thumb {
  position: absolute;
  width: 100%;
  background: var(--red);
  cursor: pointer;
  border-radius: 0;
}

/* ── Contest page ── */
.contest-prize {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contest-prize-main {
  background: var(--red);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contest-prize-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff !important;
}

.contest-prize-title {
  font-family: var(--serif);
  font-size: clamp(28px, 6vw, 40px);
  font-weight: 300;
  color: #ffffff !important;
  line-height: 1.1;
}

.contest-prize-sub {
  font-size: 13px;
  color: #ffffff !important;
  line-height: 1.5;
}

.contest-prize-secret {
  background: #0A0A0A;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contest-secret-icon {
  font-size: 24px;
  color: #C0392B !important;
}

.contest-secret-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: #C0392B !important;
}

.contest-secret-text {
  font-size: 13px;
  color: #C0392B !important;
  line-height: 1.6;
}

.contest-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
}

.contest-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 20px;
  border-bottom: 1px solid var(--border);
}

.contest-step:last-child { border-bottom: none; }

.contest-step-num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--red);
  flex-shrink: 0;
  line-height: 1;
}

.contest-step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}

.contest-step-text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

.contest-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.contest-cta-text {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--black);
}

/* ── Payment cards ── */
.payment-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.payment-card {
  border: 1.5px solid var(--border);
  border-left: 4px solid var(--red);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--white);
}

.payment-card-icon {
  font-size: 28px;
}

.payment-card-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
}

.payment-card-text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

@media (min-width: 640px) {
  .payment-cards { grid-template-columns: repeat(3, 1fr); }
}

/* ── Collab tiers ── */
.collab-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.collab-tier {
  border: 1.5px solid var(--border);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--white);
  text-align: center;
}

.collab-tier--red {
  background: var(--red);
  border-color: var(--red);
}

.collab-tier-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--red);
  line-height: 1;
}

.collab-tier--red .collab-tier-num { color: #fff; }

.collab-tier-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

.collab-tier--red .collab-tier-label { color: rgba(255,255,255,0.7); }

.collab-tier-reward {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
  margin-top: 8px;
  line-height: 1.3;
}

.collab-tier--red .collab-tier-reward { color: #fff; }

@media (min-width: 640px) {
  .collab-tiers { grid-template-columns: repeat(4, 1fr); }
}
