/* =========================================================
   AKN PROJECTS — WHY CHOOSE US PAGE
   ========================================================= */

.page-why-us { background: var(--white); }

/* ---------- Shared ---------- */
.wy-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}
.wy-eyebrow--light { color: var(--gold-light); }
.wy-eyebrow-rule {
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.wy-heading {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.18;
  color: var(--dark);
  margin: 0 0 16px;
}
.wy-heading--light { color: var(--white); }

.wy-copy {
  font-size: 14.2px;
  line-height: 1.82;
  color: rgba(12,31,37,0.66);
  margin: 0 0 18px;
}
.wy-copy--light { color: rgba(255,255,255,0.64); }

.wy-script {
  font-family: "Dancing Script", var(--font-display), cursive;
  font-size: 34px;
  line-height: 1.3;
  color: var(--gold);
  margin: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.wy-hero {
  position: relative;
  isolation: isolate;
  margin-top: var(--header-h);
  min-height: clamp(450px, 42vw, 600px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--dark);
}

.wy-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('../images/services/why-choose-us.webp') center right / cover no-repeat;
}

.wy-hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg,
      rgba(8,24,29,0.96) 0%,
      rgba(8,24,29,0.92) 26%,
      rgba(8,24,29,0.72) 38%,
      rgba(8,24,29,0.34) 50%,
      rgba(8,24,29,0.08) 64%,
      rgba(8,24,29,0) 78%),
    linear-gradient(0deg,
      rgba(8,24,29,0.94) 0%,
      rgba(8,24,29,0.62) 16%,
      rgba(8,24,29,0.12) 32%,
      rgba(8,24,29,0) 48%);
}

.wy-hero-inner {
  position: relative;
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 50px 48px 0;
}
.wy-hero-text { max-width: 520px; }

.wy-crumb-rule {
  display: inline-block;
  width: 46px;
  height: 1px;
  background: rgba(217,180,138,0.5);
  margin-left: 6px;
}

.wy-hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 12px;
}

.wy-hero-script {
  position: absolute;
  right: 56px;
  bottom: 168px;
  margin: 0;
  text-align: center;
  font-family: "Dancing Script", var(--font-display), cursive;
  font-size: 30px;
  line-height: 1.35;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 2px 20px rgba(6,14,18,0.6);
}

.wy-hero-bar {
  border-top: 1px solid rgba(217,180,138,0.22);
  margin-top: 34px;
  padding: 24px 0 30px;
}

.wy-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.wy-hero-stats li { position: relative; padding: 0 34px; }
.wy-hero-stats li:first-child { padding-left: 0; }
.wy-hero-stats li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 1px;
  background: rgba(217,180,138,0.3);
}
.wy-hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.12;
}
.wy-hero-stats .wy-stat-word { font-size: 26px; }
.wy-hero-stats span { font-size: 12.4px; color: rgba(255,255,255,0.7); }

/* =========================================================
   PHILOSOPHY
   ========================================================= */
.wy-philosophy {
  position: relative;
  background: var(--cream);
  padding: 96px 0 110px;
}
.wy-philosophy::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(178,134,87,0.35), transparent);
}

.wy-philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1.14fr;
  gap: 64px;
  align-items: center;
}
.wy-philosophy-inner > * { min-width: 0; }

.wy-philosophy-text { position: relative; padding-left: 26px; }
.wy-philosophy-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 42px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), rgba(178,134,87,0.05));
}
.wy-philosophy-text .wy-copy { margin-bottom: 30px; }

.wy-philosophy-media { position: relative; }
.wy-philosophy-media::before {
  content: "";
  position: absolute;
  left: -16px;
  top: -16px;
  width: 46%;
  height: 58%;
  border-left: 1px solid rgba(178,134,87,0.45);
  border-top: 1px solid rgba(178,134,87,0.45);
  pointer-events: none;
}

.wy-philosophy-shot {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 16 / 10.5;
  width: 82%;
  box-shadow: 0 34px 70px -38px rgba(12,31,37,0.6);
}
.wy-philosophy-shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.wy-philosophy-shot:hover img { transform: scale(1.05); }

.wy-philosophy-card {
  position: absolute;
  right: 0;
  bottom: -40px;
  width: 42%;
  padding: 34px 30px;
  background:
    linear-gradient(160deg, rgba(18,38,45,0.98), rgba(8,24,29,0.98));
  border: 1px solid rgba(217,180,138,0.3);
  border-radius: 2px;
  box-shadow: 0 40px 80px -40px rgba(8,24,29,0.9);
}
.wy-philosophy-card::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(217,180,138,0.12);
  pointer-events: none;
}
.wy-card-rule {
  display: block;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), rgba(217,180,138,0.1));
  margin-bottom: 18px;
}
.wy-philosophy-card p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 2.1;
  text-transform: uppercase;
  color: var(--white);
}

/* =========================================================
   ADVANTAGES
   ========================================================= */
.wy-adv-section { background: var(--white); padding: 92px 0; }

.wy-adv-head { max-width: 620px; margin-bottom: 48px; }
.wy-adv-head .wy-heading { margin-bottom: 0; }

.wy-adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.wy-adv {
  position: relative;
  background: linear-gradient(180deg, #fdfcfa, #f7f3ec);
  border: 1px solid rgba(178,134,87,0.16);
  border-radius: 3px;
  padding: 40px 32px 36px;
  text-align: left;
  overflow: hidden;
  transition: transform 0.55s var(--ease), border-color 0.55s var(--ease), box-shadow 0.55s var(--ease);
}
.wy-adv::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.6s var(--ease);
}
.wy-adv:hover {
  transform: translateY(-8px);
  border-color: rgba(178,134,87,0.45);
  box-shadow: 0 40px 70px -40px rgba(12,31,37,0.55);
}
.wy-adv:hover::before { width: 100%; }

.wy-adv-ico {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin: 0 0 22px;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(178,134,87,0.09);
  border: 1px solid rgba(178,134,87,0.28);
  transition: color 0.5s var(--ease), background 0.5s var(--ease), border-color 0.5s var(--ease), transform 0.55s var(--ease);
}
.wy-adv-ico svg { width: 28px; height: 28px; position: relative; z-index: 1; }
.wy-adv:hover .wy-adv-ico {
  color: var(--white);
  background: linear-gradient(140deg, var(--gold), #8f6a41);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 16px 28px -14px rgba(178,134,87,0.75);
}

.wy-adv h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.32;
  color: var(--dark);
  margin: 0 0 12px;
}
.wy-adv p {
  font-size: 13.4px;
  line-height: 1.78;
  color: rgba(12,31,37,0.62);
  margin: 0;
}

/* =========================================================
   THE AKN DIFFERENCE
   ========================================================= */
.wy-diff {
  position: relative;
  padding: 92px 0;
  background:
    linear-gradient(180deg, rgba(8,24,29,0.93), rgba(8,24,29,0.96)),
    url('../images/bg-footer.png') center / cover no-repeat;
}

.wy-diff-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.62fr;
  gap: 40px;
  align-items: center;
}
.wy-diff-inner > * { min-width: 0; }

.wy-diff-text .wy-copy { margin-bottom: 24px; }

.wy-diff-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 650 / 402;
  border: 1px solid rgba(217,180,138,0.28);
  box-shadow: 0 40px 80px -42px rgba(0,0,0,0.95);
}
.wy-diff-media::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(217,180,138,0.16);
  pointer-events: none;
}
.wy-diff-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.85s var(--ease);
}
.wy-diff-media:hover img { transform: scale(1.05); }

.wy-diff-list { display: flex; flex-direction: column; gap: 26px; }
.wy-diff-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.14);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--white);
  transition: color 0.4s var(--ease);
}
.wy-diff-list li:hover { color: var(--gold-light); }
.wy-diff-arrow {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--gold-light);
  transition: transform 0.4s var(--ease);
}
.wy-diff-arrow svg { width: 100%; height: 100%; }
.wy-diff-list li:hover .wy-diff-arrow { transform: translateX(4px); }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.wy-reviews { background: var(--cream); padding: 88px 0; }

.wy-reviews-head { margin-bottom: 40px; }
.wy-reviews-head .wy-heading { margin-bottom: 0; }

.wy-reviews-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}
.wy-reviews-body > * { min-width: 0; }

.wy-quote-slide {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  animation: wyFade 0.6s var(--ease);
}
.wy-quote-slide:not(.is-active) { display: none; }

@keyframes wyFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.wy-quote {
  margin: 0;
  padding: 32px 30px;
  background: var(--white);
  border: 1px solid rgba(178,134,87,0.16);
  border-radius: 3px;
  box-shadow: 0 26px 55px -40px rgba(12,31,37,0.55);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.wy-quote:hover { transform: translateY(-4px); border-color: rgba(178,134,87,0.4); }
.wy-quote-mark {
  display: block;
  width: 30px;
  height: 30px;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 16px;
}
.wy-quote-mark svg { width: 100%; height: 100%; }
.wy-quote p {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(12,31,37,0.72);
  margin: 0 0 14px;
}
.wy-quote cite { font-style: normal; }
.wy-quote cite { display: block; padding-top: 14px; border-top: 1px solid rgba(178,134,87,0.2); }
.wy-quote cite strong {
  display: block;
  font-family: var(--font-body);
  font-size: 13.4px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}
.wy-quote cite span { font-size: 12.2px; color: var(--gold); }



.wy-reviews-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.wy-reviews-media figure {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 3 / 4;
  background: var(--white);
  box-shadow: 0 30px 60px -40px rgba(12,31,37,0.6);
}
.wy-reviews-media figure:first-child { margin-top: 22px; }
.wy-reviews-media figure:last-child { margin-bottom: 22px; }
.wy-reviews-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.85s var(--ease);
}
.wy-reviews-media figure:hover img { transform: scale(1.05); }

.wy-reviews-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
}

.wy-arrows { display: flex; gap: 10px; }
.wy-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(178,134,87,0.45);
  background: transparent;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.wy-arrow svg { width: 15px; height: 15px; }
.wy-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.wy-dots { display: flex; align-items: center; gap: 8px; }
.wy-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(178,134,87,0.3);
  cursor: pointer;
  transition: width 0.4s var(--ease), background 0.4s var(--ease);
}
.wy-dot.is-active { width: 22px; border-radius: 6px; background: var(--gold); }

/* =========================================================
   AREAS (shared strip, page tweaks)
   ========================================================= */
.wy-areas { background: var(--cream); }
.wy-areas .areas-title { line-height: 1.35; }
.areas-btn { margin-top: 18px; }

/* =========================================================
   CTA
   ========================================================= */
.wy-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 60px 0;
  display: flex;
  align-items: center;
  min-height: 290px;
}
.wy-cta-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(90deg, rgba(6,14,18,0.3) 0%, rgba(6,14,18,0.12) 45%, rgba(6,14,18,0.26) 100%),
    url('../images/CTA-bg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.wy-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 32px 42px;
  border-radius: 4px;
  background: rgba(12,31,37,0.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(217,180,138,0.26);
}
.wy-cta-eyebrow {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 12px;
}
.wy-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(23px, 2.6vw, 32px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.24;
  margin: 0 0 10px;
}
.wy-cta-copy {
  font-size: 13.4px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin: 0;
  max-width: 400px;
}

/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */
@media (max-width: 1100px) {
  .wy-hero-inner { padding: 42px 32px 0; }
  .wy-hero-text { max-width: 62%; }
  .wy-hero-script { right: 32px; bottom: 190px; font-size: 25px; }
  .wy-hero-stats li { padding: 0 20px; }

  .wy-philosophy-inner { grid-template-columns: 1fr; gap: 40px; }
  .wy-philosophy-shot { width: 84%; }
  .wy-philosophy-card { width: 40%; bottom: -18px; }

  .wy-adv-grid { grid-template-columns: repeat(2, 1fr); }
  .wy-philosophy { padding: 72px 0 96px; }
  .wy-adv-section { padding: 68px 0; }

  .wy-diff-inner { grid-template-columns: 1fr 1fr; }
  .wy-diff-media { grid-column: 1 / -1; order: -1; }

  .wy-reviews-body { grid-template-columns: 1fr; gap: 30px; }
  .wy-reviews-media { order: -1; }
}

/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */
@media (max-width: 720px) {
  .wy-hero { min-height: 0; }
  .wy-hero-bg { background-position: center; }
  .wy-hero-veil {
    background: linear-gradient(0deg, rgba(8,24,29,0.97) 0%, rgba(8,24,29,0.9) 46%, rgba(8,24,29,0.74) 72%, rgba(8,24,29,0.52) 100%);
  }
  .wy-hero-inner { padding: 34px 24px 0; }
  .wy-hero-text { max-width: none; }
  .wy-crumb-rule { display: none; }

  .wy-hero-script {
    position: static;
    text-align: left;
    font-size: 25px;
    line-height: 1.25;
    margin: 20px 0 0;
  }

  .wy-hero-bar { margin-top: 24px; padding: 20px 0 26px; }
  .wy-hero-stats { grid-template-columns: 1fr 1fr; gap: 18px 0; }
  .wy-hero-stats li { padding: 0 16px; }
  .wy-hero-stats li:nth-child(odd) { padding-left: 0; }
  .wy-hero-stats li:nth-child(odd)::before { display: none; }
  .wy-hero-stats strong { font-size: 24px; }
  .wy-hero-stats .wy-stat-word { font-size: 21px; }

  .wy-philosophy { padding: 52px 0 70px; }
  .wy-philosophy-text { padding-left: 18px; }
  .wy-philosophy-media::before { left: -8px; top: -8px; }
  .wy-philosophy-shot { width: 100%; aspect-ratio: 4 / 3; }
  .wy-philosophy-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: -42px;
    margin-left: auto;
    max-width: 76%;
    padding: 26px 22px;
  }
  .wy-philosophy-card p { line-height: 1.9; font-size: 11.5px; }
  .wy-script { font-size: 26px; }

  .wy-adv-section { padding: 52px 0; }
  .wy-adv-grid { grid-template-columns: 1fr; gap: 14px; }
  .wy-adv { padding: 26px 22px 24px; }
  .wy-adv-ico { width: 52px; height: 52px; margin-bottom: 16px; }
  .wy-adv-ico svg { width: 24px; height: 24px; }
  .wy-adv h3 { font-size: 18px; margin-bottom: 8px; }
  .wy-adv p { font-size: 13px; }

  .wy-diff { padding: 56px 0; }
  .wy-diff-list li { font-size: 15px; }
  .wy-diff-inner { grid-template-columns: 1fr; gap: 26px; }
  .wy-diff-text .btn { width: 100%; justify-content: center; }
  .wy-diff-list { gap: 16px; }

  .wy-reviews { padding: 56px 0; }
  .wy-quote { padding: 24px 22px; }
  .wy-reviews-media figure:first-child,
  .wy-reviews-media figure:last-child { margin: 0; }
  .wy-reviews-media { gap: 10px; }
  .wy-reviews-media figure { aspect-ratio: 3 / 3.6; }
  .wy-reviews-foot { margin-top: 20px; }

  .wy-cta { padding: 42px 0; min-height: 0; }
  .wy-cta-panel { flex-direction: column; align-items: flex-start; gap: 20px; padding: 26px 22px; }
  .wy-cta-panel .btn { width: 100%; justify-content: center; }
  .wy-cta-copy { max-width: none; }
}

/* On wider screens one quote sits each side of the photos */
@media (min-width: 1101px) {
  .wy-reviews-body {
    grid-template-columns: 1fr 1.05fr 0.85fr;
    gap: 40px;
    align-items: center;
  }
  .wy-quotes { display: contents; }
  .wy-quote-slide { display: contents; }
  .wy-quote-slide.is-active .wy-quote--left { grid-column: 1; grid-row: 1; }
  .wy-reviews-media { grid-column: 2; grid-row: 1; }
  .wy-quote-slide.is-active .wy-quote--right { grid-column: 3; grid-row: 1; }
}

/* =========================================================
   POLISH — stars, numbered list, smooth review swap, CTA frame
   ========================================================= */

/* --- five-star row in each testimonial --- */
.wy-stars {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 14px;
  color: var(--gold);
}
.wy-stars svg { width: 13px; height: 13px; }

/* --- numbered difference list --- */
.wy-diff-list { counter-reset: wydiff; }
.wy-diff-list li { counter-increment: wydiff; }
.wy-diff-list li::before {
  content: "0" counter(wydiff);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(217,180,138,0.75);
  margin-right: 2px;
}

/* --- smooth testimonial swap --- */
.wy-reviews-body {
  transition: opacity 0.32s var(--ease);
}
.wy-reviews-body.is-swapping { opacity: 0.15; }

.wy-quote-slide.is-active .wy-quote {
  animation: wyQuoteIn 0.55s var(--ease) both;
}
.wy-quote-slide.is-active .wy-quote--right { animation-delay: 0.08s; }

@keyframes wyQuoteIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.wy-quote-slide { animation: none; }

/* --- CTA panel gold corner accents --- */
.wy-cta-panel { position: relative; }
.wy-cta-panel::before,
.wy-cta-panel::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  pointer-events: none;
  border-color: rgba(217,180,138,0.75);
}
.wy-cta-panel::before {
  top: 10px; left: 10px;
  border-top: 1px solid; border-left: 1px solid;
}
.wy-cta-panel::after {
  bottom: 10px; right: 10px;
  border-bottom: 1px solid; border-right: 1px solid;
}

/* --- hero refinements --- */
.wy-hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217,180,138,0.5), transparent);
}
.wy-hero-stats span {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 10.8px;
}
.wy-hero-eyebrow { position: relative; padding-left: 0; }

/* --- section heads: gold rule grows on scroll-in --- */
.wy-eyebrow-rule { transition: width 0.8s var(--ease); }
[data-reveal] .wy-eyebrow-rule,
[data-reveal].wy-adv-head .wy-eyebrow-rule { width: 0; }
[data-reveal].is-in .wy-eyebrow-rule { width: 28px; }

@media (max-width: 720px) {
  .wy-stars svg { width: 12px; height: 12px; }
  .wy-cta-panel::before, .wy-cta-panel::after { width: 24px; height: 24px; }
}
