/* BROS UI layer: keeps the homepage from feeling like a generic travel template. */
:root {
  --brand-blue-950: #06245f;
  --brand-blue-900: #0a2f80;
  --brand-blue-800: #0f47b0;
  --brand-blue-700: #155bd4;
  --brand-sky-100: #e8f2ff;
  --brand-gold-500: #f2b134;
  --brand-gold-600: #d89518;
  --brand-eco-600: #2e7d32;
  --brand-eco-100: #eaf6ea;
  --brand-ink: #102247;
  --brand-muted: #5f6f89;
  --brand-line: #dbe7f6;
  --brand-cream: #f7f3ea;
  --brand-radius: 6px;
  --brand-shadow-soft: 0 16px 42px rgba(15, 71, 176, .12);
  --brand-shadow-hover: 0 24px 58px rgba(15, 71, 176, .18);
  --brand-gradient-blue: linear-gradient(135deg, #0f47b0 0%, #155bd4 100%);
  --brand-gradient-gold: linear-gradient(135deg, #f8cf72 0%, #f2b134 100%);
}

.font-display {
  letter-spacing: 0;
}

.bros-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
  background: #0a2e70;
}

.bros-hero-bg,
.bros-hero-bg picture,
.bros-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bros-hero-bg img {
  object-fit: cover;
  object-position: center center;
}

.bros-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 20, 48, .9) 0%, rgba(10, 46, 112, .72) 42%, rgba(10, 46, 112, .18) 100%),
    linear-gradient(180deg, rgba(5, 20, 48, .12) 0%, rgba(5, 20, 48, .78) 100%);
}

.bros-hero-shell {
  position: relative;
  z-index: 2;
  max-width: 80rem;
  min-height: inherit;
  margin: 0 auto;
  padding: 4.5rem 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.5rem;
}

.bros-hero-grid {
  width: 100%;
  display: grid;
  gap: 1.25rem;
  align-items: end;
}

.bros-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  width: fit-content;
  padding: .5rem .75rem;
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .94);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.bros-kicker::before {
  content: "";
  width: .45rem;
  height: .45rem;
  border-radius: 999px;
  background: #e8a317;
}

.bros-hero-title {
  max-width: 58rem;
  margin-top: 1.1rem;
  margin-bottom: 1rem;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 3rem;
  line-height: .94;
  font-weight: 800;
  color: #fff;
}

.bros-hero-title span {
  color: #e8a317;
  font-style: italic;
  font-weight: 500;
}

.bros-hero-copy {
  max-width: 45rem;
  color: rgba(255, 255, 255, .88);
  font-size: 1.05rem;
  line-height: 1.65;
}

.bros-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.4rem;
}

.bros-hero-cta {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.15rem;
  border-radius: 2px;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.bros-hero-cta:hover {
  transform: translateY(-1px);
}

.bros-hero-cta.primary {
  background: #e8a317;
  color: #0a2e70;
}

.bros-hero-cta.primary:hover {
  background: #fff;
}

.bros-hero-cta.secondary {
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.bros-hero-cta.secondary:hover {
  background: rgba(255, 255, 255, .2);
}

.bros-route-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
}

.bros-route-chip {
  padding: .42rem .65rem;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .86);
  font-size: .78rem;
  font-weight: 700;
  border-radius: 2px;
}

.bros-guide-note {
  max-width: 27rem;
  background: rgba(255, 255, 255, .96);
  color: #1f2937;
  border-top: 4px solid #e8a317;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
  padding: 1rem;
}

.bros-guide-head {
  display: flex;
  gap: .85rem;
  align-items: center;
}

.bros-guide-avatar {
  width: 4rem;
  height: 4rem;
  flex: 0 0 auto;
  overflow: hidden;
  border: 2px solid #0f47b0;
  background: #0a2e70;
}

.bros-guide-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bros-guide-label {
  color: #0f47b0;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bros-guide-name {
  margin-top: .2rem;
  font-family: "Bricolage Grotesque", sans-serif;
  color: #0a2e70;
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 800;
}

.bros-guide-note p {
  margin-top: .85rem;
  color: rgba(31, 41, 55, .82);
  font-size: .94rem;
  line-height: 1.65;
}

.bros-guide-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .65rem;
  margin-top: 1rem;
}

.bros-guide-meta span {
  min-height: 4.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(15, 71, 176, .12);
  border-left: 3px solid #e8a317;
  background: #f8fafc;
  padding: .72rem .6rem .72rem .7rem;
  color: #0a2e70;
  font-size: .64rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.bros-guide-meta strong {
  display: block;
  margin-bottom: .32rem;
  color: #0a2e70;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.18rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.bros-guide-meta small {
  display: block;
  color: rgba(31, 41, 55, .66);
  font-size: .62rem;
  line-height: 1.35;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.bros-hero-proofbar {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: rgba(255, 255, 255, .98);
  border-top: 4px solid #e8a317;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .22);
}

.bros-hero-stat {
  min-height: 5.75rem;
  padding: 1rem;
  border-right: 1px solid rgba(31, 41, 55, .1);
  border-bottom: 1px solid rgba(31, 41, 55, .1);
}

.bros-hero-stat strong {
  display: block;
  font-family: "Bricolage Grotesque", sans-serif;
  color: #0a2e70;
  font-size: 2rem;
  line-height: 1;
}

.bros-hero-stat span {
  display: block;
  margin-top: .35rem;
  color: rgba(31, 41, 55, .68);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .bros-hero-shell {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .bros-hero-title {
    font-size: 4.2rem;
  }
}

@media (min-width: 1024px) {
  .bros-hero {
    min-height: 760px;
  }

  .bros-hero-shell {
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .bros-hero-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(22rem, .65fr);
    gap: 3rem;
  }

  .bros-hero-title {
    font-size: 5.9rem;
  }

  .bros-hero-proofbar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .bros-hero-stat {
    border-bottom: 0;
    padding: 1.25rem 1.35rem;
  }
}

@media (max-width: 767px) {
  .bros-hero {
    min-height: 760px;
  }

  .bros-hero-bg img {
    object-position: center top;
  }

  .bros-hero-bg::after {
    background:
      linear-gradient(180deg, rgba(5, 20, 48, .58) 0%, rgba(10, 46, 112, .76) 42%, rgba(5, 20, 48, .9) 100%),
      linear-gradient(90deg, rgba(5, 20, 48, .84), rgba(10, 46, 112, .42));
  }

  .bros-hero-shell {
    justify-content: center;
    padding-top: 2.25rem;
    padding-bottom: 1rem;
    gap: 1rem;
  }

  .bros-kicker {
    max-width: 100%;
    font-size: .62rem;
    line-height: 1.35;
  }

  .bros-hero-title {
    margin-top: .9rem;
    font-size: 2.45rem;
  }

  .bros-hero-copy {
    max-width: 21rem;
    font-size: .94rem;
    line-height: 1.58;
  }

  .bros-hero-actions {
    gap: .55rem;
    margin-top: 1rem;
  }

  .bros-hero-cta {
    width: 100%;
    min-height: 2.85rem;
    padding: .75rem .9rem;
    font-size: .92rem;
  }

  .bros-route-strip,
  .bros-guide-note {
    display: none;
  }

  .bros-hero-stat {
    min-height: 4.7rem;
    padding: .8rem;
  }

  .bros-hero-stat strong {
    font-size: 1.65rem;
  }

  .bros-hero-stat span {
    font-size: .62rem;
  }
}

/* Quote-led tour collection */
.quote-container {
  width: min(100% - 2rem, 80rem);
  margin-inline: auto;
}

.quote-hero {
  position: relative;
  overflow: hidden;
  background: #08275f;
  color: #fff;
}

.quote-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(5, 20, 48, .94), rgba(8, 39, 95, .78) 48%, rgba(8, 39, 95, .4)),
    url("/assets/hero-lake-toba-1280.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.quote-hero-grid {
  position: relative;
  min-height: 640px;
  padding-block: 5rem 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, .55fr);
  gap: 2rem;
  align-items: end;
}

.quote-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  color: #e8a317;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.quote-eyebrow::before {
  content: "";
  width: .45rem;
  height: .45rem;
  background: currentColor;
  border-radius: 999px;
}

.quote-eyebrow.dark {
  color: #0f47b0;
}

.quote-hero h1,
.quote-section-head h2,
.quote-include-panel h2,
.quote-steps-panel h2,
.quote-final h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  letter-spacing: 0;
}

.quote-hero h1 {
  max-width: 48rem;
  font-size: clamp(2.55rem, 6vw, 5.45rem);
  line-height: .92;
  font-weight: 800;
}

.quote-hero-copy p {
  max-width: 43rem;
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, .88);
  font-size: 1.08rem;
  line-height: 1.75;
}

.quote-hero-actions,
.quote-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  margin-top: 1.4rem;
}

.quote-btn {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .86rem 1.1rem;
  border-radius: 2px;
  font-weight: 850;
  line-height: 1.15;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.quote-btn:hover {
  transform: translateY(-1px);
}

.quote-btn.primary {
  background: #e8a317;
  color: #08275f;
}

.quote-btn.primary:hover {
  background: #fff;
}

.quote-btn.ghost {
  border: 1px solid rgba(255, 255, 255, .34);
  color: #fff;
  background: rgba(255, 255, 255, .1);
}

.quote-btn.ghost:hover {
  border-color: rgba(255, 255, 255, .65);
  background: rgba(255, 255, 255, .18);
}

.quote-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.25rem;
}

.quote-chip-row span {
  padding: .45rem .65rem;
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .88);
  border-radius: 2px;
  font-size: .78rem;
  font-weight: 750;
}

.quote-guide-panel {
  padding: 1.25rem;
  background: rgba(255, 255, 255, .96);
  color: #1f2937;
  border-top: 4px solid #e8a317;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.quote-panel-label {
  color: #0f47b0;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.quote-guide-panel h2 {
  margin-top: .6rem;
  color: #08275f;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.7rem;
  line-height: 1.05;
  font-weight: 800;
}

.quote-guide-panel p {
  margin-top: .9rem;
  color: rgba(31, 41, 55, .78);
  line-height: 1.7;
}

.quote-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem;
  margin-top: 1rem;
}

.quote-proof-grid span {
  border-left: 3px solid #e8a317;
  padding-left: .6rem;
  color: #08275f;
  font-size: .78rem;
  font-weight: 850;
}

.quote-categories {
  background: #fff;
  border-bottom: 1px solid rgba(31, 41, 55, .08);
}

.quote-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(31, 41, 55, .08);
}

.quote-category {
  min-height: 8.25rem;
  padding: 1.15rem;
  background: #fff;
}

.quote-category strong {
  display: block;
  color: #08275f;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.2rem;
  line-height: 1.05;
}

.quote-category span {
  display: block;
  margin-top: .55rem;
  color: rgba(31, 41, 55, .68);
  font-size: .9rem;
  line-height: 1.55;
}

.quote-products,
.quote-process {
  background: #f7f3ea;
  padding-block: 4.5rem;
}

.quote-section-head {
  max-width: 55rem;
  margin-bottom: 2rem;
}

.quote-section-head h2 {
  color: #08275f;
  font-size: clamp(2rem, 4vw, 3.9rem);
  line-height: .98;
  font-weight: 800;
}

.quote-section-head p {
  max-width: 46rem;
  margin-top: 1rem;
  color: rgba(31, 41, 55, .72);
  font-size: 1.02rem;
  line-height: 1.75;
}

.quote-tour-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.quote-tour-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(31, 41, 55, .1);
  border-top: 4px solid #0f47b0;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.quote-tour-card.featured {
  border-top-color: #e8a317;
}

.quote-tour-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 71, 176, .22);
  box-shadow: 0 18px 44px rgba(8, 39, 95, .12);
}

.quote-tour-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #08275f;
}

.quote-tour-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.quote-tour-card:hover .quote-tour-media img {
  transform: scale(1.04);
}

.quote-tour-media span {
  position: absolute;
  left: .85rem;
  bottom: .85rem;
  padding: .42rem .55rem;
  background: rgba(8, 39, 95, .9);
  color: #fff;
  border-left: 3px solid #e8a317;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.quote-tour-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.1rem;
}

.quote-tour-kicker {
  color: #0f47b0;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.quote-tour-card .card-signal-row {
  margin-top: .7rem;
  margin-bottom: .05rem;
}

.quote-tour-card .card-signal {
  background: #f7f3ea;
}

.quote-tour-card.featured .card-signal {
  border-color: rgba(232, 163, 23, .35);
}

.quote-tour-body h3 {
  margin-top: .45rem;
  color: #08275f;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.45rem;
  line-height: 1.08;
  font-weight: 800;
}

.quote-tour-body p {
  margin-top: .75rem;
  color: rgba(31, 41, 55, .74);
  line-height: 1.65;
}

.quote-route-list {
  display: grid;
  gap: .45rem;
  margin-top: .95rem;
  padding: 0;
  list-style: none;
}

.quote-route-list li {
  position: relative;
  padding-left: 1rem;
  color: rgba(31, 41, 55, .78);
  font-size: .9rem;
  line-height: 1.45;
}

.quote-route-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: .35rem;
  height: .35rem;
  background: #e8a317;
  border-radius: 999px;
}

.quote-best {
  margin-top: 1rem;
  padding-top: .9rem;
  border-top: 1px solid rgba(31, 41, 55, .1);
  color: rgba(31, 41, 55, .75);
  font-size: .86rem;
  line-height: 1.5;
}

.quote-best strong {
  color: #08275f;
}

.quote-card-actions {
  margin-top: auto;
  padding-top: 1rem;
}

.quote-card-actions .quote-btn {
  min-height: 2.65rem;
  font-size: .9rem;
}

.quote-no-price {
  color: rgba(31, 41, 55, .56);
  font-size: .78rem;
  font-weight: 750;
}

.quote-process {
  padding-top: 0;
}

.quote-process-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 1rem;
}

.quote-include-panel,
.quote-steps-panel {
  background: #fff;
  border: 1px solid rgba(31, 41, 55, .1);
  padding: 1.5rem;
}

.quote-include-panel {
  border-top: 4px solid #e8a317;
}

.quote-include-panel h2,
.quote-steps-panel h2 {
  color: #08275f;
  font-size: clamp(1.85rem, 3vw, 2.8rem);
  line-height: 1;
  font-weight: 800;
}

.quote-include-panel ul {
  display: grid;
  gap: .75rem;
  margin-top: 1.25rem;
  padding: 0;
  list-style: none;
}

.quote-include-panel li {
  padding: .75rem .85rem;
  background: #f7f3ea;
  color: rgba(31, 41, 55, .78);
  font-weight: 750;
}

.quote-steps {
  display: grid;
  gap: .75rem;
  margin-top: 1.25rem;
}

.quote-step {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: .85rem;
  padding: 1rem;
  background: #f7f3ea;
}

.quote-step span {
  grid-row: span 2;
  color: #0f47b0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 800;
}

.quote-step strong {
  color: #08275f;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.12rem;
  line-height: 1.15;
}

.quote-step p {
  color: rgba(31, 41, 55, .72);
  line-height: 1.55;
}

.quote-final {
  background: #08275f;
  color: #fff;
}

.quote-final-inner {
  min-height: 20rem;
  padding-block: 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.quote-final h2 {
  max-width: 48rem;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: .98;
  font-weight: 800;
}

.quote-final p {
  max-width: 42rem;
  margin-top: .95rem;
  color: rgba(255, 255, 255, .82);
  font-size: 1rem;
  line-height: 1.75;
}

@media (max-width: 1024px) {
  .quote-hero-grid,
  .quote-process-grid,
  .quote-final-inner {
    grid-template-columns: 1fr;
  }

  .quote-hero-grid {
    min-height: auto;
    padding-top: 4rem;
  }

  .quote-category-grid,
  .quote-tour-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .quote-container {
    width: min(100% - 1.25rem, 80rem);
  }

  .quote-hero-grid {
    padding-block: 3.25rem 2rem;
  }

  .quote-hero h1 {
    font-size: 2.55rem;
  }

  .quote-hero-copy p {
    font-size: .98rem;
  }

  .quote-category-grid,
  .quote-tour-grid {
    grid-template-columns: 1fr;
  }

  .quote-guide-panel,
  .quote-include-panel,
  .quote-steps-panel {
    padding: 1rem;
  }

  .quote-proof-grid {
    grid-template-columns: 1fr;
  }

  .quote-products,
  .quote-process {
    padding-block: 3rem;
  }

  .quote-process {
    padding-top: 0;
  }

  .quote-step {
    grid-template-columns: 2.5rem minmax(0, 1fr);
  }

  .quote-final-inner {
    gap: 1.25rem;
  }
}

/* Brand package cosmetics: local shapes, premium cards, and subtle motion. */
.bros-hero,
.quote-hero,
.trust-hero {
  isolation: isolate;
}

.bros-hero::after,
.quote-hero::after,
.trust-hero::before {
  content: "";
  position: absolute;
  top: auto;
  right: -5%;
  bottom: -1px;
  left: -5%;
  z-index: 1;
  height: clamp(4.8rem, 8vw, 7.5rem);
  background: url("/assets/bros/shapes/wave-divider-primary.svg") center bottom / cover no-repeat;
  opacity: .72;
  pointer-events: none;
}

.bros-hero-shell,
.quote-hero-grid,
.trust-hero-grid,
.quote-final-inner {
  position: relative;
  z-index: 2;
}

.bros-kicker,
.bros-route-chip,
.quote-chip-row span {
  border-radius: 999px;
}

.bros-hero-cta,
.quote-btn,
.trust-cta a,
.home-pick-action a,
.trust-crosslink a,
.guide-cta-row a {
  border-radius: var(--brand-radius);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background-color .22s ease, color .22s ease;
}

.bros-hero-cta.primary,
.quote-btn.primary,
.trust-cta .primary,
.home-pick-action a,
.guide-cta-row a:first-child {
  background: var(--brand-gradient-gold);
  color: var(--brand-blue-950);
  box-shadow: 0 14px 28px rgba(216, 149, 24, .22);
}

.bros-hero-cta:hover,
.quote-btn:hover,
.trust-cta a:hover,
.home-pick-action a:hover,
.trust-crosslink a:hover,
.guide-cta-row a:hover {
  transform: translateY(-2px);
  box-shadow: var(--brand-shadow-soft);
}

.bros-guide-note,
.quote-guide-panel,
.bros-hero-proofbar,
.ahmad-proof-card,
.home-route-note,
.home-pick,
.home-faq-item,
.quote-category,
.quote-tour-card,
.quote-include-panel,
.quote-steps-panel,
.trust-card,
.trust-route,
.trust-faq article,
.trust-stat {
  border-radius: var(--brand-radius);
}

.bros-guide-note,
.quote-guide-panel,
.bros-hero-proofbar {
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.bros-guide-avatar,
.home-pick-img,
.quote-tour-media,
.trust-photo {
  border-radius: var(--brand-radius);
}

.home-route-desk,
.quote-products,
.quote-process,
.home-faq,
.trust-band.alt,
.trust-crosslink {
  position: relative;
  background:
    linear-gradient(180deg, rgba(232, 242, 255, .54), rgba(247, 243, 234, .94) 18rem),
    var(--brand-cream);
  overflow: hidden;
}

.home-route-desk::before,
.quote-products::before,
.trust-band.alt::before {
  content: "";
  position: absolute;
  top: 2rem;
  right: max(1rem, calc((100% - 80rem) / 2));
  width: min(32rem, 48vw);
  height: 8rem;
  background: url("/assets/bros/shapes/route-path-dashed.svg") center / contain no-repeat;
  opacity: .22;
  pointer-events: none;
}

.home-route-map,
.quote-final,
.trust-quote {
  position: relative;
  overflow: hidden;
}

.home-route-map::before,
.quote-final::before,
.trust-quote::before {
  content: "";
  position: absolute;
  right: 1.5rem;
  bottom: 1.4rem;
  width: min(22rem, 48%);
  height: 7rem;
  background: url("/assets/bros/shapes/soft-mountain-gradient.svg") center / contain no-repeat;
  opacity: .22;
  pointer-events: none;
}

.home-route-note,
.ahmad-proof-card,
.home-pick,
.quote-tour-card,
.trust-card,
.trust-route,
.trust-faq article,
.home-faq-item {
  box-shadow: 0 12px 30px rgba(8, 39, 95, .06);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.home-route-note:hover,
.ahmad-proof-card:hover,
.home-pick:hover,
.quote-tour-card:hover,
.trust-card:hover,
.trust-route:hover,
.trust-faq article:hover,
.home-faq-item:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 71, 176, .26);
  box-shadow: var(--brand-shadow-hover);
}

.home-route-note strong,
.trust-card-number,
.quote-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 999px;
  background: var(--brand-sky-100);
  color: var(--brand-blue-800);
}

.home-route-note:nth-child(2) strong,
.home-route-note:nth-child(4) strong,
.trust-card.dark .trust-card-number {
  background: rgba(242, 177, 52, .15);
  color: var(--brand-gold-500);
}

.card-signal.eco {
  border-color: rgba(46, 125, 50, .26);
  background: var(--brand-eco-100);
}

.quote-category {
  position: relative;
  min-height: 9.3rem;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(8, 39, 95, .05);
}

.quote-category::after {
  content: "";
  position: absolute;
  right: -1.5rem;
  bottom: -.85rem;
  width: 8rem;
  height: 3.4rem;
  background: url("/assets/bros/shapes/soft-mountain-gradient.svg") center / contain no-repeat;
  opacity: .18;
  pointer-events: none;
}

.quote-category-icon {
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: .85rem;
}

.quote-category-icon svg {
  width: 100%;
  height: 100%;
}

.quote-tour-card {
  box-shadow: 0 12px 30px rgba(8, 39, 95, .06);
}

.quote-tour-card:hover,
.home-pick:hover {
  transform: translateY(-6px);
}

.quote-tour-media span,
.home-route-chips span {
  border-radius: 4px;
}

.quote-route-list li::before,
.home-pick li::before,
.trust-list li::before {
  box-shadow: 0 0 0 4px rgba(242, 177, 52, .12);
}

.quote-final {
  background:
    linear-gradient(135deg, rgba(6, 36, 95, .98), rgba(15, 71, 176, .92)),
    var(--brand-blue-950);
}

.wa-floating {
  animation: brosPulse 2.1s ease-in-out infinite;
}

@keyframes brosPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(15, 71, 176, .18), 0 18px 34px rgba(0, 0, 0, .2);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(15, 71, 176, 0), 0 18px 34px rgba(0, 0, 0, .2);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wa-floating {
    animation: none;
  }

  .bros-hero-cta,
  .quote-btn,
  .trust-cta a,
  .home-pick,
  .quote-tour-card,
  .trust-card,
  .trust-route,
  .home-route-note,
  .home-faq-item,
  .ahmad-proof-card {
    transition: none;
  }
}

@media (max-width: 720px) {
  .bros-hero::after,
  .quote-hero::after,
  .trust-hero::before {
    height: 4.4rem;
    opacity: .58;
  }

  .home-route-desk::before,
  .quote-products::before,
  .trust-band.alt::before {
    width: 18rem;
    opacity: .12;
  }

  .quote-category {
    min-height: auto;
  }
}

/* About page polish: give the hero copy enough air before the stats rail. */
.about-hero {
  overflow: visible !important;
  padding-top: clamp(4.75rem, 7vw, 7rem) !important;
  padding-bottom: clamp(13.5rem, 18vw, 16.5rem) !important;
  isolation: isolate;
}

.about-hero > .absolute.top-12 {
  top: clamp(4rem, 9vw, 7rem);
  opacity: .12;
  transform: none;
}

.about-hero > .relative {
  z-index: 2;
}

.about-hero-title {
  max-width: 58rem;
  margin-bottom: clamp(1.5rem, 2.2vw, 2.25rem) !important;
  font-size: clamp(3.45rem, 5vw, 5.2rem) !important;
  line-height: 1.04 !important;
  letter-spacing: 0 !important;
  text-wrap: balance;
}

.about-hero-title em {
  display: inline-block;
  margin-top: .42rem;
  line-height: 1.08;
}

.about-hero-copy {
  max-width: 34rem;
  margin-bottom: clamp(2.75rem, 4vw, 4.75rem);
  color: rgba(255, 255, 255, .84) !important;
  font-size: clamp(1.06rem, 1.18vw, 1.2rem) !important;
  line-height: 1.8 !important;
  text-wrap: pretty;
}

.about-stats-wrap {
  bottom: 0 !important;
  z-index: 3;
  transform: translateY(50%);
  pointer-events: none;
}

.about-stats {
  overflow: hidden;
  border-radius: var(--brand-radius);
  box-shadow: 0 22px 56px rgba(8, 39, 95, .2);
  pointer-events: auto;
}

.about-stats .font-display {
  line-height: 1.05;
  letter-spacing: 0;
}

.about-hero + section {
  padding-top: clamp(8.5rem, 12vw, 11rem) !important;
}

@media (max-width: 1023px) {
  .about-hero {
    overflow: hidden !important;
    padding-top: 4rem !important;
    padding-bottom: 3.75rem !important;
  }

  .about-hero > .absolute.top-12 {
    top: 5rem;
    right: -24rem;
    width: 50rem;
    opacity: .1;
    transform: none;
  }

  .about-hero-title {
    font-size: clamp(3rem, 11vw, 4.75rem) !important;
    line-height: 1.07 !important;
    margin-bottom: 1.35rem !important;
  }

  .about-hero-copy {
    max-width: 42rem;
    margin-bottom: 0;
    font-size: 1rem !important;
    line-height: 1.78 !important;
  }

  .about-stats-wrap {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    margin-top: 2rem;
    transform: none;
  }

  .about-stats-wrap > div {
    padding-inline: 0;
  }

  .about-stats {
    box-shadow: 0 18px 42px rgba(8, 39, 95, .18);
  }

  .about-stats > div {
    padding: 1.1rem !important;
  }

  .about-hero + section {
    padding-top: 4.5rem !important;
  }
}
