:root {
  --deep: #041014;
  --panel: #07191c;
  --panel-dark: rgba(4, 14, 16, 0.86);
  --cream: #efe6da;
  --muted-cream: rgba(239, 230, 218, 0.78);
  --aqua: #9fdad0;
  --aqua-deep: #315d5b;
  --rose: #c9827e;
  --gold: #b8935e;
  --copper: #a35f52;
  --line: rgba(239, 230, 218, 0.25);
  --body: "Cormorant Garamond", Georgia, serif;
  --small: "Cinzel", Times, serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--deep);
}

body {
  margin: 0;
  background: var(--deep);
  color: var(--cream);
  font-family: var(--body);
}

a { color: inherit; }

/* Exact homepage image layout */
.page-frame {
  position: relative;
  width: min(100vw, 1024px);
  margin: 0 auto;
  background: #031115;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.7);
}

.exact-page {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
}

.hotspot {
  position: absolute;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
  appearance: none;
}

.hotspot:focus-visible {
  outline: 2px solid var(--aqua);
  outline-offset: 4px;
  border-radius: 999px;
}

.hotspot-home-seal { left: 45.2%; top: 0.45%; width: 9.7%; height: 8.8%; border-radius: 50%; }
.hotspot-about { left: 11%; top: 2.2%; width: 10.5%; height: 2.3%; }
.hotspot-custom { left: 25%; top: 2.2%; width: 16.5%; height: 2.3%; }
.hotspot-apothecary { right: 25.2%; top: 2.2%; width: 15.2%; height: 2.3%; }
.hotspot-request-top { right: 10.6%; top: 2.2%; width: 11%; height: 2.3%; }
.hotspot-request-hero { left: 31.5%; top: 39.2%; width: 31%; height: 4.3%; }
.hotspot-request-bottom { left: 57%; top: 88.2%; width: 29%; height: 4.6%; }

.sr-content {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Shared inner pages */
.inner-body {
  min-height: 100vh;
  background:
    linear-gradient(rgba(1, 8, 10, 0.72), rgba(1, 8, 10, 0.94)),
    url("/inner-background-no-title.png?v=20260616-root-assets-v34") center top / min(1400px, 140vw) auto no-repeat,
    var(--deep);
}

.inner-body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(159, 218, 208, 0.16), transparent 26%),
    radial-gradient(circle at 82% 20%, rgba(201, 130, 126, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(4, 16, 20, 0.9), transparent 22%, transparent 78%, rgba(4, 16, 20, 0.9));
  mix-blend-mode: screen;
  opacity: 0.55;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 14px clamp(14px, 4vw, 48px);
  background: linear-gradient(180deg, rgba(2, 10, 12, 0.92), rgba(2, 10, 12, 0.74));
  backdrop-filter: blur(9px);
  border-bottom: 1px solid rgba(184, 147, 94, 0.32);
}

.nav-grid {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.25fr 76px 1.25fr 1fr;
  align-items: center;
  gap: clamp(10px, 2.5vw, 30px);
  text-align: center;
}

.nav-grid a {
  color: var(--cream);
  text-decoration: none;
  font-family: var(--small);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: clamp(0.68rem, 1.4vw, 0.9rem);
  opacity: 0.88;
}

.nav-grid a:hover,
.nav-grid a[aria-current="page"] {
  color: var(--aqua);
  opacity: 1;
}

.nav-emblem {
  width: 58px;
  height: 58px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184, 147, 94, 0.62);
  border-radius: 50%;
  font-size: 1.35rem !important;
  color: var(--gold) !important;
  background: rgba(3, 16, 18, 0.7);
  box-shadow: 0 0 28px rgba(159, 218, 208, 0.1);
}


.nav-emblem:hover,
.nav-emblem:focus-visible {
  color: var(--cream) !important;
  border-color: rgba(159, 218, 208, 0.9);
  box-shadow: 0 0 34px rgba(159, 218, 208, 0.22);
}

.inner-page {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100% - 28px));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 86px) 0 clamp(70px, 8vw, 110px);
}

.title-panel,
.ornate-card {
  position: relative;
  border: 1px solid rgba(184, 147, 94, 0.58);
  background:
    radial-gradient(circle at 15% 0%, rgba(159, 218, 208, 0.12), transparent 28%),
    radial-gradient(circle at 90% 100%, rgba(201, 130, 126, 0.1), transparent 30%),
    linear-gradient(145deg, rgba(5, 18, 20, 0.9), rgba(12, 18, 18, 0.88));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.44);
}

.title-panel::before,
.ornate-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(239, 230, 218, 0.12);
  pointer-events: none;
}

.title-panel {
  min-height: clamp(300px, 45vw, 460px);
  padding: clamp(34px, 6vw, 74px);
  display: grid;
  align-content: end;
  overflow: hidden;
}

.title-panel::after {
  content: "✦";
  position: absolute;
  right: clamp(26px, 5vw, 60px);
  top: clamp(22px, 4vw, 52px);
  color: var(--gold);
  font-size: clamp(1.6rem, 4vw, 3.4rem);
  opacity: 0.72;
}

.kicker {
  margin: 0 0 10px;
  font-family: var(--small);
  color: var(--aqua);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: clamp(0.72rem, 1.6vw, 0.9rem);
}

.title-panel h1,
.success-panel h1 {
  margin: 0;
  font-size: clamp(4.2rem, 14vw, 9.4rem);
  line-height: 0.83;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--aqua);
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.54);
}

.lead {
  width: min(680px, 100%);
  margin: clamp(18px, 3vw, 28px) 0 0;
  font-size: clamp(1.28rem, 3vw, 2.05rem);
  line-height: 1.25;
  color: var(--cream);
}

.about-panel {
  background:
    linear-gradient(90deg, rgba(3, 13, 16, 0.62), rgba(3, 13, 16, 0.22)),
    url("/inner-background-no-title.png?v=20260616-root-assets-v34") center 16% / cover no-repeat;
}

.about-story-panel {
  min-height: auto;
  padding: clamp(34px, 6vw, 78px);
  align-content: start;
}

.about-story-panel::after {
  display: none;
}

.about-copy {
  width: min(920px, 100%);
  margin-top: clamp(22px, 4vw, 38px);
  padding: clamp(22px, 3vw, 34px);
  background: linear-gradient(145deg, rgba(2, 10, 12, 0.72), rgba(8, 22, 24, 0.54));
  border-left: 1px solid rgba(159, 218, 208, 0.34);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
}

.about-copy p {
  margin: 0 0 1rem;
  color: var(--cream);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.52;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.custom-panel {
  background:
    linear-gradient(90deg, rgba(3, 13, 16, 0.64), rgba(3, 13, 16, 0.22)),
    url("/inner-background-no-title.png?v=20260616-root-assets-v34") center 38% / cover no-repeat;
}

.apothecary-panel {
  background:
    linear-gradient(90deg, rgba(3, 13, 16, 0.64), rgba(3, 13, 16, 0.22)),
    url("/inner-background-no-title.png?v=20260616-root-assets-v34") center 56% / cover no-repeat;
}

.request-title-panel,
.success-panel {
  background:
    linear-gradient(90deg, rgba(3, 13, 16, 0.68), rgba(3, 13, 16, 0.26)),
    url("/inner-background-no-title.png?v=20260616-root-assets-v34") center 74% / cover no-repeat;
}

.content-grid {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
  margin-top: clamp(20px, 4vw, 34px);
}

.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.three-col { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.text-card,
.product-card,
.request-notes,
.request-form-page,
.wide-callout {
  padding: clamp(26px, 4vw, 42px);
}

.text-card h2,
.product-card h2,
.request-notes h2,
.wide-callout h2 {
  margin: 0 0 14px;
  color: var(--aqua);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.95;
  font-weight: 500;
}

.text-card p,
.product-card p,
.wide-callout p,
.request-notes li {
  margin: 0 0 14px;
  color: var(--muted-cream);
  font-size: clamp(1.12rem, 2.2vw, 1.35rem);
  line-height: 1.45;
}

.styled-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.styled-list li {
  position: relative;
  padding-left: 24px;
}

.styled-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0.08em;
  color: var(--rose);
  font-size: 0.78em;
}

.card-mark {
  display: inline-block;
  margin-bottom: 18px;
  font-family: var(--small);
  color: var(--rose);
  letter-spacing: 0.16em;
  font-size: 0.8rem;
}

.product-grid {
  margin-top: clamp(20px, 4vw, 34px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  align-items: stretch;
  perspective: 1100px;
}

.product-card {
  min-height: clamp(285px, 34vw, 360px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  transform: translateZ(0) scale(1);
  transform-style: preserve-3d;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease,
    background 260ms ease,
    filter 260ms ease;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 22%, rgba(159, 218, 208, 0.22), transparent 36%),
    linear-gradient(145deg, transparent, rgba(184, 147, 94, 0.08));
  opacity: 0;
  transition: opacity 260ms ease;
  z-index: -1;
}

.product-card:hover,
.product-card:focus-visible {
  transform: perspective(900px) translateY(-18px) translateZ(48px) scale(1.075) rotateX(3deg);
  z-index: 5;
  border-color: rgba(159, 218, 208, 0.9);
  box-shadow:
    0 34px 85px rgba(0, 0, 0, 0.72),
    0 0 38px rgba(159, 218, 208, 0.18),
    inset 0 0 28px rgba(159, 218, 208, 0.08);
  filter: brightness(1.08) saturate(1.08);
}

.product-card:hover::after,
.product-card:focus-visible::after {
  opacity: 1;
}

.product-card:focus-visible {
  outline: 2px solid var(--aqua);
  outline-offset: 5px;
}

.product-card h2 {
  width: 100%;
  margin: 0;
  font-size: clamp(2.05rem, 3vw, 2.62rem);
  line-height: 0.96;
  text-align: center;
  color: var(--aqua);
  text-wrap: balance;
}

.product-card p {
  width: min(100%, 190px);
  margin: 0 auto;
  text-align: center;
  font-size: clamp(1.03rem, 1.8vw, 1.23rem);
  line-height: 1.34;
  color: var(--muted-cream);
  text-wrap: pretty;
}

.product-card:nth-child(1),
.product-card:nth-child(3),
.product-card:nth-child(5) {
  background:
    radial-gradient(circle at 50% 12%, rgba(159, 218, 208, 0.16), transparent 32%),
    linear-gradient(145deg, rgba(5, 18, 20, 0.92), rgba(11, 18, 18, 0.9));
}

.product-card:nth-child(2),
.product-card:nth-child(4) {
  background:
    radial-gradient(circle at 50% 88%, rgba(201, 130, 126, 0.11), transparent 32%),
    linear-gradient(145deg, rgba(5, 18, 20, 0.92), rgba(11, 18, 18, 0.9));
}

.category-detail-panel {
  min-height: clamp(380px, 50vw, 560px);
  align-content: center;
}

.category-detail-panel h1 {
  font-size: clamp(3.7rem, 10vw, 8rem);
}

.category-detail-panel .lead {
  width: min(780px, 100%);
}

.wide-callout {
  margin-top: clamp(20px, 4vw, 34px);
  text-align: center;
}

.button-link,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 30px;
  margin-top: 14px;
  border: 1px solid rgba(184, 147, 94, 0.85);
  color: #071619;
  background: linear-gradient(135deg, #d8c9ae, #f3eadb, #b8935e);
  font-family: var(--small);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.request-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(18px, 3vw, 28px);
  margin-top: clamp(20px, 4vw, 34px);
  align-items: start;
}

.request-form-page {
  display: grid;
  gap: 15px;
}

.request-form-page label {
  display: grid;
  gap: 7px;
  font-family: var(--small);
  color: rgba(239, 230, 218, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
}

.request-form-page input,
.request-form-page select,
.request-form-page textarea {
  width: 100%;
  border: 1px solid rgba(184, 147, 94, 0.55);
  background: rgba(2, 9, 11, 0.62);
  color: var(--cream);
  padding: 12px 13px;
  font: 1.08rem var(--body);
  border-radius: 0;
}

.request-form-page input:focus,
.request-form-page select:focus,
.request-form-page textarea:focus {
  outline: 2px solid rgba(159, 218, 208, 0.75);
  outline-offset: 1px;
}

.request-form-page .submit-button {
  width: 100%;
}

.hidden { display: none; }

.success-page {
  min-height: calc(100vh - 87px);
  display: grid;
  place-items: center;
}

.success-panel {
  width: min(850px, 100%);
  min-height: 420px;
  text-align: center;
  align-content: center;
}

.success-panel .lead {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .two-col,
  .three-col,
  .request-layout,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 210px;
  }
}

@media (max-width: 720px) {
  .page-frame { width: 100%; }

  .site-nav {
    padding: 10px 10px;
  }

  .nav-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
  }

  .nav-emblem {
    order: -1;
    grid-column: 1 / -1;
    width: 46px;
    height: 46px;
  }

  .title-panel {
    min-height: 310px;
    padding: 30px 22px;
  }

  .title-panel h1,
  .success-panel h1 {
    font-size: clamp(3.6rem, 18vw, 5.3rem);
  }

  .inner-page {
    width: min(100% - 20px, 1100px);
    padding-top: 28px;
  }
}


.underlined-kicker {
  display: inline-block;
  width: fit-content;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.42em;
}

.story-card {
  width: min(980px, 100%);
  margin: 0 auto;
}

.story-card p {
  font-size: clamp(1.25rem, 2.4vw, 1.62rem);
  line-height: 1.48;
  color: rgba(239, 230, 218, 0.88);
  margin-bottom: 1.05em;
}

.story-card p:first-child::first-letter {
  color: var(--aqua);
  float: left;
  font-size: 4.5em;
  line-height: 0.78;
  padding-right: 0.08em;
  font-weight: 600;
}


@media (hover: none) {
  .product-card:hover {
    transform: none;
  }
}


/* Build: 2026-06-15-apothecary-cabinet-v4 */
.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  min-height: clamp(290px, 34vw, 372px);
  padding: clamp(22px, 3vw, 34px);
}

.product-card h2 {
  font-size: clamp(2.0rem, 2.7vw, 2.55rem);
  max-width: 210px;
}

.product-card p {
  max-width: 190px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  margin-top: clamp(22px, 4vw, 36px);
  perspective: 1200px;
}

.shop-item {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, filter 260ms ease;
  transform-style: preserve-3d;
}

.shop-item:hover,
.shop-item:focus-within {
  transform: perspective(900px) translateY(-14px) translateZ(44px) scale(1.045) rotateX(2deg);
  border-color: rgba(159, 218, 208, 0.9);
  box-shadow: 0 32px 84px rgba(0,0,0,0.72), 0 0 34px rgba(159, 218, 208, 0.18);
  filter: brightness(1.07) saturate(1.05);
  z-index: 4;
}

.shop-item img {
  width: 100%;
  aspect-ratio: 1 / 0.74;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(184, 147, 94, 0.42);
  filter: saturate(0.86) contrast(1.08) brightness(0.9);
}

.shop-item-copy {
  padding: clamp(18px, 2vw, 24px);
  display: grid;
  gap: 10px;
  align-content: start;
  flex: 1;
}

.shop-item-copy h2 {
  margin: 0;
  color: var(--aqua);
  font-size: clamp(1.6rem, 2.1vw, 2.1rem);
  line-height: 0.98;
  font-weight: 500;
  text-align: left;
}

.shop-item-copy p {
  margin: 0;
  color: var(--muted-cream);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.34;
}

.shop-item-copy strong {
  display: inline-block;
  margin-top: 4px;
  color: var(--cream);
  font-family: var(--small);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.compact-callout {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1120px) {
  .product-grid, .shop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .product-grid, .shop-grid { grid-template-columns: 1fr; }
}


/* Build: 2026-06-15-apothecary-cabinet-v4 */
.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}



/* Floating menu extracted from the original PSD menu asset. */
.floating-menu {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100vw, 1024px);
  z-index: 1000;
  pointer-events: none;
}

.floating-menu-art {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.floating-menu-links a {
  position: absolute;
  display: block;
  text-indent: -9999px;
  overflow: hidden;
  pointer-events: auto;
  background: transparent;
  border: 0;
}

.floating-menu-links a:focus-visible {
  outline: 2px solid var(--aqua);
  outline-offset: 4px;
  border-radius: 999px;
}

.fm-about { left: 10.5%; top: 12%; width: 11.5%; height: 24%; }
.fm-apothecary { left: 24.0%; top: 12%; width: 19.0%; height: 24%; }
.fm-home { left: 43.6%; top: 0%; width: 13.0%; height: 88%; border-radius: 0 0 50% 50%; }
.fm-request { left: 58.0%; top: 12%; width: 14.5%; height: 24%; }
.fm-contact { left: 74.0%; top: 12%; width: 14.5%; height: 24%; }

body.inner-body .inner-page {
  padding-top: clamp(190px, 20vw, 230px);
}

.site-nav { display: none !important; }

/* Build: 2026-06-15-polished-layout-v2 */
.floating-menu {
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.42));
}

.inner-page {
  width: min(1080px, calc(100% - 32px));
}

.title-panel {
  min-height: clamp(285px, 38vw, 410px);
  padding: clamp(34px, 5vw, 64px);
}

.title-panel h1,
.success-panel h1 {
  max-width: 900px;
  font-size: clamp(3.7rem, 10vw, 7.2rem);
  line-height: 0.9;
  text-wrap: balance;
}

.category-detail-panel {
  min-height: clamp(310px, 40vw, 450px);
}

.category-detail-panel h1 {
  max-width: 820px;
  font-size: clamp(3.5rem, 8vw, 6rem);
}

.lead {
  width: min(650px, 100%);
  margin-top: clamp(14px, 2vw, 22px);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  line-height: 1.35;
  text-wrap: pretty;
}

.about-story-panel {
  padding: clamp(34px, 5vw, 64px);
}

.about-story-panel h1 {
  font-size: clamp(3.7rem, 9vw, 6.8rem);
}

.about-copy {
  width: min(790px, 100%);
  margin-top: clamp(28px, 4vw, 44px);
  padding: clamp(24px, 4vw, 42px);
}

.about-copy h2 {
  margin: 1.4em 0 0.45em;
  color: var(--aqua);
  font-size: clamp(1.8rem, 3.5vw, 2.55rem);
  line-height: 1;
  font-weight: 500;
}

.about-copy h2:first-child {
  margin-top: 0;
}

.about-copy p {
  font-size: clamp(1.08rem, 1.7vw, 1.25rem);
  line-height: 1.62;
}

.product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.product-card {
  min-height: 250px;
  gap: 14px;
}

.product-card h2 {
  max-width: 100%;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
}

.product-card p {
  max-width: 330px;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-7px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.58), 0 0 28px rgba(159, 218, 208, 0.12);
}

.shop-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.shop-item:hover,
.shop-item:focus-within {
  transform: translateY(-7px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.58), 0 0 28px rgba(159, 218, 208, 0.12);
}

.shop-item img {
  aspect-ratio: 4 / 3;
}

.shop-item-copy {
  padding: clamp(20px, 2.4vw, 28px);
  gap: 12px;
}

.shop-item-copy h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  line-height: 1.02;
}

.shop-item-copy p {
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  line-height: 1.45;
}

.request-layout-single,
.contact-layout {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.request-form-page {
  gap: 18px;
}

.request-form-page label {
  gap: 9px;
  font-size: 0.78rem;
}

.request-form-page input,
.request-form-page select,
.request-form-page textarea {
  padding: 14px 15px;
  font-size: 1.12rem;
  line-height: 1.35;
}

.wide-callout {
  padding: clamp(26px, 4vw, 38px);
}

.wide-callout h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
}

@media (max-width: 900px) {
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body.inner-body .inner-page {
    padding-top: clamp(105px, 29vw, 145px);
  }

  .inner-page {
    width: min(100% - 20px, 1080px);
  }

  .title-panel {
    min-height: 250px;
    padding: 30px 24px;
  }

  .title-panel h1,
  .category-detail-panel h1,
  .success-panel h1 {
    font-size: clamp(3.15rem, 15vw, 4.65rem);
  }

  .lead {
    font-size: clamp(1.15rem, 5.5vw, 1.42rem);
  }

  .product-grid,
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 210px;
  }

  .about-copy {
    padding: 22px 20px;
  }
}

/* Build: 2026-06-15-professional-menu-v3 */
.floating-menu-links a:not(.fm-home) {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.35rem;
  overflow: visible;
  text-indent: 0;
  color: #aadbd3;
  background:
    radial-gradient(circle at 50% 0%, rgba(20, 47, 48, 0.98), rgba(3, 17, 19, 0.99) 70%);
  box-shadow:
    -8px 0 10px rgba(3, 17, 19, 0.88),
    8px 0 10px rgba(3, 17, 19, 0.88);
  font-family: var(--small);
  font-size: clamp(0.72rem, 1.55vw, 1rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.14em;
  text-align: center;
  text-indent: 0;
  text-transform: uppercase;
  text-decoration: none;
  text-shadow: 0 0 0 rgba(159, 218, 208, 0);
  isolation: isolate;
  transition:
    color 180ms ease,
    letter-spacing 220ms ease,
    text-shadow 220ms ease,
    transform 220ms ease,
    filter 220ms ease;
}

.floating-menu-links a:not(.fm-home)::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -0.35rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transform: scaleX(0.2);
  transition: opacity 220ms ease, transform 220ms ease;
  z-index: -1;
}

.floating-menu-links a:not(.fm-home)::after {
  content: "";
  position: absolute;
  inset: -0.35rem -0.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(159, 218, 208, 0.15), transparent 68%);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 220ms ease, transform 220ms ease;
  z-index: -2;
}

.floating-menu-links a:not(.fm-home):hover,
.floating-menu-links a:not(.fm-home):focus-visible,
.floating-menu-links a:not(.fm-home).is-current {
  color: #f2e9dc;
  letter-spacing: 0.18em;
  text-shadow:
    0 0 8px rgba(159, 218, 208, 0.9),
    0 0 22px rgba(159, 218, 208, 0.52);
  filter: brightness(1.12);
  transform: translateY(-1px);
}

.floating-menu-links a:not(.fm-home):hover::before,
.floating-menu-links a:not(.fm-home):focus-visible::before,
.floating-menu-links a:not(.fm-home).is-current::before,
.floating-menu-links a:not(.fm-home):hover::after,
.floating-menu-links a:not(.fm-home):focus-visible::after,
.floating-menu-links a:not(.fm-home).is-current::after {
  opacity: 1;
  transform: scale(1);
}

.floating-menu-links a:focus-visible {
  outline: 1px solid rgba(184, 147, 94, 0.95);
  outline-offset: 4px;
}

.fm-about { left: 11.0%; top: 7%; width: 10.8%; height: 31%; }
.fm-apothecary { left: 23.3%; top: 7%; width: 19.9%; height: 31%; }
.fm-home { left: 43.8%; top: 0; width: 12.8%; height: 91%; }
.fm-request { left: 57.2%; top: 7%; width: 15.6%; height: 31%; }
.fm-contact { left: 74.0%; top: 7%; width: 15.4%; height: 31%; }

@media (max-width: 720px) {
  .floating-menu-links a:not(.fm-home) {
    padding: 0 0.12rem;
    align-items: flex-start;
    padding-top: 0.46rem;
    background-repeat: no-repeat;
    background-size: 100% 70%;
    font-size: clamp(0.48rem, 2.35vw, 0.72rem);
    letter-spacing: 0.06em;
  }

  .floating-menu-links a:not(.fm-home):hover,
  .floating-menu-links a:not(.fm-home):focus-visible,
  .floating-menu-links a:not(.fm-home).is-current {
    letter-spacing: 0.08em;
  }

  .fm-about,
  .fm-apothecary,
  .fm-request,
  .fm-contact {
    top: 0;
    height: 54%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-menu-links a,
  .floating-menu-links a::before,
  .floating-menu-links a::after {
    transition: none !important;
  }
}

/* Build: 2026-06-15-atmospheric-home-v4 */
.home-body {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  overflow-x: hidden;
  background: #020b0e;
}

.home-body::before,
.home-body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.home-body::before {
  z-index: 0;
  inset: -34px;
  background:
    url("/the-morning-star-page.png?v=20260616-root-assets-v34") center top / cover no-repeat;
  filter: blur(26px) saturate(0.72) brightness(0.46);
  transform: scale(1.06);
  opacity: 0.78;
}

.home-body::after {
  z-index: 0;
  background:
    radial-gradient(circle at 7% 24%, rgba(159, 218, 208, 0.14), transparent 24%),
    radial-gradient(circle at 93% 38%, rgba(201, 130, 126, 0.14), transparent 27%),
    linear-gradient(90deg, rgba(1, 8, 10, 0.58), transparent 24%, transparent 76%, rgba(1, 8, 10, 0.58)),
    linear-gradient(180deg, transparent 55%, rgba(1, 8, 10, 0.88));
}

.home-body .page-frame {
  z-index: 1;
  box-shadow:
    0 0 0 1px rgba(184, 147, 94, 0.16),
    0 0 90px rgba(0, 0, 0, 0.76),
    0 0 150px rgba(49, 93, 91, 0.12);
}

.fm-home::before,
.fm-home::after {
  content: "";
  position: absolute;
  left: 50%;
  pointer-events: none;
}

.fm-home::before {
  top: 1%;
  width: 92%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159, 218, 208, 0.14), rgba(184, 147, 94, 0.06) 42%, transparent 69%);
  filter: blur(5px);
  transform: translateX(-50%) scale(0.96);
  opacity: 0.48;
  animation: emblem-breathe 6s ease-in-out infinite;
}

.fm-home::after {
  bottom: 8%;
  width: 72%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 147, 94, 0.58), transparent);
  box-shadow: 0 0 10px rgba(184, 147, 94, 0.2);
  transform: translateX(-50%) scaleX(0.72);
  opacity: 0.42;
  transition: opacity 300ms ease, transform 300ms ease, box-shadow 300ms ease;
}

.fm-home:hover::after,
.fm-home:focus-visible::after {
  opacity: 0.72;
  transform: translateX(-50%) scaleX(1);
  box-shadow: 0 0 14px rgba(159, 218, 208, 0.3);
}

@keyframes emblem-breathe {
  0%, 100% {
    opacity: 0.34;
    transform: translateX(-50%) scale(0.94);
  }
  50% {
    opacity: 0.58;
    transform: translateX(-50%) scale(1.03);
  }
}

@media (max-width: 1024px) {
  .home-body::before,
  .home-body::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fm-home::before {
    animation: none;
  }
}

/* Build: 2026-06-16-shop-cart-v1 */
.label-note {
  color: rgba(159, 218, 208, 0.8);
  font-family: var(--body);
  font-size: 0.95em;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.button-link,
.submit-button,
.add-to-cart-button {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    filter 220ms ease,
    background 220ms ease;
}

.button-link::after,
.submit-button::after,
.add-to-cart-button::after {
  content: "";
  position: absolute;
  inset: -60% auto -60% -45%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-18deg) translateX(-120%);
  transition: transform 520ms ease;
  pointer-events: none;
}

.button-link:hover,
.button-link:focus-visible,
.submit-button:hover,
.submit-button:focus-visible,
.add-to-cart-button:hover,
.add-to-cart-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(243, 234, 219, 0.95);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.42),
    0 0 22px rgba(184, 147, 94, 0.28),
    inset 0 0 18px rgba(255, 255, 255, 0.12);
  filter: brightness(1.08) saturate(1.08);
}

.button-link:hover::after,
.button-link:focus-visible::after,
.submit-button:hover::after,
.submit-button:focus-visible::after,
.add-to-cart-button:hover::after,
.add-to-cart-button:focus-visible::after {
  transform: skewX(-18deg) translateX(520%);
}

.shop-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(10px, 1.35vw, 16px);
}

.shop-item {
  min-width: 0;
}

.shop-item img {
  aspect-ratio: 1 / 0.82;
}

.shop-item-copy {
  padding: clamp(12px, 1.35vw, 16px);
  gap: 8px;
}

.shop-item-copy h2 {
  font-size: clamp(1.18rem, 1.38vw, 1.52rem);
  line-height: 1.02;
}

.shop-item-copy p {
  font-size: clamp(0.86rem, 1vw, 0.98rem);
  line-height: 1.28;
}

.shop-item-copy strong {
  font-size: 0.76rem;
}

.add-to-cart-button {
  width: 100%;
  min-height: 38px;
  margin-top: 2px;
  border: 1px solid rgba(184, 147, 94, 0.78);
  color: #071619;
  background: linear-gradient(135deg, #d8c9ae, #f3eadb, #b8935e);
  font-family: var(--small);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.cart-shell {
  position: fixed;
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 34px);
  z-index: 1300;
  font-family: var(--body);
}

.cart-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(184, 147, 94, 0.86);
  border-radius: 999px;
  color: #071619;
  background: linear-gradient(135deg, #d8c9ae, #f3eadb, #b8935e);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
  font-family: var(--small);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.cart-count {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  color: var(--cream);
  background: #071619;
  font-size: 0.78rem;
}

.cart-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  width: min(360px, calc(100vw - 28px));
  max-height: min(520px, calc(100vh - 130px));
  padding: 22px;
  display: grid;
  gap: 14px;
  overflow: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.98);
  transition: opacity 220ms ease, transform 220ms ease;
}

.cart-open .cart-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.cart-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cart-panel h2,
.cart-item h3 {
  margin: 0;
  color: var(--aqua);
  font-weight: 500;
}

.cart-panel h2 {
  font-size: 2rem;
  line-height: 1;
}

.cart-close,
.cart-quantity button {
  border: 1px solid rgba(184, 147, 94, 0.55);
  color: var(--cream);
  background: rgba(2, 9, 11, 0.72);
  cursor: pointer;
}

.cart-close {
  width: 32px;
  height: 32px;
  border-radius: 999px;
}

.cart-items {
  display: grid;
  gap: 10px;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(184, 147, 94, 0.22);
}

.cart-item h3 {
  font-size: 1.2rem;
}

.cart-item p,
.cart-empty {
  margin: 4px 0 0;
  color: var(--muted-cream);
  font-size: 1rem;
}

.cart-quantity {
  display: inline-grid;
  grid-template-columns: 30px 28px 30px;
  align-items: center;
  text-align: center;
  color: var(--cream);
}

.cart-quantity button {
  height: 30px;
  border-radius: 999px;
}

.cart-footer {
  display: grid;
  gap: 10px;
  padding-top: 4px;
}

.cart-total {
  color: var(--cream);
  font-family: var(--small);
  letter-spacing: 0.12em;
  text-align: right;
}

.cart-status {
  min-height: 1.2em;
  margin: 0;
  color: rgba(239, 230, 218, 0.82);
  font-size: 0.98rem;
  line-height: 1.25;
  text-align: center;
}

.cart-checkout {
  width: 100%;
  margin-top: 0;
}

.fm-home::before {
  top: -2%;
  width: 112%;
  background:
    radial-gradient(circle at 50% 44%, rgba(84, 255, 232, 0.34), rgba(159, 218, 208, 0.18) 34%, rgba(184, 147, 94, 0.06) 55%, transparent 76%);
  filter: blur(7px);
  mix-blend-mode: screen;
  opacity: 0.62;
}

.fm-home::after {
  display: none;
}

.fm-home:hover::before,
.fm-home:focus-visible::before {
  opacity: 0.82;
  filter: blur(8px);
}

@media (max-width: 1180px) {
  .shop-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .cart-shell {
    left: 12px;
    right: 12px;
  }

  .cart-toggle,
  .cart-panel {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button-link,
  .button-link::after,
  .submit-button,
  .submit-button::after,
  .add-to-cart-button,
  .add-to-cart-button::after,
  .cart-panel {
    transition: none !important;
  }
}
