:root {
  --bg: #f4efe6;
  --surface: rgba(255, 250, 241, 0.78);
  --surface-strong: #fffaf1;
  --ink: #2d211b;
  --muted: #75655c;
  --accent: #bb8d56;
  --accent-dark: #806240;
  --line: rgba(45, 33, 27, 0.12);
  --shadow: 0 24px 70px rgba(45, 33, 27, 0.12);
  --banner-bg: #060606;
  --ribbon: #f3eee2;
  --ribbon-border: rgba(128, 98, 64, 0.22);
  --logo-tile: #f7f1e8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(187, 141, 86, 0.12), transparent 26%),
    linear-gradient(180deg, #faf5eb 0%, var(--bg) 60%, #efe7dc 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 75%);
  pointer-events: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

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

.section-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
}

.text-link {
  color: var(--ink);
  text-decoration: none;
}

.text-link,
.auth-inline-link {
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.text-link:hover {
  color: var(--accent-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff9f2;
  padding: 0.95rem 1.35rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.button-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.button-outline:hover {
  color: #fff9f2;
}

.one-page {
  padding-bottom: 4rem;
}

.featured-video {
  padding-top: 1.2rem;
  padding-bottom: 1rem;
}

.featured-video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 250, 241, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
}

.featured-video-media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}

.is-menu-open {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0;
  backdrop-filter: blur(14px);
}

.banner-shell {
  width: min(1250px, 100%);
  margin: 0 auto;
  padding-top: env(safe-area-inset-top, 0);
}

.banner-ribbon {
  position: relative;
  min-height: 4.8rem;
  background: linear-gradient(90deg, #f4efdf 0%, var(--ribbon) 30%, #f8f3e9 50%, var(--ribbon) 72%, #f4efdf 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  border-bottom: 1px solid rgba(128, 98, 64, 0.1);
  gap: 0.8rem;
}

.menu-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(22, 16, 10, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.menu-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.menu-drawer-panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(35vw, calc(100vw - 1rem));
  min-width: min(320px, 100vw);
  max-width: 560px;
  background: linear-gradient(180deg, #fbf8ef 0%, #f8f3e7 100%);
  padding: 0.5rem 0 0.9rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: visible;
  overscroll-behavior: contain;
  box-shadow: 20px 0 50px rgba(34, 24, 16, 0.12);
  transform: translateX(-100%);
  transition: transform 220ms ease;
  padding-top: max(0.5rem, env(safe-area-inset-top, 0));
  padding-bottom: max(0.9rem, env(safe-area-inset-bottom, 0));
}

.menu-drawer.is-open .menu-drawer-panel {
  transform: translateX(0);
}

.menu-close {
  width: 3rem;
  height: 3rem;
  margin-top: 0;
  margin-left: 0;
  border: 0;
  background: transparent;
  color: #b1843a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-link-button {
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.menu-close-icon,
.menu-close-icon::before {
  content: "";
  position: absolute;
  width: 1.15rem;
  height: 1.25px;
  background: currentColor;
  border-radius: 999px;
}

.menu-close-icon {
  transform: rotate(45deg);
}

.menu-close-icon::before {
  transform: rotate(90deg);
  left: 0;
  top: 0;
}

.menu-nav {
  display: grid;
  gap: 0.72rem;
  padding: 0.55rem 1.45rem 1rem 2.1rem;
}

.menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
  width: 100%;
  text-decoration: none;
  color: #5a483e;
  font-size: clamp(0.96rem, 0.98vw, 1.15rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.menu-link span:first-child {
  max-width: 18ch;
}

.menu-link-featured span:first-child {
  max-width: 16ch;
}

.menu-arrow {
  flex: 0 0 auto;
  width: 0.7rem;
  height: 0.7rem;
  border-right: 1.8px solid #b1843a;
  border-top: 1.8px solid #b1843a;
  transform: rotate(45deg);
  margin-right: 1.45rem;
}

.menu-link:hover {
  color: #3d2f28;
}

.submenu-panel {
  position: absolute;
  top: 0;
  left: 100%;
  bottom: 0;
  width: 100%;
  background: linear-gradient(180deg, #fbf8ef 0%, #f8f3e7 100%);
  border-left: 1px solid rgba(184, 129, 34, 0.14);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  box-shadow: 20px 0 50px rgba(34, 24, 16, 0.08);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.submenu-panel.is-open {
  opacity: 1;
  pointer-events: auto;
}

.submenu-content {
  padding: 0.6rem 1.6rem 1.2rem 1.55rem;
}

.submenu-close {
  margin-top: 0;
  margin-left: 0;
}

.submenu-title {
  margin: 2.2rem 0 2rem;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: #3d2f28;
}

.submenu-group {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 2.4rem;
}

.submenu-heading,
.submenu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  color: #73665e;
  text-align: left;
  text-decoration: none;
  font: inherit;
}

.submenu-heading {
  color: #4c3d34;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.submenu-item {
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.28;
  cursor: pointer;
}

.submenu-item-link {
  color: #b49a59;
}

.submenu-chevron {
  flex: 0 0 auto;
  width: 0.62rem;
  height: 0.62rem;
  border-right: 1.5px solid #c4a458;
  border-top: 1.5px solid #c4a458;
  transform: rotate(45deg);
}

.submenu-plus {
  position: relative;
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
}

.submenu-plus::before,
.submenu-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #c4a458;
  transform: translate(-50%, -50%);
}

.submenu-plus::before {
  width: 1rem;
  height: 1px;
}

.submenu-plus::after {
  width: 1px;
  height: 1rem;
}

.menu-utility {
  padding: 0;
}

.menu-utility-line {
  height: 1px;
  background: rgba(184, 129, 34, 0.16);
}

.menu-utility-links {
  display: grid;
  gap: 0.7rem;
  padding: 0.8rem 1.45rem 0 2.1rem;
}

.menu-utility-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: #6a574d;
  text-decoration: none;
  font-size: 0.8rem;
  line-height: 1.08;
}

button.menu-utility-link,
button.footer-account-link {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.menu-utility-icon {
  width: 1.8rem;
  height: 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2a211b;
  position: relative;
  flex: 0 0 auto;
}

.icon-user::before {
  content: "";
  position: absolute;
  top: 0.12rem;
  width: 0.62rem;
  height: 0.62rem;
  border: 1.7px solid currentColor;
  border-radius: 50%;
}

.icon-user::after {
  content: "";
  position: absolute;
  bottom: 0.22rem;
  width: 1.02rem;
  height: 0.68rem;
  border: 1.7px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.icon-heart {
  transform: rotate(-45deg);
}

.icon-heart::before,
.icon-heart::after,
.icon-heart-core {
  content: "";
  position: absolute;
  background: transparent;
}

.icon-heart::before {
  width: 0.82rem;
  height: 0.82rem;
  border: 1.8px solid currentColor;
  border-radius: 50%;
  left: 0.26rem;
  top: 0.42rem;
}

.icon-heart::after {
  width: 0.82rem;
  height: 0.82rem;
  border: 1.8px solid currentColor;
  border-radius: 50%;
  left: 0.76rem;
  top: 0.42rem;
}

.icon-heart {
  overflow: visible;
}

.icon-heart-core {
  width: 1rem;
  height: 1rem;
  border-left: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  left: 0.5rem;
  top: 0.88rem;
}

.icon-seal {
  border: 1.4px solid currentColor;
  border-radius: 50%;
  font-size: 0.46rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}

.icon-seal::before {
  content: "";
  position: absolute;
  inset: 0.18rem;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.icon-bell::before {
  content: "";
  position: absolute;
  top: 0.3rem;
  width: 0.96rem;
  height: 0.82rem;
  border: 1.7px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.icon-bell::after {
  content: "";
  position: absolute;
  bottom: 0.42rem;
  width: 1.15rem;
  height: 1.7px;
  background: currentColor;
  box-shadow: 0 0.24rem 0 currentColor;
}

.icon-bell {
  overflow: visible;
}

.icon-bell-clapper {
  position: absolute;
  width: 0.14rem;
  height: 0.14rem;
  border-radius: 50%;
  background: currentColor;
  bottom: 0.24rem;
}

.icon-phone::before {
  content: "";
  position: absolute;
  inset: 0.28rem 0.38rem 0.32rem;
  border: 1.7px solid currentColor;
  border-radius: 0.12rem;
}

.icon-phone::after {
  content: "";
  position: absolute;
  top: 0.48rem;
  left: 50%;
  width: 0.5rem;
  height: 0.08rem;
  background: currentColor;
  transform: translateX(-50%);
  box-shadow:
    0 0.28rem 0 currentColor,
    -0.32rem 0.58rem 0 currentColor,
    0 0.58rem 0 currentColor,
    0.32rem 0.58rem 0 currentColor,
    -0.32rem 0.88rem 0 currentColor,
    0 0.88rem 0 currentColor,
    0.32rem 0.88rem 0 currentColor;
}

.menu-account-link {
  gap: 1.1rem;
}

.menu-account-copy {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.menu-account-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.92rem;
  font-style: italic;
  font-weight: 700;
  color: #6a5444;
}

.menu-account-divider {
  color: #8d7b72;
}

.menu-account-signin {
  color: inherit;
  font: inherit;
  text-decoration: none;
}

.banner-left,
.banner-right {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  min-width: 0;
  flex: 1 1 0;
  position: relative;
  z-index: 1;
}

.banner-right {
  justify-content: flex-end;
  gap: 0.7rem;
  flex-wrap: nowrap;
}

.account-chip {
  border: 1px solid rgba(128, 98, 64, 0.18);
  background: rgba(255, 250, 241, 0.78);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}

.account-chip:hover {
  background: rgba(255, 250, 241, 0.94);
}

.icon-button,
.bag-link {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;
}

.icon-button:focus-visible,
.bag-link:focus-visible,
.account-chip:focus-visible,
.menu-link:focus-visible,
.menu-utility-link:focus-visible,
.locale-switch:focus-visible,
.locale-option:focus-visible,
.submenu-heading:focus-visible,
.submenu-item:focus-visible {
  outline: 2px solid rgba(184, 129, 34, 0.65);
  outline-offset: 3px;
}

.banner-left .menu-button {
  margin-right: 0.2rem;
}

.banner-left .search-button {
  margin-left: 0;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 1.3rem;
  height: 1.5px;
  background: currentColor;
  border-radius: 999px;
  content: "";
}

.menu-icon {
  position: relative;
}

.menu-icon::before {
  position: absolute;
  top: -0.42rem;
}

.menu-icon::after {
  position: absolute;
  top: 0.42rem;
}

.search-icon {
  width: 0.95rem;
  height: 0.95rem;
  border: 1.6px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.search-icon::after {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 1.6px;
  background: currentColor;
  right: -0.33rem;
  bottom: -0.18rem;
  transform: rotate(45deg);
  transform-origin: center;
  border-radius: 999px;
}

.banner-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 9.9rem;
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  padding: 0;
  text-decoration: none;
  color: var(--ink);
  z-index: 2;
  overflow: hidden;
  box-shadow: none;
}

.banner-logo::before {
  content: none;
}

.logo-oval,
.logo-title-stack {
  position: absolute;
}

.logo-oval {
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.logo-oval-outer {
  width: 100%;
  height: 100%;
  border: 1.6px solid #b1843a;
}

.logo-oval-inner {
  width: 97.2%;
  height: 98%;
  border: 1.5px solid #b1843a;
}

.logo-title-stack {
  left: 50%;
  top: 0.72rem;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  color: #213828;
  text-transform: uppercase;
  white-space: nowrap;
  width: 80%;
}

.logo-word {
  font-family: "Cormorant Garamond", serif;
  font-weight: 900;
  line-height: 0.76;
  text-rendering: geometricPrecision;
  color: #122116;
  transform: scaleX(1.03);
  transform-origin: center;
  filter: contrast(1.08);
}

.logo-word-house {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.01em;
  font-size: 1.78rem;
  letter-spacing: -0.018em;
}

.logo-cup-letter {
  position: relative;
  display: inline-block;
  width: 0.78em;
  height: 0.92em;
  margin: 0 -0.01em 0 0.07em;
  transform: translateY(-0.08em);
}

.logo-cup-steam {
  position: absolute;
  top: 0.01em;
  width: 0.16em;
  height: 0.28em;
  border-left: 0.06em solid #d4af37;
  border-radius: 60% 40% 55% 45%;
  opacity: 0.92;
}

.logo-cup-steam-one {
  left: 36%;
  height: 0.34em;
  transform: rotate(24deg);
}

.logo-cup-steam-two {
  left: 55%;
  top: 0.14em;
  height: 0.28em;
  transform: rotate(-18deg);
}

.logo-cup-bowl {
  position: absolute;
  left: 4%;
  top: 38%;
  width: 67%;
  height: 43%;
  border: 0.075em solid #d4af37;
  border-top-width: 0.09em;
  border-radius: 10% 10% 48% 48%;
  background: rgba(212, 175, 55, 0.16);
}

.logo-cup-bowl::before {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  top: -0.075em;
  height: 0.12em;
  border: 0.045em solid #d4af37;
  border-top-color: #d4af37;
  border-bottom-color: rgba(212, 175, 55, 0.45);
  border-radius: 999px;
  background: #f7f1e1;
}

.logo-cup-saucer {
  position: absolute;
  left: 20%;
  bottom: 3%;
  width: 42%;
  height: 0.075em;
  border-radius: 999px;
  background: #d4af37;
}

.logo-letter-u {
  margin-left: -0.08em;
}

.logo-word-center {
  display: flex;
  align-items: center;
  gap: 0.18rem;
  margin: 0.02rem 0 0.01rem;
}

.title-line {
  width: 1.58rem;
  height: 1.5px;
  background: #c69643;
}

.logo-word-of {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.98rem;
  font-style: italic;
  font-weight: 900;
  text-transform: none;
  color: #b88122;
  line-height: 0.95;
  margin: 0;
  text-rendering: geometricPrecision;
}

.logo-word-tea {
  font-size: 1.62rem;
  letter-spacing: -0.018em;
}

.locale-selector {
  position: relative;
  flex: 0 0 auto;
}

.locale-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font: inherit;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: rgba(45, 33, 27, 0.9);
  border: 0;
  background: transparent;
  padding: 0.25rem 0.1rem 0.25rem 0.3rem;
  cursor: pointer;
  white-space: nowrap;
}

.flag-pill {
  background: #d7263d;
  color: #fff;
  font-size: 0.48rem;
  font-weight: 700;
  padding: 0.12rem 0.42rem;
  line-height: 1;
  border-radius: 1px;
  letter-spacing: 0.06em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.locale-divider {
  width: 1px;
  height: 0.9rem;
  background: rgba(45, 33, 27, 0.28);
}

.locale-label {
  font-weight: 500;
  font-size: 0.92rem;
}

.locale-chevron {
  width: 0.42rem;
  height: 0.42rem;
  border-right: 1.4px solid currentColor;
  border-bottom: 1.4px solid currentColor;
  transform: rotate(45deg) translateY(-0.08rem);
  opacity: 0.7;
}

.locale-menu {
  position: absolute;
  top: calc(100% + 0.7rem);
  right: 0;
  min-width: 10rem;
  max-width: min(16rem, calc(100vw - 1.5rem));
  padding: 0.45rem;
  border: 1px solid rgba(128, 98, 64, 0.14);
  background: rgba(255, 250, 241, 0.96);
  box-shadow: 0 14px 32px rgba(45, 33, 27, 0.14);
  backdrop-filter: blur(16px);
  display: none;
  z-index: 5;
}

.locale-selector.is-open .locale-menu {
  display: grid;
  gap: 0.2rem;
}

.locale-selector.is-open .locale-chevron {
  transform: rotate(225deg) translateY(-0.02rem);
}

.locale-option {
  display: grid;
  gap: 0.05rem;
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 0.55rem 0.65rem;
  cursor: pointer;
  color: var(--ink);
}

.locale-option:hover,
.locale-option:focus-visible,
.locale-option.is-selected {
  background: rgba(187, 141, 86, 0.12);
  outline: none;
}

.locale-option-market {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.locale-option-language {
  font-size: 0.8rem;
  color: var(--muted);
}

.bag-icon {
  width: 0.86rem;
  height: 1rem;
  border: 1.4px solid currentColor;
  border-top: 0;
  position: relative;
  display: inline-block;
}

.bag-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.38rem;
  width: 0.54rem;
  height: 0.4rem;
  border: 1.4px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  transform: translateX(-50%);
}

.bag-count {
  position: absolute;
  top: -0.18rem;
  right: -0.36rem;
  width: 0.92rem;
  height: 0.92rem;
  border-radius: 50%;
  border: 1px solid rgba(45, 33, 27, 0.8);
  display: grid;
  place-items: center;
  font-size: 0.52rem;
  line-height: 1;
  color: rgba(45, 33, 27, 0.88);
  background: #f8f3e9;
}

.section-shell {
  position: relative;
  padding: 2rem 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding-top: 2rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-dark);
}

h1 {
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 6.5rem);
  line-height: 0.92;
  max-width: 11ch;
}

.hero-text,
.section-heading h2,
.story-copy p,
.contact-copy p {
  max-width: 56ch;
}

.hero-text {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 1.25rem 0 0;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.75rem;
}

.hero-card,
.tea-card,
.story-panel,
.testimonial-grid blockquote,
.contact-form,
.metrics article {
  background: var(--surface);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  padding: 2rem;
  border-radius: 28px;
  overflow: hidden;
  animation: floatUp 900ms ease both;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -25% 35%;
  height: 180px;
  background: radial-gradient(circle, rgba(184, 106, 63, 0.22), transparent 70%);
}

.floating-note {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(184, 106, 63, 0.12);
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-card h2 {
  margin: 1rem 0 0.75rem;
  font-size: 2.2rem;
}

.hero-card p,
.hero-card li,
.tea-card p,
.tea-detail,
.story-panel p,
.ritual-steps p,
.contact-form,
.form-note {
  color: var(--muted);
  line-height: 1.7;
}

.hero-card ul {
  margin: 1rem 0 0;
  padding-left: 1rem;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 0.5rem;
}

.metrics article {
  border-radius: 22px;
  padding: 1.35rem 1.5rem;
}

.metrics strong {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 0.3rem;
}

.section-heading {
  margin-bottom: 1.75rem;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: 0.8fr repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  padding: 1.1rem 1.2rem;
  border-radius: 24px;
  background: rgba(255, 250, 241, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
}

.catalog-summary {
  display: grid;
  gap: 0.2rem;
  align-self: center;
  justify-self: center;
  text-align: center;
}

.catalog-summary-label {
  margin: 0;
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-summary-value {
  margin: 0;
  color: var(--ink);
  font-size: 0.96rem;
}

.catalog-controls {
  display: contents;
  gap: 0;
  justify-content: stretch;
  align-items: stretch;
}

.catalog-control {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.catalog-control select {
  width: 100%;
  border: 1px solid rgba(128, 98, 64, 0.16);
  border-radius: 16px;
  padding: 0.78rem 0.95rem;
  font: inherit;
  font-size: 0.82rem;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.85);
}

.section-intro p {
  max-width: 58ch;
}

.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1;
}

.tea-grid,
.ritual-steps,
.testimonial-grid,
.contact-section {
  display: grid;
  gap: 1.2rem;
}

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

.tea-card {
  padding: 1.5rem;
  border-radius: 24px;
}

.tea-card-loading {
  min-height: 18rem;
}

.tea-card-visual {
  position: relative;
}

.tea-tag {
  display: inline-block;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255, 250, 241, 0.88);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
}

.tea-card-badges {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: flex-start;
}

.tea-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.42rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 250, 241, 0.88);
}

.tea-badge-featured {
  color: #fff9f2;
  background: linear-gradient(135deg, #bc8f58, #8d6638);
}

.tea-badge-stock {
  margin-left: auto;
}

.tea-badge-in_stock {
  color: #30543b;
}

.tea-badge-low_stock {
  color: #8e6833;
}

.tea-badge-out_of_stock {
  color: #7c352d;
}

.tea-card-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(187, 141, 86, 0.22), rgba(255, 250, 241, 0.9));
}

.tea-card-media-fallback {
  display: grid;
  place-items: center;
  color: rgba(45, 33, 27, 0.76);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tea-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.8rem;
  margin: 0.2rem 0 0.85rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tea-card-meta span {
  position: relative;
}

.tea-card-meta span + span::before {
  content: "";
  position: absolute;
  left: -0.42rem;
  top: 50%;
  width: 0.12rem;
  height: 0.12rem;
  border-radius: 50%;
  background: rgba(184, 129, 34, 0.5);
  transform: translateY(-50%);
}

.tea-card h3,
.ritual-steps h3 {
  margin: 0 0 0.5rem;
  font-size: 2rem;
}

.tea-origin {
  margin: 0 0 0.6rem;
  color: #7a6659;
  font-size: 0.9rem;
}

.tea-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.tea-price {
  display: grid;
  gap: 0.18rem;
  align-items: start;
}

.tea-price-line {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.tea-price strong {
  font-size: 1.35rem;
  color: var(--ink);
}

.tea-price-compare {
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.tea-stock {
  color: var(--muted);
  font-size: 0.84rem;
}

.tea-toggle {
  margin-top: 1rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.tea-detail {
  display: none;
  padding-top: 0.8rem;
}

.tea-detail-grid {
  display: grid;
  gap: 0.8rem;
  padding: 1rem 1rem 0;
  border-top: 1px solid rgba(45, 33, 27, 0.08);
}

.tea-detail-grid strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.tea-detail-grid p {
  margin: 0;
}

.tea-detail.is-open {
  display: block;
}

.tea-card .button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.tea-cart-button.is-added {
  background: #30543b;
  border-color: #30543b;
  color: #fff9f2;
}

.story-band,
.split-band,
.contact-section {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.story-band,
.split-band {
  display: grid;
  gap: 1.5rem;
  padding-top: 4rem;
}

.story-band::before,
.split-band::before,
.contact-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.story-panel {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 28px;
}

.story-panel span,
.ritual-steps span {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent-dark);
  text-transform: uppercase;
}

.story-panel p {
  margin: 0.35rem 0 0;
}

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

.ritual-steps article {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

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

.testimonial-section {
  padding-top: 4rem;
}

.testimonial-grid blockquote {
  margin: 0;
  padding: 1.5rem;
  border-radius: 24px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.testimonial-stars {
  display: block;
  margin-bottom: 0.85rem;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
}

.admin-section {
  padding-top: 4rem;
}

.admin-card {
  background: var(--surface);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
  border-radius: 28px;
  padding: 1.5rem;
}

.admin-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.admin-card-copy {
  margin: 0;
  color: var(--muted);
  max-width: 55ch;
}

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

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

.admin-table th,
.admin-table td {
  padding: 0.9rem 0.8rem;
  text-align: left;
  border-bottom: 1px solid rgba(45, 33, 27, 0.08);
}

.admin-table th {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.admin-product-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 1.2rem;
  margin-top: 1.2rem;
}

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

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

.admin-product-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.admin-product-form input,
.admin-product-form select,
.admin-product-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.85rem 0.95rem;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.admin-product-form input:focus,
.admin-product-form select:focus,
.admin-product-form textarea:focus {
  outline: 2px solid rgba(184, 106, 63, 0.25);
  border-color: rgba(184, 106, 63, 0.45);
}

.admin-form-switches {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.admin-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.admin-product-feedback {
  margin: 0;
}

.admin-product-table td:last-child {
  width: 1%;
  white-space: nowrap;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 28px;
  min-width: 0;
}

.contact-auth-panel {
  display: grid;
  gap: 0.75rem;
  padding: 1rem 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(128, 98, 64, 0.12);
}

.contact-auth-kicker {
  margin: 0;
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-auth-panel h3 {
  margin: 0;
  font-size: 1.7rem;
}

.contact-auth-copy {
  margin: 0;
  color: var(--muted);
}

.contact-auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(184, 106, 63, 0.25);
  border-color: rgba(184, 106, 63, 0.45);
}

.form-note {
  margin: 0;
  font-size: 0.88rem;
}

.site-footer {
  margin-top: 5rem;
  background: linear-gradient(180deg, #fbf8ef 0%, #f8f3e7 100%);
  border-top: 1px solid rgba(184, 129, 34, 0.14);
}

.admin-page {
  min-height: 100vh;
}

.admin-shell {
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
}

.admin-topbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.4rem 0 1.6rem;
}

.admin-topbar h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 0.92;
}

.admin-topbar-copy {
  margin: 0.75rem 0 0;
  max-width: 44ch;
  color: var(--muted);
  line-height: 1.7;
}

.admin-topbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

.admin-main {
  padding-bottom: 4rem;
}

.admin-sector + .admin-sector {
  margin-top: 2rem;
}

.footer-upper,
.footer-lower {
  width: min(100%, 1880px);
  margin: 0 auto;
  padding-left: 4.25rem;
  padding-right: 4.25rem;
}

.footer-upper {
  display: grid;
  grid-template-columns: 1.15fr 1.45fr minmax(16rem, 22rem) auto;
  gap: 2.4rem;
  align-items: start;
  padding-top: 2.6rem;
  padding-bottom: 2.25rem;
}

.footer-account,
.footer-columns {
  display: grid;
  gap: 1.35rem;
}

.footer-account-link,
.footer-utility-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: #66544a;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.4;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.auth-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.auth-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 16, 10, 0.38);
  backdrop-filter: blur(8px);
}

.auth-dialog {
  position: relative;
  width: min(100%, 520px);
  max-height: min(90vh, 48rem);
  overflow-y: auto;
  padding: 1.5rem;
  border-radius: 30px;
  background: linear-gradient(180deg, #fff8ee 0%, #f4ebdf 100%);
  border: 1px solid rgba(128, 98, 64, 0.16);
  box-shadow: 0 32px 70px rgba(45, 33, 27, 0.26);
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 85;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.cart-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 16, 10, 0.28);
  backdrop-filter: blur(6px);
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 420px);
  height: 100%;
  padding: 1.5rem;
  background: linear-gradient(180deg, #fff8ee 0%, #f4ebdf 100%);
  border-left: 1px solid rgba(128, 98, 64, 0.16);
  box-shadow: -24px 0 60px rgba(45, 33, 27, 0.2);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1rem;
}

.cart-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.8rem;
  height: 2.8rem;
  border: 0;
  background: transparent;
  color: #b1843a;
  cursor: pointer;
}

.cart-header h2 {
  margin: 0;
  font-size: 2.4rem;
  line-height: 0.95;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  overflow-y: auto;
  padding-right: 0.2rem;
}

.cart-empty {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.cart-item {
  display: grid;
  gap: 0.85rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(45, 33, 27, 0.1);
}

.cart-item h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1;
}

.cart-item p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.cart-quantity-button {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid rgba(128, 98, 64, 0.22);
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.cart-remove-button {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--accent-dark);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}

.cart-footer {
  display: grid;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(45, 33, 27, 0.12);
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-weight: 700;
}

.cart-total strong {
  color: var(--ink);
  font-size: 1.25rem;
}

.cart-feedback {
  margin: 0;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  background: rgba(187, 141, 86, 0.12);
  color: #5f4731;
  line-height: 1.5;
  font-size: 0.88rem;
}

.cart-feedback.is-error {
  background: rgba(174, 71, 54, 0.12);
  color: #7d2f24;
}

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

.support-chat {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 75;
  font-family: var(--font-body);
}

.support-chat-button {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 3.2rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(184, 129, 34, 0.42);
  border-radius: 999px;
  background: linear-gradient(135deg, #fff8ea 0%, #c3914f 100%);
  color: var(--ink);
  box-shadow: 0 18px 45px rgba(45, 33, 27, 0.18);
  cursor: pointer;
}

.support-chat-button-icon {
  position: relative;
  width: 1.35rem;
  height: 1rem;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.support-chat-button-icon::after {
  content: "";
  position: absolute;
  left: 0.2rem;
  bottom: -0.35rem;
  width: 0.45rem;
  height: 0.45rem;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-18deg);
}

.support-chat-button-text {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.support-chat-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.9rem);
  width: min(25rem, calc(100vw - 2rem));
  overflow: hidden;
  border: 1px solid rgba(128, 98, 64, 0.16);
  border-radius: 0 22px 0 0;
  background: #fbf3e6;
  box-shadow: 0 28px 70px rgba(45, 33, 27, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.support-chat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.25rem 1.05rem;
  background: linear-gradient(135deg, #fbf1df 0%, #efe2c6 100%);
  border-bottom: 1px solid rgba(128, 98, 64, 0.12);
}

.support-chat-header .eyebrow {
  margin-bottom: 0.35rem;
  color: #8d6a3f;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
}

.support-chat-header h2 {
  margin: 0;
  max-width: 14rem;
  font-family: var(--font-body);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.support-chat-close {
  width: 2rem;
  height: 2rem;
  margin-top: 0.2rem;
  border: 0;
  background: transparent;
  color: #bd8734;
  cursor: pointer;
}

.support-chat-messages {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 6.6rem;
  max-height: 8.4rem;
  margin: 1rem 1rem 0;
  padding: 0 1.55rem 0 0;
  overflow-y: scroll;
  scrollbar-color: #8f9292 #fffaf1;
  scrollbar-width: auto;
}

.support-chat-messages::-webkit-scrollbar {
  width: 0.85rem;
}

.support-chat-messages::-webkit-scrollbar-track {
  background: #fffaf1;
}

.support-chat-messages::-webkit-scrollbar-thumb {
  border: 0.24rem solid #fffaf1;
  border-radius: 999px;
  background: #8f9292;
}

.support-message {
  max-width: 100%;
  padding: 0.55rem 0.85rem;
  border-radius: 0;
  font-size: 1rem;
  line-height: 1.36;
}

.support-message p {
  margin: 0;
}

.support-message-bot {
  align-self: flex-start;
  background: #fffaf6;
  color: #3d302a;
}

.support-message-user {
  align-self: flex-end;
  background: #2f6b48;
  color: #fffaf1;
  font-size: 0.88rem;
  border-radius: 18px;
}

.support-chat-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0.9rem 1rem 0.75rem;
}

.support-chat-prompts button {
  border: 1px solid rgba(128, 98, 64, 0.14);
  border-radius: 999px;
  background: #fffaf6;
  color: #3d302a;
  padding: 0.58rem 0.8rem;
  font: inherit;
  font-size: 0.84rem;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(45, 33, 27, 0.06);
}

.support-whatsapp-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 1rem 0.85rem;
  padding: 0.62rem 0.8rem;
  border-radius: 999px;
  background: #2f6b48;
  color: #fffaf1;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.support-whatsapp-link:hover {
  background: #24573a;
}

.support-chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  padding: 0.7rem;
  border-top: 1px solid rgba(128, 98, 64, 0.14);
  background: rgba(244, 239, 230, 0.78);
}

.support-chat-form input {
  width: 100%;
  border: 1px solid rgba(128, 98, 64, 0.18);
  border-radius: 999px;
  background: #fffaf1;
  color: var(--ink);
  padding: 0.62rem 0.8rem;
  font: inherit;
}

.support-chat-form button {
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fffaf1;
  padding: 0.62rem 0.82rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.auth-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.8rem;
  height: 2.8rem;
  border: 0;
  background: transparent;
  color: #b1843a;
  cursor: pointer;
}

.auth-header h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 0.95;
}

.auth-description {
  margin: 0.9rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin-top: 1.35rem;
}

.auth-tab {
  border: 1px solid rgba(128, 98, 64, 0.14);
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.8rem 1rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.auth-tab.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff9f2;
}

.auth-feedback {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: rgba(187, 141, 86, 0.12);
  color: #5f4731;
  line-height: 1.6;
}

.auth-feedback.is-error {
  background: rgba(174, 71, 54, 0.12);
  color: #7d2f24;
}

.auth-form {
  display: none;
  gap: 0.9rem;
  margin-top: 1rem;
}

.auth-form.is-active {
  display: grid;
}

.auth-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.auth-helper {
  margin: -0.2rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.auth-check {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}

.auth-check input {
  width: 1rem;
  height: 1rem;
}

.auth-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
}

.auth-form input:focus {
  outline: 2px solid rgba(184, 106, 63, 0.25);
  border-color: rgba(184, 106, 63, 0.45);
}

.auth-secondary-link {
  justify-self: start;
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  font-weight: 700;
  color: var(--accent-dark);
  text-decoration: underline;
  cursor: pointer;
}

.footer-icon {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #2a211b;
  flex: 0 0 auto;
}

.footer-icon-user::before {
  content: "";
  position: absolute;
  top: 0.12rem;
  width: 0.62rem;
  height: 0.62rem;
  border: 1.7px solid currentColor;
  border-radius: 50%;
}

.footer-icon-user::after {
  content: "";
  position: absolute;
  bottom: 0.22rem;
  width: 1.02rem;
  height: 0.68rem;
  border: 1.7px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.footer-icon-heart {
  transform: rotate(-45deg);
}

.footer-icon-heart::before,
.footer-icon-heart::after,
.footer-heart-core {
  content: "";
  position: absolute;
}

.footer-icon-heart::before {
  width: 0.82rem;
  height: 0.82rem;
  border: 1.8px solid currentColor;
  border-radius: 50%;
  left: 0.26rem;
  top: 0.42rem;
}

.footer-icon-heart::after {
  width: 0.82rem;
  height: 0.82rem;
  border: 1.8px solid currentColor;
  border-radius: 50%;
  left: 0.76rem;
  top: 0.42rem;
}

.footer-heart-core {
  width: 1rem;
  height: 1rem;
  border-left: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  left: 0.5rem;
  top: 0.88rem;
}

.footer-icon-bell::before {
  content: "";
  position: absolute;
  top: 0.3rem;
  width: 0.96rem;
  height: 0.82rem;
  border: 1.7px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.footer-icon-bell::after {
  content: "";
  position: absolute;
  bottom: 0.42rem;
  width: 1.15rem;
  height: 1.7px;
  background: currentColor;
  box-shadow: 0 0.24rem 0 currentColor;
}

.footer-bell-clapper {
  position: absolute;
  width: 0.14rem;
  height: 0.14rem;
  border-radius: 50%;
  background: currentColor;
  bottom: 0.24rem;
}

.footer-account-copy {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.footer-account-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 700;
  color: #6a5444;
}

.footer-account-divider {
  color: #8d7b72;
}

.footer-account-signin {
  color: inherit;
  font: inherit;
  text-decoration: none;
}

.footer-columns {
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 4rem;
}

.footer-column {
  display: grid;
  gap: 1rem;
}

.footer-column h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #43362f;
}

.footer-column a {
  color: #b1843a;
  text-decoration: none;
  font-size: 1rem;
}

.footer-brand-logo {
  width: min(24rem, 100%);
  height: auto;
  justify-self: end;
  align-self: start;
  display: block;
  object-fit: contain;
}

.footer-top {
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  border: 1px solid rgba(184, 129, 34, 0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #b1843a;
  text-decoration: none;
  align-self: end;
}

.footer-top-arrow {
  width: 0.8rem;
  height: 0.8rem;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg) translate(0.12rem, 0.12rem);
}

.footer-lower {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  border-top: 1px solid rgba(184, 129, 34, 0.16);
}

.footer-copy {
  margin: 0;
  max-width: 56ch;
  color: #66544a;
  font-size: 0.95rem;
  line-height: 1.45;
}

.footer-socials {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-signup {
  color: #b1843a;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2rem;
  font-size: 0.95rem;
}

.footer-social {
  color: #66544a;
  text-decoration: none;
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 700;
}

.footer-social-instagram,
.footer-social-video {
  position: relative;
  width: 1.35rem;
  height: 1.35rem;
  display: inline-block;
}

.footer-social-instagram::before {
  content: "";
  position: absolute;
  inset: 0.1rem;
  border: 2px solid currentColor;
  border-radius: 0.35rem;
}

.footer-social-instagram::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.42rem;
  height: 0.42rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0.42rem -0.42rem 0 -0.28rem currentColor;
}

.footer-social-video::before {
  content: "";
  position: absolute;
  inset: 0.24rem 0.1rem;
  background: currentColor;
  border-radius: 0.25rem;
}

.footer-social-video::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 0.18rem solid transparent;
  border-bottom: 0.18rem solid transparent;
  border-left: 0.3rem solid #f7f1e1;
  transform: translate(-35%, -50%);
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .menu-drawer-panel {
    width: min(78vw, 420px);
    min-width: 0;
  }

  .submenu-panel {
    width: 100%;
  }

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

  .featured-video {
    padding-top: 0.9rem;
  }

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

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

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

  .footer-upper {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .footer-brand-logo {
    width: min(20rem, 100%);
    justify-self: start;
  }

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

  .admin-topbar-actions {
    justify-content: flex-start;
  }

  .footer-lower {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-top {
    align-self: start;
  }

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

  .catalog-controls {
    justify-content: stretch;
    width: 100%;
  }

  .catalog-control {
    min-width: min(100%, 14rem);
    flex: 1 1 12rem;
  }

  .hero,
  .story-band,
  .split-band,
  .contact-section,
  .tea-grid,
  .ritual-steps,
  .testimonial-grid,
  .metrics {
    grid-template-columns: 1fr;
  }

  .site-header {
    padding: 0;
  }

  .banner-ribbon {
    min-height: 4.6rem;
    padding: 0 0.85rem;
    gap: 0.65rem;
  }

  .menu-nav {
    padding: 0.45rem 1.15rem 0.9rem 1.55rem;
    gap: 0.72rem;
  }

  .menu-link {
    font-size: clamp(0.9rem, 2.4vw, 1.02rem);
  }

  .submenu-content {
    padding: 0.55rem 1.25rem 1rem 1.25rem;
  }

  .submenu-title {
    margin: 1.8rem 0 1.7rem;
    font-size: 0.92rem;
  }

  .menu-utility-links {
    gap: 0.7rem;
    padding: 0.72rem 1.15rem 0 1.55rem;
  }

  .banner-left,
  .banner-right {
    min-width: auto;
    gap: 0.2rem;
  }

  .banner-right {
    gap: 0.45rem;
  }

  .account-chip {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .banner-logo {
    width: 8.7rem;
    height: 100%;
  }

  .locale-switch {
    font-size: 0.8rem;
    gap: 0.28rem;
  }

  h1 {
    max-width: 100%;
  }

  .auth-dialog {
    padding: 1.2rem;
    border-radius: 24px;
  }

  .support-chat {
    right: 0.85rem;
    bottom: 0.85rem;
  }
}

@media (max-width: 560px) {
  .menu-drawer-panel {
    width: 100%;
    max-width: none;
  }

  .submenu-panel {
    left: 0;
    width: 100%;
    border-left: 0;
    box-shadow: none;
    transform: translateX(100%);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .submenu-panel.is-open {
    transform: translateX(0);
  }

  .banner-ribbon {
    min-height: 5rem;
    padding: 0 0.7rem;
    gap: 0.4rem;
  }

  .featured-video-frame {
    border-radius: 20px;
  }

  .site-footer {
    margin-top: 3.5rem;
  }

  .admin-shell {
    width: min(100%, calc(100% - 1.2rem));
  }

  .footer-upper,
  .footer-lower {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-brand-logo {
    width: min(17rem, 100%);
  }

  .footer-account-link,
  .footer-utility-link,
  .footer-column a,
  .footer-copy,
  .footer-signup {
    font-size: 0.9rem;
  }

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

  .catalog-toolbar {
    padding: 1rem;
    border-radius: 20px;
  }

  .catalog-controls {
    display: grid;
  }

  .catalog-control {
    min-width: 0;
  }

  .contact-auth-actions {
    flex-direction: column;
  }

  .contact-auth-actions > * {
    width: 100%;
  }

  .admin-table {
    min-width: 560px;
  }

  .menu-close {
    margin-left: 0.1rem;
  }

  .submenu-content {
    padding: 0.4rem 1rem 0.9rem 1rem;
  }

  .submenu-title {
    margin: 1.4rem 0 1.4rem;
    font-size: 0.82rem;
  }

  .submenu-heading {
    font-size: 0.76rem;
  }

  .submenu-item {
    font-size: 0.68rem;
  }

  .menu-nav {
    padding: 0.35rem 0.95rem 0.7rem 1.2rem;
    gap: 0.62rem;
  }

  .menu-link {
    font-size: 0.72rem;
    line-height: 1.14;
  }

  .menu-arrow {
    width: 0.56rem;
    height: 0.56rem;
    margin-right: 0.25rem;
  }

  .menu-utility-links {
    padding: 0.68rem 0.95rem 0 1.2rem;
    gap: 0.58rem;
  }

  .menu-utility-link {
    gap: 0.62rem;
    font-size: 0.74rem;
  }

  .menu-utility-icon {
    width: 1.48rem;
    height: 1.48rem;
  }

  .banner-logo {
    width: 6.25rem;
    height: 100%;
  }

  .locale-label,
  .locale-divider,
  .locale-chevron {
    display: none;
  }

  .banner-left,
  .banner-right {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
  }

  .banner-right {
    justify-content: flex-end;
  }

  .account-chip {
    padding: 0.5rem 0.7rem;
    font-size: 0.68rem;
    min-width: 0;
  }

  .search-button {
    display: none;
  }

  .locale-menu {
    right: 0;
    left: auto;
  }

  .auth-dialog {
    width: min(100%, calc(100% - 1rem));
    max-height: calc(100dvh - 1rem);
    padding: 1rem;
    border-radius: 22px;
  }

  .cart-panel {
    width: 100%;
    padding: 1rem;
  }

  .cart-header h2 {
    font-size: 2rem;
  }

  .support-chat {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    justify-items: stretch;
  }

  .support-chat-button {
    width: 100%;
    justify-content: center;
  }

  .support-chat-button-text {
    display: inline;
  }

  .support-chat-panel {
    width: min(100%, 24rem);
    max-height: min(68vh, 28rem);
  }
}

@media (max-width: 380px) {
  .banner-logo {
    width: 5.6rem;
  }

  .banner-ribbon {
    gap: 0.28rem;
  }

  .account-chip {
    padding: 0.48rem 0.58rem;
    font-size: 0.62rem;
  }

  .locale-switch {
    padding-inline: 0.55rem;
  }

  .account-chip-label {
    max-width: 5.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
