/* SilkRitual Storefront */
:root {
  --cream: #FAF6F1;
  --deep: #1A1210;
  --deep-alt: #1E1614;
  --warm: #C9A87C;
  --rose: #D4A5A5;
  --muted: #8A7968;
  --silk: #F0E6D8;
  --border: rgba(201, 168, 124, 0.12);
  --border-hover: rgba(201, 168, 124, 0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--deep);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: inherit; }

/* ===== Navigation ===== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 18, 16, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--cream); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-link {
  position: relative;
  color: var(--cream);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cart-count {
  background: var(--warm);
  color: var(--deep);
  font-size: 0.6rem;
  font-weight: 600;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}

.cart-count.visible { display: flex; }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  padding: 1rem 2rem 1.5rem;
  border-top: 1px solid var(--border);
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-menu a {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  padding: 0.5rem 0;
  letter-spacing: 0.05em;
}

/* ===== Main Content ===== */
main { padding-top: 64px; min-height: calc(100vh - 64px); }

/* ===== Shop Hero ===== */
.shop-hero {
  text-align: center;
  padding: 5rem 2rem 3rem;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 124, 0.06) 0%, transparent 60%);
}

.shop-hero-label {
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--warm);
  display: block;
  margin-bottom: 1.5rem;
}

.shop-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.shop-hero h1 em { font-style: italic; color: var(--warm); }

.shop-hero-sub {
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== Filters ===== */
.shop-filters { padding: 0 2rem 3rem; }

.filter-bar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
  color: var(--cream);
  border-color: var(--warm);
  background: rgba(201, 168, 124, 0.08);
}

/* ===== Product Grid ===== */
.product-grid-section { padding: 0 2rem 6rem; }

.product-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-grid-small { max-width: 1000px; margin: 0 auto; }

.product-card {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.4s;
}

.product-card:hover { transform: translateY(-4px); }

.product-image {
  aspect-ratio: 4/5;
  border-radius: 3px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.4s;
}

.product-card:hover .product-image { border-color: var(--border-hover); }

.product-image-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.product-image-icon {
  font-size: 3rem;
  opacity: 0.4;
  transition: opacity 0.4s;
}

.product-card:hover .product-image-icon { opacity: 0.6; }

.product-info { padding: 1.2rem 0.25rem 0; }

.product-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.25rem;
  margin: 0.4rem 0 0.3rem;
  line-height: 1.3;
}

.product-tagline {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.product-price {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--warm);
}

/* ===== Collections Grid ===== */
.shop-collections {
  padding: 0 2rem 6rem;
  border-top: 1px solid var(--border);
  padding-top: 4rem;
}

.collections-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.collection-card {
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.collection-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--warm), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.collection-card:hover::before { opacity: 1; }
.collection-card:hover { border-color: var(--border-hover); background: rgba(201, 168, 124, 0.03); }

.collection-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 1rem;
  color: var(--warm);
  opacity: 0.6;
}

.collection-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.collection-card p {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== Product Detail Page ===== */
.pdp { padding: 3rem 2rem 4rem; }

.pdp-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.pdp-image {
  aspect-ratio: 4/5;
  border-radius: 3px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 80px;
}

.pdp-image-glow { position: absolute; inset: 0; pointer-events: none; }
.pdp-image-icon { font-size: 6rem; opacity: 0.3; }

.pdp-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm);
  display: block;
  margin-bottom: 0.75rem;
}

.pdp-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.pdp-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.pdp-price {
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--warm);
  margin-bottom: 1.5rem;
}

.pdp-description {
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 2rem;
}

.pdp-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  align-items: center;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 2px;
}

.qty-btn {
  background: none;
  border: none;
  color: var(--cream);
  width: 40px; height: 44px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.qty-btn:hover { background: rgba(201, 168, 124, 0.1); }

.qty-value {
  width: 40px;
  text-align: center;
  font-size: 0.9rem;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  line-height: 44px;
}

.add-to-cart-btn {
  flex: 1;
  background: var(--warm);
  color: var(--deep);
  border: none;
  padding: 0 2rem;
  height: 44px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s;
}

.add-to-cart-btn:hover { background: var(--silk); }
.add-to-cart-btn.added { background: #2A5A3A; color: var(--cream); }

/* Ingredients */
.pdp-ingredients {
  margin-bottom: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.pdp-ingredients h4 {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.ingredients-list { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.ingredient {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--muted);
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(138, 121, 104, 0.2);
  border-radius: 2px;
}

.pdp-details-list {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(201, 168, 124, 0.06);
}

.detail-label { font-size: 0.8rem; font-weight: 400; }
.detail-value { font-size: 0.78rem; font-weight: 300; color: var(--muted); }

.related-products {
  padding: 4rem 2rem 6rem;
  border-top: 1px solid var(--border);
}

.related-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 3rem;
}

/* ===== Cart Page ===== */
.cart-page {
  padding: 3rem 2rem 6rem;
  max-width: 800px;
  margin: 0 auto;
}

.cart-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  margin-bottom: 3rem;
}

.cart-title em { font-style: italic; color: var(--warm); }

.cart-empty { text-align: center; padding: 4rem 0; }
.cart-empty p { font-size: 1rem; color: var(--muted); margin-bottom: 2rem; }

.btn-primary {
  display: inline-block;
  background: var(--warm);
  color: var(--deep);
  text-decoration: none;
  padding: 0.85rem 2.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary:hover { background: var(--silk); }

.cart-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.cart-item-image {
  width: 80px; height: 100px;
  border-radius: 2px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-item-image span { font-size: 1.5rem; opacity: 0.4; }

.cart-item-details { flex: 1; }

.cart-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.cart-item-price { font-size: 0.85rem; color: var(--warm); margin-bottom: 0.75rem; }

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

.cart-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 2px;
}

.cart-qty button {
  background: none;
  border: none;
  color: var(--cream);
  width: 30px; height: 30px;
  font-size: 0.9rem;
  cursor: pointer;
}

.cart-qty span {
  width: 30px;
  text-align: center;
  font-size: 0.8rem;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  line-height: 30px;
}

.cart-remove {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.75rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

.cart-remove:hover { color: var(--rose); }

.cart-item-total {
  font-weight: 500;
  font-size: 1rem;
  min-width: 60px;
  text-align: right;
}

.cart-summary { padding-top: 2rem; }

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.cart-total-row span:last-child { font-weight: 500; color: var(--warm); }

.cart-shipping-note { font-size: 0.78rem; color: var(--muted); margin-bottom: 2rem; }

.checkout-btn {
  width: 100%;
  background: var(--warm);
  color: var(--deep);
  border: none;
  padding: 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s;
  margin-bottom: 1rem;
}

.checkout-btn:hover { background: var(--silk); }
.checkout-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.continue-shopping {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.continue-shopping:hover { color: var(--cream); }

/* ===== Success Page ===== */
.success-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.success-inner { max-width: 500px; }
.success-icon { font-size: 3rem; color: var(--warm); display: block; margin-bottom: 2rem; }

.success-page h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.success-sub { font-size: 0.95rem; color: var(--muted); line-height: 1.7; margin-bottom: 2.5rem; }

.error-page {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.error-page h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.error-page a { color: var(--warm); text-decoration: none; }

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  background: var(--deep);
}

.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.3rem;
  display: block;
  margin-bottom: 0.25rem;
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--muted);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 1.5rem;
}

.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1.5rem; }

.footer-links a {
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--cream); }

.footer-copy {
  font-size: 0.68rem;
  color: rgba(138, 121, 104, 0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: rgba(26, 18, 16, 0.95);
  border: 1px solid var(--warm);
  color: var(--cream);
  padding: 1rem 1.5rem;
  border-radius: 3px;
  font-size: 0.85rem;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.toast.show { transform: translateY(0); opacity: 1; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .pdp-inner { grid-template-columns: 1fr; gap: 2rem; }
  .pdp-image { position: static; max-height: 400px; }
  .shop-hero { padding: 4rem 1.5rem 2rem; }
  .product-grid-section { padding: 0 1.5rem 4rem; }
  .collections-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .cart-item { flex-wrap: wrap; }
  .cart-item-total { width: 100%; text-align: left; margin-top: 0.5rem; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; max-width: 400px; }
  .collections-grid { grid-template-columns: 1fr; }
  .pdp-actions { flex-direction: column; }
  .add-to-cart-btn { width: 100%; }
  .filter-bar { gap: 0.4rem; }
  .filter-btn { padding: 0.5rem 0.8rem; font-size: 0.7rem; }
}

/* ===== Logo Concepts Page ===== */
.lc-hero {
  text-align: center;
  padding: 6rem 2rem 3rem;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,124,0.05) 0%, transparent 60%);
}

.lc-eyebrow {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 1.5rem;
}

.lc-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--cream);
  margin-bottom: 1rem;
}

.lc-hero h1 em { font-style: italic; color: var(--warm); }

.lc-hero-sub {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.lc-grid {
  max-width: 920px;
  margin: 0 auto;
  padding: 2rem 2rem 6rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.lc-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
  background: rgba(201,168,124,0.015);
  transition: border-color 0.4s;
}

.lc-card:hover { border-color: var(--border-hover); }

.lc-card-head {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.lc-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--warm);
  color: var(--warm);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  flex-shrink: 0;
}

.lc-card-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.lc-card-desc {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

.lc-showcases {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lc-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  border-radius: 6px;
  min-height: 140px;
}

.lc-showcase-dark {
  background: var(--deep);
  border: 1px solid var(--border);
}

.lc-showcase-light {
  background: #FAF6F1;
  border: 1px solid rgba(26,18,16,0.07);
}

.lc-svg {
  width: 100%;
  max-width: 440px;
  height: auto;
}

.lc-svg-tall {
  max-width: 240px;
}

/* Variant previews (stacked, icon standalone) */
.lc-variant {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.lc-variant-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 0.75rem;
}

.lc-variant-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.lc-variant-box {
  flex: 1;
  min-width: 140px;
  max-width: 220px;
  padding: 2rem 1.5rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lc-variant-box svg {
  width: 100%;
  max-width: 160px;
  height: auto;
}

.lc-icon-box {
  width: 64px;
  height: 72px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  flex-shrink: 0;
}

.lc-icon-box svg {
  width: 100%;
  height: 100%;
}

.lc-icon-tiny {
  width: 36px;
  height: 40px;
  padding: 5px;
}

.lc-variant-dark {
  background: var(--deep);
  border: 1px solid var(--border);
}

.lc-variant-light {
  background: #FAF6F1;
  border: 1px solid rgba(26,18,16,0.07);
}

/* Notes */
.lc-notes {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 2.5rem;
}

.lc-note {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

.lc-note-label {
  font-weight: 500;
  color: var(--warm);
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.3rem;
}

/* Logo Concepts responsive */
@media (max-width: 768px) {
  .lc-card { padding: 1.5rem; }
  .lc-showcase { padding: 2rem 1rem; }
  .lc-notes { flex-direction: column; gap: 1rem; }
  .lc-variant-box { min-width: 120px; padding: 1.5rem 1rem; }
}

@media (max-width: 480px) {
  .lc-card { padding: 1.25rem; }
  .lc-hero { padding: 5rem 1.5rem 2rem; }
  .lc-grid { padding: 1.5rem 1rem 4rem; }
  .lc-card-head { flex-direction: column; gap: 0.75rem; }
  .lc-showcase { padding: 1.5rem 0.75rem; min-height: 100px; }
}
