/* ============================================================
   CONCIERGE PAGE — concierge.css
   Values measured on luxuri.com/concierge @1440:
   banner 700px; heading 32/600 Mulish uppercase .8px; intro
   Noto 16/300 lh28 in a 2:3 column split (486 / 730 @ x112);
   buttons 34px h, 14/400, radius 6, zinc-50/30 border; grid
   3 cols gap 32x24, square images radius 8, titles 20/400
   uppercase .5px; modal = black rounded-2xl panel, zinc-50/30
   border, blur backdrop.
   ============================================================ */

/* ── Banner ── */
.concierge-hero {
  position: relative;
  width: 100%;
  height: 70vh;   /* live: min-h-[70vh] — scales with the window */
  overflow: hidden;
}
.concierge-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  object-position: center;
}
/* live: top fade under the nav + long fade to solid black at the bottom */
.concierge-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,.15) 70%, rgba(0,0,0,0) 95%) top / 100% 104px no-repeat,
    linear-gradient(to bottom, rgba(0,0,0,.1) 0%, rgba(0,0,0,.2) 80%, rgba(0,0,0,1) 95%);
}


/* ── Intro (starts flush at the banner bottom, like live) ── */
.concierge-intro {
  background: var(--black);
  padding: 0 0 32px;
}
.concierge-intro-wrap {
  max-width: 1280px;      /* live max-w-7xl */
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 2fr 3fr;   /* live: lg:grid-cols-5, spans 2 / 3 */
  gap: 0;
  align-items: start;
}
@media (max-width: 900px) {
  .concierge-intro-wrap { grid-template-columns: 1fr; gap: 0; padding: 0 24px; }
  .concierge-intro-right { margin-top: -10px; }
}
.concierge-title {
  font-family: var(--lx-font-accent);
  font-size: 32px;          /* live h2 text-3xl */
  line-height: 38.4px;
  font-weight: 600;
  letter-spacing: .025em;   /* 0.8px */
  text-transform: uppercase;
  color: var(--lx-zinc-50);
  padding-top: 0;
}
.concierge-intro-right p {
  font-family: var(--lx-font-body);
  font-size: 16px;
  line-height: 28px;        /* live content-format 1.75 */
  font-weight: 300;
  color: var(--lx-zinc-50);
  margin-bottom: 16px;
}
.concierge-btns {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.conc-btn {
  display: inline-block; text-decoration: none;
  font-family: var(--lx-font-body);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: var(--lx-zinc-50);
  padding: 6px 10px;                    /* live: 34px tall */
  border: 1px solid rgba(248, 247, 247, .3);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  transition: all .18s;
  white-space: nowrap;
}
.conc-btn:hover {
  background: #1a1a19;                  /* live hover:bg-zinc-800 */
  color: var(--lx-zinc-50);
}

/* ── Services Grid ── */
.services-section {
  background: var(--black);
  padding: 32px 0 72px;
}
.services-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) { .services-wrap { padding: 0 24px; } }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}
@media (max-width: 900px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .services-grid { grid-template-columns: 1fr; } }

/* Service card — original styling (per client preference) */
.service-card {
  cursor: pointer;
}
.service-img-wrap {
  border-radius: 8px; overflow: hidden;
  margin-bottom: 12px;
}
.service-img-wrap img {
  width: 100%; height: 400px;
  object-fit: cover; display: block;
  transition: transform .45s;
}
.service-card:hover .service-name {
  color: #e9d9c3 !important;
}
.service-card:hover .service-img-wrap img {
  transform: scale(1.05);
}
.service-name {
  font-size: 20px; font-weight: 500;
  color: #f7f8f8;
  letter-spacing: .2px;
}

/* ── Modal — live: black rounded-2xl panel, zinc-50/30 border,
   blurred black/20 backdrop, header / body-grid / footer ── */
.conc-modal {
  position: fixed; inset: 0;
  z-index: 1200;
  display: none;
  align-items: flex-end;         /* live: items-end (bottom sheet) ... */
  justify-content: center;
  background: rgba(0, 0, 0, .2);
  backdrop-filter: blur(12px);   /* live: backdrop-blur-md */
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 16px 32px;       /* live: p-4 pb-8 */
}
@media (min-width: 640px)  { .conc-modal { align-items: center; } }   /* live sm:items-center */
@media (min-width: 1024px) { .conc-modal { padding: 32px; } }         /* live lg:p-8 */
.conc-modal.open { display: flex; }

.conc-modal-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 768px;         /* live lg:w-3xl */
  max-height: 90vh;
  background: #000;
  border: 1px solid rgba(248, 247, 247, .3);
  border-radius: 16px;
  overflow: hidden;
  animation: concModalIn .2s ease-out .1s both;
}
@keyframes concModalIn {
  from { opacity: 0; transform: scale(.5); }
  to   { opacity: 1; transform: scale(1); }
}

.conc-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
}
.conc-modal-title {
  font-family: var(--lx-font-accent);
  font-size: 24px;          /* live h3 text-2xl */
  line-height: 32px;
  font-weight: 600;         /* live font-semibold tracking-wide */
  letter-spacing: .025em;
  color: #fff;
  margin: 0;
}
.conc-modal-close {
  background: none; border: none;
  color: #fff; cursor: pointer;
  padding: 0; line-height: 0;
}

.conc-modal-body {
  padding: 16px 24px;
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* live lg:grid-cols-3 */
  gap: 24px;
}
@media (max-width: 640px) {
  .conc-modal-body { grid-template-columns: 1fr; }
}
.conc-modal-img {
  position: relative;
  min-height: 256px;        /* live min-h-64 */
  border-radius: 16px;
  overflow: hidden;
}
.conc-modal-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.conc-modal-desc {
  grid-column: span 2;               /* live lg:col-span-2 */
  font-family: var(--lx-font-body);
  font-size: 16px;
  line-height: 24px;   /* live: plain p, 1.5 */
  font-weight: 300;
  color: var(--lx-zinc-50);
}
@media (max-width: 640px) {
  .conc-modal-desc { grid-column: auto; }   /* span 2 would add a phantom track */
}

/* live: flex-col-reverse on mobile (Inquire above Call, both full width,
   left-aligned) -> sm:flex-row, right-aligned from md up */
.conc-modal-footer {
  display: flex;
  flex-direction: column-reverse;
  gap: 8px;
  padding: 24px;
}
.conc-modal-footer .conc-btn { text-align: left; }
@media (min-width: 640px) {
  .conc-modal-footer {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }
  .conc-modal-footer .conc-btn { text-align: center; }
}


/* ---------- Mobile: shorter service images (live shows them square),
   tighter description lines and gaps around/between the services */
@media (max-width: 768px) {
  .service-img-wrap img {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .concierge-intro { padding-bottom: 16px; }
  .services-section { padding-top: 16px; }

  .services-grid { gap: 18px; }
}
