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

/* ===== VARIABLES ===== */
:root {
  --cream: #FBF8F4;
  --cream-d: #F2EBE0;
  --cream-dd: #E8DDCC;
  --rose: #C04A3E;
  --rose-l: #EFC9BE;
  --rose-p: #FBEEE9;
  --green: #7A8B5E;
  --green-p: #EEF0E5;
  --ink: #2B221C;
  --ink-l: #6B5D52;
  --ink-ll: #A1907F;
  --sf: 'Cormorant Garamond', Georgia, serif;
  --pf: 'Playfair Display', Georgia, serif;
  --ss: 'Jost', system-ui, sans-serif;
  --border: rgba(43, 34, 28, 0.09);
  --nav-h: 64px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--ss);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; height: var(--nav-h);
  transition: background 0.35s var(--ease), box-shadow 0.35s;
}
.nav.scrolled {
  background: rgba(251, 248, 244, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 1.5rem; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-top {
  font-family: var(--pf); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--rose);
}
.logo-bottom {
  font-family: var(--sf); font-size: 1.15rem; font-style: italic;
  color: var(--ink); margin-top: 1px;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.73rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-l); transition: color 0.2s;
}
.nav-links a:hover { color: var(--rose); }
.nav-phone {
  padding: 9px 18px; border: 1px solid var(--rose);
  color: var(--rose); font-size: 0.75rem; white-space: nowrap;
  transition: all 0.2s;
}
.nav-phone:hover { background: var(--rose); color: white; }
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink); transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh; padding: calc(var(--nav-h) + 2rem) 1.5rem 0;
  position: relative; overflow: hidden; background: var(--cream);
}
.hero-bgc {
  position: absolute; width: 420px; height: 420px;
  background: var(--rose-p); border-radius: 50%;
  top: -120px; right: -100px; filter: blur(80px); opacity: 0.55;
  pointer-events: none;
}
.hero-bgc2 {
  position: absolute; width: 280px; height: 280px;
  background: var(--green-p); border-radius: 50%;
  bottom: 20px; left: 30%; filter: blur(60px); opacity: 0.45;
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 3rem; align-items: center;
  position: relative; z-index: 2;
}
.eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--rose); margin-bottom: 1.4rem;
}
.eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--rose); }
.hero-title {
  font-family: var(--sf);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 300; line-height: 1.03; color: var(--ink);
  margin-bottom: 1.2rem;
}
.hero-title em { font-style: italic; color: var(--rose); }
.hero-sub {
  font-size: 0.95rem; color: var(--ink-l);
  line-height: 1.85; margin-bottom: 2rem; font-weight: 300;
}
.hero-btns { display: flex; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.btn-p {
  padding: 13px 28px; background: var(--rose); color: white;
  font-family: var(--ss); font-size: 0.76rem; letter-spacing: 0.1em;
  text-transform: uppercase; border: none; cursor: pointer;
  display: inline-flex; align-items: center; transition: background 0.2s;
}
.btn-p:hover { background: #a83e33; }
.btn-o {
  padding: 13px 22px; background: transparent; color: var(--ink);
  font-family: var(--ss); font-size: 0.76rem; letter-spacing: 0.06em;
  border: 1px solid rgba(43, 34, 28, 0.2); display: inline-flex;
  align-items: center; gap: 6px; cursor: pointer; transition: all 0.2s;
}
.btn-o:hover { border-color: var(--rose); color: var(--rose); }
.hero-badges {
  display: flex; gap: 1.8rem; padding-top: 1.6rem;
  border-top: 1px solid var(--border); flex-wrap: wrap;
  padding-bottom: 3rem;
}
.hb { display: flex; align-items: center; gap: 9px; }
.hb-icon { font-size: 1.15rem; color: var(--rose); }
.hb-label strong { display: block; font-size: 0.82rem; font-weight: 500; color: var(--ink); }
.hb-label span { font-size: 0.74rem; color: var(--ink-l); font-weight: 300; }

/* Stage (hero right) */
.hero-right { padding-bottom: 3rem; }
.stage {
  position: relative; width: 100%; aspect-ratio: 0.9;
  background: linear-gradient(155deg, var(--rose-p) 0%, var(--cream-d) 50%, var(--green-p) 100%);
  border-radius: 10px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.stage-badge {
  position: absolute; top: 1.1rem; right: 1.1rem;
  background: var(--rose); color: white;
  font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 2px;
}
.stage-flower { font-size: 8rem; filter: drop-shadow(0 20px 36px rgba(43,34,28,0.15)); }
.stage-info {
  position: absolute; bottom: 1.3rem; left: 1.3rem; right: 1.3rem;
  background: rgba(255,255,255,0.93); backdrop-filter: blur(8px);
  padding: 0.95rem 1.2rem;
  display: flex; align-items: center; justify-content: space-between;
  border-radius: 3px;
}
.stage-name { font-family: var(--sf); font-size: 1.1rem; color: var(--ink); }
.stage-price { font-family: var(--sf); font-size: 1.3rem; color: var(--rose); }

/* ===== MARQUEE ===== */
.marquee { background: var(--ink); padding: 13px 0; overflow: hidden; }
.mtrack { display: flex; width: max-content; animation: mq 26s linear infinite; }
.mtrack span {
  white-space: nowrap; font-size: 0.68rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--rose-l); padding: 0 2rem;
}
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SECTIONS ===== */
.section { padding: 5rem 1.5rem; background: var(--cream); }
.container { max-width: 1200px; margin: 0 auto; }
.sec-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 2.8rem; flex-wrap: wrap; gap: 1rem;
}
.sec-eyebrow {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 0.6rem;
  display: flex; align-items: center; gap: 8px;
}
.sec-eyebrow::before { content: ''; display: block; width: 15px; height: 1px; background: var(--rose); }
.sec-title {
  font-family: var(--sf); font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 300; color: var(--ink); line-height: 1.1;
}
.see-all { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rose); }

/* ===== CARDS ===== */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  background: white; border: 1px solid var(--border);
  overflow: hidden; border-radius: 3px; cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(43,34,28,0.1); }
.card-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--rose-p), var(--cream-d));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative; overflow: hidden;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-img .emoji { font-size: 3rem; opacity: 0.5; }
.card-badge {
  position: absolute; top: 11px; left: 11px;
  background: var(--rose); color: white;
  font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 1px;
}
.card-body { padding: 1.3rem 1.4rem 1.6rem; }
.card-cat { font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 6px; }
.card-name { font-family: var(--sf); font-size: 1.3rem; font-weight: 400; color: var(--ink); margin-bottom: 7px; line-height: 1.2; }
.card-desc { font-size: 0.82rem; color: var(--ink-l); line-height: 1.65; margin-bottom: 1rem; }
.card-ft { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--border); }
.card-price { font-family: var(--sf); font-size: 1.45rem; color: var(--rose); }
.card-arr { font-size: 1.1rem; color: var(--ink-ll); }

/* Skeleton */
.skeleton {
  height: 320px; background: linear-gradient(90deg, var(--cream-d) 25%, var(--cream) 50%, var(--cream-d) 75%);
  background-size: 200% 100%; animation: shimmer 1.5s infinite;
  border-radius: 3px;
}
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* ===== FILTERS ===== */
.filters { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 2.4rem; }
.fb {
  padding: 8px 18px; background: transparent;
  border: 1px solid rgba(43,34,28,0.18);
  font-family: var(--ss); font-size: 0.74rem; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--ink-l); cursor: pointer;
  border-radius: 1px; transition: all 0.2s;
}
.fb.a, .fb:hover { background: var(--ink); border-color: var(--ink); color: white; }

/* ===== ABOUT ===== */
.about { background: var(--cream-d); padding: 5rem 1.5rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.quote-block {
  position: relative; padding: 2.8rem 2.2rem 2.2rem;
  background: white; border: 1px solid var(--border);
  margin-bottom: 2.2rem; border-radius: 2px;
}
.quote-mark {
  position: absolute; top: -1.4rem; left: 1.8rem;
  font-family: var(--sf); font-size: 6rem; line-height: 1;
  color: var(--rose); opacity: 0.2; user-select: none;
}
.quote-text {
  font-family: var(--sf); font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-style: italic; font-weight: 300; color: var(--ink);
  line-height: 1.45; position: relative; z-index: 1;
}
.quote-author { display: flex; align-items: center; gap: 10px; margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.qa-line { width: 26px; height: 1px; background: var(--rose); flex-shrink: 0; }
.qa-name { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-l); }
.nums-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); margin-bottom: 2.5rem; }
.num-cell { background: var(--cream); padding: 1.4rem 0.8rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.num-icon { font-size: 1.5rem; color: var(--rose); }
.num-l { font-size: 0.72rem; color: var(--ink-l); font-weight: 400; line-height: 1.3; }
.about-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-title { font-family: var(--sf); font-size: clamp(1.9rem, 3.5vw, 2.6rem); font-weight: 300; color: var(--ink); line-height: 1.1; margin-bottom: 1.3rem; }
.about-desc { font-size: 0.9rem; color: var(--ink-l); line-height: 1.85; margin-bottom: 1rem; font-weight: 300; }
.features { display: flex; flex-direction: column; gap: 1px; background: var(--border); margin-bottom: 1.8rem; }
.feat { background: var(--cream); padding: 1rem 1.2rem; display: flex; align-items: center; gap: 11px; }
.feat-dot { width: 4px; height: 4px; background: var(--rose); border-radius: 50%; flex-shrink: 0; }
.feat-text { font-size: 0.86rem; color: var(--ink-l); font-weight: 300; }

/* ===== CONTACT ===== */
.contact { background: var(--ink); padding: 5rem 1.5rem; }
.contact-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.c-eyebrow { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose-l); margin-bottom: 0.7rem; display: flex; align-items: center; gap: 8px; }
.c-eyebrow::before { content: ''; display: block; width: 15px; height: 1px; background: var(--rose-l); }
.c-title { font-family: var(--sf); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 300; color: white; line-height: 1.1; margin-bottom: 1.3rem; }
.c-desc { font-size: 0.9rem; color: rgba(255,255,255,0.45); line-height: 1.85; font-weight: 300; }
.phone-panel { background: rgba(255,255,255,0.04); border: 1px solid rgba(216,138,122,0.25); padding: 2.5rem; }
.pp-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--rose-l); margin-bottom: 1.8rem; text-align: center; display: block; }
.phone-row { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 1.2rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); transition: opacity 0.2s; }
.phone-row:last-of-type { border-bottom: none; padding-bottom: 0; }
.phone-row:hover { opacity: 0.75; }
.phone-icon { font-size: 1.2rem; color: var(--rose-l); }
.phone-num { font-family: var(--sf); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 300; color: white; }
.addr-block { margin-top: 1.8rem; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,0.07); text-align: center; }
.addr-label { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 6px; display: block; }
.addr-val { font-size: 0.95rem; color: rgba(255,255,255,0.75); font-weight: 300; }

/* ===== FOOTER ===== */
.footer { background: #191310; padding: 1.8rem 1.5rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.f-logo { font-family: var(--sf); font-size: 1.1rem; color: rgba(255,255,255,0.35); font-style: italic; }
.f-copy { font-size: 0.7rem; color: rgba(255,255,255,0.2); }
.f-hours { font-size: 0.7rem; color: rgba(255,255,255,0.2); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(43,34,28,0.6); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem; opacity: 0; visibility: hidden;
  transition: all 0.3s var(--ease);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--cream); border-radius: 4px;
  max-width: 580px; width: 100%; max-height: 88vh;
  overflow-y: auto; position: relative;
  transform: translateY(20px); transition: transform 0.3s var(--ease);
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 34px; height: 34px; background: rgba(43,34,28,0.08);
  border: none; border-radius: 50%; font-size: 0.85rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--ink); transition: background 0.2s; z-index: 5;
}
.modal-close:hover { background: rgba(43,34,28,0.18); }
.modal-img { aspect-ratio: 16/9; background: var(--cream-d); display: flex; align-items: center; justify-content: center; font-size: 5rem; overflow: hidden; }
.modal-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-body { padding: 2rem 2.2rem 2.5rem; }
.modal-cat { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 8px; }
.modal-name { font-family: var(--sf); font-size: 2rem; font-weight: 300; color: var(--ink); margin-bottom: 0.8rem; line-height: 1.15; }
.modal-stock { display: inline-block; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 12px; border-radius: 2px; margin-bottom: 1.3rem; }
.in-stock { background: var(--green-p); color: var(--green); }
.out-stock { background: #fee; color: #c00; }
.modal-desc { font-size: 0.9rem; color: var(--ink-l); line-height: 1.8; margin-bottom: 1.5rem; }
.modal-price { font-family: var(--sf); font-size: 2.2rem; color: var(--rose); margin-bottom: 1.5rem; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { order: -1; padding-bottom: 1.5rem; }
  .about-2col { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-2col { grid-template-columns: 1fr; gap: 2.5rem; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--cream); padding: 2rem;
    gap: 1.5rem; border-bottom: 1px solid var(--border); z-index: 99;
  }
  .burger { display: flex; }
  .grid3 { grid-template-columns: 1fr 1fr; }
  .hero-badges { gap: 1.2rem; }
  .stage { aspect-ratio: 1.2; }
}
@media (max-width: 560px) {
  .grid3 { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .footer-inner { flex-direction: column; text-align: center; }
  .phone-num { font-size: 1.6rem; }
  .nums-row { grid-template-columns: 1fr; }
}
