/* Charlotte Alexandra — elegant celestial gold, with a little sparkle.
   Palette drawn from her logo (hand-drawn gold line art) and her
   booth styling (blush pink cards, teal sparkle tulle). */

:root {
  --gold: #b99a66;
  --gold-deep: #97794a;
  --gold-soft: rgba(185, 154, 102, 0.16);
  --ink: #453a2c;
  --ink-soft: #7d7161;
  --blush: #e7b8b0;
  --blush-soft: rgba(231, 184, 176, 0.22);
  --teal: #79c7c4;
  --teal-soft: rgba(121, 199, 196, 0.18);
  --magenta: #c22f95;
  --magenta-bright: #de3fae;
  --magenta-soft: rgba(194, 47, 149, 0.1);
  --purple: #8455b8;
  --purple-soft: rgba(132, 85, 184, 0.12);
  --cream: #fdfbf7;
  --card: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 32px rgba(151, 121, 74, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.15;
}

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

a {
  color: var(--gold-deep);
}

.wrap {
  width: min(1080px, 92%);
  margin: 0 auto;
}

/* the logo art is gold on white; multiply melts the white away */
.blend {
  mix-blend-mode: multiply;
}

/* ---------- header ---------- */

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(253, 251, 247, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(185, 154, 102, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}

.logo img {
  width: 54px;
  height: 54px;
  /* the artwork sits inside generous margins; scaling it up reads
     better at header size — the white bleed vanishes via multiply */
  transform: scale(1.6);
}

.logo-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  white-space: nowrap;
}

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

.nav-links a.btn {
  color: white;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  padding: 0.75rem 1.7rem;
  border-radius: 999px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--magenta-bright), var(--purple));
  color: white;
  box-shadow: 0 6px 18px rgba(194, 47, 149, 0.32);
}

.btn-secondary {
  background: transparent;
  color: var(--gold-deep);
  border: 1.5px solid var(--gold);
}

.btn-secondary:hover {
  background: var(--gold-soft);
}

.btn-ghost {
  background: var(--magenta-soft);
  color: var(--ink-soft);
  cursor: default;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.92rem;
}

.btn-ghost:hover {
  transform: none;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 3.5rem 0 4.5rem;
  background:
    radial-gradient(circle at 12% 18%, var(--magenta-soft), transparent 38%),
    radial-gradient(circle at 88% 22%, var(--purple-soft), transparent 38%),
    radial-gradient(circle at 78% 88%, var(--teal-soft), transparent 35%),
    radial-gradient(circle at 50% 110%, var(--gold-soft), transparent 50%);
}

.hero-logo {
  width: min(360px, 72vw);
  margin: -1.5rem auto -0.5rem;
}

.hero .tagline {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.hero p.sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 34rem;
  margin: 0 auto 2.2rem;
  letter-spacing: 0.04em;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.sparkle {
  position: absolute;
  z-index: -1;
  color: var(--gold);
  font-size: 1.3rem;
  opacity: 0.8;
  animation: twinkle 4.5s ease-in-out infinite;
  pointer-events: none;
}

.sparkle:nth-child(odd) {
  animation-delay: 2s;
  font-size: 1rem;
}

.sparkle:nth-child(3n) {
  color: var(--magenta);
}

.sparkle:nth-child(4n) {
  color: var(--purple);
}

.accent {
  color: var(--magenta);
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.85);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.1);
  }
}

/* ---------- sections ---------- */

section {
  padding: 3.5rem 0;
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 4.5vw, 2.7rem);
}

.section-title .flourish {
  color: var(--magenta);
  font-size: 0.6em;
  vertical-align: middle;
  padding: 0 0.5rem;
}

.section-title .flourish + .flourish,
.section-title .flourish:last-child {
  color: var(--purple);
}

.section-sub {
  text-align: center;
  color: var(--ink-soft);
  margin: 0.3rem 0 2.4rem;
  letter-spacing: 0.04em;
}

/* ---------- product cards ---------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.6rem;
}

.product-card {
  background: var(--card);
  border: 1px solid rgba(185, 154, 102, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease;
}

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

.product-photo {
  aspect-ratio: 1;
  width: 100%;
  object-fit: cover;
}

.product-placeholder {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-size: 2.6rem;
  color: var(--gold);
  background: linear-gradient(150deg, var(--magenta-soft), var(--cream) 45%, var(--purple-soft));
}

.product-card:nth-child(3n + 1) .product-placeholder {
  color: var(--magenta);
}

.product-card:nth-child(3n + 2) .product-placeholder {
  color: var(--purple);
}

.product-body {
  padding: 1.15rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.product-name-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.6rem;
}

.product-name-row h3 {
  font-size: 1.3rem;
}

.product-price {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  color: var(--magenta);
  font-size: 1.25rem;
  white-space: nowrap;
}

.product-desc {
  color: var(--ink-soft);
  font-size: 0.94rem;
  flex: 1;
}

.product-body .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.sold-ribbon {
  position: absolute;
  top: 14px;
  right: -34px;
  background: var(--gold);
  color: white;
  font-weight: 600;
  padding: 0.25rem 2.6rem;
  transform: rotate(35deg);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
}

/* ---------- about ---------- */

.about {
  background: white;
  border-top: 1px solid rgba(185, 154, 102, 0.18);
  border-bottom: 1px solid rgba(185, 154, 102, 0.18);
}

.about-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2.8rem;
  align-items: center;
}

.about-photo {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(185, 154, 102, 0.25);
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 0.9rem;
}

.about-text p {
  color: var(--ink-soft);
  margin-bottom: 0.9rem;
}

/* ---------- events ---------- */

.event-list {
  display: grid;
  gap: 1rem;
  max-width: 620px;
  margin: 0 auto;
}

.event-card {
  background: var(--card);
  border: 1px solid rgba(185, 154, 102, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem 1.5rem;
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.event-icon {
  font-size: 1.5rem;
  color: var(--magenta);
}

.event-card:nth-child(even) .event-icon {
  color: var(--purple);
}

.event-card h3 {
  font-size: 1.35rem;
}

.event-meta {
  color: var(--ink-soft);
  font-size: 0.94rem;
  letter-spacing: 0.03em;
}

.no-events {
  text-align: center;
  color: var(--ink-soft);
}

/* ---------- footer ---------- */

footer {
  background: var(--ink);
  color: #efe8dc;
  text-align: center;
  padding: 3.2rem 0 2.6rem;
  margin-top: 2rem;
}

footer h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

footer p {
  color: #c9bda9;
  margin-bottom: 1.5rem;
}

footer .btn-primary {
  box-shadow: none;
}

footer .fine-print {
  margin-top: 2.2rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: #a2957f;
}

/* ---------- responsive ---------- */

@media (max-width: 720px) {
  .about-inner {
    grid-template-columns: 1fr;
  }

  .nav-links {
    gap: 1rem;
  }

  /* the Shop link already covers it, and the pill overflows narrow screens */
  .nav-links a.btn {
    display: none;
  }
}
