.crvh-reviews-section {
  --crvh-deep: #063a4a;
  --crvh-teal: #0d8c8b;
  --crvh-coral: #f5765c;
  --crvh-sun: #f7ca45;
  --crvh-sand: #fbf8f1;
  padding: clamp(80px, 10vw, 140px) 0;
  background:
    radial-gradient(circle at 8% 14%, rgba(247,202,69,.23), transparent 18%),
    radial-gradient(circle at 92% 88%, rgba(13,140,139,.15), transparent 23%),
    var(--crvh-sand);
  color: var(--crvh-deep);
}

.crvh-reviews-shell {
  width: min(1180px, calc(100% - 44px));
  margin-inline: auto;
}

.crvh-reviews-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
  margin-bottom: 54px;
}

.crvh-reviews-eyebrow {
  margin: 0 0 13px;
  color: var(--crvh-teal);
  font: 800 .72rem/1.2 Arial, sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.crvh-reviews-heading h2 {
  max-width: 760px;
  margin: 0;
  color: var(--crvh-deep);
  font: 400 clamp(2.7rem, 5.4vw, 5rem)/.98 Georgia, serif;
  letter-spacing: -.045em;
}

.crvh-reviews-heading h2 em {
  color: var(--crvh-coral);
  font-weight: 400;
}

.crvh-rating-summary {
  display: grid;
  grid-template-columns: auto auto;
  gap: 2px 12px;
  min-width: 210px;
  padding: 24px 27px;
  border: 1px solid rgba(6,58,74,.1);
  border-radius: 20px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 20px 55px rgba(6,58,74,.09);
}

.crvh-rating-summary strong {
  grid-row: 1 / 3;
  align-self: center;
  font: 400 3rem/1 Georgia, serif;
}

.crvh-summary-stars,
.crvh-review-stars {
  color: #efa51d;
  letter-spacing: .08em;
}

.crvh-summary-stars { align-self: end; }

.crvh-rating-summary small {
  color: #607278;
  font: 700 .7rem/1.3 Arial, sans-serif;
  letter-spacing: .03em;
}

.crvh-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.crvh-review-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 310px;
  padding: 30px;
  border: 1px solid rgba(6,58,74,.09);
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 52px rgba(6,58,74,.08);
}

.crvh-review-card:nth-child(6n+2),
.crvh-review-card:nth-child(6n+6) {
  background: var(--crvh-deep);
  color: white;
}

.crvh-review-card:nth-child(6n+4) {
  background: var(--crvh-teal);
  color: white;
}

.crvh-review-extra { display: none; }
.crvh-reviews-section.is-expanded .crvh-review-extra { display: flex; }

.crvh-review-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
}

.crvh-review-stars {
  font-size: 1rem;
  white-space: nowrap;
}

.crvh-review-source {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(13,140,139,.1);
  color: var(--crvh-teal);
  font: 800 .65rem/1 Arial, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.crvh-review-card:nth-child(6n+2) .crvh-review-source,
.crvh-review-card:nth-child(6n+4) .crvh-review-source,
.crvh-review-card:nth-child(6n+6) .crvh-review-source {
  background: rgba(255,255,255,.12);
  color: white;
}

.crvh-review-card h3 {
  margin: 0 0 10px;
  color: inherit;
  font: 700 1.14rem/1.25 Arial, sans-serif;
}

.crvh-review-card blockquote {
  margin: 0 0 26px;
  padding: 0;
  border: 0;
  color: inherit;
  font: 400 clamp(1.08rem, 1.6vw, 1.27rem)/1.55 Georgia, serif;
}

.crvh-review-card blockquote p { margin: 0 0 .8em; }
.crvh-review-card blockquote p:last-child { margin-bottom: 0; }

.crvh-review-card footer {
  display: grid;
  gap: 3px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(6,58,74,.1);
}

.crvh-review-card:nth-child(6n+2) footer,
.crvh-review-card:nth-child(6n+4) footer,
.crvh-review-card:nth-child(6n+6) footer {
  border-color: rgba(255,255,255,.16);
}

.crvh-review-card footer strong {
  font: 800 .82rem/1.25 Arial, sans-serif;
  letter-spacing: .02em;
}

.crvh-review-card footer span {
  color: #718086;
  font: 700 .68rem/1.35 Arial, sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.crvh-review-card:nth-child(6n+2) footer span,
.crvh-review-card:nth-child(6n+4) footer span,
.crvh-review-card:nth-child(6n+6) footer span {
  color: rgba(255,255,255,.63);
}

.crvh-reviews-actions {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.crvh-reviews-toggle {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid rgba(6,58,74,.18);
  border-radius: 999px;
  background: transparent;
  color: var(--crvh-deep);
  cursor: pointer;
  font: 800 .72rem/1 Arial, sans-serif;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.crvh-reviews-toggle:hover,
.crvh-reviews-toggle:focus-visible {
  border-color: var(--crvh-teal);
  background: white;
}

.crvh-hide-label { display: none; }
.crvh-reviews-section.is-expanded .crvh-show-label { display: none; }
.crvh-reviews-section.is-expanded .crvh-hide-label { display: inline; }
.crvh-reviews-section.is-expanded .crvh-reviews-toggle > span:last-child { transform: rotate(180deg); }

.crvh-review-submission {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
  margin-top: clamp(75px, 9vw, 125px);
  padding-top: clamp(65px, 8vw, 100px);
  border-top: 1px solid rgba(6,58,74,.12);
}

.crvh-review-form-intro h3 {
  margin: 0 0 20px;
  color: var(--crvh-deep);
  font: 400 clamp(2.5rem, 4.5vw, 4.4rem)/1 Georgia, serif;
  letter-spacing: -.04em;
}

.crvh-review-form-intro > p:last-child {
  max-width: 480px;
  color: #61747a;
  font: 400 1rem/1.75 Arial, sans-serif;
}

.crvh-review-form-wrap {
  min-width: 0;
  padding: 10px;
  border-radius: 24px;
  background: white;
  box-shadow: 0 20px 65px rgba(6,58,74,.1);
}

.crvh-review-form-details summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
  border-radius: 17px;
  background: var(--crvh-deep);
  color: white;
  cursor: pointer;
  font: 800 .76rem/1 Arial, sans-serif;
  letter-spacing: .1em;
  list-style: none;
  text-transform: uppercase;
}

.crvh-review-form-details summary::-webkit-details-marker { display: none; }
.crvh-review-form-details[open] summary span { transform: rotate(45deg); }

.crvh-review-form {
  padding: 28px 22px 20px;
}

.crvh-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 19px;
}

.crvh-form-grid label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: var(--crvh-deep);
  font: 800 .72rem/1.25 Arial, sans-serif;
  letter-spacing: .05em;
}

.crvh-form-grid label > small {
  color: #718086;
  font-size: .67rem;
  font-weight: 500;
  letter-spacing: 0;
}

.crvh-form-grid input:not([type="checkbox"]),
.crvh-form-grid select,
.crvh-form-grid textarea {
  width: 100%;
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid rgba(6,58,74,.16);
  border-radius: 10px;
  background: #fff;
  color: #173f49;
  font: 400 .95rem/1.4 Arial, sans-serif;
}

.crvh-form-grid textarea {
  resize: vertical;
}

.crvh-form-grid input:focus,
.crvh-form-grid select:focus,
.crvh-form-grid textarea:focus {
  border-color: var(--crvh-teal);
  outline: 3px solid rgba(13,140,139,.12);
}

.crvh-form-wide { grid-column: 1 / -1; }
.crvh-form-trap { position: absolute !important; left: -10000px !important; }

.crvh-form-consent {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1.45 !important;
}

.crvh-form-consent input { margin-top: 2px; }

.crvh-review-submit {
  min-height: 50px;
  margin-top: 22px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--crvh-coral);
  color: white;
  cursor: pointer;
  font: 800 .72rem/1 Arial, sans-serif;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.crvh-review-submit:hover,
.crvh-review-submit:focus-visible {
  background: #e9654d;
  box-shadow: 0 10px 26px rgba(245,118,92,.28);
}

.crvh-form-message {
  display: grid;
  gap: 3px;
  margin: 8px 8px 0;
  padding: 16px 18px;
  border-radius: 13px;
  font: 400 .85rem/1.4 Arial, sans-serif;
}

.crvh-form-message.success { background: #ddf6ec; color: #075f4d; }
.crvh-form-message.error { background: #fff0ec; color: #9b3929; }

@media (max-width: 900px) {
  .crvh-reviews-heading { grid-template-columns: 1fr; align-items: start; }
  .crvh-rating-summary { width: fit-content; }
  .crvh-review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .crvh-review-submission { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .crvh-reviews-shell { width: min(100% - 28px, 1180px); }
  .crvh-reviews-heading { gap: 28px; margin-bottom: 34px; }
  .crvh-reviews-heading h2 { font-size: clamp(2.55rem, 13vw, 3.6rem); }
  .crvh-review-grid { grid-template-columns: 1fr; }
  .crvh-review-card { min-height: 0; padding: 25px; }
  .crvh-rating-summary { min-width: 0; }
  .crvh-form-grid { grid-template-columns: 1fr; }
  .crvh-form-wide { grid-column: auto; }
}

@media (prefers-reduced-motion: no-preference) {
  .crvh-review-card {
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .crvh-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 65px rgba(6,58,74,.13);
  }
}
