/* Spa Menu card/dialog component; shared chrome lives in chrome.css. */:root {
  --flash-gold: #c9a86c;
  --flash-gold-dark: #795b2e;
  --flash-black: #080808;
  --flash-text: #1c1c1c;
  --flash-muted: #666;
  --flash-line: #e8e8e8;
  --flash-white: #fff;
  --flash-soft: #f7f7f5;
  --flash-red: #b5322a;
}.collection-services .service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}.collection-services .service-card {
  display: grid;
  min-height: 100%;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--flash-line);
  border-radius: 0;
  background: var(--flash-white);
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
}.collection-services .service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.12); }.collection-services .service-media { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--flash-black); cursor: zoom-in; }.collection-services .service-media img { display: block; width: 100%; height: 100%; object-fit: cover; filter: brightness(.84) saturate(.86) sepia(.08); transition: transform 320ms ease, filter 320ms ease; }.collection-services .service-media:hover img,
.collection-services .service-media:focus-visible img { filter: brightness(.72) saturate(.9) sepia(.06); transform: scale(1.025); }.collection-services .service-media:focus-visible { outline: 3px solid var(--flash-gold); outline-offset: 3px; }.collection-services .service-media-badge,
.collection-services .service-media-detail { position: absolute; bottom: 14px; z-index: 2; display: inline-flex; min-height: 30px; align-items: center; padding: 6px 10px; border-radius: 1px; color: #fff; font-size: 10px; font-weight: 600; line-height: 1; }.collection-services .service-media-badge { left: 14px; max-width: calc(50% - 20px); min-height: 0; background: rgba(181,50,42,.9); }.collection-services .service-media-detail { right: 14px; gap: 7px; background: rgba(8,8,8,.84); border: 1px solid rgba(255,255,255,.28); }.collection-services .service-content { display: flex; min-height: 0; flex-direction: column; gap: 11px; padding: 24px 20px; }.collection-services .service-topline { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }.collection-services .service-topline span { color: var(--flash-gold-dark); font-size: 10px; font-weight: 600; letter-spacing: 0; text-transform: uppercase; }.collection-services .service-topline strong { color: var(--flash-text); font-size: 12px; white-space: nowrap; }.collection-services .service-card h3 { margin: 0; color: var(--flash-text); font-family: "Raleway", Arial, sans-serif; font-size: 18px; font-weight: 600; line-height: 1.35; }.collection-services .service-card p { margin: 0; color: var(--flash-muted); font-size: 13px; line-height: 1.65; }.collection-services .option-list { display: grid; gap: 0; margin-top: 2px; border-top: 1px solid var(--flash-line); }.collection-services .option-list a { display: flex; min-height: 39px; align-items: center; justify-content: space-between; gap: 12px; padding: 0; color: var(--flash-text); background: transparent; border: 0; border-bottom: 1px solid var(--flash-line); border-radius: 0; font-size: 12px; text-decoration: none; }.collection-services .option-list a:hover { color: var(--flash-gold-dark); }.collection-services .option-list a span { font-weight: 760; }.collection-services .option-list a strong { font-weight: 930; white-space: nowrap; }.collection-services .service-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: auto; padding-top: 8px; }.collection-services .mini-book,
.collection-services .mini-message { display: inline-flex; min-height: 42px; align-items: center; justify-content: center; gap: 8px; border: 1px solid var(--flash-gold); border-radius: 1px; font-size: 12px; font-weight: 600; text-decoration: none; transition: transform 180ms ease; }.collection-services .mini-book { color: var(--flash-black); background: var(--flash-gold); }.collection-services .mini-message { color: var(--flash-gold-dark); background: transparent; }.collection-services .mini-book:hover,
.collection-services .mini-message:hover { transform: translateY(-2px); }.collection-services .service-grid-divider {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(320px,1.1fr);
  align-items: end;
  gap: clamp(28px,5vw,72px);
  margin: 22px 0 0;
  padding: 24px 0 2px;
  border-top: 1px solid rgba(201,168,108,.48);
}
.collection-services .service-grid-divider span {
  display: block;
  margin-bottom: 6px;
  color: var(--flash-gold-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.collection-services .service-grid-divider h3 {
  margin: 0;
  color: var(--flash-text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(25px,2.1vw,32px);
  font-weight: 500;
  line-height: 1.08;
}
.collection-services .service-grid-divider p {
  max-width: 560px;
  margin: 0;
  color: var(--flash-muted);
  font-size: 13px;
  line-height: 1.65;
}
@media (max-width: 760px) {
  .collection-services .service-grid-divider {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 12px;
    padding-top: 20px;
  }
}
@media (max-width: 1100px){.collection-services .service-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }}@media (max-width: 640px){.collection-services .service-grid { grid-template-columns: 1fr; }.collection-services .service-media { aspect-ratio: 16 / 11; }}
