/* ===== About Section ===== */

.about {
  position: relative;
  padding: var(--space-2xl) 0;
  background: var(--az-dark-1);
  overflow: hidden;
}

.about__texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  background: repeating-linear-gradient(to bottom, transparent, transparent 2px, rgba(244,131,46,0.012) 2px, rgba(244,131,46,0.012) 3px);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

.about__title {
  font-size: var(--fs-h1);
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.about__pullquote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw + 0.5rem, 2.2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--az-orange);
  line-height: 1.3;
  margin-bottom: var(--space-lg);
  padding-left: 1.25rem;
  border-left: 3px solid var(--az-orange);
  max-width: 420px;
}

.about__body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: var(--space-lg);
}

.about__body p {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  line-height: 1.75;
}

.about__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--az-orange);
  transition: all 0.3s ease;
  width: fit-content;
  margin-bottom: var(--space-lg);
}

.about__link svg { transition: transform 0.3s ease; }
.about__link:hover { color: var(--az-orange-light); }
.about__link:hover svg { transform: translateX(4px); }

/* Micro Stats */
.about__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.about__stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0 clamp(0.8rem, 2vw, 1.5rem);
}

.about__stat:first-child { padding-left: 0; }

.about__stat-num {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.03em;
}

.about__stat-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about__stat-divider {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, transparent, var(--border-medium), transparent);
}

/* Image column */
.about__image-col { position: relative; }

.about__image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about__image-placeholder {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about__image-placeholder svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Layered edge — left side */
.about__layers {
  position: absolute;
  top: 10%; bottom: 10%; left: -10px;
  width: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 3;
  pointer-events: none;
}

.about__layers span {
  display: block;
  height: 2px;
  border-radius: 1px;
  background: var(--az-orange);
}

.about__layers span:nth-child(1) { width: 10px; opacity: 0.45; }
.about__layers span:nth-child(2) { width: 7px;  opacity: 0.32; }
.about__layers span:nth-child(3) { width: 10px; opacity: 0.22; }
.about__layers span:nth-child(4) { width: 8px;  opacity: 0.14; }

@media (min-width: 768px) {
  .about__inner {
    grid-template-columns: 55% 45%;
    gap: clamp(2.5rem, 5vw, 4rem);
  }
}

@media (max-width: 767px) {
  .about__image-col { order: -1; max-width: 360px; margin-inline: auto; }
  .about__layers { display: none; }
  .about__pullquote { max-width: 100%; }
}


/* ===== Newsletter Section ===== */

.newsletter {
  padding: var(--space-xl) 0;
  background: var(--az-dark-2);
  border-top: 1px solid var(--border-subtle);
}

.newsletter__inner {
  max-width: 520px;
  margin-inline: auto;
  text-align: center;
}

.newsletter__title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.newsletter__title em {
  color: var(--az-orange);
  font-style: italic;
}

.newsletter__subtitle {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.newsletter__form { width: 100%; }

.newsletter__input-wrap {
  display: flex;
  gap: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: border-color 0.25s ease;
}

.newsletter__input-wrap:focus-within {
  border-color: var(--az-orange);
  box-shadow: 0 0 0 3px rgba(244,131,46,0.08);
}

.newsletter__input {
  flex: 1;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--text-primary);
  background: var(--az-dark-3);
  border: none;
  padding: 0.85em 1.1em;
  outline: none;
  min-width: 0;
}

.newsletter__input::placeholder { color: var(--text-muted); }

.newsletter__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-small);
  color: var(--text-on-orange);
  background: var(--az-orange);
  border: none;
  padding: 0.85em 1.5em;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s ease;
}

.newsletter__btn:hover { background: var(--az-orange-light); }

.newsletter__btn svg { transition: transform 0.3s ease; }
.newsletter__btn:hover svg { transform: translateX(2px); }

.newsletter__consent {
  margin-top: 0.75rem;
}

.newsletter__consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.newsletter__consent-check {
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--az-orange);
  width: 14px;
  height: 14px;
  cursor: pointer;
}

.newsletter__success {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--az-orange);
  font-weight: 600;
  padding: 1rem 0;
}

.newsletter__success[hidden] { display: none; }

@media (max-width: 480px) {
  .newsletter__input-wrap {
    flex-direction: column;
  }
  .newsletter__btn {
    justify-content: center;
    padding: 0.9em;
  }
}


/* ===== Footer ===== */

.footer {
  background: var(--az-dark-1);
  position: relative;
}

/* Layer-line top border */
.footer__layer-border {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 var(--gutter);
}

.footer__layer-border span {
  display: block;
  height: 1px;
  width: 100%;
}

.footer__layer-border span:nth-child(1) { background: var(--az-orange); opacity: 0.18; }
.footer__layer-border span:nth-child(2) { background: var(--az-orange); opacity: 0.10; }
.footer__layer-border span:nth-child(3) { background: var(--az-orange); opacity: 0.05; }

.footer__main {
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* Brand Column */
.footer__col--brand { max-width: 280px; }

.footer__logo {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  text-decoration: none;
}

.footer__logo-accent {
  color: var(--az-orange);
  font-style: italic;
}

.footer__tagline {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer__social {
  display: flex;
  gap: 0.6rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  transition: all 0.25s ease;
}

.footer__social-link:hover {
  color: var(--az-orange);
  border-color: var(--border-orange);
  background: var(--az-orange-dim);
}

/* Link Columns */
.footer__col-heading {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.03em;
  margin-bottom: 0.85rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  font-size: var(--fs-small);
  color: var(--text-muted);
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer__links a:hover { color: var(--az-orange); }

/* Contact Column */
.footer__email {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  color: var(--az-orange);
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__email:hover { color: var(--az-orange-light); }

.footer__address {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.85rem;
}

.footer__platforms {
  display: flex;
  gap: 0.4rem;
}

.footer__platform {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 0.3em 0.7em;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer__platform:hover {
  color: var(--az-orange);
  border-color: var(--border-orange);
}

/* Bottom Bar */
.footer__bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 1.25rem 0;
}

.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer__copyright {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.footer__made {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.footer__made svg { color: var(--az-orange); opacity: 0.5; }

.footer__payments {
  display: flex;
  gap: 0.4rem;
}

.footer__pay {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  padding: 0.2em 0.5em;
  border: 1px solid var(--border-subtle);
  border-radius: 3px;
  opacity: 0.6;
}

/* Responsive */
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__col--brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }
  .footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* Build reveal */
.reveal-about {
  opacity: 0;
  transform: translateY(20px);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-about { opacity: 1; transform: none; }
}
