:root {
  --bg: #fbf6f2;
  --bg-accent: #f7eeea;
  --surface: rgba(255, 252, 249, 0.88);
  --surface-strong: rgba(255, 249, 246, 0.96);
  --surface-blush: linear-gradient(180deg, rgba(249, 230, 228, 0.96), rgba(245, 220, 217, 0.9));
  --line: rgba(168, 128, 124, 0.2);
  --text: #5f453f;
  --muted: #93736c;
  --accent: #b98780;
  --accent-soft: #efe1db;
  --shadow-soft: 0 18px 40px rgba(182, 147, 141, 0.16);
  --shadow-hover: 0 22px 48px rgba(182, 147, 141, 0.22);
  --radius-card: 22px;
  --container-max: 1024px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(246, 232, 230, 0.95), transparent 28%),
    radial-gradient(circle at right 18%, rgba(239, 224, 220, 0.72), transparent 20%),
    linear-gradient(180deg, #f8f2ee 0%, #fcf8f5 34%, #f6efeb 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--text);
}

p {
  margin: 0;
}

a {
  color: inherit;
}

main {
  overflow-x: clip;
}

.container,
.section,
.blog-main,
.article-main,
.product-main {
  width: min(var(--container-max), calc(100% - 1.8rem));
  margin-inline: auto;
}

.section {
  margin-top: 2rem;
}

.section-shell,
.article-post,
.product-shell,
.about-card,
.blog-intro {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.section-shell,
.article-post,
.product-shell,
.about-card,
.blog-intro {
  padding: 1rem;
}

.section-head {
  margin-bottom: 0.9rem;
}

.section-head h2 {
  font-size: clamp(2rem, 6.5vw, 2.6rem);
}

.eyebrow,
.hero-kicker,
.article-meta {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 110;
  padding-top: 0.7rem;
  background: linear-gradient(180deg, rgba(248, 242, 238, 0.94), rgba(248, 242, 238, 0.7), transparent);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.2rem 0 0.6rem;
}

.brand {
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 7vw, 2.8rem);
  letter-spacing: 0.08em;
}

.menu-toggle,
body.nav-enhanced .menu-toggle,
.mobile-bottom-nav {
  display: none !important;
}

.menu,
body.nav-enhanced .menu {
  position: static;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 0.45rem;
  margin: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  list-style: none;
}

.menu a {
  min-height: auto;
  padding: 0.18rem 0.3rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(111, 85, 80, 0.76);
}

.menu a[aria-current="page"],
.menu a.active {
  background: transparent;
  color: var(--accent);
}

.ambient-shape {
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  border-radius: 999px;
  filter: blur(16px);
}

.ambient-shape--one {
  top: 8rem;
  left: -4rem;
  width: 10rem;
  height: 18rem;
  background: rgba(246, 231, 229, 0.9);
}

.ambient-shape--two {
  right: -3rem;
  bottom: 8rem;
  width: 10rem;
  height: 12rem;
  background: rgba(240, 227, 220, 0.72);
}

.hero {
  margin-top: 0.75rem;
}

.hero-media-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9.6;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  background: #ecd9d5;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  left: 7%;
  top: 17%;
  width: min(18rem, 47%);
  padding: 1rem 1rem 1.05rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(249, 232, 229, 0.8), rgba(249, 232, 229, 0.55));
  box-shadow: 0 12px 26px rgba(169, 135, 129, 0.12);
}

.hero-overlay h1 {
  margin-top: 0.35rem;
  font-size: clamp(2.1rem, 8vw, 4.2rem);
  color: #a97873;
}

.hero-overlay h1 em {
  font-style: italic;
  font-weight: 500;
  color: #8d6f69;
}

.hero-link,
.blog-read-more,
.back-blog,
.product-back {
  min-height: 42px;
  border: 1px solid rgba(184, 146, 139, 0.34);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255, 248, 245, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.58);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease;
}

.hero-link {
  margin-top: 1rem;
}

.back-blog,
.product-back {
  color: var(--text);
}

.hero-link:active,
.blog-read-more:active,
.product-back:active,
.back-blog:active,
.category-link:active,
.product-cta:active {
  transform: scale(0.98);
}

.look-grid,
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.look-card,
.featured-card,
.category-item,
.product-card,
.blog-card {
  overflow: hidden;
  border-radius: 18px;
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.look-card .image-wrap,
.featured-media,
.product-card-media {
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.look-card img,
.featured-card img,
.product-card img,
.blog-card img {
  height: 100%;
  object-fit: cover;
}

.look-card p {
  padding: 0.6rem 0.7rem 0.75rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
}

.categories {
  padding: 1rem 0.85rem 0.95rem;
  background: rgba(253, 248, 244, 0.9);
  border: 1.25px solid rgba(190, 157, 148, 0.34);
  border-radius: 30px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.35rem;
}

.category-item {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.category-link {
  text-decoration: none;
  display: grid;
  justify-items: center;
  gap: 0.4rem;
}

.circle {
  width: clamp(2.9rem, 11vw, 4.5rem);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  overflow: hidden;
  padding: 0.18rem;
  background: linear-gradient(180deg, rgba(255, 249, 246, 0.98), rgba(246, 230, 225, 0.95));
  box-shadow: inset 0 0 0 1px rgba(186, 153, 144, 0.2);
}

.circle img {
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.category-item p {
  font-size: 0.63rem;
  color: #735953;
}

.featured {
  margin-bottom: 2rem;
}

.featured-card {
  background: rgba(255, 252, 250, 0.92);
}

.featured-link {
  display: block;
}

.blog-main,
.article-main,
.product-main,
.shop-main {
  margin-top: 1.25rem;
}

.about {
  margin-bottom: 2rem;
}

.about-card h2,
.blog-intro h1,
.article-header h1,
.product-content h1 {
  font-size: clamp(2.25rem, 8vw, 3.8rem);
}

.about-card p + p,
.blog-intro-copy,
.product-summary,
.product-disclosure,
.product-data-note,
.article-content p + p {
  margin-top: 0.85rem;
}

.blog-intro-copy,
.blog-excerpt,
.product-summary,
.product-disclosure,
.product-data-note,
.article-content p,
.article-content li {
  color: var(--muted);
}

.blog-feed {
  margin: 1.25rem 0 2.5rem;
}

.blog-grid {
  display: grid;
  gap: 1rem;
}

.blog-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}

.blog-card-media {
  aspect-ratio: 3 / 2;
}

.blog-card-body {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
}

.blog-card h2 {
  font-size: 1.75rem;
}

.blog-read-more {
  width: fit-content;
}

.article-post,
.product-shell {
  margin-bottom: 2.5rem;
}

.article-hero {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.article-hero img,
.product-media img {
  height: 100%;
  object-fit: cover;
}

.soft-divider {
  border: 0;
  height: 1px;
  margin: 1.2rem 0;
  background: rgba(175, 143, 137, 0.18);
}

.article-content {
  max-width: 68ch;
}

.article-content h2 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.9rem, 6vw, 2.6rem);
}

.article-content h3 {
  margin: 1rem 0 0.35rem;
  font-size: clamp(1.45rem, 4.5vw, 2rem);
}

.article-content ul,
.product-specs {
  margin: 0.65rem 0 0;
  padding-left: 1.2rem;
}

.product-layout {
  display: grid;
  gap: 1.25rem;
}

.product-media {
  overflow: hidden;
  border-radius: 22px;
}

.product-media--gallery {
  display: grid;
  gap: 0.75rem;
}

.product-hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
  gap: 0.55rem;
}

.product-thumb {
  border: 1px solid rgba(184, 146, 139, 0.24);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 251, 248, 0.9);
  cursor: pointer;
}

.product-thumb.is-active {
  box-shadow: 0 0 0 2px rgba(185, 135, 128, 0.45);
}

.product-thumb img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.product-price {
  color: var(--accent);
}

.product-cta {
  min-height: 46px;
  border: 1px solid rgba(184, 146, 139, 0.26);
  border-radius: 999px;
  background: rgba(244, 233, 229, 0.72);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-hero,
.shop-note,
.shop-section {
  padding: 1.15rem;
  scroll-margin-top: 110px;
}

.shop-hero {
  margin-top: 0.75rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(252, 242, 244, 0.98), rgba(247, 236, 232, 0.9)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.7), transparent 34%);
}

.shop-hero__content {
  max-width: 42rem;
}

.shop-hero h1 {
  margin-top: 0.35rem;
  font-size: clamp(2.3rem, 8vw, 4.3rem);
  color: #a97873;
}

.shop-hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: #8d6f69;
}

.shop-hero__copy,
.shop-note__copy,
.shop-browser__copy,
.shop-section__copy {
  margin-top: 0.85rem;
  color: var(--muted);
}

.shop-browser {
  padding: 1.15rem;
}

.shop-note__title {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.shop-section__head h2 {
  font-size: clamp(2rem, 6.5vw, 3rem);
}

.shopCategoryNav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.shopCategoryNav__link {
  min-height: 72px;
  padding: 0.9rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(184, 146, 139, 0.2);
  background: rgba(255, 250, 247, 0.86);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 700;
}

.shopCategoryNav__count {
  min-width: 2rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(239, 225, 219, 0.9);
  color: var(--accent);
  font-size: 0.72rem;
  text-align: center;
}

.shopCategoryNav__link[aria-current="true"],
.shopCategoryNav__link.active {
  border-color: rgba(185, 135, 128, 0.36);
  background: rgba(246, 233, 229, 0.92);
  color: var(--accent);
}

.cardGrid {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr);
  margin-top: 1rem;
}

.cardGrid > .productCard[hidden] {
  display: none;
}

.cardGrid:empty::after {
  content: "New picks will appear here.";
  display: block;
  padding: 1.15rem;
  border: 1px dashed rgba(184, 146, 139, 0.28);
  border-radius: 18px;
  color: var(--muted);
  text-align: center;
}

.productCard {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 252, 250, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.productCard__imgLink {
  display: block;
}

.productCard__img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.productCard__body {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
}

.productCard__eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.productCard__top {
  display: grid;
  gap: 0.35rem;
}

.productCard__title {
  font-size: 1.55rem;
  line-height: 1;
}

.productCard__price {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.productCard__copy {
  color: var(--muted);
}

.productCard__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: auto;
}

.productCard__link {
  min-height: 42px;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.productCard__link--soft {
  border: 1px solid rgba(184, 146, 139, 0.28);
  background: rgba(255, 248, 245, 0.72);
  color: var(--text);
}

.productCard__link--primary {
  border: 1px solid rgba(184, 146, 139, 0.22);
  background: rgba(244, 233, 229, 0.84);
  color: var(--accent);
}

.shop-section.is-active-category {
  border-color: rgba(185, 135, 128, 0.34);
  box-shadow: var(--shadow-hover);
}

.shop-section__footer {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.shop-section__count {
  color: var(--muted);
}

.shopPagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.shopPagination[hidden] {
  display: none;
}

.shopPagination__button {
  min-height: 40px;
  padding: 0.6rem 0.9rem;
  border: 1px solid rgba(184, 146, 139, 0.24);
  border-radius: 999px;
  background: rgba(255, 248, 245, 0.78);
  color: var(--text);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.shopPagination__button[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.shopPagination__button.is-active {
  background: rgba(244, 233, 229, 0.92);
  color: var(--accent);
  border-color: rgba(185, 135, 128, 0.34);
}

.site-footer {
  width: min(var(--container-max), calc(100% - 1.8rem));
  margin: 0 auto 1.25rem;
  padding: 1.1rem 1.15rem;
  border-radius: 24px;
  background: rgba(255, 251, 248, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.75rem;
  font-size: 0.88rem;
}

.footer-disclosure,
.footer-links a {
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-links a {
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) {
  .look-card:hover,
  .featured-card:hover,
  .blog-card:hover,
  .product-card:hover,
  .productCard:hover,
  .hero-link:hover,
  .blog-read-more:hover,
  .product-cta:hover,
  .productCard__link:hover,
  .back-blog:hover,
  .product-back:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
  }
}

@media (min-width: 768px) {
  body {
    font-size: 16px;
  }

  .nav {
    min-height: 88px;
  }

  .menu a {
    font-size: 0.68rem;
  }

  .section {
    margin-top: 2.4rem;
  }

  .section-shell,
  .article-post,
  .product-shell,
  .about-card,
  .blog-intro {
    padding: 1.3rem;
  }

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

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

  .product-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
  }

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

  .shop-hero,
  .shop-note,
  .shop-browser,
  .shop-section {
    padding: 1.35rem;
  }

  .site-footer {
    grid-template-columns: 1.4fr 1fr auto;
    align-items: start;
  }
}

@media (max-width: 767px) {
  body.shop-catalog-ready .shop-section {
    display: none;
  }

  body.shop-catalog-ready .shop-section.is-active-category {
    display: block;
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
