:root {
  --bg: #fffaf6;
  --bg-alt: #faf0e8;
  --ink: #2a1f24;
  --muted: #7a6b71;
  --accent: #b35a78;
  --accent-dark: #7a2e4a;
  --gold: #b39a5a;
  --radius: 18px;
  --shadow: 0 18px 40px -20px rgba(122, 46, 74, 0.35);
  --maxw: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Poppins", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

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

a { color: inherit; text-decoration: none; }

.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px -12px rgba(179, 90, 120, 0.8);
}
.btn:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid rgba(42,31,36,0.2); box-shadow: none; }
.btn-ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-small { padding: 0.55rem 1.1rem; font-size: 0.85rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(255, 250, 246, 0.82);
  border-bottom: 1px solid rgba(42,31,36,0.06);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 0; }
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand-mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  border-radius: 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem; font-weight: 700;
}
.brand-text { font-family: "Cormorant Garamond", serif; font-size: 1.35rem; font-weight: 700; line-height: 1; }
.brand-text small { display: block; font-family: "Poppins", sans-serif; font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); font-weight: 500; }

.nav-links { list-style: none; display: flex; align-items: center; gap: 1.8rem; }
.nav-links a { font-size: 0.92rem; font-weight: 400; transition: color 0.2s; }
.nav-links a:not(.btn):hover { color: var(--accent); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.3s; }

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(179,90,120,0.18), transparent 45%),
    radial-gradient(circle at 15% 80%, rgba(179,154,90,0.18), transparent 40%),
    var(--bg);
  overflow: hidden;
}
.hero-content { max-width: 640px; padding-block: 4rem; }
.hero h1 { font-size: clamp(2.8rem, 7vw, 5rem); margin-bottom: 1.2rem; }
.hero-sub { font-size: 1.1rem; color: var(--muted); max-width: 460px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); font-size: 0.8rem; color: var(--muted); letter-spacing: 0.2em; animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,8px)} }

/* Highlights */
.highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 5;
  background: #fff;
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
}
.highlight { text-align: center; }
.highlight strong { display: block; font-family: "Cormorant Garamond", serif; font-size: 1.6rem; color: var(--accent-dark); }
.highlight span { font-size: 0.82rem; color: var(--muted); }

/* Sections */
.section { padding: 5.5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 560px; margin: 0 auto 3rem; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); }
.section-sub { color: var(--muted); margin-top: 0.6rem; }
.grid { display: grid; gap: 1.5rem; }

/* Collection cards */
.cards { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: 0 12px 30px -22px rgba(42,31,36,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-art {
  width: 100%; height: 150px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem; font-weight: 700;
  margin-bottom: 1.2rem;
  overflow: hidden;
}
.card-art img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.card-art.no-img::after { content: attr(data-letter); }
.card h3 { font-size: 1.4rem; margin-bottom: 0.4rem; }
.card p { font-size: 0.9rem; color: var(--muted); margin-bottom: 1rem; }
.card-link { color: var(--accent); font-weight: 500; font-size: 0.9rem; }
.card-link:hover { color: var(--accent-dark); }

/* Featured */
.featured-grid { grid-template-columns: repeat(3, 1fr); }
.feature { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 12px 30px -22px rgba(42,31,36,0.4); transition: transform 0.25s ease; }
.feature:hover { transform: translateY(-6px); }
.feature-img { height: 180px; background: linear-gradient(135deg, var(--c1), var(--c2)); overflow: hidden; }
.feature-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-body { padding: 1.4rem; }
.tag { display: inline-block; background: var(--bg-alt); color: var(--accent-dark); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.14em; padding: 0.25rem 0.7rem; border-radius: 999px; margin-bottom: 0.7rem; }
.feature-body h3 { font-size: 1.5rem; }
.feature-body p { font-size: 0.9rem; color: var(--muted); margin: 0.3rem 0 0.9rem; }
.price { font-weight: 600; color: var(--accent-dark); font-size: 1.15rem; }
.price small { color: var(--muted); text-decoration: line-through; font-weight: 400; font-size: 0.85rem; margin-left: 0.4rem; }

/* About */
.about-grid { display: grid; grid-template-columns: 0.8fr 1fr; gap: 3rem; align-items: center; }
.about-art { position: relative; display: grid; place-items: center; min-height: 360px; }
.about-art .blob {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%;
  animation: morph 9s ease-in-out infinite;
  opacity: 0.92;
}
.about-art span { position: relative; z-index: 2; color: #fff; font-family: "Cormorant Garamond", serif; font-size: 1.6rem; font-weight: 600; letter-spacing: 0.05em; }
@keyframes morph { 0%,100%{border-radius:42% 58% 63% 37% / 41% 44% 56% 59%} 50%{border-radius:58% 42% 38% 62% / 56% 38% 62% 44%} }
.about-text h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.about-text p { color: var(--muted); margin-bottom: 1rem; }
.ticks { list-style: none; margin-top: 1rem; }
.ticks li { position: relative; padding-left: 1.8rem; margin-bottom: 0.5rem; }
.ticks li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* Testimonials */
.testimonials { grid-template-columns: repeat(3, 1fr); }
.quote { background: #fff; border-radius: var(--radius); padding: 1.8rem; box-shadow: 0 12px 30px -22px rgba(42,31,36,0.4); border-top: 3px solid var(--accent); }
.quote p { font-style: italic; color: var(--ink); margin-bottom: 1rem; }
.quote footer { font-weight: 500; color: var(--accent-dark); font-size: 0.9rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.contact-info p { color: var(--muted); margin-bottom: 1.5rem; }
.contact-list { list-style: none; }
.contact-list li { padding: 0.6rem 0; border-bottom: 1px solid rgba(42,31,36,0.08); font-size: 0.95rem; }
.contact-list strong { display: inline-block; width: 80px; color: var(--accent-dark); }
.contact-form { background: #fff; border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); display: grid; gap: 1rem; }
.contact-form label { display: grid; gap: 0.4rem; font-size: 0.85rem; font-weight: 500; }
.contact-form input, .contact-form textarea {
  font-family: inherit; font-size: 0.95rem;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid rgba(42,31,36,0.12);
  border-radius: 10px;
  background: var(--bg);
  transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); }
.form-note { font-size: 0.8rem; color: var(--muted); text-align: center; }

/* Footer */
.site-footer { background: var(--ink); color: #e8dde2; padding-top: 3.5rem; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 2rem; padding-bottom: 2.5rem; }
.brand-footer .brand-text, .brand-footer .brand-text small { color: #fff; }
.footer-tag { color: #b9a8af; font-size: 0.9rem; margin-top: 0.8rem; max-width: 260px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.footer-cols h4 { font-family: "Poppins", sans-serif; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.14em; color: #fff; margin-bottom: 0.9rem; }
.footer-cols a { display: block; font-size: 0.88rem; color: #b9a8af; padding: 0.25rem 0; transition: color 0.2s; }
.footer-cols a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.8rem; color: #b9a8af; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-scroll, .about-art .blob { animation: none; }
}

/* Responsive */
@media (max-width: 900px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .featured-grid, .testimonials { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .highlights { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
}
@media (max-width: 680px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--bg);
    padding: 1.2rem 1.5rem 1.8rem;
    gap: 1rem;
    box-shadow: var(--shadow);
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.3s ease;
  }
  .nav-links.open { clip-path: inset(0 0 0 0); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; }
}
@media (max-width: 460px) {
  .cards { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}
