/* ==========================================================================
   IT'S ALL ABOUT JOURNEY — brand stylesheet
   Colors and fonts come from IAAJ_Business_Master_File.md, section 13.
   ========================================================================== */

:root {
  --red: #ec0035;
  --black: #111111;
  --white: #ffffff;
  --grey: #525151;
  --orange: #f98f06;
  --green: #0eae1d;
  --cream: #f4f1ea;

  --font-body: 'Roboto', -apple-system, sans-serif;
  --font-heading: 'Poppins', 'Century Gothic', sans-serif;
  --font-script: 'Dancing Script', cursive;

  --max-width: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

/* Guide lead-magnet select + download */
.guide-check-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 10px 0 4px;
}

@media (min-width: 560px) {
  .guide-check-grid { grid-template-columns: 1fr 1fr; }
}

.guide-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1.5px solid #e6e2da;
  border-radius: 12px;
  padding: 14px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.guide-check:hover { border-color: var(--red); }

.guide-check input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--red); flex-shrink: 0; }

.guide-check.checked { border-color: var(--red); background: rgba(236, 0, 53, 0.04); }

.guide-check .gc-title { display: block; font-weight: 700; font-family: var(--font-heading); font-size: 0.95rem; }
.guide-check .gc-desc { display: block; font-size: 0.8rem; color: var(--grey); margin-top: 2px; }

.download-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
}

.download-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1.5px solid #e6e2da;
  border-radius: 12px;
  padding: 16px 18px;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: border-color 0.15s ease, transform 0.1s ease;
}

.download-list a:hover { border-color: var(--red); transform: translateY(-1px); }
.download-list a .dl-arrow { color: var(--red); font-size: 1.1rem; }

.transformation-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

@media (min-width: 620px) {
  .transformation-gallery { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 960px) {
  .transformation-gallery { grid-template-columns: 1fr 1fr 1fr; }
}

.transformation-gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }

p { color: var(--grey); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

/* ---------------- Buttons ---------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(236, 0, 53, 0.35);
}

.btn-outline {
  background: transparent;
  border-color: var(--black);
  color: var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
}

.btn-block {
  width: 100%;
}

/* ---------------- Header / Nav ---------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #eee;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.logo-img {
  height: 66px;
  width: auto;
  display: block;
}

.logo-icon {
  height: 34px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-top {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--black);
}

.logo-bottom {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--red);
  margin-top: -2px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 20px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a.active,
.nav-links a:hover {
  border-bottom-color: var(--red);
  color: var(--red);
}

.nav-cta {
  display: none;
  padding: 12px 22px;
  font-size: 0.85rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--black);
  display: block;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 10px 20px 24px;
  gap: 4px;
  font-family: var(--font-heading);
  font-weight: 600;
  border-top: 1px solid #eee;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 12px 4px;
  border-bottom: 1px solid #f2f2f2;
}

.mobile-menu a.active {
  color: var(--red);
}

.mobile-menu .btn {
  margin-top: 14px;
}

@media (min-width: 1040px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* ---------------- Angled corner motif ---------------- */

.corner-block {
  position: absolute;
  width: 140px;
  height: 140px;
  background: var(--red);
  z-index: 0;
}

.corner-block.top-right {
  top: 0;
  right: 0;
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.corner-block.bottom-left {
  bottom: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

/* ---------------- Hero ---------------- */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  padding: 90px 0 70px;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-tag {
  color: var(--white);
  opacity: 0.75;
  font-size: 0.95rem;
  margin-bottom: 18px;
  max-width: 520px;
}

.hero h1 {
  color: var(--white);
  max-width: 720px;
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--red);
}

.hero-stat span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ---------------- Sections ---------------- */

section {
  padding: 70px 0;
}

.section-cream {
  background: var(--cream);
}

.section-black {
  background: var(--black);
  color: var(--white);
}

.section-black h2,
.section-black h3 {
  color: var(--white);
}

.section-black p {
  color: rgba(255, 255, 255, 0.75);
}

.section-head {
  max-width: 620px;
  margin-bottom: 44px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---------------- Grid / cards ---------------- */

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 720px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-2 { grid-template-columns: 1fr 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 30px 26px;
}

.card-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 10px;
}

.pillar-card {
  background: var(--white);
  border-radius: 16px;
  padding: 26px;
  border-left: 4px solid var(--red);
}

.pillar-letter {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--red);
}

/* ---------------- Placeholder blocks ---------------- */

.placeholder-box {
  background: repeating-linear-gradient(
    45deg,
    #f2f2f2,
    #f2f2f2 10px,
    #ebebeb 10px,
    #ebebeb 20px
  );
  border: 1px dashed #ccc;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--grey);
  font-size: 0.85rem;
  padding: 20px;
  min-height: 220px;
}

.transformation-card {
  border: 1px solid #ececec;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
}

.transformation-card .placeholder-box {
  border-radius: 0;
  border: none;
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.transformation-card .content {
  padding: 22px;
}

/* ---------------- Instagram strip ---------------- */

.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.insta-grid .placeholder-box {
  aspect-ratio: 1 / 1;
  min-height: 0;
  border-radius: 8px;
  font-size: 0.7rem;
}

/* ---------------- FAQ ---------------- */

.faq-item {
  border-bottom: 1px solid #e6e6e6;
  padding: 20px 0;
}

.faq-item h3 {
  margin-bottom: 8px;
}

/* ---------------- Form ---------------- */

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--red);
}

.form-note {
  font-size: 0.8rem;
  color: var(--grey);
  margin-top: 10px;
}

.form-success {
  display: none;
  background: #eafbe9;
  border: 1px solid var(--green);
  color: #145c19;
  padding: 16px;
  border-radius: 10px;
  margin-top: 16px;
  font-size: 0.9rem;
}

/* ---------------- Contact rows ---------------- */

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid #ececec;
}

.contact-row .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
  font-weight: 700;
}

/* ---------------- Sticky WhatsApp ---------------- */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 200;
  background: #25D366;
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* ---------------- Footer ---------------- */

.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  padding: 50px 0 100px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 24px;
}

@media (min-width: 720px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.9rem;
}

.footer-bottom {
  font-size: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

/* ---------------- Utility ---------------- */

.mt-40 { margin-top: 40px; }
.text-center { text-align: center; }
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.tag {
  font-size: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--grey);
}
