:root {
  --review-3a-forest: #28371f;
  --review-3a-forest-light: #34492a;
  --review-3a-cream: #fffdf8;
  --review-3a-gold: #ebbe64;
  --review-3a-gold-light: #f4dda6;
  --review-3a-gold-pale: #faeed0;
  --review-3a-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.review-3a__header {
  margin: 0;
  color: var(--review-3a-cream);
  background: var(--review-3a-forest);
}

.review-3a .home-nav,
.review-3a .home-nav--scrolled {
  position: relative;
  top: auto;
  left: auto;
  z-index: 4;
  grid-template-columns: minmax(190px, 230px) 1fr auto;
  gap: 28px;
  width: 100%;
  min-height: 88px;
  padding: 0 56px;
  box-sizing: border-box;
  background: transparent;
  border-color: rgb(255 253 248 / 14%);
  box-shadow: none;
  backdrop-filter: none;
  transform: none;
  animation: review-3a-fade 700ms var(--review-3a-ease) both;
}

.review-3a .home-logo {
  width: 220px;
  height: 86px;
}

.review-3a .home-logo img {
  filter: none;
  transform: scale(1.18);
}

.review-3a .home-nav__links {
  gap: 32px;
}

.review-3a .home-nav__links a {
  padding: 8px 0;
  color: rgb(255 253 248 / 70%);
  border: 0;
  font-size: 15px;
  transition: color 200ms var(--review-3a-ease);
}

.review-3a .home-nav__links a:hover,
.review-3a .home-nav__links a[aria-current="page"] {
  color: var(--review-3a-cream);
}

.review-3a .home-nav__order {
  min-height: auto;
  padding: 10px 20px;
  color: var(--review-3a-forest);
  background: var(--review-3a-cream);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgb(10 18 8 / 16%);
  font-size: 14px;
  font-weight: 600;
  transition:
    box-shadow 200ms var(--review-3a-ease),
    transform 200ms var(--review-3a-ease);
}

.review-3a .home-nav__order:hover {
  box-shadow: 0 8px 22px rgb(10 18 8 / 22%);
  transform: translateY(-1px);
}

.review-3a__hero {
  min-height: 0;
  display: block;
  overflow: hidden;
  color: var(--review-3a-cream);
  background: var(--review-3a-forest);
  isolation: isolate;
}

.review-3a__grain {
  position: absolute;
  z-index: 2;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  opacity: 0.06;
  pointer-events: none;
}

.review-3a__body {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  align-items: stretch;
}

.review-3a__copy {
  grid-column: 1;
  padding: 108px 56px 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.review-3a__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--review-3a-gold-light);
  animation: review-3a-rise 700ms var(--review-3a-ease) both;
}

.review-3a__eyebrow span:first-child {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.review-3a__rule {
  width: 34px;
  height: 1px;
  background: var(--review-3a-gold);
  transform-origin: right center;
  animation: review-3a-rule 900ms 500ms var(--review-3a-ease) both;
}

.review-3a__copy h1 {
  margin: 26px 0 0;
  color: var(--review-3a-cream);
  font-family: "Frank Ruhl Libre", Georgia, serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
  animation: review-3a-rise 800ms 90ms var(--review-3a-ease) both;
}

.review-3a__copy h1 span {
  display: block;
  white-space: nowrap;
}

.review-3a__subhead {
  max-width: 46ch;
  margin: 28px 0 0;
  color: rgb(255 253 248 / 80%);
  font-size: 18px;
  line-height: 1.75;
  text-wrap: pretty;
  animation: review-3a-rise 800ms 190ms var(--review-3a-ease) both;
}

.review-3a__actions {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  animation: review-3a-rise 800ms 290ms var(--review-3a-ease) both;
}

.review-3a__actions a {
  text-decoration: none;
}

.review-3a__primary {
  padding: 0.85rem 1.9rem;
  color: var(--review-3a-forest);
  background: var(--review-3a-cream);
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgb(10 18 8 / 16%);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  transition:
    box-shadow 200ms var(--review-3a-ease),
    transform 200ms var(--review-3a-ease);
}

.review-3a__primary:hover {
  box-shadow: 0 8px 22px rgb(10 18 8 / 22%);
}

.review-3a__primary:active {
  transform: translateY(1px);
}

.review-3a__secondary {
  padding-bottom: 4px;
  color: var(--review-3a-gold-light);
  border-bottom: 1px solid rgb(235 190 100 / 50%);
  font-size: 16px;
  transition:
    border-color 200ms var(--review-3a-ease),
    color 200ms var(--review-3a-ease);
}

.review-3a__secondary:hover {
  color: var(--review-3a-gold-pale);
  border-color: var(--review-3a-gold);
}

/* The service area, sitting between the actions and the credentials. Not a
   button: the hero already asks for one decision, and a competing control
   would cost more than it earns. */
.review-3a__reach {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
  color: rgb(255 253 248 / 78%);
  font-size: 15px;
  animation: review-3a-rise 800ms 340ms var(--review-3a-ease) both;
}



.review-3a__proof {
  margin: 52px 0 0;
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: rgb(255 253 248 / 60%);
  border-top: 1px solid rgb(255 253 248 / 16%);
  font-size: 13px;
  animation: review-3a-rise 800ms 390ms var(--review-3a-ease) both;
}

.review-3a__proof i {
  color: rgb(255 253 248 / 30%);
  font-style: normal;
}

.review-3a__photo {
  position: relative;
  grid-column: 2;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--review-3a-forest-light);
  border-start-start-radius: 40px;
  border-end-start-radius: 40px;
}

.review-3a__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
  animation: review-3a-reveal 1400ms var(--review-3a-ease) both;
  transition: transform 900ms var(--review-3a-ease);
}

.review-3a__photo:hover img {
  transform: scale(1.035);
}

/* The photograph sits on the left and the Hebrew copy on the right, so the
   shadow belongs on the inner edge where the two meet. `to right` was a
   physical direction inherited from a left-to-right layout: it put the
   darkness on the outer page edge, where there is nothing to soften, and left
   the seam against the copy as a hard cut. */
.review-3a__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgb(40 55 31 / 55%) 0%, transparent 38%);
  pointer-events: none;
}

.review-3a__frame {
  position: absolute;
  inset: 22px;
  border: 1px solid rgb(255 253 248 / 26%);
  pointer-events: none;
}

.review-3a__services {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 24px 56px;
  display: flex;
  box-sizing: border-box;
  gap: 44px;
  border-top: 1px solid rgb(255 253 248 / 14%);
  animation: review-3a-rise 800ms 480ms var(--review-3a-ease) both;
}

.review-3a__services a {
  width: fit-content;
  padding-bottom: 4px;
  color: var(--review-3a-gold-light);
  border-bottom: 1px solid rgb(235 190 100 / 50%);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition:
    border-color 200ms var(--review-3a-ease),
    color 200ms var(--review-3a-ease);
}

.review-3a__services a:hover {
  color: var(--review-3a-gold-pale);
  border-color: var(--review-3a-gold);
}

.review-3a__services bdi {
  margin-left: 0.45em;
  color: var(--review-3a-gold);
  letter-spacing: 0.06em;
}

@keyframes review-3a-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes review-3a-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes review-3a-reveal {
  from {
    transform: scale(1.06);
  }

  to {
    transform: scale(1);
  }
}

@keyframes review-3a-rule {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@media (max-width: 1100px) {
  .review-3a .home-nav,
  .review-3a .home-nav--scrolled {
    padding-right: 32px;
    padding-left: 32px;
  }

  .review-3a .home-nav__links {
    gap: 20px;
  }

  .review-3a__copy {
    padding-right: 40px;
    padding-left: 40px;
  }

  .review-3a__copy h1 {
    font-size: 50px;
  }

  .review-3a__services {
    padding-right: 40px;
    padding-left: 40px;
    gap: 28px;
  }
}

@media (max-width: 900px) {
  .review-3a .home-nav,
  .review-3a .home-nav--scrolled {
    grid-template-columns: 1fr auto;
    gap: 8px 20px;
    min-height: 0;
    padding: 8px 24px 18px;
  }

  .review-3a .home-logo {
    width: 210px;
    height: 78px;
  }

  .review-3a .home-nav__links {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    flex-wrap: wrap;
    /* No row gap: each link now carries its own 44px touch height, so a gap
       would only push the headline further below the fold. */
    gap: 0 22px;
  }

  /* Thumbs need 44px. These were 35px tall, and בלוג was 22px wide — a coin
     toss to hit. The height comes from the link box rather than from spacing
     between links, so the nav does not grow to pay for it. */
  .review-3a .home-nav__links a {
    display: inline-flex;
    align-items: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    font-size: 14px;
    justify-content: center;
  }

  .review-3a__body {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .review-3a__photo {
    grid-column: 1;
    grid-row: 1;
    margin: 24px;
    aspect-ratio: 4 / 5;
    border-radius: 40px;
  }

  .review-3a__copy {
    grid-column: 1;
    grid-row: 2;
    padding: 64px 24px;
  }

  .review-3a__copy h1 {
    font-size: 42px;
  }

  .review-3a__services {
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 28px;
  }
}

@media (max-width: 520px) {
  .review-3a .home-nav,
  .review-3a .home-nav--scrolled {
    padding-right: 16px;
    padding-left: 16px;
  }

  .review-3a .home-logo {
    width: 190px;
  }

  .review-3a .home-nav__order {
    padding: 9px 15px;
  }

  .review-3a .home-nav__links {
    justify-content: flex-start;
    gap: 4px 16px;
  }

  .review-3a__photo {
    margin: 16px;
    border-radius: 28px;
  }

  .review-3a__copy {
    padding: 52px 20px 56px;
  }

  .review-3a__copy h1 {
    font-size: 40px;
  }

  .review-3a__subhead {
    font-size: 17px;
  }

  .review-3a__subhead br {
    display: none;
  }

  .review-3a__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-3a__proof {
    gap: 8px 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .review-3a *,
  .review-3a *::before,
  .review-3a *::after {
    animation-delay: 0ms !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}

/* Remaining touch targets on phones. Each grows its own hit area rather than
   the spacing around it, so the hero keeps its vertical rhythm. */
@media (max-width: 680px) {
  .review-3a .home-nav__order,
  .review-3a__secondary,
  .review-3a__services a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
  }

  /* Paid for by the logo, so the nav does not grow to fund the bigger taps
     and push the headline further below the fold. */
  .review-3a .home-logo {
    width: 168px;
    height: 58px;
  }
}
