/* ============================================================
   LUXURY UNLOCKED — INDIVIDUAL BLOG ARTICLE
   Exact ZIP visual mapping, isolated from /blogs index page.

   Source:
   - base.css
   - page-article-generic.jsx

   IMPORTANT:
   - Load ONLY on individual blog article pages.
   - Do NOT load this file on /blogs.
   - Every rule is scoped to .lu-article-main.
   ============================================================ */


.lu-article-main {
  --paper:#FAF7F0;
  --paper-2:#F1EADC;
  --paper-3:#EAE1CF;
  --ink:#211C15;
  --ink-soft:#463F34;
  --muted:#8A7F6E;
  --line:rgba(33,28,21,.16);
  --line-soft:rgba(33,28,21,.08);
  --accent:#C49A4C;
  --accent-deep:#6E4E18;
  --dark:#1C1813;
  --dark-2:#252017;
  --on-dark:#F2EBDC;
  --on-dark-muted:#A99E89;
  --serif:'Cormorant Garamond',Georgia,'Times New Roman',serif;
  --sans:'Jost',system-ui,-apple-system,sans-serif;
  --maxw:1300px;
  --gut:clamp(20px,5.2vw,72px);
  --ease:cubic-bezier(.22,.61,.36,1);

  background:var(--paper);
  color:var(--ink);
  font-family:var(--sans);
  font-weight:300;
  font-size:17px;
  line-height:1.75;
  letter-spacing:.005em;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

.lu-article-main,
.lu-article-main * {
  box-sizing:border-box;
}

.lu-article-main img {
  display:block;
  max-width:100%;
}

.lu-article-main a {
  color:inherit;
  text-decoration:none;
}

.lu-article-main button {
  font-family:inherit;
  cursor:pointer;
}


/* ============================================================
   LAYOUT — ZIP .wrap / .section
   ============================================================ */

.lu-article-main .lu-article-wrap {
  max-width:var(--maxw);
  margin:0 auto;
  padding-inline:var(--gut);
}

.lu-article-main .lu-article-section {
  padding-block:clamp(72px,11vh,150px);
}


/* ============================================================
   HERO — ZIP .page-hero, article uses inline minHeight 60vh
   ============================================================ */

.lu-article-main .lu-article-hero {
  position:relative;
  min-height:60vh;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  background:var(--dark);
  color:var(--on-dark);
}

.lu-article-main .lu-article-hero-bg {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}

.lu-article-main .lu-article-hero-scrim {
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(
    to top,
    rgba(13,10,7,.92),
    rgba(13,10,7,.5) 55%,
    rgba(13,10,7,.62)
  );
}

.lu-article-main .lu-article-hero .lu-article-wrap {
  position:relative;
  z-index:2;
  width:100%;
  padding-top:clamp(140px,20vh,200px);
  padding-bottom:clamp(44px,7vh,80px);
}

.lu-article-main .lu-article-crumb {
  display:flex;
  align-items:center;
  gap:10px;
  font-size:11.5px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:rgba(255,253,248,.92);
  margin-bottom:26px;
  text-shadow:0 1px 10px rgba(0,0,0,.5);
}

.lu-article-main .lu-article-crumb a:hover {
  color:#fff;
}

.lu-article-main .lu-article-crumb span {
  opacity:.65;
}

.lu-article-main .lu-article-hero h1 {
  margin:0;
  color:#fff;
  font-family:var(--serif);
  font-weight:300;
  font-size:clamp(2.1rem,4.4vw,3.8rem);
  line-height:.98;
  letter-spacing:-.02em;
  max-width:18ch;
  text-shadow:0 2px 30px rgba(0,0,0,.45);
}

.lu-article-main .lu-article-hero-sub {
  color:rgba(255,253,248,.92);
  font-size:clamp(1.05rem,1.5vw,1.3rem);
  font-weight:300;
  max-width:50ch;
  margin:22px 0 0;
  text-shadow:0 1px 16px rgba(0,0,0,.5);
}


/* ============================================================
   ARTICLE — ZIP .ga
   ============================================================ */

.lu-article-main .lu-article-content {
  max-width:780px;
  margin:0 auto;
}

.lu-article-main .lu-article-byline {
  display:flex;
  align-items:center;
  gap:14px;
  padding-bottom:26px;
  margin-bottom:34px;
  border-bottom:1px solid var(--line);
}

.lu-article-main .lu-article-avatar {
  width:46px;
  height:46px;
  border-radius:50%;
  background:var(--accent-deep);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:var(--serif);
  font-size:1.3rem;
}

.lu-article-main .lu-article-author {
  flex:1;
}

.lu-article-main .lu-article-byline b {
  font-weight:500;
  font-size:14px;
  letter-spacing:.03em;
  display:block;
}

.lu-article-main .lu-article-byline span {
  font-size:12.5px;
  color:var(--muted);
}

.lu-article-main .lu-article-meta {
  font-size:12.5px;
  color:var(--muted);
  letter-spacing:.04em;
}

.lu-article-main .lu-article-lead {
  font-family:var(--serif);
  font-size:clamp(1.25rem,1.9vw,1.55rem);
  line-height:1.55;
  color:var(--ink);
  font-weight:400;
  margin:0 0 36px;
}

.lu-article-main .lu-article-content h2 {
  font-family:var(--serif);
  font-size:clamp(1.6rem,2.7vw,2.2rem);
  font-weight:300;
  line-height:1.04;
  letter-spacing:-.01em;
  margin:46px 0 16px;
}

.lu-article-main .lu-article-content h3 {
  font-size:1.3rem;
  font-weight:500;
  margin:32px 0 10px;
  font-family:var(--sans);
  line-height:1.04;
  letter-spacing:-.01em;
}

.lu-article-main .lu-article-content p {
  color:var(--ink-soft);
  font-size:16.5px;
  line-height:1.8;
  margin:0 0 1.1em;
  max-width:68ch;
}

.lu-article-main .lu-article-content ul {
  list-style:none;
  padding:0;
  margin:0 0 1.4em;
  display:grid;
  gap:10px;
  max-width:64ch;
}

.lu-article-main .lu-article-content ul li {
  position:relative;
  padding-left:24px;
  color:var(--ink-soft);
  font-size:16px;
  line-height:1.6;
}

.lu-article-main .lu-article-content ul li::before {
  content:"";
  position:absolute;
  left:0;
  top:11px;
  width:11px;
  height:1px;
  background:var(--accent);
}

.lu-article-main .lu-article-content a:not(.lu-article-btn) {
  color:var(--accent-deep);
  border-bottom:1px solid var(--line);
  padding-bottom:1px;
}

.lu-article-main .lu-article-content a:not(.lu-article-btn):hover {
  border-color:var(--accent-deep);
}


/* Facts */

.lu-article-main .lu-article-facts {
  background:var(--paper-2);
  border:1px solid var(--line-soft);
  padding:28px clamp(22px,4vw,36px);
  margin:30px 0;
}

.lu-article-main .lu-article-fact-row {
  display:grid;
  grid-template-columns:200px 1fr;
  gap:16px;
  padding:13px 0;
  border-top:1px solid var(--line-soft);
  align-items:baseline;
}

.lu-article-main .lu-article-fact-row:first-child {
  border-top:0;
}

.lu-article-main .lu-article-fact-row b {
  font-family:var(--sans);
  font-weight:500;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--accent-deep);
}

.lu-article-main .lu-article-fact-row span {
  font-family:var(--serif);
  font-size:1.2rem;
  color:var(--ink);
}


/* Month */

.lu-article-main .lu-article-month {
  border:1px solid var(--line);
  padding:28px clamp(22px,3vw,34px);
  margin:20px 0;
  background:var(--paper);
}

.lu-article-main .lu-article-month-head {
  display:flex;
  align-items:baseline;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.lu-article-main .lu-article-month-head b {
  font-family:var(--serif);
  font-weight:400;
  font-size:1.6rem;
}

.lu-article-main .lu-article-month-head span {
  font-size:11px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--accent-deep);
}

.lu-article-main .lu-article-month-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px 30px;
}

.lu-article-main .lu-article-month-grid h5 {
  font-family:var(--sans);
  font-weight:500;
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--muted);
  margin:0 0 8px;
}

.lu-article-main .lu-article-month-grid ul {
  margin:0;
  gap:6px;
}

.lu-article-main .lu-article-month-grid ul li {
  font-size:14.5px;
  padding-left:18px;
}

.lu-article-main .lu-article-month-grid ul li::before {
  top:10px;
  width:8px;
}


/* Table */

.lu-article-main .lu-article-table-scroll {
  width:100%;
  overflow-x:auto;
}

.lu-article-main .lu-article-table {
  width:100%;
  border-collapse:collapse;
  margin:20px 0 28px;
}

.lu-article-main .lu-article-table th,
.lu-article-main .lu-article-table td {
  text-align:left;
  padding:14px 16px;
  border-bottom:1px solid var(--line-soft);
  font-size:15px;
}

.lu-article-main .lu-article-table th {
  font-family:var(--sans);
  font-weight:500;
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--accent-deep);
  border-bottom:1px solid var(--line);
}

.lu-article-main .lu-article-table td:first-child {
  font-family:var(--serif);
  font-size:1.05rem;
  color:var(--ink);
}

.lu-article-main .lu-article-table tr:hover td {
  background:var(--paper-2);
}


/* Animal */

.lu-article-main .lu-article-animal {
  border-left:2px solid var(--accent);
  padding:4px 0 4px 24px;
  margin:30px 0;
}

.lu-article-main .lu-article-animal h3 {
  margin:0 0 12px;
}

.lu-article-main .lu-article-animal-meta {
  display:flex;
  flex-wrap:wrap;
  gap:10px 28px;
  margin-bottom:14px;
}

.lu-article-main .lu-article-animal-meta span {
  font-size:14px;
  color:var(--ink-soft);
}

.lu-article-main .lu-article-animal-meta b {
  display:block;
  font-family:var(--sans);
  font-weight:500;
  font-size:10.5px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--accent-deep);
  margin-bottom:3px;
}

.lu-article-main .lu-article-when {
  font-size:15px;
}

.lu-article-main .lu-article-when b {
  font-family:var(--sans);
  font-weight:500;
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--accent-deep);
  margin-right:8px;
}


/* ============================================================
   FAQ — ZIP .gafaq
   ============================================================ */

.lu-article-main .lu-article-faq {
  max-width:840px;
  margin:36px auto 0;
}

.lu-article-main .lu-article-faq-item {
  border-top:1px solid var(--line);
}

.lu-article-main .lu-article-faq-item:last-child {
  border-bottom:1px solid var(--line);
}

.lu-article-main .lu-article-faq-question {
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  text-align:left;
  background:none;
  border:0;
  border-radius:0;
  padding:22px 0;
  font-family:var(--serif);
  font-size:clamp(1.15rem,1.7vw,1.35rem);
  font-weight:400;
  color:var(--ink);
}

.lu-article-main .lu-article-faq-icon {
  flex-shrink:0;
  width:24px;
  height:24px;
  position:relative;
}

.lu-article-main .lu-article-faq-icon::before,
.lu-article-main .lu-article-faq-icon::after {
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  background:var(--accent-deep);
}

.lu-article-main .lu-article-faq-icon::before {
  width:13px;
  height:1.5px;
  transform:translate(-50%,-50%);
}

.lu-article-main .lu-article-faq-icon::after {
  width:1.5px;
  height:13px;
  transform:translate(-50%,-50%);
  transition:transform .4s var(--ease);
}

.lu-article-main
.lu-article-faq-item.open
.lu-article-faq-icon::after {
  transform:translate(-50%,-50%) scaleY(0);
}

.lu-article-main .lu-article-faq-answer {
  overflow:hidden;
  max-height:0;
  transition:max-height .5s var(--ease);
}

.lu-article-main .lu-article-faq-answer p {
  margin:0 0 22px;
  color:var(--ink-soft);
  font-size:15.5px;
  line-height:1.7;
}


/* Related */

.lu-article-main .lu-article-related {
  margin-top:40px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}


/* ============================================================
   BUTTON — ZIP .btn
   ============================================================ */

.lu-article-main .lu-article-btn {
  --bd:var(--ink);
  display:inline-flex;
  align-items:center;
  gap:.85em;
  font-family:var(--sans);
  font-weight:500;
  font-size:12px;
  letter-spacing:.2em;
  text-transform:uppercase;
  padding:1.05em 1.9em;
  border:1px solid var(--bd);
  border-radius:0;
  background:transparent;
  color:var(--ink);
  position:relative;
  overflow:hidden;
  transition:
    color .5s var(--ease),
    border-color .5s var(--ease);
}

.lu-article-main .lu-article-btn span {
  position:relative;
  z-index:1;
  transition:color .5s var(--ease);
}

.lu-article-main .lu-article-btn::after {
  content:"";
  position:absolute;
  inset:0;
  background:var(--ink);
  transform:scaleX(0);
  transform-origin:right;
  transition:transform .55s var(--ease);
  z-index:0;
}

.lu-article-main .lu-article-btn:hover::after {
  transform:scaleX(1);
  transform-origin:left;
}

.lu-article-main .lu-article-btn:hover {
  color:var(--paper) !important;
  border-color:var(--ink) !important;
}

.lu-article-main .lu-article-btn:hover span {
  color:var(--paper) !important;
}

.lu-article-main .lu-article-btn-light {
  --bd:rgba(242,235,220,.5) !important;
  color:var(--on-dark) !important;
}

.lu-article-main .lu-article-btn-light::after {
  background:var(--on-dark) !important;
}

.lu-article-main .lu-article-btn-light:hover {
  color:var(--dark) !important;
  border-color:var(--on-dark) !important;
}

.lu-article-main .lu-article-btn-light:hover span {
  color:var(--dark) !important;
}

.lu-article-main .lu-article-btn .lu-article-arrow {
  transition:transform .5s var(--ease) !important;
}

.lu-article-main .lu-article-btn:hover .lu-article-arrow {
  transform:translateX(4px) !important;
  
}


/* ============================================================
   CTA — ZIP .cta-band
   ============================================================ */

.lu-article-main .lu-article-cta {
  background:var(--dark);
  color:var(--on-dark);
  text-align:center;
}

.lu-article-main .lu-article-eyebrow {
  font-family:var(--sans);
  font-weight:500;
  font-size:11.5px;
  letter-spacing:.34em;
  text-transform:uppercase;
  color:var(--accent-deep) !important;
  display:inline-flex;
  align-items:center;
  gap:.9em;
}

.lu-article-main .lu-article-eyebrow::before {
  content:"";
  width:26px;
  height:1px;
  background:var(--accent);
  opacity:.7;
}

.lu-article-main
.lu-article-eyebrow-center::after {
  content:"";
  width:26px;
  height:1px;
  background:var(--accent);
  opacity:.7;
}

.lu-article-main .lu-article-eyebrow-center {
  justify-content:center;
}

.lu-article-main .lu-article-cta h2 {
  margin:18px auto 0;
  color:#fff;
  font-family:var(--serif);
  font-weight:300;
  font-size:clamp(2rem,4vw,3.4rem);
  line-height:1.04;
  letter-spacing:-.01em;
  max-width:18ch;
}

.lu-article-main .lu-article-cta-actions {
  display:flex;
  justify-content:center;
  margin-top:26px;
}


/* ============================================================
   REVEAL — ZIP .reveal / ui.jsx
   ============================================================ */

.lu-article-main .lu-article-reveal {
  opacity:0;
  transform:translateY(26px);
  transition:
    opacity 1s var(--ease),
    transform 1.1s var(--ease);
}

.lu-article-main .lu-article-reveal.in {
  opacity:1;
  transform:none;
}

.lu-article-main [data-d="1"] {
  transition-delay:.08s;
}

.lu-article-main [data-d="2"] {
  transition-delay:.16s;
}

.lu-article-main [data-d="3"] {
  transition-delay:.24s;
}

.lu-article-main [data-d="4"] {
  transition-delay:.32s;
}

.lu-article-main [data-d="5"] {
  transition-delay:.4s;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width:600px) {

  .lu-article-main .lu-article-fact-row {
    grid-template-columns:1fr;
    gap:3px;
  }

  .lu-article-main .lu-article-month-grid {
    grid-template-columns:1fr;
  }

  .lu-article-main .lu-article-byline {
    align-items:flex-start;
    flex-wrap:wrap;
  }

  .lu-article-main .lu-article-meta {
    width:100%;
    padding-left:60px;
  }

}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion:reduce) {

  .lu-article-main .lu-article-reveal {
    opacity:1;
    transform:none;
  }

  .lu-article-main .lu-article-reveal,
  .lu-article-main .lu-article-btn,
  .lu-article-main .lu-article-btn span,
  .lu-article-main .lu-article-btn::after,
  .lu-article-main .lu-article-btn .lu-article-arrow,
  .lu-article-main .lu-article-faq-answer,
  .lu-article-main .lu-article-faq-icon::after {
    transition:none !important;
  }

}