/* Lux site chrome — header + footer (sitewide) */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Jost:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root{
  --ink:#2A2331;
  --ink-soft:#3A3142;
  --cream:#F5EFE4;
  --paper:#FBF8F1;
  --fig:#7C4458;
  --fig-deep:#5E3344;
  --amber:#BD7B45;
  --rose:#C9A18E;
  --sage:#828268;
  --line:rgba(42,35,49,.16);
  --line-light:rgba(245,239,228,.25);
  --serif:'Cormorant Garamond', Georgia, serif;
  --sans:'Jost', 'Helvetica Neue', sans-serif;
  --ease-out:cubic-bezier(.16,1,.3,1);
}

/* Hide GeneratePress default header/nav/footer chrome.
   Keep .site-footer visible — GenerateBlocks site-footer elements render inside it. */
body.lux-chrome .site-header,
body.lux-chrome #masthead,
body.lux-chrome .main-navigation,
body.lux-chrome #site-navigation,
body.lux-chrome #sticky-navigation,
body.lux-chrome .gen-sidebar-nav,
body.lux-chrome .menu-toggle,
body.lux-chrome .site-info,
body.lux-chrome .footer-widgets,
body.lux-chrome .site-footer-meta-wrap,
body.lux-chrome .back-to-top {
  display: none !important;
}

/* Reset GP footer wrapper so Lux footer fills the edge */
body.lux-chrome .site-footer {
  display: block !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
}
body.lux-chrome .site-footer > .inside-site-footer,
body.lux-chrome .site-footer .footer-widgets-container {
  display: none !important;
}

/* Fixed nav clearance on pages without a full-bleed lux hero */
body.lux-chrome .site-content{
  padding-top: 5.25rem;
}
body.lux-chrome:has(.hero) .site-content,
body.lux-home-page .site-content{
  padding-top: 0 !important;
}

/* ---------- nav ---------- */
.lux-site-header,
.lux-site-header *{box-sizing:border-box;}
.lux-site-header a,
.lux-site-header a:hover,
.lux-site-header a:focus{
  color:inherit;text-decoration:none !important;
}

.nav{
  position:fixed;top:0;left:0;right:0;z-index:10050 !important;
  display:flex;align-items:center;justify-content:space-between;
  padding:22px 4vw;
  transition:background .5s ease, padding .5s ease, box-shadow .5s ease;
  color:var(--ink);
  font-family:var(--sans);
  font-weight:300;
}
.nav .brand{
  font-family:var(--serif);font-weight:600;
  font-size:17px;letter-spacing:.22em;text-transform:uppercase;
  white-space:nowrap;z-index:3;
}
.nav .brand .amp{color:var(--amber);font-style:italic;}
.nav-links{display:flex;align-items:center;gap:36px;list-style:none;margin:0;padding:0;}
.nav-links a{
  display:inline-block;
  font-size:12.5px;font-weight:400;letter-spacing:.22em;text-transform:uppercase;
  position:relative;padding:4px 0;white-space:nowrap;
  text-decoration:none !important;
  text-decoration-line:none !important;
  box-shadow:none !important;
}
.nav-links a:not(.nav-cta){
  border-bottom:0 !important;
}
.nav-links a:hover,
.nav-links a:focus,
.nav-links a:active{
  text-decoration:none !important;
  text-decoration-line:none !important;
}
.nav-links a:not(.nav-cta):hover,
.nav-links a:not(.nav-cta):focus,
.nav-links a:not(.nav-cta):active{
  border-bottom:0 !important;
}
.nav-links a::after{
  content:"";position:absolute;left:0;right:0;bottom:0;height:1px;width:100%;
  background:currentColor;transform:scaleX(0);transform-origin:right;
  transition:transform .45s var(--ease-out);
  pointer-events:none;
}
.nav-links a:hover::after, .nav-links a.active::after{transform:scaleX(1);transform-origin:left;}
.nav-cta{
  border:1px solid currentColor !important;padding:10px 22px !important;
  transition:background .4s ease,color .4s ease, border-color .4s ease;
}
.nav-cta::after{display:none !important;}
.nav-cta:hover{background:var(--fig);border-color:var(--fig) !important;color:var(--cream) !important;}

.nav.on-hero{color:var(--cream);}
.nav.scrolled{
  background:rgba(251,248,241,.92);
  backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  color:var(--ink);
  padding:14px 4vw;
  box-shadow:0 1px 0 var(--line);
}
.nav-toggle{display:none;background:none;border:none;cursor:pointer;z-index:3;color:inherit;padding:0;}
.nav-toggle span{display:block;width:26px;height:1.5px;background:currentColor;margin:6px 0;transition:transform .4s ease,opacity .4s ease;}

@media(max-width:1100px){
  .nav-links{
    position:fixed;inset:0;z-index:1;flex-direction:column;justify-content:center;gap:30px;
    background:var(--ink);color:var(--cream);
    opacity:0;visibility:hidden;pointer-events:none;transition:opacity .45s ease,visibility .45s ease;
  }
  .nav-links a{font-size:15px;}
  body.menu-open .nav-links{opacity:1;visibility:visible;pointer-events:auto;}
  body.menu-open{overflow:hidden;}
  body.menu-open .nav{color:var(--cream);background:transparent;box-shadow:none;backdrop-filter:none;}
  body.menu-open .nav-toggle{position:relative;z-index:2;}
  body.menu-open .nav .brand{position:relative;z-index:2;}
  body.menu-open .nav-toggle span:nth-child(1){transform:translateY(7.5px) rotate(45deg);}
  body.menu-open .nav-toggle span:nth-child(2){opacity:0;}
  body.menu-open .nav-toggle span:nth-child(3){transform:translateY(-7.5px) rotate(-45deg);}
  .nav-toggle{display:block;position:relative;z-index:2;}
}

@media(max-width:380px){
  .nav{padding-left:16px;padding-right:16px;}
  .nav .brand{
    font-size:13.5px;letter-spacing:.12em;
    max-width:calc(100% - 48px);
    overflow:hidden;text-overflow:ellipsis;
  }
}

/* ---------- footer ---------- */
.lux-site-footer,
.lux-site-footer *{box-sizing:border-box;}
.lux-site-footer a{color:inherit;text-decoration:none;}
.lux-site-footer{
  font-family:var(--sans);
  font-weight:300;
  font-size:17px;
  line-height:1.7;
}
.lux-site-footer footer{
  background:var(--ink);color:var(--cream);
  padding:clamp(80px,9vw,130px) 0 50px;
  margin:0;
}
.lux-site-footer .wrap{max-width:1240px;margin:0 auto;padding:0 6vw;}
.footer-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1.3fr;gap:clamp(36px,4vw,70px);}
.footer-brand{font-family:var(--serif);font-weight:600;font-size:1.5rem;letter-spacing:.18em;text-transform:uppercase;line-height:1.5;margin:0;}
.footer-tag{font-family:var(--serif);font-style:italic;color:var(--rose);margin-top:14px;font-size:1.1rem;}
.lux-site-footer footer h4{
  font-size:11px;letter-spacing:.34em;text-transform:uppercase;font-weight:500;
  color:var(--rose);margin:0 0 22px;font-family:var(--sans);
}
.lux-site-footer footer ul{list-style:none;display:flex;flex-direction:column;gap:12px;font-size:15px;line-height:1.6;margin:0;padding:0;}
.lux-site-footer footer ul li{display:block;margin:0;}
.lux-site-footer footer ul a{opacity:.85;transition:opacity .3s,color .3s;}
.lux-site-footer footer ul a:hover{opacity:1;color:var(--rose);}
.footer-bottom{
  margin-top:clamp(60px,7vw,90px);padding-top:30px;border-top:1px solid var(--line-light);
  display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap;
  font-size:12px;letter-spacing:.18em;text-transform:uppercase;opacity:.55;
}
.footer-bottom p{margin:0;}
@media(max-width:920px){.footer-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:560px){.footer-grid{grid-template-columns:1fr;}}

/* footer newsletter form */
.lux-site-footer .inline-form{display:flex;gap:0;margin-top:10px;border:1px solid rgba(245,239,228,.5);max-width:460px;}
.lux-site-footer .inline-form input{
  flex:1;min-width:0;border:0;background:transparent;color:var(--cream);
  padding:14px 16px;font:inherit;outline:none;
}
.lux-site-footer .inline-form input::placeholder{color:rgba(245,239,228,.5);}
.lux-site-footer .inline-form button{
  border:0;background:var(--cream);color:var(--ink);
  padding:14px 20px;font:inherit;letter-spacing:.18em;text-transform:uppercase;
  font-size:12px;cursor:pointer;white-space:nowrap;
}
.lux-site-footer .inline-form button:hover{background:var(--rose);}
.lux-site-footer .form-thanks,
.lux-site-footer .ff-message-success{
  font-family:var(--serif);font-style:italic;font-size:1.25rem;color:var(--amber);
  margin:0;background:transparent !important;border:0 !important;padding:0 !important;
}

/* Fluent Forms in footer */
.lux-site-footer .lux-ff-inline{
  display:flex;gap:0;margin-top:10px;border:1px solid rgba(245,239,228,.5);max-width:460px;
}
.lux-site-footer .lux-ff-inline .fluentform,
.lux-site-footer .lux-ff-inline .fluentform form,
.lux-site-footer .lux-ff-inline .fluentform fieldset{width:100%;margin:0;padding:0;border:0;background:transparent;}
.lux-site-footer .lux-ff-inline .fluentform form,
.lux-site-footer .lux-ff-inline .fluentform fieldset{
  display:flex !important;align-items:stretch;gap:0;width:100%;
}
.lux-site-footer .lux-ff-inline .ff-el-group{margin:0 !important;flex:1;min-width:0;}
.lux-site-footer .lux-ff-inline .ff_submit_btn_wrapper{flex:0 0 auto;margin:0 !important;}
.lux-site-footer .lux-ff-inline .ff-el-input--label{display:none !important;}
.lux-site-footer .lux-ff-inline .ff-el-form-control{
  border:0 !important;background:transparent !important;box-shadow:none !important;
  border-radius:0 !important;color:var(--cream) !important;
  padding:14px 16px !important;font:inherit !important;outline:none !important;width:100% !important;
}
.lux-site-footer .lux-ff-inline .ff-el-form-control::placeholder{color:rgba(245,239,228,.5);}
.lux-site-footer .lux-ff-inline .ff-btn-submit{
  border:0 !important;border-radius:0 !important;box-shadow:none !important;
  background:var(--cream) !important;color:var(--ink) !important;
  padding:14px 20px !important;font:inherit !important;letter-spacing:.18em !important;
  text-transform:uppercase !important;font-size:12px !important;cursor:pointer;white-space:nowrap;
  min-height:100%;height:100%;
}
.lux-site-footer .lux-ff-inline .ff-btn-submit:hover{background:var(--rose) !important;}

/* Prevent GP a:hover underline from stacking on Lux designed links */
body.lux-chrome a.text-link,
body.lux-chrome a.text-link:hover,
body.lux-chrome a.text-link:focus,
body.lux-chrome a.btn,
body.lux-chrome a.btn:hover,
body.lux-chrome a.btn:focus,
body.lux-chrome .nav-links a,
body.lux-chrome .nav-links a:hover,
body.lux-chrome .nav-links a:focus,
body.lux-chrome .nav .brand,
body.lux-chrome .nav .brand:hover{
  text-decoration:none !important;
  text-decoration-line:none !important;
}
