/* =========
   Base / Reset
   ========= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  /* Roughly 60% white content area, 40% soft neutral tint */
  background: linear-gradient(to bottom, #ffffff 0, #ffffff 60%, #f3f4f6 100%);
  color: #0f172a;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

/* =========
   Layout
   ========= */
.container {
  /* Slightly wider content and reduced side padding on desktop */
  width: min(1240px, 100% - 1.8rem);
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section--muted {
  background: #eef2ff;
}

.section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 3rem;
  align-items: flex-start;
}

video{
    width: 100%;
}
.section__inner--split {
  align-items: center;
}

.section__inner--reverse {
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
}

.section__header {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section h2 {
  font-size: 2rem;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.section p {
  margin: 0.25rem 0;
}

.grid {
  display: grid;
  gap: 1.75rem;
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* =========
   Header / Nav
   ========= */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #111827;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(153, 8, 8, 0.42);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.logo__mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #990808;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #ffffff;
}

.logo__text {
  font-size: 1rem;
  color: #f9fafb;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.92rem;
}

.nav a {
  padding: 0.25rem 0;
  position: relative;
  color: #e5e7eb;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 0;
  height: 2px;
  background: #990808;
  transition: width 0.18s ease-out;
}

.nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: rgba(226, 232, 240, 0.9);
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: #0f172a;
  border-radius: 999px;
}

/* =========
   Hero
   ========= */
.hero {
  padding: 4rem 0 3.5rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at top right,
      rgba(178, 34, 34, 0.14),
      rgba(178, 34, 34, 0.02) 40%,
      transparent 70%
    ),
    url("images/l2.jpg");
  background-repeat: no-repeat;
  background-position: 90% 10%, right center;
  background-size: 520px auto, cover;
  opacity: 0.2;
  pointer-events: none;
  z-index: -1;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 3.5rem;
  align-items: center;
}

.hero__eyebrow {
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #2d343d;
  margin-bottom: 0.4rem;
}

.hero__title {
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  letter-spacing: -0.04em;
  margin: 0.1rem 0 0.6rem;
}

.hero__subtitle {
  font-size: 1.5rem;
  color: black;
  max-width: 40rem;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.hero__tags span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #1d2025;
  background: rgba(255, 255, 255, 0.8);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin-top: 2.2rem;
}

.stat {
  min-width: 130px;
}

.stat__value {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
}

.stat__label {
  font-size: 0.82rem;
  color: #64748b;
}

.hero__media {
  display: grid;
  gap: 1.5rem;
}

.photo-card {
  background: radial-gradient(circle at top left, #fef2f2 0, #ffe4e6 40%, #ffffff 78%);
  border-radius: 1.5rem;
  padding: 1.3rem 1.3rem 1.1rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.photo-card__frame {
  border-radius: 1.2rem;
  padding: 0;
  border: none;
  background: transparent;
}

.photo-placeholder {
  border-radius: 0.9rem;
  border: none;
  background: #ffffff;
  min-height: 260px;
  object-fit: cover;
}

.photo-card__meta {
  margin-top: 0.9rem;
}

.photo-card__name {
  margin: 0;
  font-weight: 600;
}

.photo-card__role {
  margin: 0.1rem 0 0;
  font-size: 0.9rem;
  color: #475569;
}

.photo-card__fund {
  margin: 0.1rem 0 0;
  font-size: 0.82rem;
  color: #64748b;
}

.highlight-card {
  border-radius: 1.2rem;
  padding: 1.2rem 1.3rem;
  background: #111827;
  color: #fee2e2;
}

.highlight-card__title {
  margin: 0 0 0.3rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e5e7eb;
}

.highlight-card__body {
  margin: 0;
  font-size: 0.95rem;
}

/* =========
   Buttons
   ========= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  font-size: 0.92rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out,
    background-color 0.12s ease-out, border-color 0.12s ease-out;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: #990808;
  color: #ffffff;
  box-shadow: 0 12px 25px rgba(153, 8, 8, 0.4);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(153, 8, 8, 0.55);
}

.btn--ghost {
  border-color: rgba(148, 163, 184, 0.7);
  background: rgba(255, 255, 255, 0.9);
  color: #0f172a;
}

.btn--ghost:hover {
  border-color: #0f172a;
}

/* =========
   About
   ========= */
.about-grid {
  display: grid;
  gap: 1.8rem;
  margin-top: 1.6rem;
}

.about-grid h3 {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
}

.about-grid p {
  margin: 0;
  color: #4b5563;
  font-size: 0.96rem;
}

.info-card {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.about-photo {
  position: relative;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  margin-bottom: 1.4rem;
}

.about-photo img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  transform: scale(1.03);
}

.about-photo::after {
  content: "On the desk";
  position: absolute;
  left: 1rem;
  bottom: 0.9rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.info-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
  font-size: 0.92rem;
}

.info-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  color: #4b5563;
}

.info-list li span:first-child {
  color: #64748b;
}

/* =========
   Cards
   ========= */
.card {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 12px 30px rgba(148, 163, 184, 0.18);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0 0 0.7rem;
  font-size: 0.95rem;
  color: #4b5563;
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pill-list li {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: #fee2e2;
  font-size: 0.8rem;
  color: #374151;
}

/* =========
   Trader Advice Video
   ========= */
.checklist {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: 0.55rem;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  color: #374151;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.video-placeholder {
  border-radius: 1.2rem;
  border: 1px dashed rgba(148, 163, 184, 0.9);
  background: radial-gradient(circle at top left, #fee2e2, #ffffff);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 0.95rem;
  text-align: center;
  padding: 0 1.5rem;
}

/* =========
   Certificates
   ========= */
.certificates-grid {
  align-items: stretch;
}

.certificate-card {
  background: #ffffff;
  border-radius: 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.certificate-placeholder {
  border-bottom: 1px dashed rgba(148, 163, 184, 0.8);
  background: linear-gradient(135deg, #fee2e2, #ffe4e6);
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  font-size: 0.9rem;
}

.certificate-card__body {
  padding: 1rem 1.2rem 1.2rem;
}

.certificate-card__body h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.certificate-card__body p {
  margin: 0;
  font-size: 0.9rem;
  color: #64748b;
}

/* =========
   Testimonials
   ========= */
.testimonial-card {
  background: #ffffff;
  border-radius: 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.testimonial-card__video {
  padding: 0.9rem 0.9rem 0;
}

.video-thumb-placeholder {
  border-radius: 1rem;
  border: 1px dashed rgba(148, 163, 184, 0.8);
  background: linear-gradient(135deg, #fee2e2, #fef2f2);
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 0.9rem;
  text-align: center;
  padding: 0 1.5rem;
}

.testimonial-card__body {
  padding: 1.1rem 1.25rem 1.2rem;
}

.testimonial-card__quote {
  margin: 0 0 0.6rem;
  font-size: 0.96rem;
  color: #4b5563;
  background: #e5e7eb;
  padding: 0.75rem 0.9rem;
  border-radius: 0.75rem;
}

.testimonial-card__name {
  margin: 0;
  font-size: 0.86rem;
  color: #6b7280;
}

/* =========
   Contact
   ========= */
.contact-methods {
  display: grid;
  gap: 1.4rem;
  margin-top: 1.4rem;
}

.contact-detail span {
  font-weight: 500;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.3rem;
}

.social-links a {
  font-size: 0.86rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: rgba(255, 255, 255, 0.9);
  color: #1f2937;
}

.social-links a:hover {
  border-color: #990808;
  color: #111827;
}

.form {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 1.4rem 1.5rem 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.09);
}

.form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form__field label {
  font-size: 0.86rem;
  color: #4b5563;
}

.form__field input,
.form__field select,
.form__field textarea {
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.9);
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
  background: #f9fafb;
  color: #111827;
}

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: #990808;
  box-shadow: 0 0 0 1px rgba(153, 8, 8, 0.35);
  background: #ffffff;
}

.form__footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.form__hint {
  font-size: 0.8rem;
  color: #6b7280;
}

/* =========
   Footer
   ========= */
.footer {
  border-top: 1px solid rgba(148, 163, 184, 0.5);
  background: #f9fafb;
  padding: 1.1rem 0 1.3rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #6b7280;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer__links {
  display: flex;
  gap: 1.2rem;
}

.footer__links a {
  color: #4b5563;
}

.footer__links a:hover {
  color: #111827;
}

/* =========
   Journey Banner (photo background)
   ========= */
.journey-banner {
  padding: 3.2rem 0;
}

.journey-banner__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 2.4rem;
  align-items: center;
}

.journey-banner__content h2 {
  margin: 0.2rem 0 0.7rem;
  font-size: 1.9rem;
  letter-spacing: -0.03em;
}

.journey-banner__content p {
  margin: 0;
  color: #4b5563;
  max-width: 30rem;
}

.journey-banner__eyebrow {
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #4b5563;
}

.journey-banner__photo {
  position: relative;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(127, 29, 29, 0.3);
}

.journey-banner__photo-img {
  min-height: 260px;
  background-image: linear-gradient(
      to bottom,
      rgba(15, 23, 42, 0.15),
      rgba(15, 23, 42, 0.5)
    ),
    url("images/l1.jpg");
  background-size: cover;
  background-position: center;
}

.journey-banner__photo::after {
  content: "Live markets. Real risk.";
  position: absolute;
  left: 1.2rem;
  bottom: 1.1rem;
  font-size: 0.85rem;
  color: #e5e7eb;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =========
   Trading Journey Cards
   ========= */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.journey-card {
  background: #ffffff;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(248, 113, 113, 0.4);
  box-shadow: 0 16px 36px rgba(127, 29, 29, 0.14);
  display: flex;
  flex-direction: column;
}

.journey-card__photo {
  position: relative;
  min-height: 170px;
  background: #fee2e2;
}

.journey-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey-card__photo--alt::after {
  /* content: "Institutional phase"; */
  position: absolute;
  right: 0.8rem;
  bottom: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  color: #fecaca;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.journey-card__photo--muted {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  color: #4b5563;
  font-size: 0.9rem;
  text-align: center;
  background: repeating-linear-gradient(
      -45deg,
      #fef2f2,
      #fef2f2 8px,
      #fee2e2 8px,
      #fee2e2 16px
    );
}

.journey-card__body {
  padding: 1.1rem 1.25rem 1.3rem;
}

.journey-card__body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
}

.journey-card__body p {
  margin: 0;
  font-size: 0.94rem;
  color: #4b5563;
}

/* =========
   Risk Pillars Carousel
   ========= */
.carousel {
  padding: 3.5rem 0;
}

.carousel__inner {
  border-radius: 1.5rem;
  padding: 2.2rem 2rem 2.4rem;
  background: radial-gradient(circle at top left, #fee2e2 0, #fef2f2 35%, #ffffff 80%);
  border: 1px solid rgba(153, 8, 8, 0.5);
  box-shadow: 0 20px 50px rgba(127, 29, 29, 0.25);
}

.carousel__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.6rem;
}

.carousel__header h2 {
  margin: 0;
  font-size: 1.7rem;
  letter-spacing: -0.03em;
}

.carousel__tagline {
  margin: 0;
  max-width: 24rem;
  font-size: 0.94rem;
  color: #4b5563;
}

.carousel__track {
  position: relative;
  overflow: hidden;
}

.carousel__slides {
  display: flex;
  transition: transform 0.4s ease;
}

.carousel__slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: flex-start;
}

.carousel__title {
  font-size: 1.2rem;
  margin: 0 0 0.4rem;
}

.carousel__copy {
  font-size: 0.95rem;
  color: #374151;
  margin: 0 0 0.6rem;
}

.carousel__list {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0;
  display: grid;
  gap: 0.45rem;
  font-size: 0.9rem;
  color: #111827;
}

.carousel__list li::before {
  content: "●";
  margin-right: 0.45rem;
  color: #990808;
  font-size: 0.6rem;
  vertical-align: middle;
}

.carousel__meta {
  font-size: 0.85rem;
  color: #6b7280;
}

.carousel__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.carousel__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #f97373;
}

.carousel__dots {
  display: flex;
  justify-content: flex-end;
  gap: 0.45rem;
  margin-top: 1.4rem;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(153, 8, 8, 0.5);
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.carousel__dot--active {
  background: #990808;
}

/* =========
   Stats (metrics) section
   ========= */
.stats {
  padding: 3.5rem 0 3rem;
}

.stats__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.8rem;
}

.stats__item {
  flex: 1 1 180px;
  text-align: center;
}

.stats__value {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 2.6rem;
  font-weight: 500;
}

.stats__label {
  margin-top: 0.4rem;
  font-size: 1rem;
}

.stats__sub {
  margin-top: 0.1rem;
  font-size: 0.92rem;
  color: #6b7280;
}

/* =========
   Certificate hero
   ========= */
.certificate-hero {
  background: #0b1120;
  color: #f9fafb;
  padding: 2rem;
}

/* .certificate-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.5fr);
  gap: 2.4rem;
  align-items: center;
} */
.certificate-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem 3rem;
}

.certificate-hero__copy {
  flex: 1;
  width: 100%;
 
}

.certificate-hero__copy h2 {
  font-size: 1.7rem;
  margin: 0 0 0.6rem;
}

.certificate-hero__copy p {
  margin: 0.3rem 0;
  color: #e5e7eb;
}

.certificate-hero__image {
  position: relative;
  padding: 0.75rem;
  border-radius: 1.3rem;
  background: #111827;
}

.certificate-hero__image-inner {
  border-radius: 1rem;
  overflow: hidden;
  border: 6px solid #990808;
}

.certificate-hero__image img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
}

/* =========
   Scroll to top button
   ========= */
.scroll-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.6rem;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: none;
  background: #ff2d55;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  font-size: 1.3rem;
  z-index: 30;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease-out, transform 0.18s ease-out;
}

.scroll-top--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}


/* =========
   Responsive
   ========= */
@media (max-width: 960px) {
  .hero {
    padding-top: 3.2rem;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
    gap: 2.4rem;
  }

  .section__inner,
  .section__inner--reverse,
  .journey-banner__inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
    gap: 2.2rem;
  }

  .grid--3,
  .journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .header__inner {
    padding: 0.7rem 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: rgba(143, 5, 23, 0.98);
    border-bottom: 1px solid rgba(148, 163, 184, 0.4);
    padding: 0.75rem 1.25rem 0.9rem;
    flex-direction: column;
    gap: 0.5rem;
    transform-origin: top;
    transform: scaleY(0.8);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease-out, transform 0.15s ease-out;
  }

  .nav--open {
    opacity: 1;
    transform: scaleY(1);
    pointer-events: auto;
  }

  .hero__grid,
  .section__inner,
  .section__inner--reverse,
  .journey-banner__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__media {
    order: -1;
  }

  .hero__actions {
    gap: 0.65rem;
  }

  .hero__stats {
    gap: 1.25rem;
  }

  .section {
    padding: 3.3rem 0;
  }

  .grid--3,
  .journey-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .carousel__slide {
    grid-template-columns: minmax(0, 1fr);
  }

  .form__row {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1.6rem, 480px);
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .hero__tags span {
    font-size: 0.75rem;
  }

  .photo-placeholder {
    min-height: 220px;
  }
}


