.site-shell-nav{
  position:fixed;
  top:var(--announce-height,42px);
  left:0;
  right:0;
  z-index:250;
  height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 28px;
  background:rgba(250,246,237,.92);
  border-bottom:1px solid rgba(138,115,75,.12);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  transition:top .35s ease, box-shadow .35s ease, background .35s ease;
}

.site-shell-nav.solid{
  top:0;
  box-shadow:0 10px 34px rgba(69,54,31,.07);
}

.site-shell-logo{
  height:76px;
  display:block;
  object-fit:contain;
}

.site-shell-logo.hero-mode{
  filter:none;
}

.site-shell-nav-right{
  display:flex;
  align-items:center;
  gap:8px;
}

.site-shell-nav-btn{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:rgba(47,42,34,.8);
  background:transparent;
  border:0;
  padding:0;
  cursor:pointer;
}

.site-shell-nav-btn svg{
  width:20px;
  height:20px;
  stroke:currentColor;
  fill:none;
  stroke-width:1.5;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.site-shell-cart{
  position:relative;
}

.site-shell-cart-badge{
  position:absolute;
  top:6px;
  right:6px;
  width:14px;
  height:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#4F7296;
  border:1.5px solid #FAF6ED;
  color:#fff;
  font-size:8px;
  font-weight:600;
}

.site-shell-hamburger{
  gap:0;
}

.site-shell-hamburger .site-shell-menu-open,
.site-shell-hamburger .site-shell-menu-close{
  width:20px;
  height:20px;
  display:block;
}

.site-shell-hamburger .site-shell-menu-close{
  display:none;
}

.site-shell-hamburger .site-shell-menu-open svg,
.site-shell-hamburger .site-shell-menu-close svg{
  width:100%;
  height:100%;
  display:block;
  stroke:currentColor;
  fill:none;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.site-shell-hamburger.open .site-shell-menu-open{
  display:none;
}

.site-shell-hamburger.open .site-shell-menu-close{
  display:block;
}

.site-shell-drawer{
  position:fixed;
  inset:0;
  z-index:360;
  background:linear-gradient(180deg,#FAF6ED 0%,#F1E7D6 100%);
  transform:translateX(100%);
  transition:transform .4s ease;
  display:flex;
  flex-direction:column;
  padding:calc(env(safe-area-inset-top,0px) + 88px) 28px 48px;
  overflow-y:auto;
}

.site-shell-drawer.open{
  transform:translateX(0);
}

.site-shell-drawer-close{
  position:absolute;
  top:20px;
  right:28px;
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:0;
  padding:0;
  background:transparent;
  color:rgba(47,42,34,.8);
  cursor:pointer;
}

.site-shell-drawer-close svg{
  width:20px;
  height:20px;
  display:block;
  stroke:currentColor;
  fill:none;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.site-shell-drawer-link{
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:40px;
  font-weight:300;
  color:rgba(47,42,34,.9);
  text-decoration:none;
  padding:13px 0;
  border-bottom:.5px solid rgba(138,115,75,.16);
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.site-shell-drawer-link-meta{
  font-family:Inter, system-ui, sans-serif;
  font-size:11px;
  letter-spacing:.06em;
  color:rgba(92,85,75,.55);
}

.site-shell-drawer-ctas{
  margin-top:auto;
  padding-top:28px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.site-shell-cta-primary,
.site-shell-cta-ghost{
  display:block;
  text-align:center;
  text-decoration:none;
  padding:16px 24px;
  border-radius:999px;
  font-family:Inter, system-ui, sans-serif;
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.site-shell-cta-primary{
  background:#4F7296;
  color:#fff;
  box-shadow:0 10px 24px rgba(49,95,134,.16);
}

.site-shell-cta-ghost{
  border:1px solid rgba(138,115,75,.22);
  color:rgba(47,42,34,.78);
  background:rgba(255,255,255,.36);
}

.site-shell-footer{
  margin-top:64px;
  background:#E8DAC4;
  color:rgba(47,42,34,.66);
  border-top:1px solid rgba(138,115,75,.18);
  padding:56px 32px 36px;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(220px,320px) minmax(300px,620px) minmax(0,1fr);
  column-gap:clamp(28px,5vw,64px);
  align-items:center;
}

.site-shell-footer-logo{
  grid-column:2;
  grid-row:1 / span 2;
  height:112px;
  margin:0;
  opacity:.9;
}

.site-shell-footer-tagline{
  grid-column:3;
  grid-row:1;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:19px;
  font-style:italic;
  color:rgba(138,115,75,.88);
  margin:0 0 8px;
  text-align:left;
}

.site-shell-footer-desc{
  grid-column:3;
  grid-row:2;
  max-width:520px;
  margin:0;
  font-family:Inter, system-ui, sans-serif;
  font-size:15px;
  line-height:1.7;
  color:rgba(47,42,34,.62);
  text-align:left;
}

.site-shell-footer-divider{
  grid-column:1 / -1;
  height:1px;
  background:rgba(138,115,75,.16);
  margin:28px 0;
}

.site-shell-footer-cols{
  grid-column:1 / -1;
  display:grid;
  grid-template-columns:repeat(3,minmax(240px,1fr));
  gap:24px 56px;
  margin-bottom:24px;
  text-align:left;
}

.site-shell-footer-col h4{
  margin-bottom:14px;
  font-family:Inter, system-ui, sans-serif;
  font-size:12px;
  font-weight:500;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(47,42,34,.48);
}

.site-shell-footer-col a{
  display:block;
  margin-bottom:12px;
  font-family:Inter, system-ui, sans-serif;
  font-size:18px;
  color:rgba(47,42,34,.62);
  text-decoration:none;
}

.site-shell-footer-bottom{
  grid-column:1 / -1;
  padding-top:20px;
  border-top:1px solid rgba(138,115,75,.16);
  text-align:center;
}

.site-shell-footer-close{
  margin-bottom:8px;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:20px;
  font-style:italic;
  color:rgba(138,115,75,.88);
}

.site-shell-footer-legal{
  font-family:Inter, system-ui, sans-serif;
  font-size:14px;
  line-height:1.7;
  letter-spacing:.04em;
  color:rgba(47,42,34,.42);
}

@media (max-width: 767px){
  .site-shell-nav{
    height:78px;
    padding:0 18px;
  }

  .site-shell-logo{
    height:64px;
  }

  .site-shell-drawer{
    padding:calc(env(safe-area-inset-top,0px) + 82px) 18px 36px;
  }

  .site-shell-drawer-close{
    top:18px;
    right:18px;
  }

  .site-shell-drawer-link{
    font-size:34px;
  }

  .site-shell-footer-logo{
    height:92px;
  }

  .site-shell-footer{
    padding:42px 20px 28px;
    display:block;
  }

  .site-shell-footer-logo{
    display:block;
    margin:0 auto 14px;
  }

  .site-shell-footer-tagline{
    font-size:16px;
    text-align:center;
  }

  .site-shell-footer-desc{
    max-width:320px;
    font-size:14px;
    margin:0 auto;
    text-align:center;
  }

  .site-shell-footer-divider{
    margin:24px 0;
  }

  .site-shell-footer-cols{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:24px 20px;
    margin-bottom:24px;
  }

  .site-shell-footer-col{
    min-width:0;
  }

  .site-shell-footer-col h4{
    font-size:11px;
  }

  .site-shell-footer-col a{
    font-size:15px;
    overflow-wrap:anywhere;
  }

  .site-shell-footer-close{
    font-size:17px;
  }

  .site-shell-footer-legal{
    font-size:12px;
  }
}

/* WordPress integration and accessibility refinements. */
.site-shell-brand {
	display: block;
	flex: 0 0 auto;
}

.site-shell-nav-btn:focus-visible,
.site-shell-drawer-close:focus-visible,
.site-shell-drawer-link:focus-visible,
.site-shell-cta-primary:focus-visible,
.site-shell-cta-ghost:focus-visible,
.site-shell-footer a:focus-visible {
	outline: 2px solid var(--blue);
	outline-offset: 4px;
}

.site-shell-footer-col h2 {
	margin: 0 0 14px;
	color: rgba(47, 42, 34, 0.48);
	font-family: Inter, system-ui, sans-serif;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.site-shell-footer-legal {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
}

.site-shell-footer-legal-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px;
}

.site-shell-footer-legal a {
	text-decoration: none;
}

body.admin-bar .site-shell-nav {
	top: calc(var(--announce-height) + 32px);
}

body.admin-bar .site-shell-nav.solid {
	top: 32px;
}

body.admin-bar .site-shell-drawer {
	top: 32px;
}

@media (max-width: 782px) {
	body.admin-bar .site-shell-nav {
		top: calc(var(--announce-height) + 46px);
	}

	body.admin-bar .site-shell-nav.solid {
		top: 46px;
	}

	body.admin-bar .site-shell-drawer {
		top: 46px;
	}
}

/* Keep WooCommerce's global image rules from enlarging the site-shell brand. */
.site-shell-nav .site-shell-logo {
	width: auto;
	height: 76px;
	max-width: min(300px, 48vw);
	object-fit: contain;
}

.site-shell-footer .site-shell-footer-logo {
	width: auto;
	height: 112px;
	max-width: min(100%, 420px);
	object-fit: contain;
}

@media (max-width: 767px) {
	.site-shell-nav .site-shell-logo {
		width: auto;
		height: 64px;
		max-width: 48vw;
	}

	.site-shell-footer .site-shell-footer-logo {
		width: auto;
		height: 92px;
	}
}
