/* ============================================================
   Yara's Way — Main Stylesheet
   ============================================================ */

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

:root {
  --blush:    #FFF0F5;
  --coral:    #FF6B6B;
  --golden:   #FFD166;
  --sky:      #74C7EC;
  --sage:     #A8D8A8;
  --lavender: #C5A3E8;
  --ink:      #2C2C2A;
  --muted:    #6B6B68;
  --white:    #FFFFFF;
  --card-bg:  #FFFDF9;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--blush);
  color: var(--ink);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; }

/* ── SCROLL PROGRESS ─────────────────────────────────── */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--golden), var(--coral), var(--lavender));
  z-index: 200;
  width: 0%;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

#stars-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ─────────────────────────────────────────────── */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 2.5rem;
  height: 88px;
  background: rgba(255,240,245,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1.5px solid rgba(255,107,107,0.15);
}

/* Left links — right-aligned toward center logo */
.nav-left {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: flex-end;
}

/* Right links — left-aligned away from center logo */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  justify-content: flex-start;
}

.nav-link {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active { color: var(--coral); }

/* Center logo column */
.nav-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1.5rem;
}

.nav-logo {
  display: block;
  text-decoration: none;
  position: relative;
  line-height: 0;
}

.nav-logo img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: block;
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(255,107,107,0.22);
}

.nav-logo:hover img {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 8px 32px rgba(255,107,107,0.45);
}

/* Pulsing coral ring around logo */
.nav-logo::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--coral);
  opacity: 0;
  animation: logoRingPulse 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes logoRingPulse {
  0%, 100% { opacity: 0;    transform: scale(1);    }
  50%       { opacity: 0.35; transform: scale(1.08); }
}

/* Cart icon */
.nav-cart {
  position: relative;
  color: var(--muted);
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-cart:hover { color: var(--coral); }

.cart-count {
  position: absolute;
  top: -7px; right: -9px;
  background: var(--coral);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.62rem;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile slide-down menu */
#mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 88px; left: 0; right: 0;
  background: rgba(255,240,245,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.5rem 2rem;
  gap: 1.25rem;
  border-bottom: 1.5px solid rgba(255,107,107,0.15);
  z-index: 99;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
#mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 9rem 2rem 4rem;
}

.splash {
  position: absolute;
  opacity: 0.22;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}
.splash:nth-child(1)  { width:340px; height:280px; background:var(--golden);  top:-60px;  left:-80px;  animation-delay:0s;   border-radius: 60% 40% 70% 30% / 50% 60% 40% 55%; }
.splash:nth-child(2)  { width:260px; height:240px; background:var(--sky);     top:10%;    right:-40px; animation-delay:1.5s; border-radius: 40% 60% 30% 70% / 60% 40% 55% 50%; }
.splash:nth-child(3)  { width:200px; height:180px; background:var(--coral);   bottom:15%; left:5%;     animation-delay:3s;   border-radius: 70% 30% 50% 60% / 40% 65% 35% 55%; }
.splash:nth-child(4)  { width:180px; height:200px; background:var(--sage);    bottom:5%;  right:10%;   animation-delay:0.8s; border-radius: 50% 50% 40% 60% / 55% 45% 60% 40%; }
.splash:nth-child(5)  { width:120px; height:100px; background:var(--lavender);top:40%;    left:8%;     animation-delay:2.2s; border-radius: 65% 35% 55% 45% / 45% 55% 45% 60%; }

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
}

.hero-badge {
  display: inline-block;
  background: var(--golden);
  color: var(--ink);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.6s ease 0.2s forwards;
}

.hero-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--ink);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeSlideUp 0.7s ease 0.45s forwards;
}

.hero-title em {
  font-style: normal;
  color: var(--coral);
  position: relative;
  display: inline-block;
}
.hero-title em::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0; right: 0;
  height: 6px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12'%3E%3Cpath d='M0 8 Q25 2 50 8 Q75 14 100 8 Q125 2 150 8 Q175 14 200 8' fill='none' stroke='%23FFD166' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") repeat-x center / 120px 8px;
  animation: drawUnderline 0.8s ease 1.2s both;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  opacity: 0;
  animation: fadeSlideUp 0.6s ease 0.7s forwards;
}
.hero-subtitle strong { font-weight: 700; color: var(--ink); }

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.6s ease 0.9s forwards;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  background: var(--coral);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 18px rgba(255,107,107,0.3);
  display: inline-block;
}
.btn-primary:hover  { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,107,0.4); }
.btn-primary:active { transform: scale(0.95); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  display: inline-block;
}
.btn-ghost:hover  { background: var(--ink); color: #fff; }
.btn-ghost:active { transform: scale(0.95); }

/* ── HERO ART CARDS ──────────────────────────────────── */
.hero-art-preview {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 3.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.7s ease 1.1s forwards;
}

.hero-art-card {
  background: var(--white);
  border-radius: 12px;
  padding: 0.75rem;
  width: 130px;
  box-shadow: 0 6px 24px rgba(44,44,42,0.1);
  transform: rotate(var(--r));
  transition: transform 0.3s;
  text-decoration: none;
  display: block;
}
.hero-art-card:nth-child(1) { --r: -4deg;   animation: cardDrop 0.5s cubic-bezier(.34,1.56,.64,1) 1.3s  both; }
.hero-art-card:nth-child(2) { --r: 2deg;  margin-top: -12px; animation: cardDrop 0.5s cubic-bezier(.34,1.56,.64,1) 1.45s both; }
.hero-art-card:nth-child(3) { --r: -2.5deg; margin-top: 8px;  animation: cardDrop 0.5s cubic-bezier(.34,1.56,.64,1) 1.6s  both; }
.hero-art-card:nth-child(4) { --r: 3.5deg;  margin-top: -6px; animation: cardDrop 0.5s cubic-bezier(.34,1.56,.64,1) 1.75s both; }
.hero-art-card:hover { transform: rotate(0deg) scale(1.06); }

.hero-art-card img, .art-thumb { width: 100%; aspect-ratio: 1; border-radius: 8px; object-fit: cover; }
.art-img-placeholder {
  width: 100%; aspect-ratio: 1;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}
.art-img-placeholder.c1 { background: #FFF0C0; }
.art-img-placeholder.c2 { background: #D4F0FF; }
.art-img-placeholder.c3 { background: #FFE0E0; }
.art-img-placeholder.c4 { background: #E0FFE8; }

.art-card-label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
  margin-top: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── SECTION COMMON ──────────────────────────────────── */
section { padding: 5rem 2rem; }

.section-tag {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.75rem;
  transition: letter-spacing 0.3s ease;
  cursor: default;
}
.section-tag:hover { letter-spacing: 4px; }

.section-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
}

.section-header { margin-bottom: 3rem; }

/* ── GALLERY ─────────────────────────────────────────── */
#gallery, .gallery-archive-page { background: #fff; }

.gallery-container { max-width: 1100px; margin: 0 auto; }

.gallery-filters {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.45rem 1.2rem;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--blush);
  color: var(--muted);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem;
}

.gallery-card {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(44,44,42,0.07);
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1.5px solid rgba(44,44,42,0.06);
}
.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(44,44,42,0.14);
}
.gallery-card-link { text-decoration: none; color: inherit; display: block; }

.gallery-art {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.gallery-art img { width: 100%; height: 100%; object-fit: cover; }

.gallery-art span:first-child {
  display: inline-block;
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1);
}
.gallery-card:hover .gallery-art span:first-child { transform: scale(1.25) rotate(-8deg); }

.gallery-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--golden);
  color: var(--ink);
  font-family: 'Nunito', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  animation: badgeBounce 2s ease-in-out infinite;
}

.gallery-info { padding: 1rem 1.1rem 1.1rem; }

.gallery-art-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.gallery-meta { display: flex; align-items: center; justify-content: space-between; }

.gallery-medium { font-size: 0.8rem; color: var(--muted); }

.gallery-age {
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--blush);
  color: var(--coral);
  padding: 2px 8px;
  border-radius: 100px;
}

.gallery-footer { text-align: center; margin-top: 2.5rem; }

/* ── ABOUT ───────────────────────────────────────────── */
#about { background: var(--blush); }

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

.about-portrait { position: relative; }

.portrait-frame {
  width: 100%; max-width: 420px;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--golden) 0%, var(--coral) 50%, var(--lavender) 100%);
  border-radius: 24px 24px 80px 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 8rem;
  position: relative;
  overflow: hidden;
  animation: bob 4s ease-in-out infinite;
}
.portrait-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
}
.portrait-img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }

.portrait-tag {
  position: absolute;
  bottom: -12px; right: -12px;
  background: var(--white);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  box-shadow: 0 6px 24px rgba(44,44,42,0.12);
  font-family: 'Nunito', sans-serif;
  animation: popIn 0.6s cubic-bezier(.34,1.56,.64,1) 0.4s both;
}
.portrait-tag .big   { font-size: 1.6rem; font-weight: 900; color: var(--coral); }
.portrait-tag .small { font-size: 0.75rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

.fun-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }

.fun-fact {
  background: var(--white);
  border-radius: 16px;
  padding: 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.fact-icon { font-size: 1.5rem; display: inline-block; transition: transform 0.3s cubic-bezier(.34,1.56,.64,1); }
.fun-fact:hover .fact-icon { transform: scale(1.4) rotate(-10deg); }

.fact-text .fact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.15rem;
}
.fact-text .fact-value {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}

/* ── TIMELINE ────────────────────────────────────────── */
#timeline { background: #fff; }

.timeline-container { max-width: 800px; margin: 0 auto; }

.timeline {
  position: relative;
  padding-left: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 10px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--golden), var(--coral), var(--lavender), var(--sky));
  border-radius: 2px;
}

.timeline-item { position: relative; margin-bottom: 2rem; }

.timeline-dot {
  position: absolute;
  left: -2.5rem; top: 0.3rem;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 3px solid #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  animation: pulseRing 2.5s ease-in-out infinite;
}
.timeline-dot.golden  { background: var(--golden);  animation-name: pulseGolden;  animation-delay: 0s; }
.timeline-dot.coral   { background: var(--coral);   animation-name: pulseRing;    animation-delay: 0.6s; }
.timeline-dot.sky     { background: var(--sky);     animation-name: pulseSky;     animation-delay: 1.2s; }
.timeline-dot.sage    { background: var(--sage);    animation-name: pulseSage;    animation-delay: 1.8s; }

.timeline-card {
  background: var(--blush);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  border: 1.5px solid rgba(255,107,107,0.12);
}
.timeline-age {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.4rem;
}
.timeline-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.timeline-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* ── SHOP TEASER ─────────────────────────────────────── */
#shop-teaser { background: var(--blush); }

.shop-teaser-inner { max-width: 1100px; margin: 0 auto; }

.shop-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 0;
}

.shop-preview-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1.5px solid rgba(44,44,42,0.06);
  display: block;
}
.shop-preview-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(44,44,42,0.12); }
.shop-preview-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }

.shop-card-info { padding: 0.9rem 1rem; }
.shop-card-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.shop-card-price { font-size: 0.9rem; color: var(--coral); font-weight: 700; }

/* ── GUESTBOOK ───────────────────────────────────────── */
#guestbook { background: var(--blush); }

.guestbook-inner { max-width: 1100px; margin: 0 auto; }

.messages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.message-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.4rem;
  border: 1.5px solid rgba(44,44,42,0.06);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.message-card:hover {
  transform: translateY(-5px) rotate(0.5deg);
  box-shadow: 0 10px 32px rgba(255,107,107,0.14);
}
.message-card::before {
  content: '\201C';
  font-family: 'Nunito', sans-serif;
  font-size: 4rem;
  color: var(--golden);
  line-height: 1;
  position: absolute;
  top: 0.2rem; left: 1rem;
  opacity: 0.5;
}

.message-text { font-size: 0.95rem; line-height: 1.7; color: var(--ink); margin-top: 1rem; margin-bottom: 1rem; }
.message-from { display: flex; align-items: center; gap: 0.6rem; }
.message-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: #fff;
  flex-shrink: 0;
}
.av-coral    { background: var(--coral); }
.av-sky      { background: var(--sky);      color: var(--ink); }
.av-sage     { background: var(--sage);     color: var(--ink); }
.av-golden   { background: var(--golden);   color: var(--ink); }
.av-lavender { background: var(--lavender); }

.message-name     { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.85rem; color: var(--ink); }
.message-relation { font-size: 0.75rem; color: var(--muted); }

/* Guestbook form */
.guestbook-form {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  max-width: 560px;
  border: 1.5px solid rgba(44,44,42,0.08);
}
.form-title { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.3rem; color: var(--ink); margin-bottom: 1.25rem; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 0.75rem; }
.form-field { margin-bottom: 0.75rem; }
.form-field label {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.form-field input,
.form-field textarea {
  width: 100%;
  border: 1.5px solid rgba(44,44,42,0.15);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--blush);
  outline: none;
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--coral); }
.form-field textarea { resize: vertical; min-height: 90px; }

.guestbook-response {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  display: none;
}
.guestbook-response.success { background: #E8FFE8; color: #1a6b1a; display: block; }
.guestbook-response.error   { background: #FFEDED; color: #a33030; display: block; }

/* Shimmer on send button */
.btn-send { position: relative; overflow: hidden; }
.btn-send::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 2.5s ease-in-out infinite;
}

/* ── SINGLE ARTWORK ──────────────────────────────────── */
.single-artwork-page { padding: 8rem 2rem 4rem; }
.single-artwork-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.artwork-image-wrap { position: relative; border-radius: 20px; overflow: hidden; }
.artwork-full-img   { width: 100%; border-radius: 20px; }
.artwork-placeholder {
  width: 100%; aspect-ratio: 1;
  background: var(--blush);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 8rem;
}
.artwork-badge { top: 16px; right: 16px; font-size: 0.75rem; }

.artwork-breadcrumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 1rem; }
.artwork-breadcrumb a { text-decoration: none; color: var(--muted); }
.artwork-breadcrumb a:hover { color: var(--coral); }

.artwork-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -1px;
  color: var(--ink);
  margin: 0.5rem 0;
}
.artwork-age-tag {
  display: inline-block;
  background: var(--blush);
  color: var(--coral);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.artwork-story {
  background: var(--blush);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.5rem;
}
.artwork-story h3 { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.85rem; color: var(--coral); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 1px; }
.artwork-story p  { font-size: 0.95rem; color: var(--ink); line-height: 1.7; }
.artwork-meta-row { font-size: 0.85rem; color: var(--muted); margin: 1rem 0; }
.artwork-buy-cta  { background: var(--blush); border-radius: 16px; padding: 1.25rem 1.4rem; margin: 1.5rem 0; }
.buy-label        { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.85rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.75rem; }
.artwork-nav      { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.artwork-nav-btn  { font-size: 0.9rem; padding: 0.6rem 1.25rem; }

/* ── PAGE HERO HEADER ────────────────────────────────── */
.page-hero-header { padding-top: 5rem; }

/* ── PAGINATION ──────────────────────────────────────── */
.yarasway-pagination { margin-top: 2.5rem; }
.yarasway-pagination .nav-links { display: flex; gap: 0.5rem; justify-content: center; }
.yarasway-pagination a,
.yarasway-pagination span {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  border: 2px solid var(--coral);
  color: var(--coral);
  text-decoration: none;
  transition: all 0.2s;
}
.yarasway-pagination a:hover,
.yarasway-pagination .current {
  background: var(--coral);
  color: #fff;
}

/* ── FOOTER ──────────────────────────────────────────── */
#site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.footer-logo {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--golden);
  margin-bottom: 0.5rem;
}
.footer-tagline { font-size: 0.9rem; line-height: 1.7; }

.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 0.5rem; }
.footer-nav a { font-size: 0.9rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: var(--golden); }

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}
.footer-bottom a { color: var(--golden); text-decoration: none; }
.footer-heart { color: var(--coral); font-style: normal; display: inline-block; animation: heartbeat 1.2s ease-in-out infinite; }
.footer-copy  { margin-top: 0.35rem; opacity: 0.5; }

/* ── WOO WRAPPER ─────────────────────────────────────── */
.yarasway-woo-wrapper { padding: 8rem 2rem 4rem; background: #fff; }
.woo-inner { max-width: 1100px; margin: 0 auto; }

/* ── REVEAL ANIMATIONS ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible         { opacity: 1; transform: translateY(0); }
.reveal-left            { opacity: 0; transform: translateX(-40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-left.visible    { opacity: 1; transform: translateX(0); }
.reveal-right           { opacity: 0; transform: translateX(40px);  transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-right.visible   { opacity: 1; transform: translateX(0); }

/* ── CURSOR DROP ─────────────────────────────────────── */
.cursor-drop {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  z-index: 9999;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.7;
  animation: dropFade 0.9s ease forwards;
}

/* ── CONFETTI ────────────────────────────────────────── */
.confetti-piece {
  position: fixed;
  width: 9px; height: 9px;
  border-radius: 2px;
  pointer-events: none;
  z-index: 9999;
  animation: confettiFall var(--dur) ease-in var(--delay) forwards;
}

/* ── KEYFRAMES ───────────────────────────────────────── */
@keyframes float       { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-18px) rotate(3deg)} }
@keyframes fadeSlideUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes drawUnderline { from{clip-path:inset(0 100% 0 0);opacity:0} to{clip-path:inset(0 0% 0 0);opacity:1} }
@keyframes cardDrop    { from{opacity:0;transform:rotate(var(--r)) translateY(-30px) scale(0.8)} to{opacity:1;transform:rotate(var(--r)) translateY(0) scale(1)} }
@keyframes wiggle      { 0%,100%{transform:rotate(0)} 20%{transform:rotate(-4deg)} 40%{transform:rotate(4deg)} 60%{transform:rotate(-3deg)} 80%{transform:rotate(3deg)} }
@keyframes bob         { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-10px) rotate(1deg)} }
@keyframes popIn       { from{opacity:0;transform:scale(0.5) rotate(-6deg)} to{opacity:1;transform:scale(1) rotate(0deg)} }
@keyframes heartbeat   { 0%,100%{transform:scale(1)} 14%{transform:scale(1.3)} 28%{transform:scale(1)} 42%{transform:scale(1.2)} 70%{transform:scale(1)} }
@keyframes badgeBounce { 0%,100%{transform:scale(1) rotate(-1deg)} 50%{transform:scale(1.1) rotate(1deg)} }
@keyframes shimmer     { 0%{left:-100%} 50%,100%{left:150%} }
@keyframes dropFade    { 0%{transform:translate(-50%,-50%) scale(0.2);opacity:0.8} 60%{transform:translate(-50%,-50%) scale(1.1);opacity:0.5} 100%{transform:translate(-50%,-50%) scale(1.5);opacity:0} }
@keyframes confettiFall{ 0%{transform:translate(0,0) rotate(0deg) scale(1);opacity:1} 80%{opacity:0.8} 100%{transform:translate(var(--tx),var(--ty)) rotate(var(--rot)) scale(0.5);opacity:0} }
@keyframes idleSway    { 0%,100%{transform:rotate(-4deg) scale(1)} 50%{transform:rotate(4deg) scale(1.05)} }
@keyframes pulseRing   { 0%,100%{box-shadow:0 0 0 2px var(--coral),0 0 0 5px transparent} 50%{box-shadow:0 0 0 2px var(--coral),0 0 0 9px rgba(255,107,107,0.18)} }
@keyframes pulseGolden { 0%,100%{box-shadow:0 0 0 2px var(--golden),0 0 0 5px transparent} 50%{box-shadow:0 0 0 2px var(--golden),0 0 0 9px rgba(255,209,102,0.22)} }
@keyframes pulseSky    { 0%,100%{box-shadow:0 0 0 2px var(--sky),0 0 0 5px transparent} 50%{box-shadow:0 0 0 2px var(--sky),0 0 0 9px rgba(116,199,236,0.22)} }
@keyframes pulseSage   { 0%,100%{box-shadow:0 0 0 2px var(--sage),0 0 0 5px transparent} 50%{box-shadow:0 0 0 2px var(--sage),0 0 0 9px rgba(168,216,168,0.22)} }

/* ── REDUCED MOTION ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration:0.01ms !important; transition-duration:0.01ms !important; }
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  #site-nav { padding: 0 1.25rem; height: 80px; }
  .nav-left  { gap: 1rem; }
  .nav-right { gap: 1rem; }
  .nav-link  { font-size: 0.82rem; }
  .nav-logo img { width: 62px; height: 62px; }
  #mobile-menu  { top: 80px; }

  .hero { padding: 8rem 2rem 4rem; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); letter-spacing: -1px; }
  .hero-art-card { width: 100px; }

  .about-inner     { grid-template-columns: 1fr; gap: 2.5rem; }
  .portrait-frame  { max-width: 300px; font-size: 5rem; }
  .form-row        { grid-template-columns: 1fr; }
  .single-artwork-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner    { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .nav-left  { display: none; }
  .nav-toggle { display: flex; }
  #site-nav  { grid-template-columns: 1fr auto 1fr; }
  .nav-logo img { width: 58px; height: 58px; }
  #mobile-menu { top: 80px; }
  .hero-art-card:nth-child(4) { display: none; }
  .hero-art-card { width: 85px; }
  section { padding: 3.5rem 1.25rem; }
}
