:root {
  --cream: #fbf6f1;
  --blush: #f2d7dc;
  --rose: #d8a7b3;
  --gold: #c4a66b;
  --ink: #1f1717;
  --ink-soft: #5f5353;
  --white: #ffffff;
  --line: rgba(31, 23, 23, 0.08);
  --shadow: 0 20px 50px rgba(31, 23, 23, 0.08);

  --max-width: 1180px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  max-width: 780px;
}

.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;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(251, 246, 241, 0.92);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand-tagline {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.desktop-nav a {
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--ink);
}

.nav-button {
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white) !important;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: all 0.25s ease;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1rem 1rem;
  border-top: 1px solid var(--line);
}

.mobile-nav a {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* HERO */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(251, 246, 241, 0.88) 0%,
    rgba(251, 246, 241, 0.72) 40%,
    rgba(251, 246, 241, 0.28) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-card {
  max-width: 620px;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.eyebrow,
.section-label,
.product-type,
.event-type,
.mini-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
}

.hero h1,
.section h2 {
  margin: 0.6rem 0 1rem;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.08;
  color: var(--ink);
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.9rem);
  max-width: 10ch;
}

.hero-text,
.section-copy {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

/* STICKY SECTION NAV */
.section-nav {
  position: sticky;
  top: 84px;
  z-index: 30;
  background: rgba(251, 246, 241, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31, 23, 23, 0.06);
}

.section-nav__inner {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 0.85rem 0;
}

.section-nav__inner a {
  white-space: nowrap;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.section-nav__inner a:hover,
.section-nav__inner a.active {
  color: var(--ink);
  font-weight: 600;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(31, 23, 23, 0.12);
  color: var(--ink);
}

.text-link {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

/* SECTIONS */
.section {
  padding: 120px 0;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* EDITORIAL / MISSION */
.editorial-section {
  padding: 120px 0;
  background: var(--cream);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.editorial-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.92),
    rgba(255,255,255,0.72)
  );
  padding: 70px;
  border-radius: 26px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.05);
  position: relative;
  z-index: 2;
}

.editorial-card:hover {
  transform: translateY(-4px);
}

.editorial-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.editorial-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1.1;
  margin-bottom: 20px;
}

.editorial-text {
  color: #6c5f5f;
  line-height: 1.7;
  margin-bottom: 28px;
}

.editorial-button {
  display: inline-block;
  background: #d38f8a;
  color: var(--white);
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 600;
}

.editorial-image img {
  width: 100%;
  border-radius: 20px;
}
.editorial-card::before {
  content: "“";
  position: absolute;
  top: 30px;
  left: 40px;
  font-size: 90px;
  font-family: "Playfair Display", serif;
  color: rgba(196,166,107,0.15);
}
.editorial-image img {
  width: 100%;
  border-radius: 20px;
  filter: brightness(0.95) contrast(0.95);
}
/* PRODUCTS */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 23, 23, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(31, 23, 23, 0.1);
}

.product-image-wrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f8f1ec;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-content {
  padding: 1.35rem 1.25rem 1.5rem;
}

.product-content h3 {
  margin: 0.35rem 0 0.55rem;
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
}

.product-content p:last-child {
  margin: 0;
  color: var(--ink-soft);
}

/* SPLIT SECTIONS */
.split-section {
  padding: 120px 0;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.split-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.split-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  margin-bottom: 20px;
}

.split-text p {
  color: #6b5e5e;
  line-height: 1.7;
}

/* EVENTS */
.event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.event-card {
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 23, 23, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.event-card h3 {
  margin: 0.45rem 0 0.65rem;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
}

.event-card p {
  color: var(--ink-soft);
}

/* NEWSLETTER */
.newsletter-card {
  padding: 2.4rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.82),
    rgba(242, 215, 220, 0.38)
  );
  border: 1px solid rgba(31, 23, 23, 0.06);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
}

.newsletter-form {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter-form input {
  min-width: 280px;
  padding: 0.95rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 23, 23, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

/* FOOTER */
.site-footer {
  padding: 4rem 0 3rem;
  border-top: 1px solid var(--line);
  background: #f8f0eb;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  width: 56px;
  margin-bottom: 1rem;
}

.footer-brand-text {
  color: var(--ink-soft);
}

.footer-links {
  display: flex;
  gap: 3rem;
}

.footer-links h3 {
  margin-top: 0;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li + li {
  margin-top: 0.7rem;
}

.footer-links a {
  color: var(--ink-soft);
}

.footer-links a:hover {
  color: var(--ink);
}

/* REVEAL */
.reveal {
  opacity: 1;
  transform: none;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js-enabled .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav.open {
    display: flex;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-overlay {
    background: linear-gradient(
      to top,
      rgba(251, 246, 241, 0.92) 0%,
      rgba(251, 246, 241, 0.76) 48%,
      rgba(251, 246, 241, 0.36) 100%
    );
  }

  .hero-card {
    max-width: 100%;
    padding: 2rem;
  }

  .editorial-grid,
  .product-grid,
  .split-grid,
  .event-grid,
  .footer-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 76px;
  }

  .brand-tagline {
    display: none;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .section,
  .editorial-section,
  .split-section {
    padding: 72px 0;
  }

  .hero-actions,
  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .newsletter-form input {
    width: 100%;
  }

  .hero-card,
  .newsletter-card,
  .editorial-card,
  .event-card {
    padding: 1.5rem;
  }

  .editorial-title,
  .split-text h2 {
    font-size: 30px;
  }
}
#philosophy,
#boutique,
#reset,
#community,
#events {
  scroll-margin-top: 150px;
}
.section-nav__inner a {
  position: relative;
  transition: color 0.2s ease;
}

.section-nav__inner a.active {
  color: var(--ink);
  font-weight: 600;
}

.section-nav__inner a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 999px;
}
/* RESET ROOM PAGE */

.page-hero {
  padding: 120px 0 100px;
}

.page-hero .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.page-hero .hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 4.6vw, 4.4rem);
  line-height: 1.08;
  margin: 0.6rem 0 1rem;
}

.page-hero .hero-text p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 56ch;
}

.page-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.page-hero .hero-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* Affirmations + prompts */
.affirmation-grid,
.prompt-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.affirmation-card,
.prompt-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(31, 23, 23, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.affirmation-card:hover,
.prompt-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 60px rgba(31, 23, 23, 0.1);
}

.affirmation-card {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--ink);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.9),
    rgba(242,215,220,0.3)
  );
}

.prompt-card {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Optional quote mark feel */
.affirmation-card::before {
  content: "“";
  display: block;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

/* Mindful moment section */
.mindful-section {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.6),
    rgba(242,215,220,0.25)
  );
  border-top: 1px solid rgba(31, 23, 23, 0.05);
  border-bottom: 1px solid rgba(31, 23, 23, 0.05);
}

.mindful-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 1rem;
}

.mindful-list li {
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(31, 23, 23, 0.06);
  border-radius: 999px;
  padding: 1rem 1.25rem;
  color: var(--ink);
  box-shadow: var(--shadow);
}

/* Helpful little section spacing refinement */
.section-label {
  display: inline-block;
  margin-bottom: 0.25rem;
}

/* Responsive */
@media (max-width: 980px) {
  .page-hero .hero-grid,
  .affirmation-grid,
  .prompt-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 90px 0 80px;
  }
}

@media (max-width: 640px) {
  .page-hero .hero-text h1 {
    font-size: 2.4rem;
  }

  .affirmation-card,
  .prompt-card {
    padding: 1.5rem;
  }

  .affirmation-card {
    font-size: 1.3rem;
  }
}
.affirmation-actions {
  margin-bottom: 1.5rem;
}

.affirmation-grid,
.prompt-grid {
  grid-template-columns: 1fr;
  max-width: 780px;
}

.affirmation-card,
.prompt-card {
  min-height: 180px;
  display: flex;
  align-items: center;
}
/* Reset Room card transitions */
.affirmation-card,
.prompt-card {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.card-fade-out {
  opacity: 0;
  transform: translateY(6px);
}

.card-fade-in {
  opacity: 1;
  transform: translateY(0);
}
#shuffleAffirmationBtn,
#shufflePromptBtn {
  min-width: 240px;
}
#affirmations.section,
#journal.section,
.mindful-section,
.newsletter-section {
  padding: 72px 0;
}
.affirmation-card,
.prompt-card {
  min-height: 120px;
  display: flex;
  align-items: center;
}
.affirmation-actions {
  margin-bottom: 1rem;
}

.affirmation-grid,
.prompt-grid {
  margin-top: 1rem;
}
#affirmations.section,
#journal.section {
  padding: 56px 0;
}

.affirmation-actions {
  margin-bottom: 1rem;
}

.affirmation-grid,
.prompt-grid {
  margin-top: 1rem;
}

.affirmation-card,
.prompt-card {
  min-height: 120px;
  display: flex;
  align-items: center;
}

.prompt-card {
  min-height: 140px;
}
.event-details-card {
  margin-top: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(31, 23, 23, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.event-detail-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(31, 23, 23, 0.06);
}

.event-detail-row:last-child {
  border-bottom: 0;
}

.event-detail-label {
  font-weight: 600;
  color: var(--ink);
}

.event-detail-value {
  color: var(--ink-soft);
  text-align: right;
}
@media (max-width: 640px) {
  .event-detail-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .event-detail-value {
    text-align: left;
  }
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.collection-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(31, 23, 23, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(31, 23, 23, 0.1);
}

.collection-image-wrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f8f1ec;
}

.collection-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-content {
  padding: 1.35rem 1.25rem 1.5rem;
}

.collection-content h3 {
  margin: 0 0 0.55rem;
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
}

.collection-content p {
  margin: 0;
  color: var(--ink-soft);
}

@media (max-width: 980px) {
  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .collection-grid {
    grid-template-columns: 1fr;
  }
}
/* FOUNDER SECTION */

.founder-section {
  padding: 120px 0;
}

.founder-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: center;
}

.founder-image img {
  width: 100%;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.founder-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  margin-bottom: 20px;
}

.founder-text p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.founder-signature {
  margin-top: 24px;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: var(--ink);
}