:root{
  --bg:#07080b;
  --text:#ece7df;
  --muted:#b7ada1;
  --line:rgba(236,231,223,.12);
  --card:rgba(12,14,20,.72);
  --radius:18px;
  --max:1120px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a{ color:inherit; }

/* Wrapper */
.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 10px;
}

/* Top bar */
.topbar{
  position: sticky;
  top: 0;
  z-index: 10;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,.12);
}

.topbar .wrap{
  padding: 6px 10px; /* tight header padding */
}

.nav{
  position: relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  min-height: 64px;
}

.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.logo{
  height: 120px;
  width: auto;
  display:block;
}

/* Header address */
.header-address{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.95rem;
  font-weight: 500;
  color: #334155;
  white-space: nowrap;
}

/* Book now button */
.btn-book{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: .02em;
  color: #fff !important;
  background: linear-gradient(135deg, #7a1f3d, #5a142c);
  border: none;
  box-shadow:
    0 6px 16px rgba(122,31,61,.35),
    inset 0 1px 0 rgba(255,255,255,.15);
  text-decoration:none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.btn-book:hover{
  transform: translateY(-1px);
  box-shadow:
    0 10px 26px rgba(122,31,61,.45),
    inset 0 1px 0 rgba(255,255,255,.18);
}

.btn-book:focus-visible{
  outline: 2px solid rgba(122,31,61,.5);
  outline-offset: 3px;
}

/* Thin divider under header */
.menu-divider{
  height: 1px;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(236,231,223,0),
    rgba(236,231,223,.22),
    rgba(236,231,223,0)
  );
}

/* Full-width banner */
.banner{
  width: 100%;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  background: #07080b;
  margin-bottom: 50px;
}

/* Blurred background fill */
.banner::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    url("images/banner_two.jpg") 50% 50% / contain no-repeat;
  filter: blur(24px) brightness(0.6);
  transform: scale(1.15);
}

/* Sharp main image */
.banner::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.75)),
    url("images/banner_two.jpg") 50% 50% / contain no-repeat;
}

@keyframes bannerMove{
  0%   { transform: scale(1.0); }
  100% { transform: scale(1.03); } /* tiny “breathing”, not zoom */
}

@media (prefers-reduced-motion: reduce){
  .banner::before{
    animation: none;
    transform: scale(1.0);
  }
}

/* Section divider */
.section-divider{
  height: 1px;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(236,231,223,0),
    rgba(236,231,223,.20),
    rgba(236,231,223,0)
  );
}

.section{
  padding: 24px 22px;
}

/* Featured flash card */
.flash-feature{
  max-width: 100%;
}

/* Accordion */
.accordion{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  overflow: hidden;
}

.accordionSummary{
  cursor: pointer;
  list-style: none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.accordionSummary::-webkit-details-marker{ display:none; }

.accordionSummary span:first-child{
  font-weight: 600;
  letter-spacing: .01em;
}

.accordionHint{
  color: rgba(236,231,223,.65);
  font-size: .92rem;
}

.accordionBody{
  padding: 16px 18px 18px;
}

/* Portfolio viewer (thumbs left 2 cols, main right) */
.portfolioViewer{
  display:grid;
  grid-template-columns: 1fr 2fr;
  gap: 28px;
  align-items:start;
}

.thumbRow{
  grid-column: 1;
  grid-row: 1;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
  height: 360px;
  overflow: hidden;
  align-content: stretch;
}

.mainShot{
  grid-column: 2;
  grid-row: 1;
  margin:0;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(236,231,223,.12);
  background: rgba(236,231,223,.04);
}

.mainShot img{
  width:100%;
  height: 360px;
  object-fit: cover;
  display:block;
  transition: opacity .18s ease;
  filter: none !important;
}

.mainShot img.is-swapping{ opacity:.35; }

.thumbBtn{
  width:100%;
  height:100%;
  border: 1px solid rgba(236,231,223,.14);
  background: rgba(236,231,223,.03);
  border-radius: 12px;
  padding: 0;
  overflow:hidden;
  cursor:pointer;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}

/* Thumbnails: B&W by default, colour on hover/active */
.thumbBtn img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  filter: grayscale(100%) contrast(1.05);
  opacity: .88;
  transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}

.thumbBtn:hover img{
  filter: none;
  opacity: 1;
  transform: scale(1.02);
}

.thumbBtn.is-active img{
  filter: none;
  opacity: 1;
}

.thumbBtn:hover{
  transform: translateY(-1px);
  border-color: rgba(236,231,223,.24);
}

.thumbBtn.is-active{
  border-color: rgba(236,231,223,.38);
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
}

.note{
  margin: 12px 0 0;
  color: rgba(236,231,223,.68);
  font-size: .95rem;
}

.portfolioViewer .note{
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 6px;
}

/* Cards grid */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.infoCard{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  padding: 18px;
}

.infoCard h2{
  margin: 0 0 10px;
  font-size: 1.25rem;
  letter-spacing: .01em;
}

/* Make cards a positioning context */
.infoCard{
  position: relative;
  padding-bottom: 70px; /* space reserved for buttons */
}

/* Pin buttons bottom-left */
.infoCard .cardButtons{
  position: absolute;
  left: 18px;
  bottom: 18px;
}

.infoCard .linkBtn{
  backdrop-filter: blur(2px);
}

/* ===== Card images: top-right + text wrap (ROBUST) ===== */
.infoCard.has-image{
  position: relative;
  display: block;
  overflow: hidden; /* hard-clips anything that tries to escape */
}

/* If you use <div class="cardImage"><img ...></div> */
.infoCard.has-image .cardImage{
  float: right;
  width: 180px;
  height: 180px;
  margin: 0 0 10px 14px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(236,231,223,.06);
  border: 1px solid rgba(236,231,223,.14);
}

.infoCard.has-image .cardImage img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}

/* If you use <img class="cardImage" ...> directly */
.infoCard.has-image img.cardImage{
  float: right;
  width: 180px;
  height: 180px;
  margin: 0 0 10px 14px;
  border-radius: 18px;
  object-fit: cover;
  display: block;
  background: rgba(236,231,223,.06);
  border: 1px solid rgba(236,231,223,.14);
  overflow: hidden;
  filter: grayscale(20%) contrast(1.05);
}

/* Available Flash: image inline with text */
.flash-feature{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px;
  gap: 22px;
  align-items: start;
}

/* Explicitly place the image in column 2 */
.flash-feature .cardImage,
.flash-feature img.cardImage{
  grid-column: 2;
  grid-row: 1;
  float: none !important;
  margin: 0;
  width: 200px;
  height: 200px;
  border-radius: 18px;
  overflow: hidden;
  justify-self: end;
}

/* Inner image safety */
.flash-feature .cardImage img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mutedText{ color: rgba(236,231,223,.68); }

.list{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(236,231,223,.78);
}

.list li{ margin: 6px 0; }

/* Buttons */
.linkBtn{
  display:inline-block;
  text-decoration:none;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid rgba(236,231,223,.18);
  background: rgba(236,231,223,.06);
}

.linkBtn:hover{
  background: rgba(236,231,223,.10);
}

.cardButtons{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* Reviews */
.reviewsHeader{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.reviewsTitle{
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: .01em;
}

.reviewsViewport{
  display:grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 10px;
  align-items: stretch;
}

.reviewsNav{
  border: 1px solid rgba(236,231,223,.18);
  background: rgba(236,231,223,.06);
  color: var(--text);
  border-radius: 14px;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.reviewsNav:hover{ background: rgba(236,231,223,.10); }

.reviewsGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.reviewCard{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  padding: 16px;
}

.reviewTop{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.reviewName{
  font-weight: 650;
}

.reviewMeta{
  color: rgba(236,231,223,.65);
  font-size: .9rem;
  white-space: nowrap;
}

.reviewText{
  margin: 0;
  color: rgba(236,231,223,.82);
  line-height: 1.5;
}

.reviewStars{
  color: rgba(236,231,223,.85);
  font-size: .95rem;
  margin-top: 10px;
}

.reviewsHint{
  margin-top: 10px;
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 820px){
  .reviewsViewport{
    grid-template-columns: 1fr; /* stack */
  }
  .reviewsNav{
    display:none; /* keep it simple on small screens */
  }
  .reviewsGrid{
    grid-template-columns: 1fr;
  }
}

/* Footer */
.footer{
  padding-top: 22px;
  padding-bottom: 32px;
}

.footerGrid{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 16px;
}

.footerBottom{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* ===== Responsive ===== */
@media (max-width: 820px){
  .cards{ grid-template-columns: 1fr; }

  .portfolioViewer{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .mainShot{ grid-column: 1; grid-row: 1; }
  .mainShot img{ height: 300px; }

  .thumbRow{
    grid-column: 1;
    grid-row: 2;
    height: auto;
    grid-template-rows: none;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 96px;
  }

  .portfolioViewer .note{ grid-row: 3; }

  .header-address{ display:none; }
}

@media (max-width: 520px){
  .wrap{ padding: 14px 16px; }
  .banner{ min-height: 240px; }

  .mainShot img{ height: 260px; }

  .thumbRow{
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 110px;
  }

  /* Stop wrapping on small screens: image becomes full width */
  .infoCard.has-image .cardImage,
  .infoCard.has-image img.cardImage{
    float: none;
    width: 100%;
    height: 200px;
    margin: 0 0 12px;
  }
  
@media (max-width: 520px){
  .flash-feature{
    grid-template-columns: 1fr;
  }

  .flash-feature .cardImage,
  .flash-feature img.cardImage{
    grid-column: 1;
    width: 100%;
    height: 220px;
    justify-self: stretch;
    
  }
   .infoCard{
    padding-bottom: 18px;
  }

  .infoCard .cardButtons{
    position: static;
    margin-top: 12px;
  }
}}