/* =========================================================
   VELOURA EAST — CONCIERGE MODULE
   Shared luxury styles for:
   concierge/index.php, dashboard.php, new-request.php,
   request.php, preferences.php
   Uses existing design tokens from core.css (--black, --gold,
   --muted, --border, --bg-2) and enterprise.css components.
========================================================= */

.gold-divider {
    width:48px;
    height:2px;
    background:var(--gold);
    margin:0 0 20px;
}

.container.narrow {
    max-width:720px;
    margin:0 auto;
}


/* ===========================================================
   PUBLIC CONCIERGE HERO
=========================================================== */

.conc-hero {
    position:relative;
    min-height:760px;
    padding:200px 0 130px;
    color:#fff;
    text-align:center;
    overflow:hidden;
    isolation:isolate;
    display:flex;
    align-items:center;
    background-color:#0a0a0a;
}

/* Background photo layer — separate div (.conc-hero-bgimg) so the
   dark cinematic overlay can sit on top of it independently.
   NOTE: kept clearly visible on purpose. A photo you can't see is
   the same as no photo — opacity/grayscale here should stay subtle,
   not crush the image to black. */
.conc-hero-bgimg {
    position:absolute;
    inset:0;
    z-index:0;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    opacity:.62;
}

/*
 Luxury cinematic overlay — dims the photo just enough for white
 text to stay readable, without erasing the image underneath.
*/
.conc-hero-overlay {
    position:absolute;
    inset:0;
    z-index:1;
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.30) 0%,
            rgba(0,0,0,.50) 55%,
            rgba(0,0,0,.72) 100%
        ),
        radial-gradient(
            circle at 50% 0%,
            rgba(201,169,110,.20),
            transparent 60%
        );
}



/* Content layer */
.conc-hero-content {
    position:relative;
    z-index:2;
    max-width:760px;
    width:100%;
    margin:0 auto;
    padding:0 24px;
}



/* Small gold heading */
.conc-hero .section-tag {
    display:inline-block;
    color:var(--gold);
    font-size:11px;
    letter-spacing:.35em;
    text-transform:uppercase;
    padding-bottom:18px;
    position:relative;
}

.conc-hero .section-tag::after {
    content:"";
    position:absolute;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    width:42px;
    height:1px;
    background:var(--gold);
}



/* Main title */
.conc-hero h1 {
    font-family:'Playfair Display',serif;
    font-size:clamp(38px,6vw,64px);
    font-weight:400;
    line-height:1.15;
    letter-spacing:.02em;
    margin:28px 0 26px;
    color:#fff;
    text-shadow:0 8px 40px rgba(0,0,0,.6);
}



/* Description */
.conc-hero-lead {
    max-width:600px;
    margin:0 auto 42px;
    color:rgba(255,255,255,.88);
    font-size:17px;
    line-height:1.9;
    font-weight:300;
}



/* Buttons */
.conc-hero-actions {
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    gap:20px;
}



/* Tablet */
@media(max-width:992px){
    .conc-hero {
        min-height:680px;
        padding:160px 0 100px;
    }
}



/* Mobile */
@media(max-width:768px){
    .conc-hero {
        min-height:620px;
        padding:140px 0 80px;
    }

    .conc-hero h1 {
        font-size:38px;
    }

    .conc-hero-lead {
        font-size:15px;
    }
}

/* Premium CTA buttons — used on the concierge public pages in place
   of the flat sitewide .btn-burgundy, which reads flat against a
   photographic hero. Gold gradient + lift + shine sweep on hover. */
.conc-btn-primary {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 17px 42px; font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 600; color: #1a1a1a;
  background: linear-gradient(135deg, #E4CB98 0%, var(--gold) 45%, var(--gold-2) 100%);
  border: none; border-radius: 2px; text-decoration: none; cursor: pointer;
  overflow: hidden; transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 8px 24px rgba(201,169,110,.28);
}
.conc-btn-primary::before {
  content: ''; position: absolute; inset: 0; left: -60%;
  width: 40%; background: linear-gradient(115deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg); transition: left .6s ease;
}
.conc-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,169,110,.4); }
.conc-btn-primary:hover::before { left: 130%; }

.conc-btn-ghost-light {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; font-size: 11px; letter-spacing: .12em;
  color: rgba(255,255,255,.85); text-decoration: none;
  border: 1px solid rgba(255,255,255,.28); border-radius: 2px;
  transition: all .25s ease;
}
.conc-btn-ghost-light:hover { color: #fff; border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.06); }

@media (max-width: 480px) {
  .conc-hero-actions { width: 100%; }
  .conc-btn-primary, .conc-btn-ghost-light { width: 100%; }
}

.conc-section { padding: 100px 0; }
.conc-section-alt { background: var(--bg-2); }
.conc-section-dark { background: var(--black); color: #fff; }
.conc-section-dark .conc-eyebrow { color: rgba(255,255,255,.5); }
.conc-section-dark h2 { color: #fff; }
.conc-section-dark p { color: rgba(255,255,255,.7); }

.conc-section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.conc-section-head .gold-divider { margin-left: auto; margin-right: auto; }
.conc-eyebrow {
  font-size: 10.5px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px; display: block;
}
.conc-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 400;
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 6px;
}
.conc-section-lead { color: var(--muted); font-size: 15px; line-height: 1.85; margin-top: 16px; }

/* Philosophy / "Why Veloura Concierge" pillars */
.conc-pillars {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border); max-width: 1200px; margin: 0 auto;
}
.conc-pillar { background: #fff; padding: 40px 32px; }
.conc-pillar-num { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--gold); margin-bottom: 14px; }
.conc-pillar h3 { font-size: 15px; letter-spacing: .02em; color: var(--black); margin-bottom: 10px; }
.conc-pillar p { font-size: 13.5px; color: var(--muted); line-height: 1.75; }

/* Who We Help cards */
.conc-audience-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border); max-width: 1200px; margin: 0 auto;
}
.conc-audience-card {
  background: #fff; padding: 44px 34px; transition: background .3s ease;
}
.conc-audience-card:hover { background: var(--bg-2); }
.conc-audience-card h3 {
  font-family: 'Playfair Display', serif; font-size: 19px; color: var(--black);
  margin-bottom: 12px; font-weight: 400;
}
.conc-audience-card p { font-size: 13.5px; color: var(--muted); line-height: 1.8; }

/* Services */
.conc-service-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px; background: var(--border); max-width: 1200px; margin: 0 auto;
}
.conc-service-card { background: #fff; padding: 36px 30px; transition: box-shadow .3s ease; }
.conc-service-card:hover { box-shadow: inset 0 -2px 0 var(--gold); }
.conc-service-card h3 { font-size: 15.5px; color: var(--black); margin-bottom: 10px; letter-spacing: .01em; }
.conc-service-card p { font-size: 13.5px; color: var(--muted); line-height: 1.8; }

/* Journey timeline */
.conc-journey { max-width: 720px; margin: 0 auto; }
.conc-journey-step {
  display: grid; grid-template-columns: 56px 1fr; gap: 24px;
  padding: 0 0 8px; position: relative;
}
.conc-journey-step:not(:last-child) { padding-bottom: 40px; }
.conc-journey-step:not(:last-child)::before {
  content: ''; position: absolute; left: 27px; top: 44px; bottom: -4px;
  width: 1px; background: var(--border-2);
}
.conc-journey-num {
  width: 56px; height: 56px; border: 1px solid var(--gold-line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 18px; color: var(--gold);
  background: #fff; position: relative; z-index: 1; flex-shrink: 0;
}
.conc-journey-body h3 { font-size: 16px; color: var(--black); margin-bottom: 6px; padding-top: 12px; }
.conc-journey-body p { font-size: 13.5px; color: var(--muted); line-height: 1.8; }

/* The journey timeline is rendered inside .conc-section-dark — the
   rules above default to dark-on-light text, so override to light
   text here (this is the fix for titles/descriptions being invisible
   against the black background). */
.conc-section-dark .conc-journey-num { background: rgba(255,255,255,.06); border-color: rgba(201,169,110,.4); color: var(--gold); }
.conc-section-dark .conc-journey-step:not(:last-child)::before { background: rgba(255,255,255,.14); }
.conc-section-dark .conc-journey-body h3 { color: #fff; }
.conc-section-dark .conc-journey-body p { color: rgba(255,255,255,.68); }

/* Why choose us */
.conc-benefits {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 56px;
  max-width: 900px; margin: 0 auto;
}
.conc-benefit { display: flex; gap: 18px; }
.conc-benefit-mark {
  width: 34px; height: 34px; border: 1px solid var(--gold-line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--gold); font-size: 13px;
}
.conc-benefit h3 { font-size: 15px; color: var(--black); margin-bottom: 6px; }
.conc-benefit p { font-size: 13.5px; color: var(--muted); line-height: 1.75; }

/* FAQ accordion */
.conc-faq { max-width: 760px; margin: 0 auto; }
.conc-faq-item { border-bottom: 1px solid var(--border); }
.conc-faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 24px 4px; display: flex; justify-content: space-between; align-items: center;
  gap: 20px; font-size: 15px; color: var(--black); font-family: inherit;
}
.conc-faq-q-text { font-weight: 500; }
.conc-faq-icon { font-size: 18px; color: var(--gold); flex-shrink: 0; transition: transform .25s ease; line-height: 1; }
.conc-faq-item.open .conc-faq-icon { transform: rotate(45deg); }
.conc-faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.conc-faq-item.open .conc-faq-a { max-height: 300px; }
.conc-faq-a-inner { padding: 0 4px 24px; font-size: 13.5px; color: var(--muted); line-height: 1.85; max-width: 640px; }

/* Final CTA */
.conc-cta { text-align: center; }
.conc-cta h2 { margin-bottom: 20px; }
.conc-cta p { color: var(--muted); font-size: 15px; margin-bottom: 32px; }

@media (max-width: 1024px) {
  .conc-pillars { grid-template-columns: repeat(2, 1fr); }
  .conc-audience-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .conc-hero { padding: 120px 0 80px; }
  .conc-section { padding: 70px 0; }
  .conc-pillars, .conc-audience-grid, .conc-service-grid { grid-template-columns: 1fr; }
  .conc-benefits { grid-template-columns: 1fr; gap: 28px; }
  .conc-journey-step { grid-template-columns: 44px 1fr; gap: 18px; }
  .conc-journey-num { width: 44px; height: 44px; font-size: 15px; }
  .conc-journey-step:not(:last-child)::before { left: 21px; }
}
@media (max-width: 480px) {
  .conc-hero { padding: 100px 0 64px; }
  .conc-hero-actions { width: 100%; }
  .conc-btn-primary, .conc-btn-ghost-light { width: 100%; }
  .conc-hero-lead { font-size: 14px; }
  .conc-section { padding: 56px 0; }
  .conc-section-head { margin-bottom: 36px; }
  .conc-pillar, .conc-audience-card, .conc-service-card { padding: 28px 22px; }
}

/* ===========================================================
   2. CONCIERGE PORTAL LAYOUT (dashboard / preferences / request)
   — moved out of inline <style> blocks per-page
=========================================================== */

.concierge-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: calc(100vh - 130px);
  gap: 0;
}
.concierge-sidebar {
  background: #0d0d0d;
  padding: 40px 0;
  position: sticky;
  top: 70px;
  height: calc(100vh - 70px);
  overflow-y: auto;
}
.conc-sidebar-brand {
  padding: 0 32px 32px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 24px;
}
.conc-sidebar-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px; color: #fff; letter-spacing: .06em; margin-bottom: 3px;
}
.conc-sidebar-sub {
  font-size: 9px; letter-spacing: .25em; text-transform: uppercase; color: var(--gold);
}
.conc-nav-link {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 32px; color: rgba(255,255,255,.5); font-size: 12.5px;
  text-decoration: none; transition: all .2s; border-left: 2px solid transparent;
}
.conc-nav-link:hover { color: rgba(255,255,255,.85); background: rgba(255,255,255,.03); }
.conc-nav-link.active { color: #fff; border-left-color: var(--gold); background: rgba(201,169,110,.06); }
.conc-nav-link svg { width: 15px; height: 15px; opacity: .5; flex-shrink: 0; }
.conc-nav-link:hover svg, .conc-nav-link.active svg { opacity: 1; }
.conc-nav-divider { margin: 20px 32px 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.06); }

.conc-main { padding: 48px; background: #FAFAF8; }

/* Quick action cards (dashboard) */
.conc-quick-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px;
  margin-bottom: 40px;
}
.conc-quick-card {
  background: #fff; border: 1px solid var(--border); padding: 26px 22px;
  text-decoration: none; display: block; transition: border-color .2s, transform .2s;
}
.conc-quick-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.conc-quick-icon {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(201,169,110,.1);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
  margin-bottom: 16px;
}
.conc-quick-icon svg { width: 17px; height: 17px; }
.conc-quick-card h3 { font-size: 14.5px; color: var(--black); margin-bottom: 5px; }
.conc-quick-card p { font-size: 12px; color: var(--muted); line-height: 1.6; }
.conc-quick-card.disabled {
  opacity: .5; pointer-events: none; cursor: not-allowed;
}
.conc-quick-badge {
  display: inline-block; font-size: 9px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--border); padding: 3px 8px; border-radius: 20px;
  margin-top: 10px;
}

/* Section headers within the portal */
.conc-portal-section { margin-bottom: 44px; }
.conc-portal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; gap: 12px; flex-wrap: wrap; }
.conc-portal-head h2 { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 400; color: var(--black); }
.conc-portal-head .ent-btn { flex-shrink: 0; }

/* Requests list rows are <a> now — normalize link look */
a.concierge-ticket { text-decoration: none; color: inherit; }

@media (max-width: 900px) {
  .concierge-layout { grid-template-columns: 1fr; }
  .concierge-sidebar { position: relative; top: 0; height: auto; padding: 20px 0; }
  .conc-main { padding: 24px 16px; }
}
@media (max-width: 480px) {
  .conc-quick-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .conc-quick-card { padding: 18px 14px; }
}

/* ===========================================================
   3. NEW REQUEST — service card selector
=========================================================== */

.nr-layout {
  display: grid; grid-template-columns: 1fr 380px; gap: 40px;
  max-width: 1100px; margin: 0 auto; padding: 48px 24px;
}
.nr-service-picker {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 32px;
}
.nr-service-option { position: relative; }
.nr-service-option input { position: absolute; opacity: 0; pointer-events: none; }
.nr-service-card {
  display: block; border: 1px solid var(--border); padding: 18px 18px;
  cursor: pointer; transition: border-color .2s, background .2s;
}
.nr-service-card h4 { font-size: 13.5px; color: var(--black); margin-bottom: 4px; }
.nr-service-card p { font-size: 11.5px; color: var(--muted); line-height: 1.6; }
.nr-service-option input:checked + .nr-service-card {
  border-color: var(--gold); background: rgba(201,169,110,.05);
}
.nr-service-option input:focus-visible + .nr-service-card { outline: 2px solid var(--gold); outline-offset: 2px; }

.nr-info {
  background: #111; color: #fff; padding: 36px; align-self: start; position: sticky; top: 96px;
}
.nr-info-eyebrow { font-size: 9px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.nr-info-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 400; color: #fff; margin-bottom: 18px; line-height: 1.3; }
.nr-info-promise { border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px; }
.nr-promise-item { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-size: 12.5px; color: rgba(255,255,255,.6); }
.nr-promise-icon {
  width: 26px; height: 26px; background: rgba(201,169,110,.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); font-size: 11px;
}

@media (max-width: 900px) {
  .nr-layout { grid-template-columns: 1fr; }
  .nr-info { position: static; }
}
@media (max-width: 480px) {
  .nr-layout { padding: 32px 16px; }
  .nr-service-picker { grid-template-columns: 1fr; }
}

/* ===========================================================
   4. REQUEST DETAIL — concierge/request.php
=========================================================== */

.req-detail-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 20px; margin-bottom: 32px; flex-wrap: wrap;
}
.req-detail-num { font-size: 11px; letter-spacing: .15em; color: var(--gold); text-transform: uppercase; margin-bottom: 8px; }
.req-detail-subject { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--black); font-weight: 400; }

.req-timeline { display: flex; margin: 0 0 40px; overflow-x: auto; padding-bottom: 4px; }
.req-timeline-step { flex: 1; min-width: 110px; text-align: center; position: relative; }
.req-timeline-step:not(:last-child)::after {
  content: ''; position: absolute; top: 9px; left: 55%; width: 90%; height: 1px; background: var(--border);
}
.req-timeline-step.done:not(:last-child)::after { background: var(--gold); }
.req-timeline-dot {
  width: 18px; height: 18px; border-radius: 50%; background: #fff; border: 2px solid var(--border);
  margin: 0 auto 10px; position: relative; z-index: 1;
}
.req-timeline-step.done .req-timeline-dot { background: var(--gold); border-color: var(--gold); }
.req-timeline-step.current .req-timeline-dot { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,169,110,.15); }
.req-timeline-label { font-size: 10.5px; letter-spacing: .04em; color: var(--muted); }
.req-timeline-step.done .req-timeline-label, .req-timeline-step.current .req-timeline-label { color: var(--black); }

.req-grid { display: grid; grid-template-columns: 1fr 320px; gap: 32px; }
.req-panel { background: #fff; border: 1px solid var(--border); padding: 30px; margin-bottom: 20px; }
.req-panel h3 { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--black); margin-bottom: 16px; }
.req-message { font-size: 14px; color: var(--text, #333); line-height: 1.85; white-space: pre-wrap; }
.req-meta-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.req-meta-row:last-child { border-bottom: none; }
.req-meta-label { color: var(--muted); }
.req-meta-value { color: var(--black); font-weight: 500; text-align: right; }

.req-placeholder { text-align: center; padding: 28px 16px; color: var(--muted); }
.req-placeholder svg { width: 26px; height: 26px; color: var(--gold-line); margin-bottom: 10px; }
.req-placeholder-title { font-size: 12.5px; color: var(--black); margin-bottom: 4px; }
.req-placeholder-text { font-size: 11.5px; line-height: 1.6; }

@media (max-width: 900px) { .req-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) {
  .req-detail-subject { font-size: 20px; }
  .req-panel { padding: 20px; }
  .req-timeline-step { min-width: 84px; }
}

/* ===========================================================
   5. PREFERENCES — concierge/preferences.php
=========================================================== */

.pref-intro { max-width: 620px; margin-bottom: 32px; }
.pref-intro p { font-size: 14px; color: var(--muted); line-height: 1.85; }
.pref-section { margin-bottom: 8px; }
.pref-section-title {
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--border);
}

@media (max-width: 480px) {
  .pref-intro p { font-size: 13px; }
}