/* =============================================================================
   Logical Solutions — brand system
   Quiet-luxury editorial: warm paper, deep ink, bronze hairlines, photography-led.
   @font-face lives inline in PHP with ABSOLUTE urls (LiteSpeed combine safety).
   ========================================================================== */

:root{
  /* ink + paper */
  --paper:#FCFAF7;      --paper-2:#F6F2EB;    --cream:#F1ECE3;
  --ink:#14120F;        --ink-2:#332E27;      --muted:#6F6659;   --muted-2:#8C8375;
  --hair:#E7E0D4;       --hair-2:#D8CFC0;
  --bronze:#8A6A45;     --bronze-2:#A98A62;   --bronze-3:#C8B393;

  /* type */
  --serif:'LSFraunces',Georgia,'Times New Roman',serif;
  --sans:'LSInter',system-ui,-apple-system,'Segoe UI',sans-serif;

  --t-display:clamp(2.9rem,6.4vw,5.6rem);
  --t-h1:clamp(2.3rem,4.6vw,3.9rem);
  --t-h2:clamp(1.85rem,3.2vw,2.85rem);
  --t-h3:clamp(1.2rem,1.7vw,1.55rem);
  --t-lead:clamp(1.02rem,1.25vw,1.22rem);
  --t-body:1.0625rem;
  --t-small:.875rem;
  --t-eyebrow:.7rem;

  /* space */
  --s1:4px; --s2:8px; --s3:12px; --s4:16px; --s5:24px; --s6:32px;
  --s7:48px; --s8:64px; --s9:96px; --s10:128px;
  --sec:clamp(64px,9vw,140px);
  --wrap:1240px;  --wrap-narrow:760px;

  --ease:cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset-ish ---------- */
html body{
  background:var(--paper); color:var(--ink);
  font-family:var(--sans); font-size:var(--t-body); line-height:1.72;
  -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
  font-feature-settings:'kern' 1,'liga' 1;
}
html body h1,html body h2,html body h3,html body h4,html body .lsc-d{
  font-family:var(--serif); color:var(--ink); font-weight:600;
  letter-spacing:-.012em; line-height:1.12; margin:0 0 .5em;
  font-variation-settings:'opsz' 120;         /* high optical size = finer, more elegant serif */
}
html body h1{font-size:var(--t-h1)}
html body h2{font-size:var(--t-h2)}
html body h3{font-size:var(--t-h3);letter-spacing:-.006em}
html body p{margin:0 0 1.15em}
html body a{color:var(--ink);text-decoration:none;transition:color .22s var(--ease)}
html body a:hover{color:var(--bronze)}
html body img{max-width:100%;height:auto}
::selection{background:var(--bronze-3);color:var(--ink)}

/* numbers read better lining + tabular in prices */
html body .price,html body .amount,html body .lsc-num{font-variant-numeric:tabular-nums lining-nums}

/* ---------- shared bits ---------- */
.lsc-wrap{max-width:var(--wrap);margin:0 auto;padding:0 clamp(20px,4vw,40px)}
.lsc-narrow{max-width:var(--wrap-narrow);margin:0 auto}
.lsc-sec{padding:var(--sec) 0}
.lsc-sec-alt{background:var(--paper-2)}
.lsc-sec-ink{background:var(--ink);color:var(--cream)}
.lsc-sec-ink h2,.lsc-sec-ink h3{color:var(--paper)}
.lsc-sec-ink p{color:#B6AC9C}

.lsc-kicker{font-family:var(--sans);font-size:var(--t-eyebrow);letter-spacing:.36em;
  text-transform:uppercase;font-weight:600;color:var(--bronze);margin:0 0 1.35em}
.lsc-rule{display:block;width:48px;height:1px;background:var(--bronze);margin:1.5em auto 0;opacity:.8}
.lsc-head{text-align:center;max-width:62ch;margin:0 auto clamp(40px,5vw,72px)}
.lsc-head p{color:var(--muted);font-size:var(--t-lead);margin:.6em 0 0}

/* buttons */
.lsc-btn{display:inline-flex;align-items:center;gap:.7em;padding:16px 34px;
  font-family:var(--sans);font-size:.76rem;letter-spacing:.2em;text-transform:uppercase;
  font-weight:600;border:1px solid transparent;background:var(--ink);color:var(--paper)!important;
  transition:background .25s var(--ease),color .25s var(--ease),border-color .25s var(--ease)}
.lsc-btn:hover{background:var(--bronze);color:#fff!important}
.lsc-btn-light{background:var(--paper);color:var(--ink)!important}
.lsc-btn-light:hover{background:#fff;color:var(--bronze)!important}
.lsc-btn-o{background:transparent;color:var(--paper)!important;border-color:rgba(252,250,247,.45)}
.lsc-btn-o:hover{background:rgba(252,250,247,.12);color:#fff!important;border-color:rgba(252,250,247,.8)}
.lsc-btn-ghost{background:transparent;color:var(--ink)!important;border-color:var(--hair-2)}
.lsc-btn-ghost:hover{background:var(--ink);color:var(--paper)!important;border-color:var(--ink)}

/* reveal on scroll — DOCUMENTED PATTERN (feedback_scroll_reveal_must_default_visible).
   Elements default VISIBLE and the entrance is a KEYFRAME played when .lsc-in is added. The
   earlier build scoped opacity:0 to html.lsc-js, which still hid every section if the footer
   script threw AFTER the class was set. A failed observer must never mean invisible content. */
.lsc-r{opacity:1}
@keyframes lscUp{from{opacity:0;transform:translateY(22px)}to{opacity:1;transform:none}}
html.lsc-js .lsc-r.lsc-in{animation:lscUp .9s var(--ease) both}
html.lsc-js .lsc-r-2.lsc-in{animation-delay:.09s}
html.lsc-js .lsc-r-3.lsc-in{animation-delay:.18s}
html.lsc-js .lsc-r-4.lsc-in{animation-delay:.27s}
@media (prefers-reduced-motion:reduce){
  html.lsc-js .lsc-r.lsc-in{animation:none}
  *{scroll-behavior:auto!important}
}

/* =========================================================================
   HEADER
   ====================================================================== */
html body .site-header,html body .ast-primary-header-bar,html body .ast-above-header,
html body .ast-below-header{background:var(--paper)!important;box-shadow:none!important;
  border-bottom:1px solid var(--hair)!important}
html body .main-header-menu a,html body .main-navigation a{
  font-family:var(--sans)!important;font-size:.755rem!important;letter-spacing:.19em!important;
  text-transform:uppercase!important;font-weight:600!important;color:var(--ink-2)!important}
html body .main-header-menu a:hover{color:var(--bronze)!important}
html body .main-header-menu .current-menu-item > a,
html body .main-header-menu .current_page_item > a{color:var(--bronze)!important}
html body .site-logo-img img,html body .custom-logo{max-height:46px!important;width:auto!important}
html body .site-title,html body .site-description{display:none!important}

/* The header stays SOLID on every page. A floating header over the hero was tried and dropped:
   WordPress strips PNG alpha on upload, so the wordmark is flattened onto paper, and
   filter:invert() then renders the whole plate as a white box over the photograph. */
body.lsc-front .site-header,body.lsc-front .ast-primary-header-bar{
  position:sticky!important;top:0;z-index:60;background:rgba(252,250,247,.96)!important;
  backdrop-filter:saturate(150%) blur(10px)}
html body .site-header.lsc-stuck{box-shadow:0 1px 0 var(--hair)!important}

/* the logo plate is already the exact paper tone; multiply would darken it into a visible box */
html body .custom-logo,html body .site-logo-img img{mix-blend-mode:normal}

/* theme's scroll-to-top is bright blue by default */
html body #ast-scroll-top{background:var(--ink)!important;color:var(--paper)!important;
  border-radius:0!important;width:44px;height:44px;line-height:44px;font-size:.8rem;
  opacity:.92;transition:background .25s var(--ease)}
html body #ast-scroll-top:hover{background:var(--bronze)!important}

/* the theme prints a page title above hand-built content */
html body.page .entry-title,html body.page header.entry-header,
html body.page .ast-archive-title{display:none!important}
html body.page .site-content .ast-container,html body.page .entry-content{
  padding-top:0!important;margin-top:0!important}
html body.page .site-content > .ast-container{max-width:100%!important;padding-left:0!important;padding-right:0!important}
/* close the gap between the header and a full-bleed hero */
body.lsc-front #primary,body.lsc-front .site-content,body.lsc-front .ast-container,
body.lsc-front .entry-content,body.lsc-front article{padding-top:0!important;margin-top:0!important}
body.lsc-front .entry-content > *:first-child,body.lsc-front .lsc-hero{margin-top:0!important}
body.lsc-front .site-content{padding-bottom:0!important}

/* =========================================================================
   HERO
   ====================================================================== */
.lsc-hero{position:relative;min-height:clamp(560px,92svh,940px);display:flex;align-items:flex-end;
  overflow:hidden;background:var(--ink);margin:0 calc(50% - 50vw);width:100vw;max-width:100vw}
.lsc-hero-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0;
  animation:lscScale 22s var(--ease) forwards}
@keyframes lscScale{from{transform:scale(1.06)}to{transform:scale(1)}}
@media (prefers-reduced-motion:reduce){.lsc-hero-img{animation:none}}
.lsc-hero:after{content:"";position:absolute;inset:0;z-index:1;
  background:linear-gradient(180deg,rgba(14,12,10,.52) 0%,rgba(14,12,10,.18) 38%,rgba(14,12,10,.72) 100%)}
.lsc-hero-in{position:relative;z-index:2;width:100%;max-width:var(--wrap);
  margin:0 auto;padding:0 clamp(20px,4vw,40px) clamp(56px,8vw,110px)}
.lsc-hero h1{color:#fff;font-size:var(--t-display);max-width:15ch;margin:0 0 .38em;
  letter-spacing:-.022em;line-height:1.02;font-variation-settings:'opsz' 144;text-wrap:balance}
.lsc-hero .lsc-kicker{color:rgba(255,255,255,.78)}
.lsc-hero p{color:rgba(255,255,255,.9);font-size:var(--t-lead);max-width:48ch;margin:0 0 2em}
.lsc-hero-cta{display:flex;flex-wrap:wrap;gap:14px}
.lsc-scroll{position:absolute;z-index:2;bottom:26px;left:50%;transform:translateX(-50%);
  width:1px;height:52px;background:linear-gradient(180deg,rgba(255,255,255,0),rgba(255,255,255,.7))}

/* =========================================================================
   EDITORIAL CATEGORY GRID  — first tile is the feature
   ====================================================================== */
.lsc-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(14px,1.6vw,24px)}
.lsc-card{position:relative;display:block;overflow:hidden;background:var(--cream);
  text-decoration:none!important;isolation:isolate}
.lsc-card,.lsc-card *{text-decoration:none!important}
.lsc-card img{display:block;width:100%;height:100%;object-fit:cover;
  transition:transform 1.1s var(--ease);aspect-ratio:4/3}
.lsc-card:hover img{transform:scale(1.045)}
.lsc-card:after{content:"";position:absolute;inset:0;z-index:1;
  background:linear-gradient(180deg,rgba(14,12,10,0) 38%,rgba(14,12,10,.68) 100%);
  transition:opacity .4s var(--ease)}
.lsc-card:hover:after{opacity:.88}
.lsc-card-b{position:absolute;z-index:2;left:0;right:0;bottom:0;padding:clamp(18px,2vw,28px);
  display:block}
.lsc-card-b h3{margin:0;color:#fff!important;font-size:clamp(1.05rem,1.35vw,1.32rem);
  letter-spacing:-.004em}
.lsc-card-b span{display:block;margin-top:6px;font-family:var(--sans);font-size:.66rem;
  letter-spacing:.24em;text-transform:uppercase;color:rgba(255,255,255,.72);font-weight:600}
.lsc-card--feature{grid-column:span 2;grid-row:span 2}
.lsc-card--feature img{aspect-ratio:auto;height:100%;min-height:100%}
.lsc-card--feature .lsc-card-b h3{font-size:clamp(1.5rem,2.4vw,2.2rem)}
@media(max-width:900px){
  .lsc-grid{grid-template-columns:repeat(2,1fr)}
  .lsc-card--feature{grid-column:span 2;grid-row:auto}
  .lsc-card--feature img{aspect-ratio:16/10}
}
@media(max-width:560px){.lsc-grid{grid-template-columns:1fr}.lsc-card--feature{grid-column:span 1}}

/* =========================================================================
   SPLIT FEATURE
   ====================================================================== */
.lsc-split{display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(28px,5vw,86px);align-items:center}
.lsc-split-media{position:relative}
.lsc-split-media img{width:100%;aspect-ratio:4/5;object-fit:cover;display:block}
.lsc-split h2{margin:0 0 .5em}
.lsc-split p{color:var(--muted);margin:0 0 1.2em;max-width:52ch}
.lsc-split--flip .lsc-split-media{order:2}
@media(max-width:860px){.lsc-split{grid-template-columns:1fr}.lsc-split--flip .lsc-split-media{order:0}}

/* =========================================================================
   NUMBERED MARKS
   ====================================================================== */
.lsc-marks{display:grid;grid-template-columns:repeat(4,1fr);gap:clamp(24px,3vw,48px)}
.lsc-mark{border-top:1px solid var(--hair-2);padding-top:22px}
.lsc-mark .n{display:block;font-family:var(--serif);font-size:.78rem;letter-spacing:.22em;
  color:var(--bronze);margin-bottom:1em;font-weight:600}
.lsc-mark h4{font-family:var(--serif);font-size:1.08rem;margin:0 0 .45em;font-weight:600}
.lsc-mark p{font-size:.945rem;color:var(--muted);margin:0}
@media(max-width:860px){.lsc-marks{grid-template-columns:repeat(2,1fr);gap:32px}}
@media(max-width:460px){.lsc-marks{grid-template-columns:1fr}}

/* =========================================================================
   WOOCOMMERCE — loop  (no `.woocommerce` ancestor: Astra doesn't emit one)
   ====================================================================== */
html body ul.products{display:grid!important;grid-template-columns:repeat(4,1fr)!important;
  gap:clamp(20px,2.4vw,40px) clamp(16px,1.8vw,30px)!important;margin:0!important;padding:0!important;
  list-style:none!important}
html body ul.products:before,html body ul.products:after{display:none!important}
html body ul.products li.product{width:auto!important;margin:0!important;padding:0!important;
  float:none!important;text-align:left!important;background:transparent!important;clear:none!important}
html body ul.products li.product a img{width:100%;aspect-ratio:1/1;object-fit:cover;
  margin:0 0 16px!important;background:var(--cream);transition:transform 1s var(--ease),opacity .4s}
html body ul.products li.product:hover a img{transform:scale(1.03)}
html body ul.products li.product > a:first-of-type{display:block;overflow:hidden}
html body ul.products li.product .ast-woo-product-category,
html body ul.products li.product .woocommerce-loop-category__title{
  color:var(--bronze)!important;font-family:var(--sans)!important;font-size:.645rem!important;
  letter-spacing:.24em!important;text-transform:uppercase!important;font-weight:600!important;
  margin:0 0 6px!important;display:block}
html body ul.products li.product .woocommerce-loop-product__title{
  font-family:var(--serif)!important;font-size:1.045rem!important;font-weight:600!important;
  line-height:1.32!important;padding:0!important;margin:0 0 4px!important;color:var(--ink)!important;
  letter-spacing:-.004em}
html body ul.products li.product:hover .woocommerce-loop-product__title{color:var(--bronze)!important}
html body ul.products li.product .price,html body ul.products li.product .price .amount{
  font-family:var(--sans)!important;font-size:.92rem!important;color:var(--muted)!important;
  font-weight:400!important;display:block;margin:0!important}
html body ul.products li.product .button,html body ul.products li.product .added_to_cart{
  display:inline-block!important;background:transparent!important;color:var(--ink)!important;
  border:0!important;border-bottom:1px solid var(--bronze-3)!important;border-radius:0!important;
  padding:0 0 3px!important;margin-top:12px!important;width:auto!important;
  font-family:var(--sans)!important;font-size:.66rem!important;letter-spacing:.22em!important;
  text-transform:uppercase!important;font-weight:600!important;line-height:1.4!important;
  transition:border-color .25s var(--ease),color .25s var(--ease)}
html body ul.products li.product .button:hover{color:var(--bronze)!important;
  border-bottom-color:var(--bronze)!important;background:transparent!important}
/* Astra's separate absolutely-positioned on-card button overlaps the price */
.ast-on-card-button,.ast-card-action-tooltip,.ast-select-options-trigger{display:none!important}
.astra-shop-summary-wrap{display:flex;flex-direction:column}
@media(max-width:1024px){html body ul.products{grid-template-columns:repeat(3,1fr)!important}}
@media(max-width:760px){html body ul.products{grid-template-columns:repeat(2,1fr)!important}}
@media(max-width:420px){html body ul.products{grid-template-columns:1fr!important}}

/* shop chrome */
html body .woocommerce-products-header,html body .term-description{text-align:center;
  max-width:60ch;margin:0 auto clamp(28px,4vw,52px)}
html body .woocommerce-products-header__title{font-size:var(--t-h1)!important}
html body .woocommerce-result-count,html body .woocommerce-ordering select{
  color:var(--muted);font-size:.86rem;font-family:var(--sans)}
html body .woocommerce-ordering select{border:1px solid var(--hair);background:transparent;
  padding:9px 14px;border-radius:0}
html body .woocommerce-breadcrumb,html body .woocommerce-breadcrumb a{color:var(--muted-2)!important;
  font-size:.78rem!important;letter-spacing:.05em}

/* pagination */
html body nav.woocommerce-pagination ul{border:0!important;display:flex;gap:8px;justify-content:center}
html body nav.woocommerce-pagination ul li{border:0!important;margin:0!important}
html body nav.woocommerce-pagination ul li a,html body nav.woocommerce-pagination ul li span{
  border:1px solid var(--hair)!important;color:var(--ink)!important;background:transparent!important;
  border-radius:0!important;min-width:42px;padding:10px 12px!important;font-family:var(--sans)!important;
  font-size:.82rem!important;transition:.22s var(--ease)}
html body nav.woocommerce-pagination ul li span.current,
html body nav.woocommerce-pagination ul li a:hover{background:var(--ink)!important;color:var(--paper)!important;
  border-color:var(--ink)!important}

/* =========================================================================
   WOOCOMMERCE — single product
   ====================================================================== */
html body .single-product div.product{display:grid;grid-template-columns:1.08fr .92fr;
  gap:clamp(28px,4.4vw,76px);align-items:start}
html body .single-product div.product .woocommerce-product-gallery{
  opacity:1!important;width:100%!important;float:none!important;margin:0!important}
html body .single-product div.product .summary{width:100%!important;float:none!important;
  margin:0!important;position:sticky;top:110px}
html body .single-product .woocommerce-product-gallery__image img{width:100%;aspect-ratio:1/1;
  object-fit:cover;background:var(--cream)}
html body .single-product .product_title{font-size:clamp(1.7rem,2.8vw,2.5rem)!important;margin:.15em 0 .3em!important}
html body .summary .price,html body .summary .price .amount{font-family:var(--serif)!important;
  color:var(--ink)!important;font-size:1.45rem!important;font-weight:600!important}
html body .summary .woocommerce-product-details__short-description{color:var(--muted);
  font-size:var(--t-lead);margin-top:.6em}
html body .product_meta{font-size:.8rem;color:var(--muted-2);border-top:1px solid var(--hair);
  padding-top:16px;margin-top:22px;letter-spacing:.02em}
html body .product_meta > span{display:inline-block;margin-right:22px}
html body .woocommerce-tabs ul.tabs{padding:0!important;margin:clamp(40px,5vw,72px) 0 0!important;
  border-bottom:1px solid var(--hair)!important}
html body .woocommerce-tabs ul.tabs:before{border:0!important}
html body .woocommerce-tabs ul.tabs li{background:transparent!important;border:0!important;
  border-radius:0!important;margin:0 26px 0 0!important;padding:0!important}
html body .woocommerce-tabs ul.tabs li:after,html body .woocommerce-tabs ul.tabs li:before{display:none!important}
html body .woocommerce-tabs ul.tabs li a{font-family:var(--sans)!important;font-size:.72rem!important;
  letter-spacing:.2em!important;text-transform:uppercase!important;font-weight:600!important;
  color:var(--muted)!important;padding:0 0 14px!important;display:block;border-bottom:2px solid transparent}
html body .woocommerce-tabs ul.tabs li.active a{color:var(--ink)!important;border-bottom-color:var(--bronze)!important}
html body .woocommerce-Tabs-panel{padding-top:clamp(24px,3vw,40px);max-width:70ch;color:var(--ink-2)}
html body .woocommerce-Tabs-panel h2{display:none}
html body .related.products,html body .up-sells{margin-top:clamp(56px,7vw,110px);
  border-top:1px solid var(--hair);padding-top:clamp(40px,5vw,72px)}
html body .related.products > h2,html body .up-sells > h2{font-size:var(--t-h3)!important;
  text-align:center;margin-bottom:clamp(28px,3.5vw,48px)!important}
@media(max-width:860px){
  html body .single-product div.product{grid-template-columns:1fr}
  html body .single-product div.product .summary{position:static}
}

/* the made-to-order call panel replaces the cart */
.lsc-callcta{border-top:1px solid var(--hair);border-bottom:1px solid var(--hair);
  padding:clamp(20px,2.4vw,28px) 0;margin:clamp(22px,2.6vw,30px) 0}
.lsc-callcta-t{font-family:var(--serif);font-size:1.1rem;margin:0 0 .4em;font-weight:600}
.lsc-callcta-d{color:var(--muted);font-size:.97rem;margin:0 0 1em}
.lsc-callcta-p{margin:0;font-family:var(--serif);font-size:clamp(1.5rem,2vw,1.9rem);font-weight:600;
  letter-spacing:-.01em}
.lsc-callcta-p a{color:var(--ink)}
.lsc-callcta-p a:hover{color:var(--bronze)}
.lsc-callcta-h{margin:.45em 0 0;font-size:.7rem;letter-spacing:.22em;text-transform:uppercase;
  color:var(--bronze);font-weight:600}

/* =========================================================================
   ORDER DESK
   ====================================================================== */
.lsc-entry{max-width:440px}
.lsc-entry label{display:block;font-size:.7rem;letter-spacing:.2em;text-transform:uppercase;
  color:var(--muted);margin:22px 0 8px;font-weight:600}
.lsc-entry label span{text-transform:none;letter-spacing:0;font-weight:400}
.lsc-entry input{width:100%;padding:14px 16px;border:1px solid var(--hair-2);background:#fff;
  font-family:var(--sans);font-size:1.05rem;border-radius:0;transition:border-color .22s var(--ease)}
.lsc-entry input:focus{outline:none;border-color:var(--bronze)}
.lsc-entry button{margin-top:26px;padding:16px 34px;background:var(--ink);color:var(--paper);
  border:0;font-family:var(--sans);font-size:.76rem;letter-spacing:.2em;text-transform:uppercase;
  font-weight:600;cursor:pointer;transition:background .25s var(--ease)}
.lsc-entry button:hover{background:var(--bronze)}
.lsc-entry-note{margin-top:18px;font-size:.88rem;color:var(--muted)}
.lsc-err{background:#FBF0EC;border-left:2px solid #A9482C;padding:11px 15px;color:#8d3a22;margin-bottom:8px}

/* =========================================================================
   CHECKOUT
   ====================================================================== */
html body .woocommerce-checkout h3{font-size:1.25rem;margin-bottom:.8em}
html body .woocommerce form .form-row input.input-text,
html body .woocommerce form .form-row textarea,
html body .woocommerce form .form-row .select2-selection{
  border:1px solid var(--hair-2)!important;border-radius:0!important;padding:13px 15px!important;
  font-family:var(--sans)!important;background:#fff!important}
html body .woocommerce form .form-row label{font-size:.72rem;letter-spacing:.14em;
  text-transform:uppercase;color:var(--muted);font-weight:600}
html body #place_order,html body .woocommerce button.button.alt{background:var(--ink)!important;
  color:var(--paper)!important;border-radius:0!important;padding:17px 36px!important;
  font-family:var(--sans)!important;font-size:.76rem!important;letter-spacing:.2em!important;
  text-transform:uppercase!important;font-weight:600!important}
html body #place_order:hover{background:var(--bronze)!important}

/* =========================================================================
   FOOTER
   ====================================================================== */
html body .site-footer,html body .ast-footer-overlay{background:var(--ink)!important}
html body .site-below-footer-wrap,html body .ast-small-footer{display:none!important}
.lsc-footwrap{background:var(--ink);color:#AFA595;margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);width:100vw;max-width:100vw}
.lsc-foot{display:grid;grid-template-columns:1.5fr 1fr 1fr;gap:clamp(28px,4vw,56px);
  padding:clamp(56px,7vw,92px) 0 clamp(32px,4vw,48px);max-width:var(--wrap);margin:0 auto;
  padding-left:clamp(20px,4vw,40px);padding-right:clamp(20px,4vw,40px)}
.lsc-foot h5{font-family:var(--serif);color:var(--paper);font-size:1.05rem;margin:0 0 1.2em;font-weight:600}
.lsc-foot p,.lsc-foot li{color:#9C9384;font-size:.92rem;margin:0 0 .6em;list-style:none}
.lsc-foot ul{padding:0;margin:0}
.lsc-foot a{color:#9C9384}
.lsc-foot a:hover{color:var(--paper)}
.lsc-foot-b{border-top:1px solid rgba(255,255,255,.09);max-width:var(--wrap);margin:0 auto;
  padding:24px clamp(20px,4vw,40px) clamp(40px,5vw,56px);display:flex;justify-content:space-between;
  gap:18px;font-size:.8rem;color:#7E7566;letter-spacing:.02em}
@media(max-width:820px){.lsc-foot{grid-template-columns:1fr;gap:34px}
  .lsc-foot-b{flex-direction:column;gap:10px}}

/* full-bleed helpers */
.lsc-sec-alt,.lsc-sec-ink{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);
  width:100vw;max-width:100vw}
.lsc-sec-alt > .lsc-wrap,.lsc-sec-ink > .lsc-wrap{max-width:var(--wrap);margin:0 auto}


/* =========================================================================
   MOBILE NAVIGATION
   The theme's mobile trigger rendered display:none and no nav link was visible at 414px --
   the site had NO navigation on a phone. Rather than depend on the theme's off-canvas
   machinery, the plugin renders its own toggle + panel, which cannot be hidden by a theme
   setting. Checkbox-driven, so it works with JS disabled too.
   ====================================================================== */
.lsc-mnav{display:none}
.lsc-mnav-t{display:none}
@media(max-width:921px){
  html body .ast-mobile-header-wrap .ast-button-wrap,
  html body .ast-mobile-menu-trigger-minimal,html body .ast-mobile-menu-trigger-fill{display:none!important}
  .lsc-mnav{display:block;position:absolute;top:0;right:clamp(14px,4vw,28px);height:80px;z-index:80}
  .lsc-mnav-b{display:flex;flex-direction:column;justify-content:center;gap:5px;height:80px;
    width:34px;cursor:pointer;background:none;border:0;padding:0}
  .lsc-mnav-b span{display:block;height:1px;background:var(--ink);transition:.3s var(--ease)}
  .lsc-mnav-b span:nth-child(2){width:70%;margin-left:auto}
  .lsc-mnav-t:checked ~ .lsc-mnav-panel{transform:translateX(0);opacity:1;pointer-events:auto}
  .lsc-mnav-t:checked ~ .lsc-mnav-b span:nth-child(1){transform:translateY(6px) rotate(45deg)}
  .lsc-mnav-t:checked ~ .lsc-mnav-b span:nth-child(2){opacity:0}
  .lsc-mnav-t:checked ~ .lsc-mnav-b span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}
  .lsc-mnav-panel{position:fixed;inset:80px 0 0 0;background:var(--paper);z-index:79;
    transform:translateX(100%);opacity:0;pointer-events:none;transition:transform .4s var(--ease),opacity .3s;
    padding:clamp(24px,7vw,48px);overflow-y:auto;display:flex;flex-direction:column;gap:2px}
  .lsc-mnav-panel a{font-family:var(--serif);font-size:1.7rem;font-weight:600;color:var(--ink);
    padding:14px 0;border-bottom:1px solid var(--hair);letter-spacing:-.01em}
  .lsc-mnav-panel a:last-of-type{border-bottom:0}
  .lsc-mnav-foot{margin-top:auto;padding-top:28px}
  .lsc-mnav-foot .k{font-size:.66rem;letter-spacing:.24em;text-transform:uppercase;color:var(--bronze);
    font-weight:600;margin:0 0 .5em}
  .lsc-mnav-foot .p{font-family:var(--serif);font-size:1.5rem;font-weight:600;margin:0}
}

/* contact: details beside the note, both top-aligned */
.lsc-contact{align-items:start;gap:clamp(28px,5vw,72px)}
.lsc-contact .lsc-callcta-p{margin-bottom:.2em}
.lsc-contact p{color:var(--ink-2)}
.lsc-contact .lsc-callcta-h{margin-bottom:1.6em}
@media(max-width:860px){.lsc-contact{grid-template-columns:1fr}}
