:root {
  --black: #0b0b0b;
  --charcoal: #151515;
  --ink: #1f1f1f;
  --white: #f7f7f5;
  --silver: #dbdbd8;
  --mist: #b7b7b4;
  --line: #ffffff2a;
  --line-soft: #ffffff14;
  --radius-lg: 1.35rem;
  --radius-sm: .9rem;
  --ease: cubic-bezier(.2,.9,.2,1);
  --content-width: min(95vw, 1700px);
}

* { box-sizing: border-box; }

html, body { margin: 0; }

body {
  font-family: "Manrope", sans-serif;
  color: #121212;
  min-height: 100vh;
  background: #ffffff;
  overflow-x: hidden;
}

.top-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 45;
  height: 30px;
  padding: 0 clamp(.7rem, 2.4vw, 1.8rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-bottom: 1px solid #ececec;
}

.top-strip-link {
  color: #131313;
  text-decoration: none;
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.top-strip-link i {
  font-size: .94rem;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(#00000008 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: .2;
  z-index: 1;
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  text-align: center;
  background: #ffffff;
  transition: opacity .8s var(--ease), visibility .8s var(--ease);
}

.intro-stage {
  animation: introRise 1.8s var(--ease) both;
}

.logo-image {
  display: block;
  width: clamp(130px, 18vw, 220px);
  max-width: 88vw;
  height: auto;
  margin: 0 auto 1.25rem;
}

.explore-btn {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
  font-family: "Manrope", sans-serif;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  padding: 1rem 2.5rem;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.5s var(--ease);
}

.explore-btn:hover,
.explore-btn:focus-visible {
  background: var(--black);
  color: var(--white);
  transform: translateY(0);
  box-shadow: none;
}

body.entered .intro {
  opacity: 0;
  visibility: hidden;
}

.storefront {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  padding: clamp(1rem, 3.1vw, 3rem);
}

body.entered .storefront {
  opacity: 1;
  transform: translateY(0);
}

.hero,
.order {
  border: none;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.hero {
  max-width: var(--content-width);
  margin: 0 auto 2.4rem;
  padding: 4rem 0 2rem;
  text-align: center;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-bottom: .5rem;
  margin-bottom: .7rem;
}

.brand {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.nav-logo {
  display: block;
  width: clamp(110px, 12vw, 155px);
  height: auto;
}

.hero-grid {
  display: block;
  text-align: center;
}

.eyebrow {
  font-family: "Manrope", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: #888;
  margin-bottom: 1rem;
  display: block;
  text-transform: uppercase;
}

.hero h2,
.section-head h3,
.order h3,
.card h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  color: var(--black);
}

.hero h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-style: italic;
  max-width: 12ch;
  margin: 0 auto;
  line-height: 1.1;
  text-wrap: balance;
}

.hero-sub {
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  color: #555;
  margin-top: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.collection {
  max-width: var(--content-width);
  margin: 0 auto 2.4rem;
}

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

.section-head h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
  font-weight: 300;
  margin-top: .45rem;
}

.product-grid.gallery-mode {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  align-items: start;
}

.product-grid {
  /* Fallback or if gallery-mode class missing */
  display: grid;
  gap: 1.35rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Reduced from 320px */
}

.card {
  grid-column: span 3; /* Changed from span 4 (3 cols) to span 3 (4 cols) */
  border: none;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  transition: transform .3s var(--ease);
}

.card:nth-child(4n+2),
.card:nth-child(4n+4) {
  margin-top: 0; /* Stagger effect removed */
}

.card:nth-child(3n+2) {
  margin-top: 0; /* Reset old stagger */
}

.card:hover,
.card:focus-within {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.card-media {
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: #f0f0f0;
}

.card-image {
  transition: transform 1.2s var(--ease), filter 0.5s var(--ease);
  filter: grayscale(20%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card:hover .card-image {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.card-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.9); /* Subtle frosted overlay */
  opacity: 0;
  transition: opacity .4s var(--ease);
}

.card:hover .card-overlay,
.card:focus-within .card-overlay,
.card.is-open .card-overlay {
  opacity: 1;
}

.card-title {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
  font-style: italic;
  font-weight: 400;
  text-align: center;
  padding: 0 1rem;
  margin: 0;
  color: #161616;
}

.card-caption {
  display: none; /* Hidden as prices are removed */
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  color: #666;
  margin-top: 1rem;
  letter-spacing: 0.1em;
  border: none;
}

/* Philosophy Section removed */

.order {
  text-align: center;
  border: none;
  box-shadow: none;
  padding: 6rem 1rem;
  background: #f9f9f9;
  max-width: 100%;
  margin: 0;
}

.order h3 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.order p:not(.eyebrow) {
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #555;
}

.pricing-link {
  font-family: "Manrope", sans-serif;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-decoration: none;
  border-bottom: 1px solid black;
  padding: 0 0 5px 0;
  display: inline-block;
  background: transparent;
  color: #111111;
  margin-top: 0;
}

.contact-lines {
  max-width: 500px;
  margin: 0 auto 3rem;
  border-top: 1px solid #ddd;
}

.contact-lines p {
  border-bottom: 1px solid #ddd;
  padding: 1.5rem 0;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: #0f0f0f;
  margin: 0;
}

.contact-lines span {
  font-size: 0.7rem;
  color: #888;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-lines a {
  font-family: "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #050505;
  text-decoration: none;
  line-height: 1.1;
  font-weight: 400;
}

.contact-lines a i {
  font-size: .95rem;
  vertical-align: middle;
  margin-right: .2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

@keyframes introRise {
  from { opacity: 0; transform: translateY(22px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 900px) {
  .card { grid-column: span 6; } /* 2 columns on tablet */
  .card:nth-child(3n+2) { margin-top: 0; }
  .card:nth-child(even) { margin-top: 3rem; }
}

@media (max-width: 1200px) {
    /* Ensure 3 columns on smaller desktops */
   .card { grid-column: span 4; }
}

@media (max-width: 600px) {
  .hero h2 { font-size: 2.2rem; }
  .product-grid.gallery-mode { display: block; }
  .card { margin-bottom: 4rem; width: 100%; max-width: none; }
  .card:nth-child(even) { margin-top: 0; }
  .philosophy p:not(.eyebrow) { font-size: 1.25rem; }
}

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