/* Brand-led storefront header and customer-facing story sections. */
.site-header {
  position: fixed;
  top: 30px;
  transition: top .35s ease, height .35s ease, background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
  height: 112px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  padding: 0 clamp(24px, 4.5vw, 72px);
  border-bottom: 1px solid rgba(249, 245, 237, .2);
  background: linear-gradient(180deg, rgba(11, 10, 9, .5), transparent);
}
.site-header.is-compact {
  top: 0;
  height: 82px;
  border-color: rgba(249,245,237,.14);
  background: rgba(22,19,16,.86);
  backdrop-filter: blur(16px) saturate(.85);
  -webkit-backdrop-filter: blur(16px) saturate(.85);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}
.site-header.is-compact .brand span{font-size:clamp(39px,3.3vw,52px)}
.site-header.is-compact .brand small{margin-top:8px}

.nav-left,
.nav-right,
.header-right,
.header-socials {
  display: flex;
  align-items: center;
}

.nav-left,
.nav-right {
  gap: clamp(18px, 2vw, 34px);
  white-space: nowrap;
}

.nav-left a,
.nav-right > a,
.text-button {
  position: relative;
  opacity: .84;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
}

.nav-left > a::after,
.nav-right > a::after,
.text-button::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transition: right .3s ease;
}

.nav-left > a:hover,
.nav-right > a:hover,
.text-button:hover {
  color: #fff;
}

.nav-left > a:hover::after,
.nav-right > a:hover::after,
.text-button:hover::after {
  right: 0;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 clamp(22px, 3.5vw, 58px);
  color: #fff;
  line-height: .86;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .3);
}

.header-right { justify-content: flex-end; }
.header-socials { gap: 13px; }
.header-social { display: grid; width: 22px; height: 22px; place-items: center; color: rgba(255, 255, 255, .68); transition: color .25s ease, transform .25s ease; }
.header-social[hidden] { display: none; }
.header-social:hover { color: var(--gold); transform: translateY(-2px); }
.header-social svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.header-social svg .filled { fill: currentColor; stroke: none; }

.brand span {
  font-size: clamp(48px, 4.2vw, 68px);
  font-weight: 600;
  letter-spacing: .075em;
}

.brand small {
  margin-top: 12px;
  color: var(--gold);
  font: 600 8px/1 var(--sans);
  letter-spacing: .32em;
  text-transform: uppercase;
}

.brand-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 1.1fr) minmax(300px, .7fr);
  gap: clamp(60px, 10vw, 170px);
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}

.brand-story-heading,
.brand-story-copy {
  position: relative;
  z-index: 1;
}

.brand-story h2 {
  font-size: clamp(62px, 7vw, 106px);
}

.brand-story-lead {
  margin: 0 0 22px;
  color: var(--onyx) !important;
  font-family: var(--serif);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.15 !important;
}

.brand-story-copy > p:not(.brand-story-lead) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.brand-story-mark {
  position: absolute;
  right: -.03em;
  bottom: -.38em;
  color: rgba(197, 160, 89, .075);
  font-family: var(--serif);
  font-size: clamp(380px, 47vw, 760px);
  line-height: 1;
  pointer-events: none;
}

.client-care {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(520px, 1.25fr);
  gap: clamp(50px, 8vw, 130px);
  padding: clamp(80px, 10vw, 150px) clamp(24px, 7.5vw, 120px);
  background: #211e1a;
  color: #f9f5ed;
}

.client-care-intro h2 {
  font-size: clamp(56px, 6vw, 88px);
}

.client-care-intro > p:last-child {
  max-width: 420px;
  margin-top: 30px;
  color: rgba(249, 245, 237, .62);
  font-size: 14px;
  line-height: 1.9;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-self: end;
  border-top: 1px solid rgba(249, 245, 237, .18);
}

.care-grid article {
  min-height: 280px;
  padding: 30px 24px;
  border-right: 1px solid rgba(249, 245, 237, .18);
}

.care-grid article:last-child {
  border-right: 0;
}

.care-grid span {
  color: var(--gold);
  font-size: 9px;
  letter-spacing: .15em;
}

.care-grid h3 {
  margin: 65px 0 12px;
  font: 500 25px/1.05 var(--serif);
}

.care-grid p {
  min-height: 64px;
  color: rgba(249, 245, 237, .58);
  font-size: 11px;
  line-height: 1.7;
}

.care-grid a {
  display: inline-block;
  margin-top: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--gold);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-brand {
  margin: 0 0 52px !important;
  color: #f9f5ed;
  font: 600 clamp(48px, 5vw, 76px)/.8 var(--serif);
  letter-spacing: .08em;
}

.footer-links {
  grid-column: 1/-1;
  display: flex;
  gap: 30px;
  padding-top: 34px;
  border-top: 1px solid rgba(249, 245, 237, .15);
}

.footer-links a {
  color: rgba(249, 245, 237, .65);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--gold);
}
.footer-socials{display:flex;gap:12px;align-items:center}
.footer-social{display:grid!important;width:28px;height:28px;place-items:center;color:rgba(249,245,237,.65);transition:color .25s ease,transform .25s ease}
.footer-social[hidden]{display:none!important}.footer-social:hover{color:var(--gold);transform:translateY(-2px)}
.footer-social svg{width:17px;height:17px;fill:none;stroke:currentColor;stroke-width:1.6}.footer-social svg .filled{fill:currentColor;stroke:none}

@media (max-width: 1180px) and (min-width: 801px) {
  .site-header { height: 96px; }
  .nav-left a:nth-child(2),
  .nav-right > a { display: none; }
  .brand { margin-right: 24px; margin-left: 24px; }
  .brand span { font-size: 48px; }
}

@media (max-width: 800px) {
  .site-header {
    height: 78px;
    padding: 0 20px;
  }
  .site-header.is-compact{height:70px}

  .header-right { grid-column: 3; }
  .nav-right > a, .nav-right .text-button { display: none; }
  .brand { grid-column: 2; margin: 0 12px; }
  .brand span { font-size: 38px; }
  .brand small {
    margin-top: 8px;
    font-size: 6px;
  }

  .mobile-menu {
    z-index: 6;
    top: 108px;
    color: var(--onyx);
    box-shadow: 0 20px 50px #0005;
  }

  .brand-story {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .brand-story-mark {
    right: -.15em;
    bottom: -.2em;
    font-size: 430px;
  }

  .client-care {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .care-grid { grid-template-columns: 1fr; }
  .care-grid article {
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(249, 245, 237, .18);
  }
  .care-grid h3 { margin: 18px 0 10px; }
  .care-grid p { min-height: 0; }
  .footer-links { flex-wrap: wrap; }
}
