@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Playfair+Display:wght@500;600&display=swap");

/* ---------------------------------
   Color palette
--------------------------------- */

:root {
  --background: #100a14;
  --background-deep: #09060c;
  --background-soft: #1a1120;
  --panel: rgba(38, 24, 45, 0.78);
  --panel-strong: rgba(45, 27, 52, 0.94);

  --text: #f2e9ef;
  --text-soft: #dacbd5;
  --muted: #b99eaf;

  --accent: #d89ebe;
  --accent-light: #f0c9dd;
  --accent-pale: #f8e3ee;

  --border: rgba(225, 170, 201, 0.26);
  --border-bright: rgba(237, 190, 216, 0.52);

  --shadow: rgba(0, 0, 0, 0.38);
  --glow: rgba(219, 139, 187, 0.2);
}

/* ---------------------------------
   Reset and base
--------------------------------- */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;

  margin: 0;
  min-height: 100vh;

  overflow-x: hidden;

  background:
    radial-gradient(
      circle at 50% -10%,
      rgba(93, 43, 102, 0.32),
      transparent 36%
    ),
    radial-gradient(
      circle at 10% 45%,
      rgba(71, 34, 77, 0.14),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #150d1a 0%,
      var(--background) 55%,
      var(--background-deep) 100%
    );

  color: var(--text);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 20px;
  line-height: 1.7;

  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";

  position: fixed;
  inset: 0;

  z-index: -3;
  pointer-events: none;

  background:
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 3px,
      rgba(255, 255, 255, 0.006) 4px
    );

  opacity: 0.3;
}

::selection {
  background: rgba(222, 151, 192, 0.4);
  color: white;
}

/* ---------------------------------
   Animated canvas
--------------------------------- */

#star-canvas {
  position: fixed;
  inset: 0;

  width: 100%;
  height: 100%;

  z-index: 0;
  pointer-events: none;
}

/* ---------------------------------
   Shared elements
--------------------------------- */

header,
main,
footer {
  position: relative;
  z-index: 2;
}

a {
  color: var(--accent-light);
  text-decoration: none;

  transition:
    color 0.25s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

a:hover {
  color: white;
}

.section-shell {
  position: relative;

  border: 1px solid var(--border);
  border-radius: 10px;

  background:
    linear-gradient(
      145deg,
      rgba(67, 39, 73, 0.58),
      rgba(26, 17, 32, 0.91)
    );

  box-shadow:
    0 24px 65px var(--shadow),
    inset 0 0 45px rgba(239, 197, 216, 0.025);

  backdrop-filter: blur(3px);
}

.section-label {
  margin: 0;

  color: var(--accent);

  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.21rem;
  text-transform: uppercase;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 3rem;

  text-align: center;
}

.section-heading h2 {
  margin: 0.45rem 0 0.7rem;

  color: var(--text);

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size: clamp(2.3rem, 5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.2;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
}

/* ---------------------------------
   Navigation
--------------------------------- */

.nav {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 74px;
  padding: 1rem 2rem;

  background: rgba(9, 6, 12, 0.48);
  border-bottom: 1px solid var(--border);

  backdrop-filter: blur(10px);
}

.site-mark {
  position: absolute;
  left: 2rem;

  color: var(--accent);
  font-size: 1.4rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.25rem;
}

.nav-links a {
  position: relative;

  color: var(--muted);

  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
}

.nav-links a::after {
  content: "";

  position: absolute;
  left: 50%;
  bottom: -0.5rem;

  width: 0;
  height: 1px;

  background: var(--accent-light);

  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--accent-light);
}

.nav-links a:hover::after {
  width: 100%;
}

/* ---------------------------------
   Hero
--------------------------------- */

.site-header {
  min-height: 760px;

  background:
    linear-gradient(
      rgba(12, 7, 16, 0.08),
      rgba(12, 7, 16, 0.56)
    ),
    radial-gradient(
      circle at 50% 44%,
      rgba(117, 56, 111, 0.24),
      transparent 40%
    );

  border-bottom: 1px solid var(--border);
}

.hero {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  min-height: 680px;

  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 5rem 1rem 8rem;

  text-align: center;
}

.hero-glow {
  position: absolute;
  top: 47%;
  left: 50%;

  width: 580px;
  height: 350px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(203, 121, 170, 0.2),
      rgba(137, 71, 136, 0.08) 45%,
      transparent 72%
    );

  filter: blur(18px);

  transform: translate(-50%, -50%);
  pointer-events: none;

  animation: candle-breathe 6s ease-in-out infinite alternate;
}

@keyframes candle-breathe {
  from {
    opacity: 0.55;
    transform: translate(-50%, -50%) scale(0.96);
  }

  to {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1.06);
  }
}

.eyebrow {
  position: relative;

  margin: 0 0 1.25rem;

  color: var(--accent);

  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.28rem;
  text-transform: uppercase;
}

.hero h1 {
  position: relative;

  margin: 0;

  color: var(--text);

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size: clamp(4rem, 10vw, 7.5rem);
  font-weight: 500;
  letter-spacing: 0.3rem;
  line-height: 1.08;
  text-transform: lowercase;

  text-shadow:
    0 0 18px rgba(255, 233, 245, 0.12),
    0 0 45px var(--glow);
}

.tagline {
  position: relative;

  margin: 2rem 0 0;

  color: var(--accent-light);

  font-size: clamp(1.25rem, 3vw, 1.7rem);
  font-style: italic;
  letter-spacing: 0.05rem;
  line-height: 1.55;
}

.ornamental-divider {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;

  width: min(390px, 80%);
  margin: 2.4rem auto 0;
}

.ornamental-divider span {
  flex: 1;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      var(--border-bright),
      transparent
    );
}

.ornamental-divider b {
  color: var(--accent);
  font-size: 0.85rem;
}

.hero-link {
  position: relative;

  display: inline-flex;
  align-items: center;
  gap: 0.55rem;

  margin-top: 2rem;

  color: var(--muted);

  font-size: 0.9rem;
  font-style: italic;
}

.hero-link:hover {
  color: var(--accent-light);
  transform: translateY(2px);
}

/* ---------------------------------
   Main
--------------------------------- */

main {
  width: min(1120px, 90%);
  margin: 0 auto;
  padding: 6rem 0;
}

/* ---------------------------------
   Welcome
--------------------------------- */

.welcome {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 3.5rem;
  align-items: center;

  max-width: 920px;
  margin: 0 auto;
  padding: 4rem;
}

.botanical-mark {
  color: var(--accent);

  font-size: 8.5rem;
  line-height: 1;
  text-align: center;

  opacity: 0.6;

  transform: rotate(-18deg);

  text-shadow: 0 0 20px rgba(216, 158, 190, 0.16);
}

.welcome-copy h2 {
  margin: 0.5rem 0 1.25rem;

  color: var(--text);

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
}

.welcome-copy p:not(.section-label) {
  color: var(--text-soft);
}

.tiny-heart {
  margin-top: 1rem;

  color: var(--accent);
  font-size: 1.6rem;
}

/* ---------------------------------
   Quote
--------------------------------- */

.quote-section {
  position: relative;

  max-width: 820px;
  margin: 5.5rem auto;

  text-align: center;
}

.quote-star {
  display: inline-block;

  margin-bottom: 1rem;

  color: var(--accent);
  font-size: 1.3rem;

  animation: quote-twinkle 3s ease-in-out infinite;
}

@keyframes quote-twinkle {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.quote-section blockquote {
  margin: 0;

  color: var(--accent-light);

  font-size: clamp(1.45rem, 3vw, 2rem);
  font-style: italic;
  line-height: 1.55;
}

.quote-section p {
  margin: 1.25rem 0 0;

  color: var(--muted);

  font-size: 0.82rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}

/* ---------------------------------
   Currently
--------------------------------- */

.currently {
  max-width: 980px;
  margin: 0 auto 5.5rem;
  padding: 3.5rem;
}

.current-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;

  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: 7px;

  background: var(--border);
}

.current-item {
  min-height: 190px;
  padding: 2rem 1.25rem;

  background:
    linear-gradient(
      180deg,
      rgba(50, 30, 57, 0.95),
      rgba(27, 18, 33, 0.97)
    );

  text-align: center;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.current-item:hover {
  background:
    linear-gradient(
      180deg,
      rgba(70, 39, 75, 0.98),
      rgba(32, 20, 38, 0.98)
    );
}

.current-icon {
  display: block;

  margin-bottom: 0.65rem;

  color: var(--accent-light);
  font-size: 1.65rem;
}

.current-label {
  margin: 0;

  color: var(--accent);

  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.17rem;
  text-transform: uppercase;
}

.current-item h3 {
  margin: 0.55rem 0 0;

  color: var(--text);

  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.35;
}

/* ---------------------------------
   Featured entry
--------------------------------- */

.featured-entry {
  max-width: 900px;
  margin: 0 auto 6rem;
  padding: 4rem;

  text-align: center;
}

.entry-topline {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;

  margin-bottom: 1rem;
}

.entry-date {
  margin: 0;

  color: var(--muted);

  font-size: 0.8rem;
  letter-spacing: 0.17rem;
  text-transform: uppercase;
}

.featured-entry h2 {
  max-width: 720px;
  margin: 0 auto;

  color: var(--text);

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.2;
}

.entry-divider {
  margin: 1.5rem 0;

  color: var(--accent);
}

.entry-preview {
  max-width: 670px;
  margin: 1rem auto;

  color: var(--text-soft);
  font-size: 1.05rem;
}

/* ---------------------------------
   Links
--------------------------------- */

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;

  margin-top: 1.2rem;

  color: var(--accent-light);
  font-style: italic;
}

.text-link span {
  transition: transform 0.25s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

/* ---------------------------------
   Cards
--------------------------------- */

.collection-section {
  padding-top: 0.5rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.card {
  position: relative;

  min-height: 410px;
  padding: 3rem 2.25rem;

  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      rgba(64, 38, 70, 0.74),
      rgba(27, 18, 33, 0.95)
    );

  border: 1px solid var(--border);
  border-radius: 9px;

  text-align: center;

  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.card::after {
  content: "";

  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 0;

  height: 95px;

  background:
    radial-gradient(
      ellipse at bottom,
      rgba(186, 112, 158, 0.1),
      transparent 70%
    );

  pointer-events: none;
}

.card-shine {
  position: absolute;
  top: -90px;
  right: -80px;

  width: 210px;
  height: 210px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(236, 185, 215, 0.14),
      transparent 68%
    );

  transition:
    transform 0.5s ease,
    opacity 0.5s ease;
}

.card:hover {
  transform: translateY(-9px);

  border-color: var(--border-bright);

  box-shadow:
    0 28px 65px rgba(0, 0, 0, 0.38),
    0 0 28px var(--glow);
}

.card:hover .card-shine {
  opacity: 1;
  transform: translate(-24px, 24px) scale(1.2);
}

.card-icon {
  color: var(--accent-light);

  font-size: 2.3rem;

  text-shadow: 0 0 14px rgba(240, 201, 221, 0.25);
}

.card h3 {
  margin: 0.8rem 0 0;

  color: var(--text);

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.14rem;
  text-transform: lowercase;
}

.small-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;

  width: 130px;
  margin: 0.8rem auto 1.2rem;
}

.small-divider span {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.small-divider b {
  color: var(--accent);
  font-size: 0.6rem;
}

.card p {
  color: var(--text-soft);
}

/* ---------------------------------
   Closing note
--------------------------------- */

.closing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;

  margin: 5rem auto 0;

  color: var(--muted);
  text-align: center;
  font-style: italic;
}

.closing-note span {
  color: var(--accent);
}

/* ---------------------------------
   Footer
--------------------------------- */

footer {
  padding: 3.5rem 1rem;

  background: rgba(7, 4, 9, 0.7);
  border-top: 1px solid var(--border);

  color: var(--muted);
  text-align: center;
}

.footer-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;

  width: min(520px, 80%);
  margin: 0 auto 1.5rem;
}

.footer-divider span {
  flex: 1;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      var(--border-bright),
      transparent
    );
}

.footer-divider b {
  color: var(--accent);
  font-size: 1.3rem;
}

footer p {
  margin: 0.25rem;

  font-size: 0.8rem;
  letter-spacing: 0.14rem;
  text-transform: uppercase;
}

.made-with {
  opacity: 0.72;
  text-transform: lowercase;
}

/* ---------------------------------
   Responsive design
--------------------------------- */

@media (max-width: 950px) {
  .current-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .nav {
    padding: 1.2rem 1rem;
  }

  .site-mark {
    display: none;
  }

  .nav-links {
    gap: 0.9rem 1.3rem;
  }

  .nav-links a {
    font-size: 0.68rem;
  }

  .site-header {
    min-height: 650px;
  }

  .hero {
    min-height: 570px;
    padding: 4rem 0.5rem 6rem;
  }

  .hero h1 {
    letter-spacing: 0.12rem;
  }

  main {
    width: 92%;
    padding: 4rem 0;
  }

  .welcome {
    grid-template-columns: 1fr;
    gap: 1rem;

    padding: 2.5rem;
  }

  .botanical-mark {
    display: none;
  }

  .currently,
  .featured-entry {
    padding: 2.5rem 1.6rem;
  }

  .closing-note {
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 18px;
  }

  .nav-links {
    gap: 0.7rem 1rem;
  }

  .nav-links a {
    letter-spacing: 0.1rem;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .tagline br {
    display: none;
  }

  .welcome {
    padding: 2rem 1.5rem;
  }

  .current-grid {
    grid-template-columns: 1fr;
  }

  .current-item {
    min-height: 150px;
  }

  .featured-entry {
    padding: 2.5rem 1.4rem;
  }

  .entry-topline {
    flex-direction: column;
    gap: 0.35rem;
  }

  .card {
    padding: 2.5rem 1.6rem;
  }

  .closing-note span {
    display: none;
  }
}

/* ---------------------------------
   Reduced motion
--------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}/* ==========================
   Candle
========================== */

.candle{

position:relative;

width:110px;
height:180px;

margin:auto;

}

/* Glow */

.glow{

position:absolute;

top:-20px;
left:50%;

width:120px;
height:120px;

transform:translateX(-50%);

border-radius:50%;

background:
radial-gradient(circle,
rgba(255,223,165,.45),
rgba(255,190,120,.18) 45%,
transparent 72%);

filter:blur(12px);

animation:
glowPulse 4s ease-in-out infinite;

}

/* Wax */

.wax{

position:absolute;

bottom:0;
left:50%;

transform:translateX(-50%);

width:46px;
height:105px;

border-radius:8px;

background:
linear-gradient(
180deg,
#fff8ef,
#eadfcb);

box-shadow:
0 0 18px rgba(255,244,220,.18);

}

/* Wick */

.wick{

position:absolute;

bottom:102px;
left:50%;

transform:translateX(-50%);

width:2px;
height:12px;

background:#3d3024;

z-index:5;

}

/* Flame */

.flame{

position:absolute;

bottom:110px;
left:50%;

transform:
translateX(-50%);

width:22px;
height:36px;

background:
radial-gradient(circle at 50% 35%,
#fffef2 0%,
#ffe68a 38%,
#ffb347 68%,
#ff7b29 100%);

border-radius:
50% 50% 55% 55% /
65% 65% 35% 35%;

box-shadow:
0 0 22px rgba(255,200,100,.7);

animation:
flicker .18s ease-in-out infinite alternate;

z-index:6;

}

/* Flicker */

@keyframes flicker{

0%{

transform:
translateX(-50%)
rotate(-2deg)
scale(1);

}

25%{

transform:
translateX(-50%)
rotate(2deg)
scale(1.05,.95);

}

50%{

transform:
translateX(-50%)
rotate(-1deg)
scale(.95,1.06);

}

75%{

transform:
translateX(-50%)
rotate(1deg)
scale(1.04,.96);

}

100%{

transform:
translateX(-50%)
rotate(-2deg)
scale(1);

}

}

@keyframes glowPulse{

0%{

opacity:.45;

transform:
translateX(-50%)
scale(.95);

}

50%{

opacity:.75;

transform:
translateX(-50%)
scale(1.08);

}

100%{

opacity:.45;

transform:
translateX(-50%)
scale(.95);

}

}.candle:hover .flame{

box-shadow:
0 0 38px rgba(255,220,140,.95);

transform:
translateX(-50%)
scale(1.12);

transition:.25s;

}