:root {
  --bg: #050814;
  --bg-2: #070b1b;
  --card: rgba(17, 22, 40, 0.85);
  --card-solid: #111628;
  --card-border: rgba(255, 255, 255, 0.08);

  --text: #f5f2e9;
  --muted: #a5a9bb;
  --muted-2: #8f93a5;

  --accent: #f5f2e9;
  --accent-ink: #111628;
  --accent-soft: #e3ddc8;
  --brand: #8ee7c2;
  --brand-2: #7cb6ff;

  --shadow: 0 18px 50px rgba(0,0,0,0.55);
  --shadow-soft: 0 10px 26px rgba(0,0,0,0.38);

  --radius: 16px;
  --radius-sm: 12px;
  --container: 1120px;

  --focus: 0 0 0 4px rgba(142, 231, 194, 0.25);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(900px 600px at 18% 8%, rgba(124, 182, 255, 0.12), transparent 55%),
    radial-gradient(800px 560px at 82% 16%, rgba(142, 231, 194, 0.10), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  color: var(--text);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.logo {
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1.05rem;
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: rgba(245, 242, 233, 0.78);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-actions {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 8, 20, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.nav a {
  margin-left: 1rem;
  font-size: 0.9rem;
  color: rgba(245, 242, 233, 0.72);
  padding: 0.4rem 0.55rem;
  border-radius: 999px;
}

.nav a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

/* HERO */
.hero {
  position: relative;
  padding: 4.2rem 0 3.6rem;
  overflow: clip;
}

.hero-bg {
  position: absolute;
  inset: -2px;
  background-image:
    radial-gradient(900px 520px at 18% 18%, rgba(142, 231, 194, 0.12), transparent 60%),
    radial-gradient(900px 520px at 82% 22%, rgba(124, 182, 255, 0.10), transparent 60%),
    url("assets/images/bg-tea.svg");
  background-size: auto, auto, 1200px;
  background-repeat: no-repeat;
  background-position: 0 0, 0 0, 70% 10%;
  opacity: 0.95;
  pointer-events: none;
  filter: saturate(1.05);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  position: relative;
}

.hero h1 {
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  font-size: clamp(2.6rem, 4.8vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 0.9rem;
  letter-spacing: 0.01em;
}

.hero-subtitle {
  color: rgba(245, 242, 233, 0.78);
  max-width: 36rem;
  font-size: 1.05rem;
  margin: 0 0 1.2rem;
}

.hero-card {
  background:
    radial-gradient(900px 320px at 30% 10%, rgba(142, 231, 194, 0.14), transparent 60%),
    radial-gradient(900px 420px at 80% 15%, rgba(124, 182, 255, 0.12), transparent 58%),
    rgba(17, 22, 40, 0.65);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 1.25rem 1.15rem;
  box-shadow: var(--shadow);
}

.hero-card-top {
  display: grid;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.hero-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 242, 233, 0.78);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

.hero-card-title {
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  font-size: 1.35rem;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.mini-card {
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(5, 8, 20, 0.35);
  padding: 0.7rem 0.75rem;
}

.mini-title {
  font-weight: 600;
  font-size: 0.92rem;
}

.mini-sub {
  color: rgba(245, 242, 233, 0.72);
  font-size: 0.85rem;
}

.hero-card-note {
  margin: 0.9rem 0 0;
  color: rgba(245, 242, 233, 0.72);
  font-size: 0.9rem;
}

.hero-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin: 1.2rem 0 1.1rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.trust-chip {
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(245, 242, 233, 0.80);
  font-size: 0.85rem;
}

/* SECTIONS */
.section {
  padding: 3.5rem 0;
}

.section-head {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1.6rem;
}

.section h2 {
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.25rem);
  margin: 0;
}

.section-intro {
  color: rgba(245, 242, 233, 0.72);
  margin: 0;
  max-width: 56rem;
}

/* GRID */
.grid {
  display: grid;
  gap: 1.5rem;
}

/* STORE GRID — SMALL THUMBNAILS */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem;
}

/* PRODUCT CARDS */
.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(255,255,255,0.14);
}

.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.8rem;
}

.product-body {
  display: grid;
  gap: 0.35rem;
}

.product-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(5,8,20,0.35);
}

.product-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.product-tagline {
  margin: 0;
  color: rgba(245, 242, 233, 0.72);
  font-size: 0.92rem;
}

.product-meta {
  margin: 0.2rem 0 0;
  font-size: 0.85rem;
  color: rgba(245, 242, 233, 0.66);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background-color .12s ease, border-color .12s ease, opacity .12s ease;
  user-select: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, rgba(245,242,233,1), rgba(227,221,200,1));
  color: var(--accent-ink);
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}

.btn-outline {
  background: transparent;
  border-color: rgba(245,242,233,0.22);
  color: rgba(245,242,233,0.90);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.10);
  color: rgba(245,242,233,0.90);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.btn-full {
  width: 100%;
  margin-top: 0.15rem;
}

/* ABOUT + RITUAL */
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
}

.ritual-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.ritual-card {
  position: relative;
}

.ritual-step {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(142, 231, 194, 0.12);
  border: 1px solid rgba(142, 231, 194, 0.30);
  color: rgba(245,242,233,0.92);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.benefits-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.benefit-card h3,
.ritual-card h3,
.wisdom-card h3 {
  margin: 0.15rem 0 0.35rem;
  font-size: 1.05rem;
}

.benefit-card p,
.ritual-card p,
.wisdom-card p {
  margin: 0;
  color: rgba(245,242,233,0.72);
}

.products {
  background:
    radial-gradient(800px 420px at 15% 30%, rgba(142, 231, 194, 0.06), transparent 60%),
    radial-gradient(900px 520px at 85% 25%, rgba(124, 182, 255, 0.05), transparent 60%);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.wisdom,
.contact {
  position: relative;
}

.wisdom::before,
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("assets/images/bg-leaves.svg");
  background-repeat: no-repeat;
  background-size: 1200px;
  background-position: 10% 80%;
  opacity: 0.35;
  filter: saturate(1.1);
}

.wisdom .container,
.contact .container {
  position: relative;
}

.product-skeleton {
  min-height: 240px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.10), rgba(255,255,255,0.06));
  background-size: 200% 100%;
  animation: shimmer 1.1s ease-in-out infinite;
}

@keyframes shimmer {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

/* FORMS */
.contact-form {
  background: rgba(17, 22, 40, 0.55);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  font-size: 0.88rem;
  color: rgba(245,242,233,0.78);
  margin: 0 0 0.35rem;
}

.field input,
.field textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(5, 8, 20, 0.45);
  color: rgba(245,242,233,0.92);
  padding: 0.78rem 0.9rem;
  font-size: 0.95rem;
  outline: none;
}

.field textarea { resize: vertical; }

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(245,242,233,0.45);
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(142, 231, 194, 0.35);
  box-shadow: var(--focus);
}

.form-fineprint {
  margin: 0.8rem 0 0;
  color: rgba(245,242,233,0.60);
  font-size: 0.85rem;
}

.notice {
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.06);
  color: rgba(245,242,233,0.88);
  margin-bottom: 1rem;
}

.notice-success {
  border-color: rgba(142, 231, 194, 0.28);
  background: rgba(142, 231, 194, 0.10);
}

/* FOOTER */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.8rem 0 0;
  margin-top: 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 1.4rem;
  font-size: 0.85rem;
  color: rgba(245,242,233,0.70);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.footer-column h4 {
  margin: 0 0 0.45rem;
  font-size: 0.95rem;
  color: rgba(245,242,233,0.88);
}

.footer-column a {
  display: block;
  padding: 0.28rem 0;
  color: rgba(245,242,233,0.70);
}

.footer-column a:hover {
  color: rgba(245,242,233,0.92);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 1.2rem;
  padding: 1.1rem 0 1.3rem;
}

.footer-bottom-inner {
  display: grid;
  gap: 0.65rem;
}

.footer-small {
  margin: 0;
  color: rgba(245,242,233,0.62);
  font-size: 0.82rem;
}

/* RESPONSIVE */
@media (max-width: 800px) {
  .hero-inner,
  .two-column {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .nav a {
    margin-left: 0;
    margin-right: 1rem;
  }

  .header-actions {
    flex-wrap: wrap;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .product-image img {
    height: 140px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* MODAL */
html.modal-open,
html.modal-open body {
  overflow: hidden;
}

/* MODAL OVERLAY */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.70);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 9999;
}

/* MODAL BOX */
.modal-content {
  background: rgba(17, 22, 40, 0.88);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 1.15rem;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 26px 70px rgba(0,0,0,0.65);
  animation: fadeIn .25s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(.95); }
  to { opacity: 1; transform: scale(1); }
}

/* CLOSE BUTTON */
.modal-close {
  background: transparent;
  border: none;
  color: rgba(245,242,233,0.9);
  font-size: 2rem;
  float: right;
  cursor: pointer;
}

/* GRID */
.modal-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem;
}

.modal-images img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  max-height: 350px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(5,8,20,0.35);
}

.modal-thumbs {
  display: flex;
  gap: .5rem;
  margin-top: .7rem;
}

.modal-thumbs img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.12);
  opacity: 0.9;
}

.modal-thumbs img:hover {
  opacity: 1;
}

.modal-info h2 {
  margin-top: 0;
}

.modal-kicker {
  color: rgba(245,242,233,0.72);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
}

.modal-excerpt,
.modal-ingredients {
  margin: 0.55rem 0;
  color: rgba(245,242,233,0.74);
}

.modal-price {
  margin: .6rem 0;
  font-size: 1.1rem;
  color: rgba(245,242,233,0.82);
}

.modal-fineprint {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: rgba(245,242,233,0.62);
}

@media (max-width: 700px) {
  .modal-grid {
    grid-template-columns: 1fr;
  }
}
