@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap');

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

:root {
  --pink: #d42e6a;
  --pink-muted: #c42e5e;
  --dark: #111111;
  --mid: #555555;
  --light: #aaaaaa;
  --rule: #e0e0e0;
  --bg: #fafaf8;
  --white: #ffffff;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--serif);
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
}

/* ── GRAIN OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 4rem;
  background: rgba(255,255,255,1);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}

.nav-logo {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--dark);
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-logo span { color: var(--pink); }

.nav-logo-img {
  height: 80px;
  width: auto;
  display: block;
}

/* ── NAV LINKS ── */
.nav-links {
  list-style: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  z-index: 200;
  display: none;
}

.nav-links.open {
  display: flex;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--mid);
  transition: color 0.2s;
}

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

@media (min-width: 769px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 4rem;
    left: auto;
    bottom: auto;
    display: flex;
    flex-direction: row;
    background: none;
    gap: 2.5rem;
    z-index: 100;
    align-items: center;
    height: auto;
    padding: 1.4rem 0;
  }
  .nav-close-btn { display: none; }
}

/* ── NAV TOGGLE ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 201;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
  padding: 0.5rem;
}

/* ── HERO ── */
#hero {
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 7rem 4rem 5rem;
  position: relative;
  z-index: 1;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right-inner {
  position: absolute;
  inset: 0;
  background: #f0ede8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.hero-right-inner::after {
  content: '';
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: var(--rule);
}

.hero-overline {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-overline::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--pink);
}

.hero-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--pink);
  margin-bottom: 2rem;
}

.hero-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--pink);
  font-size: 1.1em;
}

.hero-sub {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.75;
  color: var(--mid);
  max-width: 380px;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.btn-primary {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: var(--dark);
  padding: 1rem 2.5rem;
  transition: background 0.25s;
}

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

.btn-ghost {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--mid);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover { color: var(--pink); border-color: var(--pink); }

.placeholder-icon { font-size: 4rem; opacity: 0.15; }

.placeholder-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light);
}

/* ── SHARED SECTION ── */
section { padding: 7rem 4rem; position: relative; z-index: 1; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--pink);
}

.section-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--dark);
}

/* ── ABOUT ── */
#about {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.about-left { padding-top: 0.4rem; }

.about-body {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 2;
  color: #333;
}

.about-body p + p { margin-top: 1.4rem; }

.about-body em {
  font-style: italic;
  color: var(--dark);
}

.about-pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--dark);
  border-left: 2px solid var(--pink);
  padding-left: 1.8rem;
  margin: 2.5rem 0;
}

/* ── COLLECTION ── */
#collection {
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}

.collection-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--rule);
}

.collection-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 300px 300px 300px;
  gap: 1px;
  background: var(--rule);
}

.collection-item {
  background: var(--bg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

/* GROUP 1 */
.collection-item:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.collection-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.collection-item:nth-child(3) { grid-column: 3; grid-row: 1; }
.collection-item:nth-child(4) { grid-column: 2 / 4; grid-row: 2; }

/* GROUP 2 */
.collection-item:nth-child(5) { grid-column: 1; grid-row: 3 / 5; }
.collection-item:nth-child(6) { grid-column: 2; grid-row: 3; }
.collection-item:nth-child(7) { grid-column: 3; grid-row: 3; }
.collection-item:nth-child(8) { grid-column: 2 / 4; grid-row: 4; }

.collection-img {
  width: 100%;
  height: 100%;
  background: #ece9e3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  overflow: hidden;
  position: relative;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collection-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-item:hover .collection-img { transform: scale(1.03); }

.collection-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.6rem;
  background: rgba(255,255,255,0.92);
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.collection-category {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light);
}

.collection-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--dark);
}

/* ── SHOP ── */
#shop {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}

.shop-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--rule);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.shop-img {
  aspect-ratio: 1;
  background: #f0ede8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
  overflow: hidden;
  position: relative;
}

.shop-img-inner {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.shop-card:hover .shop-img-inner { transform: scale(1.04); }

.shop-rule { width: 100%; height: 1px; background: var(--rule); margin-bottom: 1.2rem; }

.shop-category {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 0.4rem;
}

.shop-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 1rem;
}

.shop-link {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid var(--dark);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.shop-link:hover { color: var(--pink); border-color: var(--pink); }

/* ── STOCKISTS ── */
#stockists {
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}

.stockists-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.stockists-desc {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--mid);
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

.stockist-enquiry {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: var(--dark);
  padding: 1rem 2.5rem;
  transition: background 0.25s;
}

.stockist-enquiry:hover { background: var(--pink); }

.stockists-right { padding-top: 0.4rem; }

.stockist-empty {
  border: 1px solid var(--rule);
  padding: 3rem;
  text-align: center;
}

.stockist-empty-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--light);
  margin-bottom: 0.5rem;
}

.stockist-empty-sub {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light);
}

/* ── CONTACT ── */
#contact {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 8rem 4rem;
}

#contact .eyebrow { justify-content: center; color: rgba(255,255,255,0.4); }
#contact .eyebrow::before { background: rgba(255,255,255,0.4); }

.contact-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 1rem;
}

.contact-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--pink);
  font-size: 1.1em;
}

.contact-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin-bottom: 3.5rem;
}

.social-links {
  display: flex;
  gap: 1px;
  justify-content: center;
  margin-bottom: 3rem;
  background: #222;
}

.social-link {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  padding: 1rem 2rem;
  background: var(--dark);
  transition: color 0.2s, background 0.2s;
}

.social-link:hover { color: var(--white); background: var(--pink); }

.contact-email {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--light);
}

.contact-email a {
  color: var(--pink);
  text-decoration: underline;
  transition: color 0.2s;
}

.contact-email a:hover { color: var(--white); }

/* ── FOOTER ── */
footer {
  background: #0a0a0a;
  color: #444;
  text-align: center;
  padding: 1.6rem;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

footer span { color: var(--pink); }

footer a {
  color: #444;
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover { color: var(--pink); }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 1.2rem 2.5rem; }
  section { padding: 5rem 2.5rem; }
  .hero-left { padding: 8rem 2.5rem 5rem; }
  #about { grid-template-columns: 1fr; gap: 2.5rem; }
  .collection-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .collection-item:nth-child(n) { grid-column: auto; grid-row: auto; }
  .stockists-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  nav { z-index: 99; }
  #hero { grid-template-columns: 1fr; position: relative; }
  .hero-left { padding: 8rem 2rem 5rem; position: relative; z-index: 2; }
  .hero-right { position: absolute; inset: 0; z-index: 1; }
  .hero-right-inner { position: absolute; inset: 0; }
  .hero-right-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
  }
  .hero-right-inner img { width: 100%; height: 100%; object-fit: cover; }
  .hero-left .hero-title,
  .hero-left .hero-sub,
  .hero-left .btn-ghost { color: var(--white); }
  .shop-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .collection-header, .shop-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .nav-toggle { display: flex; z-index: 201; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 200;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    background: var(--bg);
  }
}

@media (max-width: 560px) {
  nav { padding: 1rem 1.5rem; }
  section { padding: 4rem 1.5rem; }
  .collection-grid { grid-template-columns: 1fr; }
  .collection-item:nth-child(n) { grid-column: auto; grid-row: auto; }
  .shop-grid { grid-template-columns: 1fr; }
}
