:root {
  --ink: #020f16;
  --navy: #071f42;
  --navy-deep: #001d44;
  --purple: #5b2d82;
  --paper: #fdf3ee;
  --paper-soft: #fff8f4;
  --line: #eadcd0;
  --gold: #c19a5f;
  --red: #e8474e;
  --shadow: 0 18px 48px rgba(37, 24, 17, 0.08);
  --header-height: 156px;
  --page-pad: clamp(2rem, 3.7vw, 4rem);
  --content-max: 1550px;
  --font-text: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --font-display: Didot, "Bodoni 72", "Bodoni 72 Oldstyle", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
  color: var(--navy);
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 30rem),
    var(--paper);
  font-family: var(--font-text);
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 60;
  top: 1rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  min-height: var(--header-height);
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 1.25rem var(--page-pad);
}

.brand-link {
  position: absolute;
  top: 0.65rem;
  left: 50%;
  width: clamp(8.5rem, 8.9vw, 10.1rem);
  transform: translateX(-50%);
}

.brand-link img {
  width: 100%;
  border-radius: 50%;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.35rem, 2.65vw, 3.25rem);
  font-size: clamp(0.86rem, 0.9vw, 1rem);
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
}

.header-nav a,
.footer-nav a {
  position: relative;
}

.header-nav a::after,
.footer-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.58rem;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 150ms ease, transform 150ms ease;
}

.header-nav a:hover::after,
.header-nav a:focus-visible::after,
.header-nav a[aria-current="page"]::after,
.footer-nav a:hover::after,
.footer-nav a:focus-visible::after,
.footer-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-nav-right {
  margin-left: auto;
  gap: clamp(0.75rem, 1.2vw, 1.2rem);
}

.franchise-link,
.selection-link,
.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.franchise-link,
.selection-link {
  min-width: 16rem;
  padding: 0.85rem 1.35rem;
  gap: 0.65rem;
  font-weight: 400;
}

.franchise-link {
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.franchise-link::after,
.selection-link::after {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: 1.35rem;
}

.icon-link {
  display: grid;
  width: 2.05rem;
  height: 2.05rem;
  place-items: center;
  color: var(--navy);
}

.icon-link svg {
  width: 1.95rem;
  height: 1.95rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.menu-toggle {
  display: none;
}

.pill-button {
  width: fit-content;
  min-width: 19rem;
  padding: 0.95rem 1.65rem;
  gap: 1.2rem;
  font-size: clamp(0.92rem, 1vw, 1.04rem);
}

.franchise-link span,
.pill-button span,
.selection-link span {
  font-size: 1.35em;
  line-height: 1;
}

.pill-button:hover,
.selection-link:hover,
.pill-button:focus-visible,
.selection-link:focus-visible {
  background: var(--navy-deep);
}

.franchise-link:hover,
.franchise-link:focus-visible {
  background: rgba(2, 15, 22, 0.04);
}

.home-hero,
.universe-hero,
.universe-showcase,
.universe-features,
.site-footer {
  width: min(100%, var(--content-max));
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--page-pad);
  padding-left: var(--page-pad);
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(24rem, 0.76fr) minmax(34rem, 1fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
  min-height: calc(100svh - var(--header-height));
  padding-top: clamp(1.2rem, 2.2vw, 2.5rem);
  padding-bottom: clamp(2rem, 3vw, 3.4rem);
  overflow: hidden;
}

.home-copy {
  position: relative;
  z-index: 2;
}

.home-copy h1,
.universe-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
}

.home-copy h1 {
  max-width: 42rem;
  color: var(--ink);
  font-size: clamp(5.3rem, 6.9vw, 7.25rem);
  line-height: 0.9;
}

.home-copy em,
.universe-copy em {
  font-style: italic;
}

.home-copy em {
  color: var(--purple);
}

.home-copy p {
  max-width: 25rem;
  margin: 1.8rem 0 2rem;
  color: var(--ink);
  font-size: clamp(1.28rem, 1.45vw, 1.5rem);
  line-height: 1.5;
}

.home-visual {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: block;
  justify-self: end;
  width: min(76vw, 74rem);
  transform: translateX(12rem);
}

.home-visual img {
  width: 100%;
}

.home-benefits {
  grid-column: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.2vw, 2.2rem);
  width: min(45rem, 100%);
  padding: 0;
  margin: clamp(3rem, 5vw, 4.5rem) 0 0;
  list-style: none;
}

.home-benefits li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  color: var(--ink);
  font-size: clamp(0.92rem, 1vw, 1rem);
  font-weight: 650;
  line-height: 1.25;
}

.home-benefits img {
  max-width: 2.7rem;
  max-height: 3.05rem;
}

.universe-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(28rem, 0.84fr) minmax(36rem, 1.35fr);
  gap: clamp(2rem, 3.6vw, 4.4rem);
  align-items: center;
  padding-top: clamp(2.2rem, 4vw, 4.3rem);
  padding-bottom: 1.9rem;
}

.universe-copy {
  position: relative;
  z-index: 2;
  max-width: 37rem;
}

.eyebrow {
  display: inline-grid;
  gap: 0.8rem;
  margin-bottom: 1.75rem;
  color: rgba(7, 31, 66, 0.68);
  font-size: 0.95rem;
  font-weight: 650;
  text-transform: uppercase;
}

.eyebrow::after {
  display: block;
  width: 4.6rem;
  height: 0.14rem;
  background: linear-gradient(90deg, var(--navy) 0 36%, transparent 36% 64%, var(--red) 64% 100%);
  content: "";
}

.universe-copy h1 {
  color: var(--navy);
  font-size: clamp(3.25rem, 3.2vw, 3.7rem);
  line-height: 1.04;
  white-space: nowrap;
}

.universe-copy .ornament {
  position: relative;
  width: min(18rem, 64%);
  height: 1px;
  margin: 1.9rem 0 1.9rem;
  background: var(--gold);
}

.universe-copy .ornament::before,
.universe-copy .ornament::after {
  position: absolute;
  top: 50%;
  content: "";
}

.universe-copy .ornament::before {
  right: 38%;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--gold);
  transform: translateY(-50%) rotate(45deg);
}

.universe-copy .ornament::after {
  right: 0;
  width: 34%;
  height: 1px;
  background: var(--paper);
  box-shadow: -5.7rem 0 0 var(--paper);
}

.universe-copy p {
  max-width: 32rem;
  margin: 0 0 2rem;
  color: var(--navy);
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  line-height: 1.65;
}

.botanical {
  position: absolute;
  z-index: 1;
  bottom: 2.2rem;
  left: 30%;
  width: 13.5rem;
  opacity: 0.78;
  pointer-events: none;
}

.universe-gallery {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(0, 1fr);
  grid-template-rows: 17.9rem 10.45rem;
  gap: 1rem;
}

.universe-gallery picture,
.universe-gallery img {
  width: 100%;
  height: 100%;
}

.universe-gallery img {
  border-radius: 1.05rem;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(31, 18, 10, 0.05);
}

.gallery-main {
  grid-row: 1 / span 2;
}

.gallery-detail,
.gallery-wall {
  align-self: stretch;
}

.gallery-detail {
  width: calc(42% - 0.5rem);
}

.gallery-wall {
  width: calc(58% - 0.5rem);
}

.gallery-detail,
.gallery-wall {
  grid-row: 2;
}

.gallery-detail {
  grid-column: 2;
  justify-self: start;
}

.gallery-wall {
  grid-column: 2;
  justify-self: end;
}

.universe-showcase {
  display: grid;
  grid-template-columns: minmax(38rem, 1fr) minmax(20rem, 0.42fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
  padding-top: clamp(1.4rem, 2.8vw, 2.8rem);
  padding-bottom: clamp(2rem, 3vw, 3.2rem);
}

.showcase-copy {
  grid-column: 2;
  max-width: 26rem;
  padding-top: 0.65rem;
}

.showcase-copy h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2.65rem, 2.9vw, 3.6rem);
  font-weight: 400;
  line-height: 1.04;
}

.showcase-copy p {
  margin: 1.35rem 0 0;
  color: var(--navy);
  font-size: clamp(0.98rem, 1vw, 1.08rem);
  line-height: 1.6;
}

.showcase-frame {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  border: 1px solid rgba(192, 154, 95, 0.2);
  border-radius: 1.1rem;
  background: rgba(255, 249, 246, 0.72);
  box-shadow: 0 20px 52px rgba(37, 24, 17, 0.1);
  overflow: hidden;
}

.showcase-frame::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 9%;
  left: 9%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192, 154, 95, 0.62), transparent);
  content: "";
}

.showcase-frame img {
  width: 100%;
  aspect-ratio: 1448 / 1086;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.universe-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 1.3rem;
  margin-bottom: 3rem;
  padding-top: 1.65rem;
  padding-bottom: 1.65rem;
  border: 1px solid rgba(192, 154, 95, 0.16);
  border-radius: 1.1rem;
  background: rgba(255, 249, 246, 0.78);
  box-shadow: var(--shadow);
}

.feature-card {
  display: grid;
  grid-template-columns: 5.4rem 1fr;
  gap: 1.25rem;
  align-items: center;
  min-height: 8.2rem;
  padding: 0 2rem;
  border-right: 1px solid var(--line);
}

.feature-card:last-child {
  border-right: 0;
}

.feature-card img {
  width: 5.4rem;
  height: 5.4rem;
}

.feature-card h2 {
  margin: 0 0 0.8rem;
  color: var(--navy);
  font-size: clamp(0.93rem, 1vw, 1.05rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.feature-card p {
  margin: 0;
  color: var(--navy);
  font-size: clamp(0.88rem, 0.92vw, 0.98rem);
  line-height: 1.35;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding-top: 1.7rem;
  padding-bottom: 1.9rem;
  border-top: 1px solid rgba(192, 154, 95, 0.18);
  color: var(--navy);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  width: 13rem;
  border-radius: 0;
}

.footer-brand img.footer-logo-type {
  width: clamp(11rem, 16vw, 16rem);
  max-height: 6rem;
  object-fit: contain;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  font-size: 0.92rem;
  text-transform: uppercase;
}

.footer-brand span,
.site-footer p {
  color: rgba(7, 31, 66, 0.7);
  font-size: 0.9rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1.2rem, 3vw, 3rem);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
  text-align: right;
}

.mobile-menu {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: start stretch;
  background: rgba(2, 15, 22, 0.18);
  backdrop-filter: blur(10px);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu-panel {
  width: min(84vw, 26rem);
  min-height: 100svh;
  padding: 5.7rem 2rem 2rem;
  background: rgba(253, 243, 238, 0.96);
  box-shadow: 1.2rem 0 3rem rgba(2, 15, 22, 0.1);
}

.mobile-menu-panel a {
  display: block;
  padding: 1rem 0;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.creation-page,
.admin-shell {
  color: var(--navy);
}

.page-creations {
  --header-height: 145px;
  --page-pad: clamp(2rem, 3.4vw, 3.6rem);
}

.page-creations .site-header {
  min-height: var(--header-height);
  padding-top: 0.95rem;
  padding-bottom: 0.75rem;
}

.page-creations .brand-link {
  top: 0.55rem;
  width: clamp(7.4rem, 7.6vw, 8.9rem);
}

.page-creations .header-nav {
  font-size: clamp(0.78rem, 0.82vw, 0.9rem);
}

.page-creations .franchise-link,
.page-creations .selection-link {
  min-height: 2.9rem;
  min-width: 14.9rem;
  padding: 0.72rem 1.25rem;
  font-size: 0.82rem;
}

.page-creations .site-footer {
  margin-top: 1.75rem;
}

.creation-hero,
.creation-carousel-section,
.creation-tools,
.creation-empty-carousel,
.creation-list-section,
.creation-refill-block {
  width: min(100%, 1480px);
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--page-pad);
  padding-left: var(--page-pad);
}

.creation-hero {
  display: grid;
  grid-template-columns: minmax(17rem, 0.9fr) minmax(28rem, 1.26fr) minmax(18rem, 0.9fr);
  gap: clamp(2.2rem, 4vw, 4.7rem);
  align-items: center;
  min-height: clamp(31rem, calc(100svh - 25rem), 39rem);
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

.creation-editorial {
  max-width: 24.5rem;
}

.creation-editorial h1,
.creation-product-info .creation-number,
.creation-list-heading h2,
.creation-refill-block h2,
.admin-shell h1,
.admin-shell h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
}

.creation-editorial h1 {
  font-size: clamp(3.9rem, 5.1vw, 5.35rem);
  line-height: 0.95;
}

.creation-editorial h1 em {
  color: var(--gold);
  font-style: italic;
}

.creation-ornament,
.creation-small-ornament {
  position: relative;
  width: 5rem;
  height: 1px;
  margin: 1.55rem 0;
  background: var(--gold);
}

.creation-ornament::after,
.creation-small-ornament::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.42rem;
  height: 0.42rem;
  background: var(--gold);
  content: "";
  transform: translate(-50%, -50%) rotate(45deg);
}

.creation-editorial p,
.creation-description,
.creation-refill-block p,
.admin-shell p {
  color: var(--navy);
  line-height: 1.65;
}

.creation-editorial p {
  max-width: 20.8rem;
  font-size: 0.9rem;
}

.creation-text-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.55rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.creation-visual {
  position: relative;
  display: grid;
  min-height: clamp(30rem, 42vw, 36rem);
  margin: 0;
  place-items: center;
}

.creation-visual::before {
  position: absolute;
  right: 8%;
  bottom: 12%;
  width: clamp(4.6rem, 7vw, 6.75rem);
  height: 76%;
  border: 1px solid rgba(7, 31, 66, 0.06);
  background:
    repeating-linear-gradient(90deg, rgba(7, 31, 66, 0.04) 0 1px, transparent 1px 7px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.18));
  content: "";
}

.creation-visual::after {
  position: absolute;
  right: 19%;
  bottom: 6%;
  left: 16%;
  height: 28%;
  border: 1px solid rgba(192, 154, 95, 0.14);
  border-radius: 50% 50% 0 0;
  background: rgba(255, 255, 255, 0.5);
  content: "";
}

.creation-arch {
  position: absolute;
  bottom: 7%;
  left: 20%;
  width: 42%;
  height: 54%;
  border: 1px solid rgba(192, 154, 95, 0.13);
  border-radius: 999px 999px 0 0;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 -1px 0 rgba(192, 154, 95, 0.12);
}

.creation-visual img {
  position: relative;
  z-index: 3;
  width: clamp(22rem, 34vw, 31rem);
  max-height: 36rem;
  object-fit: contain;
  filter: drop-shadow(0 22px 38px rgba(40, 27, 20, 0.12));
}

.creation-product-info {
  max-width: 24.5rem;
}

.creation-number-label {
  margin: 0 0 -0.65rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 2.8vw, 3.25rem);
}

.creation-product-info .creation-number {
  color: var(--navy);
  font-size: clamp(5.7rem, 8.4vw, 8.9rem);
  line-height: 0.85;
}

.creation-product-info h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2vw, 2.35rem);
  font-weight: 400;
}

.creation-subtitle {
  margin: 0.1rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 1.8vw, 2.1rem);
  font-style: italic;
}

.creation-description {
  max-width: 24rem;
  margin: 0;
  font-size: 0.84rem;
}

.creation-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
  width: min(100%, 25rem);
  margin: 3rem 0 0;
}

.creation-facts div {
  display: grid;
  justify-items: center;
  gap: 0.34rem;
  text-align: center;
}

.creation-facts img {
  width: 2.15rem;
  height: 2.15rem;
  object-fit: contain;
}

.creation-facts dt {
  font-size: 0.68rem;
  font-weight: 800;
}

.creation-facts dd {
  margin: 0;
  color: rgba(7, 31, 66, 0.72);
  font-size: 0.68rem;
  line-height: 1.3;
}

.creation-carousel-section {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) 3rem;
  gap: 1.55rem;
  align-items: center;
  padding-top: 0.2rem;
  padding-bottom: 1.25rem;
}

.creation-carousel {
  display: grid;
  grid-template-columns: repeat(4, minmax(13.2rem, 1fr));
  gap: 1.25rem;
  min-width: 0;
}

.creation-carousel-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(7.5rem, 1fr);
  min-height: 10.35rem;
  padding: 1.28rem 1.45rem;
  border: 1px solid rgba(7, 31, 66, 0.12);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.62);
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(7, 31, 66, 0.04);
}

.creation-carousel-card.is-active {
  border-color: rgba(192, 154, 95, 0.78);
  box-shadow: 0 16px 40px rgba(192, 154, 95, 0.14);
}

.creation-card-copy {
  display: grid;
  align-content: start;
  gap: 0.22rem;
  min-width: 0;
}

.creation-card-copy strong,
.creation-product-card-copy p {
  font-family: var(--font-display);
  font-size: 1.36rem;
  font-weight: 400;
}

.creation-card-copy span,
.creation-card-copy em,
.creation-product-card-copy h3,
.creation-product-card-copy em {
  font-family: var(--font-display);
}

.creation-card-copy em,
.creation-product-card-copy em {
  font-style: italic;
}

.creation-carousel-card img {
  align-self: end;
  width: 100%;
  max-height: 8.65rem;
  object-fit: contain;
}

.creation-card-plus {
  position: absolute;
  bottom: 1.2rem;
  left: 1.45rem;
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(192, 154, 95, 0.18);
  font-size: 1.25rem;
}

.creation-nav-button {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(192, 154, 95, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  color: var(--gold);
  font-size: 1.45rem;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(7, 31, 66, 0.08);
}

.creation-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 27rem) minmax(9rem, 12rem);
  gap: 1.5rem;
  align-items: center;
  padding-top: 0.15rem;
  padding-bottom: 1.15rem;
}

.creation-filter-row {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.creation-filter-row > span {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.creation-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.creation-chip {
  min-height: 2.25rem;
  padding: 0.52rem 1.25rem;
  border: 1px solid rgba(7, 31, 66, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  color: rgba(7, 31, 66, 0.78);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.creation-chip.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.creation-search,
.creation-sort {
  position: relative;
  display: block;
}

.creation-search::before {
  position: absolute;
  top: 50%;
  left: 1.25rem;
  width: 0.92rem;
  height: 0.92rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  color: var(--navy);
  content: "";
  opacity: 0.9;
  transform: translateY(-58%);
}

.creation-search::after {
  position: absolute;
  top: 50%;
  left: 2rem;
  width: 0.48rem;
  height: 2px;
  background: currentColor;
  color: var(--navy);
  content: "";
  opacity: 0.9;
  transform: translateY(0.34rem) rotate(45deg);
}

.creation-search input,
.creation-sort select,
.admin-shell input,
.admin-shell textarea {
  width: 100%;
  border: 1px solid rgba(7, 31, 66, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--navy);
  font: inherit;
}

.creation-search input,
.creation-sort select {
  min-height: 3rem;
  padding: 0 1.25rem;
}

.creation-search input {
  padding-left: 3.25rem;
}

.creation-sort select {
  text-transform: uppercase;
}

.creation-filter-toggle {
  display: none;
}

.creation-filter-drawer[hidden] {
  display: none;
}

.creation-list-section {
  padding-bottom: 3.5rem;
}

.creation-list-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.4rem;
}

.creation-list-heading h2,
.creation-refill-block h2 {
  font-size: clamp(2.5rem, 3.4vw, 4rem);
}

.creation-list-heading p {
  margin: 0;
  color: rgba(7, 31, 66, 0.62);
  font-size: 0.92rem;
}

.creation-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.creation-product-card {
  display: grid;
  grid-template-rows: auto minmax(13rem, 1fr) auto auto;
  gap: 1rem;
  min-height: 22.5rem;
  padding: 2rem;
  border: 1px solid rgba(7, 31, 66, 0.1);
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 38px rgba(7, 31, 66, 0.05);
}

.creation-product-card-copy p,
.creation-product-card-copy h3,
.creation-product-card-copy em {
  margin: 0;
}

.creation-product-card-copy h3 {
  font-size: 1.65rem;
  font-weight: 400;
}

.creation-product-card-copy em {
  font-size: 1.32rem;
}

.creation-product-card img {
  justify-self: center;
  width: min(100%, 18rem);
  height: 13rem;
  object-fit: contain;
}

.creation-product-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
}

.creation-product-card dt {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.creation-product-card dd {
  margin: 0.2rem 0 0;
  color: rgba(7, 31, 66, 0.7);
  font-size: 0.9rem;
}

.creation-discover {
  justify-self: start;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.creation-empty {
  padding: 2.5rem;
  border: 1px solid rgba(7, 31, 66, 0.1);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.68);
  text-align: center;
}

.creation-empty-carousel {
  margin-top: -0.4rem;
  margin-bottom: 1rem;
}

.creation-refill-block {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(18rem, 1fr);
  gap: 2rem;
  align-items: center;
  padding-top: 2.2rem;
  padding-bottom: 3.6rem;
}

.creation-refill-block p {
  max-width: 34rem;
}

.admin-shell {
  width: min(100%, 1420px);
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 4rem) var(--page-pad);
}

.admin-login,
.admin-header,
.admin-table-card,
.admin-form-card {
  border: 1px solid rgba(7, 31, 66, 0.1);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.admin-login {
  display: grid;
  grid-template-columns: minmax(18rem, 1fr) minmax(18rem, 0.75fr);
  gap: 2rem;
  align-items: center;
  min-height: 30rem;
  padding: clamp(2rem, 4vw, 4rem);
}

.admin-login h1,
.admin-header h1 {
  font-size: clamp(2.6rem, 4vw, 4.2rem);
}

.admin-login form,
.admin-product-form {
  display: grid;
  gap: 1rem;
}

.admin-shell label {
  display: grid;
  gap: 0.45rem;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-shell input,
.admin-shell textarea {
  border-radius: 1rem;
  padding: 0.8rem 1rem;
  resize: vertical;
  text-transform: none;
}

.admin-workspace {
  display: grid;
  gap: 1.6rem;
}

.admin-workspace[hidden],
.admin-login[hidden] {
  display: none;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.8rem 2rem;
}

.admin-actions,
.admin-form-actions,
.admin-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.admin-status {
  min-height: 1.4rem;
  margin: 0;
  font-weight: 700;
}

.admin-status[data-type="success"] {
  color: #1c6b43;
}

.admin-status[data-type="error"] {
  color: #9d2935;
}

.admin-table-card,
.admin-form-card {
  padding: 1.6rem;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 58rem;
}

.admin-table th,
.admin-table td {
  padding: 0.85rem;
  border-bottom: 1px solid rgba(7, 31, 66, 0.1);
  text-align: left;
  vertical-align: middle;
}

.admin-table th {
  font-size: 0.74rem;
  text-transform: uppercase;
}

.admin-thumb {
  width: 4.4rem;
  height: 3.4rem;
  object-fit: contain;
}

.admin-row-actions button {
  border: 1px solid rgba(7, 31, 66, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--navy);
  cursor: pointer;
  padding: 0.5rem 0.8rem;
}

.admin-product-form {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-wide,
.admin-form-actions {
  grid-column: 1 / -1;
}

.admin-upload img {
  width: 100%;
  max-height: 12rem;
  border: 1px solid rgba(7, 31, 66, 0.1);
  border-radius: 1rem;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.58);
}

.admin-checkbox {
  grid-template-columns: auto 1fr;
  align-items: center;
  justify-content: start;
}

.admin-checkbox input {
  width: auto;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 4px;
}

@media (max-width: 1180px) and (orientation: landscape) {
  .header-nav-left {
    gap: 1.15rem;
  }

  .header-nav {
    font-size: 0.78rem;
  }

  .franchise-link,
  .selection-link {
    min-width: 13.5rem;
  }

  .home-hero {
    grid-template-columns: minmax(22rem, 0.74fr) minmax(28rem, 1fr);
  }

  .home-copy h1 {
    font-size: clamp(4.7rem, 6.8vw, 6.1rem);
  }
}

@media (max-width: 900px), (orientation: portrait) {
  :root {
    --header-height: 10.8rem;
    --page-pad: clamp(1.55rem, 6.7vw, 4rem);
  }

  body {
    background:
      radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 26rem),
      var(--paper);
  }

  .site-header {
    min-height: var(--header-height);
    padding-top: 1.2rem;
    padding-bottom: 1rem;
  }

  .brand-link {
    top: 1rem;
    width: clamp(8.4rem, 17vw, 10rem);
  }

  .header-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    gap: 0.47rem;
    width: 3rem;
    height: 3rem;
    padding: 0.5rem 0.25rem;
    border: 0;
    background: transparent;
    color: var(--navy);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 2.05rem;
    height: 0.18rem;
    border-radius: 999px;
    background: currentColor;
  }

  .header-actions {
    margin-left: auto;
    gap: 1.25rem;
  }

  .icon-link {
    width: 2.35rem;
    height: 2.35rem;
  }

  .icon-link svg {
    width: 2.25rem;
    height: 2.25rem;
  }

  .home-hero {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    min-height: auto;
    padding-top: 0.75rem;
    padding-bottom: 2.4rem;
  }

  .home-copy h1 {
    max-width: 48rem;
    font-size: clamp(4.1rem, 12.5vw, 7.35rem);
    line-height: 0.93;
  }

  .home-copy p {
    max-width: 33rem;
    margin-top: 1.75rem;
    margin-bottom: 1.85rem;
    font-size: clamp(1.15rem, 2.8vw, 1.55rem);
  }

  .pill-button {
    min-width: min(21rem, 100%);
    min-height: 3.25rem;
    padding-right: 1.45rem;
    padding-left: 1.45rem;
  }

  .home-visual {
    grid-column: auto;
    grid-row: auto;
    justify-self: center;
    width: min(100%, 51rem);
    margin-top: 0.35rem;
    transform: none;
  }

  .home-benefits {
    grid-column: auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    width: 100%;
    margin-top: 1.45rem;
  }

  .home-benefits li {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.45rem;
    text-align: center;
    font-size: clamp(0.82rem, 2.4vw, 1rem);
  }

  .home-benefits img {
    max-width: 2.5rem;
    max-height: 2.8rem;
  }

  .universe-hero {
    grid-template-columns: 1fr;
    gap: 2.35rem;
    padding-top: 0.9rem;
    padding-bottom: 1.6rem;
  }

  .universe-copy {
    max-width: 51rem;
  }

  .eyebrow {
    margin-bottom: 1.55rem;
    font-size: clamp(0.96rem, 2.3vw, 1.14rem);
  }

  .universe-copy h1 {
    font-size: clamp(3.8rem, 8.4vw, 4.9rem);
    line-height: 1.03;
    white-space: normal;
  }

  .universe-copy .ornament {
    width: min(20.5rem, 72%);
    margin: 1.8rem 0 1.7rem;
  }

  .universe-copy p {
    max-width: 47rem;
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    line-height: 1.56;
  }

  .botanical {
    top: 5.5rem;
    right: 0;
    bottom: auto;
    left: auto;
    width: min(28vw, 13rem);
    opacity: 0.66;
  }

  .universe-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto;
    gap: 1.15rem;
  }

  .universe-gallery img {
    border-radius: 1rem;
  }

  .gallery-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .gallery-main img {
    aspect-ratio: 804 / 319;
  }

  .gallery-lounge,
  .gallery-detail {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
  }

  .gallery-lounge img,
  .gallery-detail img {
    aspect-ratio: 399 / 194;
  }

  .gallery-wall {
    display: none;
  }

  .universe-showcase {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    padding-top: 0.85rem;
    padding-bottom: 2.3rem;
  }

  .showcase-copy {
    grid-column: auto;
    max-width: 43rem;
    padding-top: 0;
  }

  .showcase-frame {
    grid-column: auto;
    grid-row: auto;
  }

  .showcase-copy h2 {
    font-size: clamp(2.85rem, 7.4vw, 4rem);
  }

  .showcase-copy p {
    max-width: 38rem;
    font-size: clamp(0.98rem, 2.25vw, 1.14rem);
  }

  .showcase-frame {
    border-radius: 1rem;
  }

  .universe-features {
    display: block;
    margin-top: 0.5rem;
    margin-bottom: 2.7rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    border-radius: 1rem;
  }

  .feature-card {
    position: relative;
    grid-template-columns: 6rem 1fr 1.6rem;
    gap: 1.15rem;
    min-height: 7.25rem;
    padding: 0.95rem 1.6rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-card:last-child {
    border-bottom: 0;
  }

  .feature-card::after {
    width: 0.72rem;
    height: 0.72rem;
    border-top: 2px solid var(--navy);
    border-right: 2px solid var(--navy);
    content: "";
    transform: rotate(45deg);
  }

  .feature-card img {
    width: 5.6rem;
    height: 5.6rem;
  }

  .feature-card h2 {
    margin-bottom: 0.45rem;
    font-size: clamp(0.94rem, 2.6vw, 1.08rem);
  }

  .feature-card p {
    font-size: clamp(0.88rem, 2.2vw, 1rem);
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    padding-top: 1.6rem;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-nav {
    flex-wrap: wrap;
  }

  .site-footer p {
    text-align: center;
  }
}

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

  .home-copy h1 {
    font-size: clamp(3.9rem, 17vw, 5.1rem);
  }

  .universe-copy h1 {
    font-size: clamp(3.15rem, 12vw, 4.15rem);
  }

  .universe-gallery {
    gap: 0.8rem;
  }

  .showcase-copy h2 {
    font-size: clamp(2.5rem, 9.4vw, 3.25rem);
  }

  .feature-card {
    grid-template-columns: 4.75rem 1fr 1.2rem;
    padding: 0.85rem 1rem;
  }

  .feature-card img {
    width: 4.35rem;
    height: 4.35rem;
  }
}

@media (max-width: 1199px) {
  .creation-hero {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.8fr);
    gap: 2.5rem;
  }

  .creation-editorial {
    max-width: none;
  }

  .creation-visual {
    min-height: 31rem;
  }

  .creation-visual img {
    width: clamp(15rem, 38vw, 22.5rem);
    max-height: 32.5rem;
  }

  .creation-product-info {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: minmax(15rem, 0.7fr) minmax(18rem, 1fr);
    gap: 1.5rem 2.5rem;
    max-width: none;
  }

  .creation-description {
    max-width: 34rem;
  }

  .creation-facts {
    grid-column: 2;
    grid-row: 1 / span 5;
    align-self: center;
    margin-top: 0;
  }

  .creation-carousel-section {
    grid-template-columns: 1fr;
  }

  .creation-nav-button {
    display: none;
  }

  .creation-carousel {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.7rem;
    scroll-snap-type: x mandatory;
  }

  .creation-carousel-card {
    flex: 0 0 min(23rem, 48vw);
    scroll-snap-align: start;
  }

  .creation-tools {
    grid-template-columns: 1fr;
  }

  .creation-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-product-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .creation-hero {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    min-height: auto;
    padding-top: 2rem;
    padding-bottom: 1.5rem;
  }

  .creation-editorial {
    order: 1;
  }

  .creation-editorial h1 {
    font-size: clamp(2.65rem, 12vw, 3.65rem);
    line-height: 0.95;
  }

  .creation-editorial p {
    max-width: 34em;
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .creation-visual {
    order: 2;
    min-height: 27rem;
  }

  .creation-arch {
    inset: 18% 8% 8%;
  }

  .creation-visual img {
    width: min(72vw, 18.75rem);
    max-height: 26.9rem;
  }

  .creation-product-info {
    order: 3;
    display: block;
  }

  .creation-product-info .creation-number {
    font-size: clamp(4rem, 20vw, 5.75rem);
  }

  .creation-description {
    max-width: 34em;
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .creation-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 2rem;
  }

  .creation-carousel-section {
    padding-right: 0;
    padding-left: 0;
  }

  .creation-carousel {
    padding: 0 1.25rem 0.75rem;
    gap: 0.85rem;
  }

  .creation-carousel::-webkit-scrollbar {
    display: none;
  }

  .creation-carousel-card {
    flex: 0 0 78%;
    grid-template-columns: minmax(0, 1fr) 7rem;
    min-height: 8.25rem;
    border-radius: 1.25rem;
  }

  .creation-tools {
    padding-top: 0.8rem;
    padding-bottom: 1.7rem;
  }

  .creation-filter-row {
    display: none;
  }

  .creation-filter-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-height: 3rem;
    padding: 0 1.2rem;
    border: 1px solid rgba(7, 31, 66, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--navy);
    font-weight: 800;
    text-transform: uppercase;
  }

  .creation-filter-drawer {
    position: fixed;
    z-index: 70;
    inset: 0;
    display: grid;
    align-items: end;
    background: rgba(2, 15, 22, 0.18);
    backdrop-filter: blur(8px);
  }

  .creation-filter-panel {
    padding: 2rem;
    border-radius: 1.5rem 1.5rem 0 0;
    background: var(--paper);
    box-shadow: 0 -18px 42px rgba(7, 31, 66, 0.12);
  }

  .creation-filter-panel h2 {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 400;
  }

  .creation-filter-panel h3 {
    margin: 1.2rem 0 0.7rem;
    font-size: 0.85rem;
    text-transform: uppercase;
  }

  .creation-filter-close {
    position: absolute;
    right: 1.2rem;
    width: 2.8rem;
    height: 2.8rem;
    border: 0;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    font-size: 2rem;
  }

  .creation-filter-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-top: 1.4rem;
  }

  .creation-list-heading {
    display: block;
  }

  .creation-list-heading h2,
  .creation-refill-block h2 {
    font-size: clamp(2.4rem, 10vw, 3.3rem);
  }

  .creation-list {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .creation-product-card {
    min-height: auto;
    padding: 1.5rem;
    border-radius: 1.35rem;
  }

  .creation-refill-block {
    grid-template-columns: 1fr;
    padding-top: 1rem;
  }

  .admin-shell {
    padding-top: 1.5rem;
  }

  .admin-login,
  .admin-header,
  .admin-product-form {
    grid-template-columns: 1fr;
  }

  .admin-header {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
