/* VERSION E11 — DESKTOP REFINEMENT + FINAL MOBILE REVIEW FIXES */

/* New desktop-only surfaces stay out of the E10 mobile/tablet flow by default. */
.concept-e11 .hero-mini-teaser,
.concept-e11 .mini-check-dialog-backdrop,
.concept-e11 .mini-check-dialog-close {
  display: none;
}

@media (max-width: 767px) {
  /* Reviews CTA: use exactly the same horizontal grid as the card above. */
  .concept-e11 .reviews-link {
    display: flex;
    width: 100%;
    box-sizing: border-box;
  }

  /* Reviews: retain a 44px hit area around a more vertical 32 × 72px pill. */
  .concept-e11 .review-carousel-controls button {
    width: 44px;
    height: 76px;
    flex-basis: 44px;
  }

  .concept-e11 .review-carousel-controls button::before {
    inset: 2px 6px;
  }
}

@media (min-width: 768px) {
  /* Secondary header action now shares the muted-gold booking language. */
  .concept-e11 .nav-cta {
    border-color: #c5a263;
    background: rgba(18, 38, 29, .26);
    color: #d4b778;
    box-shadow: none;
  }

  .concept-e11 .nav-cta:hover,
  .concept-e11 .nav-cta:focus-visible {
    border-color: #c5a263;
    background: #c5a263;
    color: #173027;
    box-shadow: none;
  }

  .concept-e11 .nav-cta:focus-visible {
    outline: 2px solid #f4e1b5;
    outline-offset: 3px;
  }
}

@media (min-width: 1024px) {
  /* Hero proportions: one composed left block, with unchanged overall height. */
  .concept-e11 .hero-content {
    position: relative;
  }

  .concept-e11 .hero-copy {
    width: min(58%, 600px);
    max-width: 600px;
  }

  .concept-e11 .concept-kicker {
    margin-bottom: 1rem;
  }

  .concept-e11 .hero-final h1 {
    max-width: min(590px, 100%);
    margin-bottom: .9rem;
    font-size: clamp(3.45rem, 5.45vw, 5.05rem);
    line-height: .98;
  }

  .concept-e11 .hero-lead {
    max-width: 565px;
  }

  .concept-e11 .hero-booking-action {
    margin-top: 1.12rem;
  }

  .concept-e11 .hero-trust-proof {
    margin-top: .85rem;
  }

  /* Compact Hero hook. The full, single Mini Check instance opens as a dialog. */
  .concept-e11 .hero-mini-teaser {
    position: absolute;
    right: 0;
    bottom: 52px;
    z-index: 3;
    display: block;
    width: clamp(270px, 22vw, 326px);
    padding: 1.25rem 1.3rem 1.3rem;
    border: 1px solid rgba(198, 165, 104, .42);
    border-radius: 12px;
    background: rgba(17, 41, 30, .86);
    color: var(--cream);
    box-shadow: 0 14px 34px rgba(5, 17, 11, .18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .concept-e11 .hero-mini-teaser .eyebrow {
    margin: 0 0 .55rem;
    color: #d4b778;
    font-size: .68rem;
  }

  .concept-e11 .hero-mini-teaser-title {
    max-width: 250px;
    margin: 0 0 1rem;
    color: var(--cream);
    font-size: 1.18rem;
    font-weight: 600;
    line-height: 1.28;
    letter-spacing: -.018em;
  }

  .concept-e11 .hero-mini-teaser-button {
    min-height: 42px;
    padding: .68rem 1rem;
    border-color: rgba(212, 183, 120, .78);
    border-radius: 999px;
    background: transparent;
    color: #e0c78e;
    font-size: .79rem;
    box-shadow: none;
  }

  .concept-e11 .hero-mini-teaser-button:hover,
  .concept-e11 .hero-mini-teaser-button:focus-visible {
    border-color: #c5a263;
    background: rgba(197, 162, 99, .16);
    color: #f2dfb6;
    box-shadow: none;
  }

  .concept-e11 .hero-mini-teaser-button:focus-visible {
    outline: 2px solid #f4e1b5;
    outline-offset: 3px;
  }

  /* The former page section becomes the one reusable desktop dialog. */
  .concept-e11 .mini-bridge[data-mini-check-dialog] {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    place-items: center;
    overflow: auto;
    padding: clamp(24px, 4vw, 58px);
    background: rgba(7, 21, 14, .72);
  }

  .concept-e11 .mini-bridge[data-mini-check-dialog].is-open {
    display: grid;
  }

  .concept-e11 .mini-check-dialog-backdrop {
    position: fixed;
    inset: 0;
    display: block;
  }

  .concept-e11 .mini-bridge[data-mini-check-dialog] .bridge-grid {
    position: relative;
    z-index: 1;
    display: block;
    width: min(100%, 860px);
    padding: 0;
  }

  .concept-e11 .mini-bridge[data-mini-check-dialog] .mini-check {
    width: 100%;
    max-height: min(82vh, 760px);
    margin: 0;
    overflow: auto;
    overscroll-behavior: contain;
    box-shadow: 0 24px 70px rgba(3, 13, 8, .3);
  }

  .concept-e11 .mini-bridge[data-mini-check-dialog] .mini-check-question:focus {
    outline: none;
  }

  .concept-e11 .mini-check-dialog-close {
    position: absolute;
    top: 13px;
    right: 13px;
    z-index: 4;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0 0 3px;
    border: 1px solid rgba(29, 51, 42, .22);
    border-radius: 50%;
    background: rgba(250, 248, 242, .9);
    color: var(--green);
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
  }

  .concept-e11 .mini-check-dialog-close:hover,
  .concept-e11 .mini-check-dialog-close:focus-visible {
    border-color: #b7924f;
    background: #f8f3e8;
  }

  .concept-e11 .mini-check-dialog-close:focus-visible {
    outline: 2px solid #1d332a;
    outline-offset: 2px;
  }

  .concept-e11.mini-check-modal-open {
    overflow: hidden;
  }

  /* Mirror: treat the heading and list as one optically centered left group. */
  .concept-e11 .mirror-media-layout {
    grid-template-areas:
      "heading photo"
      "list photo";
    grid-template-rows: auto auto;
    align-content: center;
    align-items: start;
    gap: clamp(22px, 2vw, 30px) clamp(48px, 5vw, 72px);
  }

  .concept-e11 .mirror-heading {
    align-self: end;
  }

  .concept-e11 .mirror-heading h2 {
    margin: 0;
  }

  .concept-e11 .mirror-list {
    align-self: start;
  }

  .concept-e11 .mirror-list p {
    padding-block: 1.02rem;
  }

  /* Method: closer columns and a calmer headline/body relationship. */
  .concept-e11 .method-overlay-grid {
    grid-template-columns: minmax(0, .95fr) minmax(380px, 1.05fr);
    gap: clamp(42px, 5vw, 72px);
  }

  .concept-e11 .method-title-block .eyebrow {
    margin-bottom: .88rem;
  }

  .concept-e11 .method-title-block h2 {
    max-width: 590px;
    font-size: clamp(2.65rem, 3.82vw, 3.82rem);
    line-height: 1.02;
  }

  .concept-e11 .method-overlay-grid .body-copy {
    align-self: center;
    max-width: 650px;
    transform: translateY(-16px);
  }

  .concept-e11 .method-overlay-grid .body-copy p {
    margin-bottom: 1rem;
  }
}

@media (min-width: 1180px) {
  .concept-e11 .hero-trust-proof {
    width: 720px;
    max-width: 720px;
  }
}

@media (min-width: 1024px) and (max-width: 1179px) {
  .concept-e11 .hero-mini-teaser {
    right: 2px;
    bottom: 38px;
    width: 270px;
    padding: 1.05rem 1.08rem 1.1rem;
  }

  .concept-e11 .hero-mini-teaser-title {
    font-size: 1.02rem;
  }

  .concept-e11 .hero-mini-teaser-button {
    padding-inline: .85rem;
    font-size: .74rem;
  }
}
