:root {
  --ivory: #f3f0ea;
  --ivory-2: #eae5dc;
  --paper: #fbfaf7;
  --copper: #966648;
  --copper-dark: #6f4933;
  --green: #35483a;
  --deep: #1d211b;
  --sage: #89927b;
  --stone: #b8b0a5;
  --line: rgba(29, 33, 27, 0.14);
  --line-light: rgba(255, 255, 255, 0.2);
  --success: #58725d;
  --warning: #a87945;
  --danger: #9b4f47;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --header-h: 78px;
  --prototype-h: 34px;
  --radius: 3px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow: 0 24px 70px rgba(29, 33, 27, .11);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--deep);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

img {
  display: block;
  width: 100%;
}

svg {
  display: block;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

.film-grain {
  position: fixed;
  z-index: 1000;
  inset: 0;
  pointer-events: none;
  opacity: .072;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.cinematic-cursor {
  position: fixed;
  z-index: 1100;
  width: 10px;
  height: 10px;
  pointer-events: none;
  opacity: 0;
  background: #bd8e70;
  border-radius: 50%;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width .25s ease, height .25s ease, opacity .25s ease;
}

.cinematic-cursor.is-active {
  width: 42px;
  height: 42px;
}

.loader {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  color: var(--deep);
  background: var(--ivory);
  transition: transform .9s cubic-bezier(.76, 0, .24, 1) .25s;
}

.loader.is-done {
  transform: translateY(-102%);
}

.loader__mark {
  width: 48px;
  margin-bottom: 16px;
  color: var(--copper);
}

.loader__mark svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.loader__mark path {
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  animation: loader-draw 1.1s var(--ease) .08s forwards;
}

.loader__word {
  margin-left: .42em;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: .42em;
  line-height: 1;
}

.loader__caption {
  margin-top: 9px;
  color: var(--copper);
  font-size: 8px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.loader__line {
  width: 190px;
  height: 1px;
  margin-top: 20px;
  overflow: hidden;
  background: rgba(150, 102, 72, .2);
}

.loader__line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--copper);
  animation: loader-line 1.25s cubic-bezier(.77, 0, .18, 1) both;
}

@keyframes loader-line {
  from { transform: translateX(-101%); }
}

@keyframes loader-draw {
  to { stroke-dashoffset: 0; }
}

.cinematic-reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2, .7, .2, 1);
}

.cinematic-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.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;
}

.app-shell {
  min-height: 100vh;
}

.prototype-bar {
  position: relative;
  z-index: 80;
  height: var(--prototype-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 24px;
  color: rgba(255, 255, 255, .78);
  background: var(--deep);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.prototype-bar strong {
  color: #fff;
  font-weight: 500;
}

.prototype-switch {
  display: flex;
  align-items: center;
  gap: 4px;
}

.prototype-switch a {
  padding: 4px 10px;
  border-radius: 20px;
  transition: background .2s ease, color .2s ease;
}

.prototype-switch a:hover,
.prototype-switch a.is-active {
  color: var(--deep);
  background: var(--ivory);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(20px, 4vw, 64px);
  color: var(--deep);
  background: rgba(243, 240, 234, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transition: color .35s ease, background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

@media (min-width: 1121px) {
  .site-header--home {
    z-index: 70;
    color: #fff;
    background: transparent;
    border-bottom-color: rgba(255, 255, 255, .18);
    backdrop-filter: none;
  }

  .site-header--home .brand__copy small,
  .site-header--home .brand__mark {
    color: #d7aa8d;
  }

  .site-header--home.is-scrolled {
    color: var(--deep);
    background: rgba(243, 240, 234, .94);
    border-bottom-color: var(--line);
    box-shadow: 0 10px 34px rgba(29, 33, 27, .06);
    backdrop-filter: blur(14px);
  }

  .site-header--home.is-scrolled .brand__copy small,
  .site-header--home.is-scrolled .brand__mark {
    color: var(--copper);
  }

  .site-header--home + .mobile-drawer + .page .home-hero {
    height: calc(100vh - var(--prototype-h));
    height: calc(100dvh - var(--prototype-h));
    margin-top: calc(var(--header-h) * -1);
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.brand__mark {
  width: 24px;
  color: var(--copper);
}

.brand__mark svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand__copy {
  display: grid;
  line-height: 1;
}

.brand__copy strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: .22em;
}

.brand__copy small {
  margin-top: 5px;
  color: var(--copper);
  font-size: 8px;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 46px);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.icon-button,
.menu-button {
  position: relative;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.icon-button svg,
.menu-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-count {
  position: absolute;
  top: 3px;
  right: 0;
  min-width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  color: #fff;
  background: var(--copper);
  border-radius: 20px;
  font-size: 9px;
  font-weight: 600;
}

.menu-button {
  display: none;
}

.mobile-drawer {
  position: fixed;
  z-index: 100;
  inset: calc(var(--prototype-h) + var(--header-h)) 0 0;
  display: grid;
  align-content: start;
  padding: clamp(42px, 8vh, 78px) 28px 36px;
  color: var(--deep);
  background:
    radial-gradient(circle at 92% 5%, rgba(173, 118, 82, .14), transparent 32%),
    var(--ivory);
  border-top: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .3s ease, transform .45s var(--ease), visibility .3s;
}

.mobile-drawer.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.mobile-drawer nav {
  display: grid;
}

.mobile-drawer nav a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(34px, 9vw, 52px);
  line-height: 1;
}

.mobile-drawer nav span {
  color: var(--copper);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .14em;
}

.mobile-drawer__footer {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  color: rgba(29, 33, 27, .5);
  font-size: 11px;
}

.page {
  min-height: calc(100vh - var(--header-h) - var(--prototype-h));
  animation: page-in .48s var(--ease) both;
}

@keyframes page-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
}

.container {
  width: min(100% - 40px, 1320px);
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - 40px, 980px);
  margin-inline: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--copper);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.display-title {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 112px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .85;
}

.display-title em {
  font-weight: 400;
}

.section-title {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .93;
}

.section-title em {
  color: var(--copper);
  font-weight: 400;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--dark {
  color: var(--ivory);
  background: var(--deep);
}

.button--dark:hover {
  background: var(--green);
}

.button--light {
  color: var(--deep);
  background: var(--ivory);
}

.button--copper {
  color: #fff;
  background: var(--copper);
}

.button--outline {
  color: var(--deep);
  border-color: var(--line);
  background: transparent;
}

.button--outline:hover {
  border-color: var(--deep);
}

.button--danger {
  color: var(--danger);
  border-color: rgba(155, 79, 71, .3);
  background: transparent;
}

.button:disabled {
  cursor: not-allowed;
  opacity: .45;
  transform: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.home-hero {
  position: relative;
  height: calc(100vh - var(--header-h) - var(--prototype-h));
  height: calc(100dvh - var(--header-h) - var(--prototype-h));
  min-height: 0;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--deep);
}

.home-hero__media,
.home-hero__overlay {
  position: absolute;
  inset: 0;
}

.home-hero__media img {
  height: 100%;
  object-fit: cover;
  object-position: 54% 45%;
  transform: scale(1.02);
  animation: hero-breathe 12s ease-out both;
}

@keyframes hero-breathe {
  from { transform: scale(1.08); }
}

.home-hero__overlay {
  background:
    linear-gradient(90deg, rgba(15, 18, 15, .72) 0%, rgba(15, 18, 15, .22) 52%, rgba(15, 18, 15, .12) 100%),
    linear-gradient(0deg, rgba(15, 18, 15, .65) 0%, transparent 45%);
}

.home-hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 1320px);
  margin: 0 auto;
  padding: clamp(105px, 18vh, 190px) 0 118px;
}

.home-hero__main {
  width: min(760px, 66vw);
}

.home-hero__index {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, .5);
  font-size: 8px;
  letter-spacing: .18em;
  white-space: nowrap;
  transform: translate(-50%, -50%) rotate(-90deg);
}

.home-hero__index i {
  width: 65px;
  height: 1px;
  background: rgba(255, 255, 255, .28);
}

.home-hero .eyebrow {
  color: rgba(255, 255, 255, .75);
}

.home-hero .display-title {
  text-shadow: 0 12px 40px rgba(0, 0, 0, .18);
}

.home-hero .display-title span {
  display: block;
}

.home-hero .display-title em {
  display: block;
  margin-left: clamp(16px, 8vw, 120px);
  color: #e1c6b4;
}

.home-hero__lead {
  max-width: 540px;
  margin: 32px 0 32px clamp(0px, 8vw, 120px);
  color: rgba(255, 255, 255, .76);
  font-size: 15px;
  line-height: 1.8;
}

.home-hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: clamp(0px, 8vw, 120px);
}

.home-hero__actions .button > span:last-child {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.hero-note span {
  color: #e1c6b4;
  font-size: 8px;
}

.hero-note p {
  margin: 0;
  color: rgba(255, 255, 255, .64);
  font-size: 9px;
  letter-spacing: .08em;
  line-height: 1.55;
  text-transform: uppercase;
}

.home-hero__bottom {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 4vw, 64px);
  bottom: 24px;
  left: clamp(20px, 4vw, 64px);
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: clamp(28px, 5vw, 76px);
}

.home-scroll-cue {
  width: 36px;
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-left: auto;
  padding: 0;
  color: rgba(255, 255, 255, .7);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 7px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.home-scroll-cue i {
  position: relative;
  width: 1px;
  height: 44px;
  overflow: hidden;
  background: rgba(255, 255, 255, .25);
}

.home-scroll-cue i::after {
  position: absolute;
  inset: 0;
  content: "";
  background: #fff;
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateY(-100%); }
  55%, 100% { transform: translateY(100%); }
}

.home-intro {
  display: grid;
  grid-template-columns: .7fr 1.5fr .8fr;
  gap: clamp(28px, 5vw, 80px);
  padding: clamp(90px, 12vw, 170px) 0;
}

.home-intro__label {
  color: var(--copper);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.home-intro__statement {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 58px);
  letter-spacing: -.02em;
  line-height: 1.06;
}

.home-intro__statement em {
  color: var(--copper);
}

.home-intro__aside {
  align-self: end;
  color: rgba(29, 33, 27, .62);
}

.world-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.world-card {
  position: relative;
  min-height: min(72vw, 780px);
  overflow: hidden;
  color: #fff;
}

.world-card img,
.world-card__shade {
  position: absolute;
  inset: 0;
  height: 100%;
}

.world-card img {
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter .6s ease;
}

.world-card--nursery img {
  object-position: 48% center;
}

.world-card__shade {
  background: linear-gradient(0deg, rgba(16, 19, 16, .72), rgba(16, 19, 16, .04) 70%);
}

.world-card:hover img {
  transform: scale(1.035);
}

.world-card__content {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 5vw, 70px);
  bottom: clamp(30px, 5vw, 70px);
  left: clamp(24px, 5vw, 70px);
}

.world-card__content p {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, .66);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.world-card__content h2 {
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 90px);
  font-weight: 400;
  line-height: .88;
}

.world-card__content h2 em {
  color: #e1c6b4;
  font-weight: 400;
}

.featured-section {
  padding: clamp(90px, 11vw, 150px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
  margin-bottom: 54px;
}

.section-heading__copy {
  max-width: 530px;
  color: rgba(29, 33, 27, .58);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 28px);
}

.product-card {
  min-width: 0;
}

.product-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ivory-2);
}

.product-card__media > a {
  display: block;
  height: 100%;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.product-card:hover .product-card__media img {
  transform: scale(1.025);
}

.product-card__media--soft img {
  filter: saturate(.76) contrast(.94) brightness(1.05);
}

.product-card__media--earth img {
  filter: saturate(.75) sepia(.08);
}

.product-card__media--green img {
  filter: saturate(.82) hue-rotate(-7deg);
}

.product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 9px;
  color: var(--deep);
  background: rgba(251, 250, 247, .9);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.product-card__quick {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 0;
  border-radius: 50%;
  background: var(--deep);
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .3s var(--ease), background .2s ease;
}

.product-card:hover .product-card__quick,
.product-card__quick:focus-visible {
  opacity: 1;
  transform: none;
}

.product-card__quick:hover {
  background: var(--copper);
}

.product-card__quick:disabled {
  cursor: not-allowed;
  opacity: .5;
}

.product-card__info {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 14px;
  padding: 16px 0 2px;
}

.product-card__type {
  margin-bottom: 5px;
  color: var(--copper);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.product-card__name {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.05;
}

.product-card__price {
  padding-top: 18px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.occasion-section {
  padding: clamp(80px, 10vw, 140px) 0;
  color: var(--ivory);
  background: var(--deep);
}

.occasion-section .eyebrow {
  color: #d8b49c;
}

.occasion-section .section-heading {
  align-items: center;
}

.occasion-section .section-heading__copy {
  color: rgba(255, 255, 255, .53);
}

.occasion-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
}

.occasion-link {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition: color .25s ease, background .25s ease;
}

.occasion-link:nth-child(4n) {
  border-right: 0;
}

.occasion-link span {
  color: var(--copper);
  font-size: 10px;
}

.occasion-link strong {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.occasion-link:hover {
  color: var(--deep);
  background: var(--ivory);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.service-strip__item {
  min-height: 180px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  gap: 18px;
  padding: 30px clamp(22px, 4vw, 60px);
  border-right: 1px solid var(--line);
}

.service-strip__item:last-child {
  border-right: 0;
}

.service-strip__item > span {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 25px;
}

.service-strip__item h3 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.service-strip__item p {
  margin-bottom: 0;
  color: rgba(29, 33, 27, .55);
  font-size: 11px;
}

.footer {
  color: rgba(255, 255, 255, .65);
  background: #151813;
}

.footer__main {
  display: grid;
  grid-template-columns: 1.1fr .7fr .7fr;
  gap: 60px;
  padding: 76px 0;
}

.footer .brand {
  color: #fff;
}

.footer__statement {
  max-width: 410px;
  margin: 28px 0 0;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.1;
}

.footer h3 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.footer nav,
.footer__contact {
  display: grid;
  gap: 10px;
  font-size: 12px;
}

.footer a:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.page-hero {
  position: relative;
  height: calc(100vh - var(--header-h) - var(--prototype-h));
  height: calc(100dvh - var(--header-h) - var(--prototype-h));
  min-height: 0;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--deep);
  border-bottom: 1px solid var(--line);
}

.page-hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(13, 16, 13, .76) 0%, rgba(13, 16, 13, .34) 50%, rgba(13, 16, 13, .08) 100%),
    linear-gradient(0deg, rgba(13, 16, 13, .62) 0%, transparent 55%);
}

.page-hero__copy {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 1320px);
  display: flex;
  flex-direction: column;
  justify-content: end;
  margin: 0 auto;
  padding: clamp(70px, 10vh, 120px) 0 clamp(42px, 6vh, 70px);
}

.page-hero__copy .eyebrow {
  color: rgba(255, 255, 255, .72);
}

.page-hero__copy .display-title {
  text-shadow: 0 12px 40px rgba(0, 0, 0, .18);
}

.page-hero__copy p {
  max-width: 540px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .74);
  line-height: 1.75;
}

.page-hero__media {
  position: absolute;
  z-index: 0;
  inset: 0;
  min-height: 0;
  overflow: hidden;
}

.page-hero__media img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  animation: hero-breathe 12s ease-out both;
}

.page-hero--bouquets .page-hero__media img {
  object-position: 54% 45%;
}

.page-hero--nursery .page-hero__media img {
  object-position: 58% center;
}

.catalogue {
  padding: 54px 0 120px;
}

.catalogue-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  align-items: end;
  gap: 30px;
  margin-bottom: 38px;
}

.catalogue-search {
  position: relative;
  max-width: 440px;
}

.catalogue-search input {
  width: 100%;
  height: 48px;
  padding: 0 44px 0 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--deep);
  background: transparent;
}

.catalogue-search svg {
  position: absolute;
  top: 14px;
  right: 3px;
  width: 18px;
  fill: none;
  stroke: currentColor;
}

.catalogue-sort select {
  height: 48px;
  min-width: 190px;
  padding: 0 38px 0 12px;
  border: 1px solid var(--line);
  background: transparent;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 38px;
}

.filter-chip {
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  letter-spacing: .05em;
}

.filter-chip:hover,
.filter-chip.is-active {
  color: #fff;
  border-color: var(--deep);
  background: var(--deep);
}

.catalogue-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  color: rgba(29, 33, 27, .48);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 80px 20px;
  border: 1px solid var(--line);
  text-align: center;
}

.empty-state h2 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, .9fr);
  min-height: calc(100vh - var(--header-h) - var(--prototype-h));
}

.product-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  gap: 1px;
  background: var(--line);
}

.product-gallery__item {
  min-height: 600px;
  overflow: hidden;
  background: var(--ivory-2);
}

.product-gallery__item:first-child {
  grid-column: 1 / -1;
  min-height: min(78vh, 900px);
}

.product-gallery__item img {
  height: 100%;
  object-fit: cover;
}

.product-buy {
  align-self: start;
  min-height: calc(100vh - var(--header-h) - var(--prototype-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(50px, 7vw, 100px);
  background: var(--paper);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 38px;
  color: rgba(29, 33, 27, .45);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.breadcrumb a:hover {
  color: var(--copper);
}

.product-buy__type {
  margin-bottom: 12px;
  color: var(--copper);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.product-buy h1 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 74px);
  font-weight: 400;
  line-height: .9;
}

.product-buy__price {
  margin-bottom: 28px;
  font-size: 16px;
  font-weight: 600;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--success);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.availability::before {
  width: 7px;
  height: 7px;
  content: "";
  background: currentColor;
  border-radius: 50%;
}

.availability--warning {
  color: var(--warning);
}

.availability--danger {
  color: var(--danger);
}

.product-buy__description {
  max-width: 570px;
  margin-bottom: 34px;
  color: rgba(29, 33, 27, .62);
}

.option-group {
  margin-bottom: 26px;
}

.option-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.option-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.option-button {
  min-height: 52px;
  padding: 9px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-size: 10px;
}

.option-button span {
  display: block;
  margin-top: 2px;
  color: rgba(29, 33, 27, .48);
  font-size: 8px;
}

.option-button:hover,
.option-button.is-active {
  color: #fff;
  border-color: var(--deep);
  background: var(--deep);
}

.option-button.is-active span {
  color: rgba(255, 255, 255, .6);
}

.purchase-row {
  display: grid;
  grid-template-columns: 106px 1fr;
  gap: 10px;
  margin-top: 8px;
}

.quantity-control {
  min-height: 52px;
  display: grid;
  grid-template-columns: 1fr 34px 1fr;
  place-items: center;
  border: 1px solid var(--line);
}

.quantity-control button {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
}

.quantity-control span {
  font-size: 11px;
}

.fulfilment-note {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: rgba(29, 33, 27, .58);
  font-size: 10px;
}

.fulfilment-note svg {
  width: 18px;
  fill: none;
  stroke: var(--copper);
}

.product-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-fact {
  min-height: 80px;
  padding: 13px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-fact span {
  display: block;
  color: rgba(29, 33, 27, .42);
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-fact strong {
  display: block;
  margin-top: 5px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.05;
}

.cart-page,
.checkout-page,
.content-page {
  padding: clamp(60px, 8vw, 110px) 0 120px;
}

.page-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 54px;
}

.page-heading p {
  max-width: 480px;
  margin: 0;
  color: rgba(29, 33, 27, .52);
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, .6fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: start;
}

.cart-items {
  border-top: 1px solid var(--line);
}

.cart-item {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) auto;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item__media {
  aspect-ratio: 1 / 1.15;
  overflow: hidden;
  background: var(--ivory-2);
}

.cart-item__media img {
  height: 100%;
  object-fit: cover;
}

.cart-item__content {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.cart-item__type {
  margin-bottom: 4px;
  color: var(--copper);
  font-size: 8px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.cart-item__content h3 {
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
}

.cart-item__variant {
  margin-bottom: 18px;
  color: rgba(29, 33, 27, .5);
  font-size: 10px;
}

.cart-item__remove {
  margin-top: auto;
  padding: 2px 0;
  color: rgba(29, 33, 27, .48);
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  font-size: 9px;
}

.cart-item__side {
  min-width: 110px;
  display: grid;
  justify-items: end;
  align-content: space-between;
}

.cart-item__side strong {
  font-size: 13px;
}

.cart-item .quantity-control {
  width: 100px;
  min-height: 38px;
}

.summary-card {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  padding: 28px;
  color: var(--deep);
  background: var(--paper);
  border: 1px solid var(--line);
}

.summary-card h2 {
  margin-bottom: 26px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 500;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  color: rgba(29, 33, 27, .58);
  font-size: 11px;
}

.summary-row--total {
  margin-top: 10px;
  padding-top: 18px;
  color: var(--deep);
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
}

.summary-card .button {
  width: 100%;
  margin-top: 24px;
}

.compatibility-note {
  margin-top: 18px;
  padding: 14px;
  color: var(--copper-dark);
  background: rgba(150, 102, 72, .1);
  font-size: 10px;
}

.cart-empty {
  min-height: 440px;
  display: grid;
  place-items: center;
  padding: 60px 20px;
  border: 1px solid var(--line);
  text-align: center;
}

.cart-empty__inner {
  max-width: 480px;
}

.cart-empty h2 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 400;
}

.cart-empty p {
  margin-bottom: 28px;
  color: rgba(29, 33, 27, .5);
}

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 50px;
  border-top: 1px solid var(--line);
}

.checkout-step {
  display: flex;
  gap: 12px;
  padding: 16px 12px 0 0;
  color: rgba(29, 33, 27, .42);
  border-top: 2px solid transparent;
  font-size: 10px;
  letter-spacing: .04em;
}

.checkout-step.is-active,
.checkout-step.is-done {
  color: var(--deep);
  border-top-color: var(--copper);
}

.checkout-step span {
  color: var(--copper);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}

.checkout-panel h2 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
}

.checkout-panel > p {
  margin-bottom: 30px;
  color: rgba(29, 33, 27, .54);
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 38px;
}

.choice-card {
  min-height: 150px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.choice-card:hover,
.choice-card.is-active {
  color: #fff;
  border-color: var(--deep);
  background: var(--deep);
}

.choice-card svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.choice-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.choice-card span {
  display: block;
  margin-top: 4px;
  color: rgba(29, 33, 27, .52);
  font-size: 9px;
}

.choice-card.is-active span,
.choice-card:hover span {
  color: rgba(255, 255, 255, .58);
}

.form-section {
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.form-section__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
}

.form-section__heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.form-section__heading span {
  color: rgba(29, 33, 27, .42);
  font-size: 8px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--deep);
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, .35);
}

.field textarea {
  min-height: 100px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--copper);
  outline: 0;
}

.field small {
  color: rgba(29, 33, 27, .45);
  font-size: 8px;
}

.checkout-actions {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
}

.checkout-summary {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.checkout-summary h2 {
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}

.checkout-summary__items {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}

.checkout-summary__item {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 11px;
  align-items: center;
}

.checkout-summary__item img {
  width: 54px;
  height: 65px;
  object-fit: cover;
}

.checkout-summary__item h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.checkout-summary__item p {
  margin: 3px 0 0;
  color: rgba(29, 33, 27, .45);
  font-size: 8px;
}

.checkout-summary__item strong {
  font-size: 10px;
}

.mock-payment {
  padding: 20px;
  background: #f7f8fb;
  border: 1px solid #dcdfe8;
}

.mock-payment__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.mock-payment__brand {
  color: #635bff;
  font-size: 13px;
  font-weight: 600;
}

.mock-payment__secure {
  color: #6a6c75;
  font-size: 9px;
}

.mock-payment__card {
  display: grid;
  grid-template-columns: 1fr 90px 70px;
  min-height: 48px;
  background: #fff;
  border: 1px solid #c9ccd6;
  border-radius: 5px;
  overflow: hidden;
}

.mock-payment__card span {
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: #777985;
  border-right: 1px solid #dcdfe8;
  font-size: 10px;
}

.mock-payment__card span:last-child {
  border-right: 0;
}

.mock-payment p {
  margin: 14px 0 0;
  color: #777985;
  font-size: 8px;
}

.success-page {
  min-height: calc(100vh - var(--prototype-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--paper);
}

.success-visual {
  position: relative;
  min-height: 680px;
}

.success-visual img,
.success-visual::after {
  position: absolute;
  inset: 0;
  height: 100%;
}

.success-visual img {
  object-fit: cover;
}

.success-visual::after {
  content: "";
  background: linear-gradient(0deg, rgba(16, 19, 16, .45), transparent 55%);
}

.success-visual__brand {
  position: absolute;
  z-index: 2;
  bottom: 45px;
  left: 45px;
  color: #fff;
}

.success-content {
  display: grid;
  align-content: center;
  padding: clamp(50px, 8vw, 120px);
}

.success-check {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: #fff;
  background: var(--success);
  border-radius: 50%;
  font-size: 22px;
}

.success-content h1 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 86px);
  font-weight: 400;
  line-height: .88;
}

.success-content > p {
  max-width: 520px;
  color: rgba(29, 33, 27, .55);
}

.success-order {
  margin: 30px 0;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.success-order__row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 6px 0;
  font-size: 10px;
}

.success-order__row span {
  color: rgba(29, 33, 27, .5);
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
  gap: clamp(50px, 9vw, 140px);
}

.content-aside {
  position: sticky;
  top: calc(var(--header-h) + 40px);
  align-self: start;
}

.content-body {
  max-width: 780px;
}

.content-body h2 {
  margin: 48px 0 16px;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
}

.content-body h2:first-child {
  margin-top: 0;
}

.content-body p {
  color: rgba(29, 33, 27, .62);
}

.content-body ul {
  padding-left: 18px;
  color: rgba(29, 33, 27, .62);
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 40px;
  background: var(--line);
  border: 1px solid var(--line);
}

.contact-card__item {
  min-height: 150px;
  padding: 25px;
  background: var(--paper);
}

.contact-card__item span {
  display: block;
  margin-bottom: 12px;
  color: var(--copper);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-card__item strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

/* Admin */
.admin-app {
  min-height: calc(100vh - var(--prototype-h));
  color: #20251f;
  background: #f2f3ef;
}

.admin-shell {
  min-height: calc(100vh - var(--prototype-h));
  display: grid;
  grid-template-columns: 252px minmax(0, 1fr);
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: calc(100vh - var(--prototype-h));
  display: flex;
  flex-direction: column;
  padding: 30px 20px 22px;
  color: rgba(255, 255, 255, .7);
  background: var(--deep);
}

.admin-sidebar .brand {
  margin: 0 10px 42px;
  color: #fff;
}

.admin-sidebar .brand__copy small {
  color: #c49a7f;
}

.admin-nav {
  display: grid;
  gap: 5px;
}

.admin-nav__label {
  margin: 20px 12px 8px;
  color: rgba(255, 255, 255, .32);
  font-size: 8px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.admin-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 13px;
  border-radius: 4px;
  font-size: 11px;
  transition: color .2s ease, background .2s ease;
}

.admin-nav a:hover,
.admin-nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, .09);
}

.admin-nav svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.admin-sidebar__profile {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: auto;
  padding: 18px 10px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.admin-avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--deep);
  background: #d3b49f;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 600;
}

.admin-sidebar__profile strong {
  display: block;
  color: #fff;
  font-size: 10px;
  font-weight: 500;
}

.admin-sidebar__profile span {
  display: block;
  color: rgba(255, 255, 255, .43);
  font-size: 8px;
}

.admin-main {
  min-width: 0;
  padding: 0 clamp(22px, 4vw, 60px) 60px;
}

.admin-topbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(29, 33, 27, .1);
}

.admin-topbar__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(29, 33, 27, .12);
  background: transparent;
}

.admin-topbar p {
  margin: 0;
  color: rgba(29, 33, 27, .48);
  font-size: 10px;
}

.admin-topbar strong {
  color: var(--deep);
}

.admin-topbar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-topbar__actions .button {
  min-height: 42px;
}

.admin-page {
  padding-top: 38px;
}

.admin-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.admin-heading h1 {
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
}

.admin-heading p {
  margin: 0;
  color: rgba(29, 33, 27, .5);
  font-size: 10px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.stat-card {
  min-height: 142px;
  display: grid;
  align-content: space-between;
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(29, 33, 27, .08);
}

.stat-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(29, 33, 27, .5);
  font-size: 9px;
}

.stat-card__icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--copper);
  background: rgba(150, 102, 72, .1);
  border-radius: 50%;
}

.stat-card__icon svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
}

.stat-card strong {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
}

.stat-card small {
  color: var(--success);
  font-size: 8px;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 18px;
}

.admin-card {
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(29, 33, 27, .08);
}

.admin-card__header {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(29, 33, 27, .08);
}

.admin-card__header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.admin-card__header a,
.admin-card__header button {
  padding: 5px 0;
  color: var(--copper);
  border: 0;
  background: none;
  cursor: pointer;
  font-size: 9px;
}

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

.admin-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 10px;
}

.admin-table th,
.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(29, 33, 27, .07);
  text-align: left;
  white-space: nowrap;
}

.admin-table th {
  color: rgba(29, 33, 27, .42);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.admin-table tr:last-child td {
  border-bottom: 0;
}

.admin-table tbody tr {
  cursor: pointer;
  transition: background .2s ease;
}

.admin-table tbody tr:hover {
  background: #f8f7f4;
}

.table-customer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.table-avatar {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--copper-dark);
  background: #ede1d9;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 600;
}

.table-customer strong {
  display: block;
  font-size: 10px;
  font-weight: 600;
}

.table-customer span {
  display: block;
  color: rgba(29, 33, 27, .42);
  font-size: 8px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  color: #536556;
  background: #eaf0ea;
  border-radius: 30px;
  font-size: 8px;
  font-weight: 600;
}

.status-pill::before {
  width: 5px;
  height: 5px;
  content: "";
  background: currentColor;
  border-radius: 50%;
}

.status-pill--new {
  color: #75553f;
  background: #f3eae4;
}

.status-pill--preparing {
  color: #846239;
  background: #f7efdf;
}

.status-pill--ready {
  color: #46606b;
  background: #e6eff2;
}

.status-pill--complete {
  color: #536556;
  background: #eaf0ea;
}

.status-pill--cancelled,
.status-pill--refunded {
  color: #8a4a45;
  background: #f7e8e6;
}

.activity-list {
  display: grid;
  padding: 6px 20px 18px;
}

.activity-item {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  padding: 14px 0;
}

.activity-item:not(:last-child)::after {
  position: absolute;
  top: 42px;
  bottom: -2px;
  left: 13px;
  width: 1px;
  content: "";
  background: rgba(29, 33, 27, .1);
}

.activity-item__icon {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--copper);
  background: #f4ece7;
  border-radius: 50%;
  font-size: 10px;
}

.activity-item p {
  margin: 0;
  font-size: 9px;
  line-height: 1.45;
}

.activity-item strong {
  font-weight: 600;
}

.activity-item span {
  display: block;
  margin-top: 4px;
  color: rgba(29, 33, 27, .38);
  font-size: 8px;
}

.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.admin-search {
  position: relative;
  width: min(100%, 360px);
}

.admin-search input {
  width: 100%;
  height: 42px;
  padding: 0 12px 0 38px;
  border: 1px solid rgba(29, 33, 27, .12);
  background: #fff;
}

.admin-search svg {
  position: absolute;
  top: 13px;
  left: 13px;
  width: 15px;
  fill: none;
  stroke: rgba(29, 33, 27, .5);
}

.admin-filters {
  display: flex;
  gap: 6px;
  overflow-x: auto;
}

.admin-filter {
  min-height: 36px;
  padding: 7px 11px;
  border: 1px solid rgba(29, 33, 27, .1);
  background: #fff;
  cursor: pointer;
  font-size: 8px;
  white-space: nowrap;
}

.admin-filter.is-active {
  color: #fff;
  border-color: var(--deep);
  background: var(--deep);
}

.product-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-cell img {
  width: 42px;
  height: 48px;
  object-fit: cover;
}

.product-cell strong {
  display: block;
  font-size: 10px;
}

.product-cell span {
  display: block;
  color: rgba(29, 33, 27, .4);
  font-size: 8px;
}

.toggle {
  position: relative;
  width: 34px;
  height: 20px;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: #c8ccc6;
  cursor: pointer;
  transition: background .2s ease;
}

.toggle::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  content: "";
  background: #fff;
  border-radius: 50%;
  transition: transform .25s var(--ease);
}

.toggle.is-on {
  background: var(--success);
}

.toggle.is-on::after {
  transform: translateX(14px);
}

.order-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  align-items: start;
}

.order-overview {
  display: grid;
  gap: 18px;
}

.order-status-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 26px 24px;
}

.order-status-step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 9px;
  color: rgba(29, 33, 27, .35);
  text-align: center;
  font-size: 8px;
}

.order-status-step:not(:last-child)::after {
  position: absolute;
  z-index: 0;
  top: 10px;
  left: 54%;
  width: 92%;
  height: 1px;
  content: "";
  background: rgba(29, 33, 27, .13);
}

.order-status-step i {
  position: relative;
  z-index: 1;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(29, 33, 27, .18);
  border-radius: 50%;
  background: #fff;
  font-style: normal;
}

.order-status-step.is-done,
.order-status-step.is-active {
  color: var(--deep);
}

.order-status-step.is-done i,
.order-status-step.is-active i {
  color: #fff;
  border-color: var(--success);
  background: var(--success);
}

.order-status-step.is-done:not(:last-child)::after {
  background: var(--success);
}

.order-items-admin {
  padding: 6px 20px 20px;
}

.order-item-admin {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(29, 33, 27, .08);
}

.order-item-admin:last-child {
  border-bottom: 0;
}

.order-item-admin img {
  width: 60px;
  height: 68px;
  object-fit: cover;
}

.order-item-admin h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

.order-item-admin p {
  margin: 3px 0 0;
  color: rgba(29, 33, 27, .45);
  font-size: 8px;
}

.order-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(29, 33, 27, .08);
}

.order-info-block {
  min-height: 160px;
  padding: 20px;
  background: #fff;
}

.order-info-block h3 {
  margin-bottom: 15px;
  color: rgba(29, 33, 27, .42);
  font-size: 8px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.order-info-block strong {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
}

.order-info-block p {
  margin: 0;
  color: rgba(29, 33, 27, .56);
  font-size: 9px;
}

.order-sidebar {
  display: grid;
  gap: 18px;
}

.order-actions-card {
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(29, 33, 27, .08);
}

.order-actions-card h2 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.order-actions-card .button {
  width: 100%;
  min-height: 44px;
  margin-top: 8px;
}

.order-actions-card textarea {
  width: 100%;
  min-height: 90px;
  padding: 10px;
  border: 1px solid rgba(29, 33, 27, .12);
  resize: vertical;
}

.admin-login {
  min-height: calc(100vh - var(--prototype-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.admin-login__visual {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}

.admin-login__visual img,
.admin-login__visual::after {
  position: absolute;
  inset: 0;
  height: 100%;
}

.admin-login__visual img {
  object-fit: cover;
}

.admin-login__visual::after {
  content: "";
  background: linear-gradient(0deg, rgba(20, 23, 19, .63), transparent 60%);
}

.admin-login__visual-copy {
  position: absolute;
  z-index: 2;
  right: 50px;
  bottom: 50px;
  left: 50px;
  color: #fff;
}

.admin-login__visual-copy h1 {
  max-width: 600px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 400;
  line-height: .9;
}

.admin-login__form {
  display: grid;
  align-content: center;
  padding: clamp(45px, 8vw, 130px);
  background: var(--paper);
}

.admin-login__form .brand {
  margin-bottom: 65px;
}

.admin-login__form h2 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
}

.admin-login__form > p {
  margin-bottom: 30px;
  color: rgba(29, 33, 27, .52);
}

.admin-login__form .field {
  margin-bottom: 16px;
}

.admin-login__form .button {
  width: 100%;
  margin-top: 8px;
}

.demo-credentials {
  margin-top: 22px;
  padding: 13px;
  color: rgba(29, 33, 27, .55);
  background: rgba(150, 102, 72, .08);
  font-size: 9px;
}

.modal-backdrop {
  position: fixed;
  z-index: 140;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(16, 19, 16, .68);
  backdrop-filter: blur(4px);
}

.modal {
  width: min(100%, 680px);
  max-height: min(90vh, 800px);
  overflow-y: auto;
  padding: 30px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.modal__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.modal__header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
}

.modal__close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  margin-top: 24px;
}

#toast-root {
  position: fixed;
  z-index: 200;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 10px;
  pointer-events: none;
}

.toast {
  width: min(360px, calc(100vw - 40px));
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  color: #fff;
  background: var(--deep);
  box-shadow: 0 14px 45px rgba(0, 0, 0, .22);
  animation: toast-in .35s var(--ease) both;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
}

.toast__icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--deep);
  background: #d7bba8;
  border-radius: 50%;
}

.toast strong {
  display: block;
  font-size: 10px;
  font-weight: 600;
}

.toast span {
  display: block;
  color: rgba(255, 255, 255, .58);
  font-size: 8px;
}

@media (max-width: 1120px) {
  .prototype-bar {
    position: sticky;
    top: 0;
    z-index: 120;
  }

  .site-header {
    top: var(--prototype-h);
    z-index: 115;
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .menu-button {
    display: inline-grid;
  }

  .home-hero__content {
    padding-bottom: 104px;
  }

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

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

  .occasion-link:nth-child(2n) {
    border-right: 0;
  }

  .occasion-link:nth-child(odd) {
    border-right: 1px solid var(--line-light);
  }

  .product-detail {
    grid-template-columns: minmax(0, 1fr) 440px;
  }

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

  .product-gallery__item,
  .product-gallery__item:first-child {
    grid-column: auto;
    min-height: 620px;
  }

  .product-buy {
    padding: 55px 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  :root {
    --header-h: 68px;
  }

  .prototype-bar {
    padding: 0 14px;
  }

  .prototype-bar > span {
    display: none;
  }

  .site-header {
    padding: 0 16px;
  }

  .brand__copy strong {
    font-size: 21px;
  }

  .header-actions .icon-button[aria-label="Търсене"] {
    display: none;
  }

  .home-hero__content {
    padding-top: 74px;
  }

  .home-hero__main {
    width: min(100%, 720px);
  }

  .home-hero__index {
    display: none;
  }

  .home-intro {
    grid-template-columns: 1fr;
  }

  .home-intro__aside {
    max-width: 600px;
  }

  .world-grid {
    grid-template-columns: 1fr;
  }

  .world-card {
    min-height: 680px;
  }

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

  .service-strip {
    grid-template-columns: 1fr;
  }

  .service-strip__item {
    min-height: 130px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .footer__main {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

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

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

  .product-gallery__item:first-child {
    grid-column: 1 / -1;
  }

  .product-buy {
    min-height: auto;
  }

  .cart-layout,
  .checkout-layout,
  .order-detail-grid {
    grid-template-columns: 1fr;
  }

  .summary-card,
  .checkout-summary {
    position: static;
  }

  .checkout-summary {
    grid-row: 1;
  }

  .success-page {
    grid-template-columns: 1fr;
  }

  .success-visual {
    min-height: 450px;
  }

  .content-layout {
    grid-template-columns: 1fr;
  }

  .content-aside {
    position: static;
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: fixed;
    z-index: 120;
    inset: var(--prototype-h) auto 0 0;
    width: 260px;
    height: auto;
    transform: translateX(-100%);
    transition: transform .35s var(--ease);
  }

  .admin-sidebar.is-open {
    transform: none;
  }

  .admin-mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .admin-login {
    grid-template-columns: 1fr;
  }

  .admin-login__visual {
    display: none;
  }
}

@media (max-width: 620px) {
  .container,
  .container--narrow,
  .home-hero__content {
    width: min(100% - 28px, 1320px);
  }

  .prototype-bar {
    font-size: 8px;
  }

  .prototype-switch a {
    padding: 4px 7px;
  }

  .brand__copy small {
    display: none;
  }

  .home-hero__media img {
    object-position: 58% center;
  }

  .home-hero__content {
    height: 100%;
    align-content: end;
    padding: 42px 0 110px;
  }

  .home-hero .display-title {
    font-size: clamp(43px, 13.5vw, 62px);
    line-height: .9;
  }

  .home-hero .display-title em,
  .home-hero__lead,
  .home-hero__actions {
    margin-left: 0;
  }

  .home-hero__lead {
    margin: 18px 0;
    font-size: 13px;
    line-height: 1.55;
  }

  .home-hero__actions {
    align-items: center;
    flex-direction: row;
    gap: 20px;
  }

  .home-hero__actions .button {
    width: auto;
  }

  .home-hero__actions .text-link {
    align-self: start;
  }

  .home-hero__bottom {
    bottom: 22px;
    gap: 18px;
  }

  .home-hero__bottom .hero-note {
    display: none;
  }

  .world-card {
    min-height: 560px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .product-grid {
    gap: 24px 10px;
  }

  .product-card__quick {
    opacity: 1;
    transform: none;
  }

  .product-card__name {
    font-size: 19px;
  }

  .product-card__price {
    font-size: 10px;
  }

  .occasion-link {
    min-height: 150px;
    padding: 18px 12px;
  }

  .occasion-link strong {
    font-size: 23px;
  }

  .footer__main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer__brand {
    grid-column: auto;
  }

  .footer__bottom {
    align-items: start;
    flex-direction: column;
  }

  .page-hero__copy {
    width: min(100% - 28px, 1320px);
    padding: 44px 0 28px;
  }

  .page-hero__copy .display-title {
    font-size: clamp(48px, 15vw, 72px);
  }

  .page-hero__copy p {
    max-width: 92%;
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.55;
  }

  .page-hero--bouquets .page-hero__media img {
    object-position: 59% center;
  }

  .page-hero--nursery .page-hero__media img {
    object-position: 64% center;
  }

  .catalogue-toolbar {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .catalogue-sort select,
  .catalogue-search {
    width: 100%;
    max-width: none;
  }

  .product-gallery {
    display: block;
  }

  .product-gallery__item,
  .product-gallery__item:first-child {
    min-height: 510px;
  }

  .product-gallery__item:not(:first-child) {
    display: none;
  }

  .product-buy {
    padding: 45px 18px 70px;
  }

  .product-buy h1 {
    font-size: 53px;
  }

  .option-buttons {
    grid-template-columns: 1fr;
  }

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

  .page-heading {
    align-items: start;
    flex-direction: column;
  }

  .cart-item {
    grid-template-columns: 92px 1fr;
    gap: 15px;
  }

  .cart-item__side {
    grid-column: 2;
    min-width: 0;
    grid-template-columns: auto 1fr;
    align-items: center;
    justify-items: start;
    gap: 20px;
  }

  .choice-grid,
  .form-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .checkout-steps {
    gap: 6px;
  }

  .checkout-step {
    font-size: 8px;
  }

  .checkout-step span {
    display: none;
  }

  .checkout-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .mock-payment__card {
    grid-template-columns: 1fr;
  }

  .mock-payment__card span {
    min-height: 44px;
    border-right: 0;
    border-bottom: 1px solid #dcdfe8;
  }

  .mock-payment__card span:last-child {
    border-bottom: 0;
  }

  .success-content {
    padding: 50px 22px 80px;
  }

  .admin-main {
    padding-inline: 14px;
  }

  .admin-topbar__actions .button--outline {
    display: none;
  }

  .admin-heading {
    align-items: start;
    flex-direction: column;
  }

  .admin-heading .button {
    width: 100%;
  }

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

  .stat-card {
    min-height: 125px;
    padding: 15px;
  }

  .admin-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-search {
    width: 100%;
  }

  .order-status-steps {
    overflow-x: auto;
    grid-template-columns: repeat(5, 100px);
  }

  .order-info-grid {
    grid-template-columns: 1fr;
  }

  .modal {
    padding: 22px 16px;
  }
}

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