/* Étoile Floral Atelier — Static build */
:root {
  --forest: oklch(0.32 0.045 155);
  --forest-deep: oklch(0.24 0.04 155);
  --ivory: oklch(0.975 0.008 90);
  --gold: oklch(0.78 0.09 82);
  --gold-soft: oklch(0.86 0.06 82);
  --background: oklch(0.972 0.008 90);
  --foreground: oklch(0.24 0.04 155);
  --card: #ffffff;
  --muted-foreground: oklch(0.48 0.02 150);
  --border: oklch(0.9 0.015 90);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  font-weight: 300;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) { .container { padding: 0 40px; } }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

/* HEADER */
.header {
  position: sticky; top: 0; z-index: 40;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: rgba(249, 248, 245, 0.85);
  backdrop-filter: blur(10px);
}
.header-inner {
  height: 80px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav { display: none; gap: 36px; font-size: 14px; color: rgba(0,0,0,0.7); }
@media (min-width: 1024px) { .nav { display: flex; } }
.nav a:hover { color: var(--foreground); }
.brand { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.brand-name { font-family: var(--font-serif); font-size: 24px; letter-spacing: 0.18em; }
.brand-sub { margin-top: 4px; font-size: 10px; letter-spacing: 0.45em; color: var(--muted-foreground); }
.header-actions { display: flex; align-items: center; gap: 16px; color: rgba(0,0,0,0.7); }
.header-actions button { padding: 4px; }
.header-actions button:hover { color: var(--foreground); }
.icon-btn { position: relative; }
.cart-badge {
  position: absolute; right: -8px; top: -8px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--forest); color: var(--ivory);
  font-size: 10px; display: flex; align-items: center; justify-content: center;
}
.menu-btn { display: block; }
@media (min-width: 1024px) { .menu-btn { display: none; } }

/* HERO */
.hero { position: relative; overflow: hidden; }
.hero-grid {
  display: grid; gap: 40px;
  padding: 56px 24px 96px;
  max-width: 1280px; margin: 0 auto;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 5fr 7fr; gap: 64px; padding: 96px 40px 128px; }
}
.hero-copy { }
@media (min-width: 1024px) { .hero-copy { padding-top: 64px; } }
.hero h1 {
  margin-top: 24px;
  font-size: 3.25rem; line-height: 1.02;
}
@media (min-width: 640px) { .hero h1 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 4.5rem; } }
.hero-lede {
  margin-top: 32px; max-width: 28rem;
  color: var(--muted-foreground); line-height: 1.7;
}
.hero-cta { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 16px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 28px; border-radius: 999px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.02em;
  transition: all 0.2s;
}
.btn-primary { background: var(--forest); color: var(--ivory); }
.btn-primary:hover { background: var(--forest-deep); }
.btn-outline { border: 1px solid rgba(0,0,0,0.25); color: var(--foreground); }
.btn-outline:hover { border-color: rgba(0,0,0,0.6); }

.hero-stats {
  margin-top: 56px; display: flex; align-items: center; gap: 32px;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.25em;
  color: var(--muted-foreground); flex-wrap: wrap;
}
.hero-stats .stat-num {
  font-family: var(--font-serif); font-size: 24px;
  text-transform: none; letter-spacing: normal; color: var(--foreground);
}
.divider { width: 1px; height: 40px; background: var(--border); }
.stars { display: inline-flex; align-items: center; gap: 4px; margin-top: 4px; }
.star { color: var(--gold); }

.hero-media { position: relative; }
.hero-img-wrap { position: relative; overflow: hidden; }
.hero-img-wrap img { width: 100%; height: 540px; object-fit: cover; }
@media (min-width: 640px) { .hero-img-wrap img { height: 640px; } }
@media (min-width: 1024px) { .hero-img-wrap img { height: 720px; } }
.hero-img-wrap::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,40,35,0.4), transparent);
}
.hero-card {
  display: none;
  position: absolute; bottom: -24px; left: -16px; max-width: 240px;
  background: var(--card); padding: 24px;
  box-shadow: 0 20px 60px -30px rgba(0,0,0,0.25);
}
@media (min-width: 640px) { .hero-card { display: block; } }
@media (min-width: 1024px) { .hero-card { left: -40px; } }
.hero-card p:last-child {
  margin-top: 12px; font-family: var(--font-serif);
  font-size: 18px; line-height: 1.35;
}
.hero-badge {
  display: none;
  position: absolute; right: -8px; top: 32px;
  background: var(--gold); color: var(--forest-deep);
  padding: 20px; border-radius: 50%;
  font-family: var(--font-serif); font-size: 12px;
  letter-spacing: 0.15em; text-align: center; line-height: 1.2;
}
@media (min-width: 640px) { .hero-badge { display: block; } }
@media (min-width: 1024px) { .hero-badge { right: 24px; } }

/* TRUST BAR */
.trust {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(245, 244, 238, 0.6);
}
.trust-inner {
  padding: 24px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 24px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.3em;
  color: var(--muted-foreground);
}

/* SECTION */
.section { padding: 112px 0; }
@media (min-width: 1024px) { .section { padding: 144px 0; } }
.section-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; }
.section-head h2 {
  margin-top: 16px; font-size: 2.25rem; line-height: 1.1; max-width: 42rem;
}
@media (min-width: 640px) { .section-head h2 { font-size: 3rem; } }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(0,0,0,0.75); }
.link-arrow:hover { color: var(--foreground); }

/* COLLECTIONS */
.collections { margin-top: 56px; display: grid; gap: 32px; }
@media (min-width: 768px) { .collections { grid-template-columns: repeat(3, 1fr); } }
.col-card { display: block; }
.col-img { position: relative; overflow: hidden; }
.col-img img {
  width: 100%; height: 440px; object-fit: cover;
  transition: transform 0.9s ease-out;
}
.col-card:hover .col-img img { transform: scale(1.04); }
.col-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.col-card:hover .col-img::after { opacity: 1; }
.col-title { margin-top: 20px; display: flex; align-items: baseline; justify-content: space-between; }
.col-title h3 { font-size: 24px; }
.col-count { font-size: 12px; text-transform: uppercase; letter-spacing: 0.25em; color: var(--muted-foreground); }
.col-discover { margin-top: 8px; display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: rgba(0,0,0,0.7); }
.col-card:hover .col-discover { color: var(--foreground); }

/* PRODUCTS */
.products-section { background: rgba(245, 244, 238, 0.6); }
.filters { display: flex; gap: 8px; font-size: 14px; flex-wrap: wrap; }
.filter {
  border: 1px solid var(--border); border-radius: 999px;
  padding: 8px 16px; color: rgba(0,0,0,0.7); transition: all 0.2s;
}
.filter:hover { border-color: rgba(0,0,0,0.6); }
.filter.active { background: var(--forest); color: var(--ivory); border-color: var(--forest); }

.products {
  margin-top: 56px; display: grid; gap: 32px 32px;
}
@media (min-width: 640px) { .products { grid-template-columns: repeat(2, 1fr); gap: 56px 32px; } }
@media (min-width: 1024px) { .products { grid-template-columns: repeat(4, 1fr); } }
.product { }
.product-media { position: relative; overflow: hidden; background: var(--card); }
.product-media img {
  aspect-ratio: 4/5; width: 100%; object-fit: cover;
  transition: transform 0.7s ease-out;
}
.product:hover .product-media img { transform: scale(1.03); }
.wishlist {
  position: absolute; right: 12px; top: 12px;
  background: rgba(249,248,245,0.85); backdrop-filter: blur(6px);
  border-radius: 50%; padding: 8px; transition: background 0.2s;
}
.wishlist:hover { background: var(--background); }
.product-tag {
  position: absolute; left: 12px; top: 12px;
  background: var(--forest); color: var(--ivory);
  padding: 4px 12px; border-radius: 999px;
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em;
}
.quick-add {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  background: var(--forest); color: var(--ivory);
  padding: 12px; border-radius: 999px;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.25em;
  transform: translateY(12px); opacity: 0;
  transition: all 0.3s;
}
.product:hover .quick-add { transform: translateY(0); opacity: 1; }
.product-info { margin-top: 20px; }
.product-info .row { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.product-info h3 { font-size: 20px; line-height: 1.2; }
.product-price { font-family: var(--font-serif); font-size: 18px; white-space: nowrap; }
.product-desc { margin-top: 4px; font-size: 14px; color: var(--muted-foreground); }
.product-meta { margin-top: 12px; display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted-foreground); }

/* STORY */
.story { display: grid; gap: 48px; padding: 112px 24px; max-width: 1280px; margin: 0 auto; }
@media (min-width: 1024px) {
  .story { grid-template-columns: 5fr 1fr 6fr; padding: 144px 40px; align-items: center; }
}
.story-img img { width: 100%; height: 560px; object-fit: cover; }
.story-copy h2 { margin-top: 16px; font-size: 2.25rem; line-height: 1.1; }
@media (min-width: 640px) { .story-copy h2 { font-size: 3rem; } }
.story-copy p.lede { margin-top: 32px; color: var(--muted-foreground); line-height: 1.7; }
.values { margin-top: 40px; display: grid; gap: 24px; }
@media (min-width: 640px) { .values { grid-template-columns: repeat(2, 1fr); } }
.value { display: flex; gap: 16px; }
.value-icon {
  flex: none; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(50,80,65,0.1); color: var(--forest);
  display: flex; align-items: center; justify-content: center;
  margin-top: 4px;
}
.value h4 { font-family: var(--font-serif); font-size: 18px; }
.value p { margin-top: 4px; font-size: 14px; color: var(--muted-foreground); line-height: 1.6; }

/* TESTIMONIALS */
.testimonials { background: var(--forest-deep); color: var(--ivory); padding: 112px 0; }
@media (min-width: 1024px) { .testimonials { padding: 144px 0; } }
.testimonials .eyebrow { color: rgba(249,248,245,0.65); }
.testimonials h2 { color: var(--ivory); max-width: 36rem; }
.rating { display: flex; align-items: center; gap: 8px; color: rgba(249,248,245,0.8); }
.rating .star { color: var(--gold); }
.testimonials-grid { margin-top: 56px; display: grid; gap: 32px; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial { border: 1px solid rgba(249,248,245,0.15); padding: 32px; }
.testimonial-icon { color: var(--gold); }
.testimonial blockquote {
  margin-top: 24px; font-family: var(--font-serif);
  font-size: 20px; line-height: 1.35; color: var(--ivory);
}
.testimonial figcaption { margin-top: 32px; font-size: 14px; color: rgba(249,248,245,0.7); }
.testimonial figcaption span { color: var(--ivory); }

/* NEWSLETTER */
.newsletter { padding: 112px 24px; max-width: 1280px; margin: 0 auto; }
@media (min-width: 1024px) { .newsletter { padding: 144px 40px; } }
.newsletter-box {
  border: 1px solid var(--border); background: var(--card);
  padding: 56px 32px; display: grid; gap: 40px; align-items: center;
}
@media (min-width: 768px) { .newsletter-box { grid-template-columns: 1fr 1fr; padding: 80px 56px; } }
.newsletter h2 { margin-top: 16px; font-size: 2.25rem; line-height: 1.1; }
@media (min-width: 640px) { .newsletter h2 { font-size: 3rem; } }
.newsletter p { margin-top: 16px; max-width: 28rem; color: var(--muted-foreground); }
.newsletter form { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 640px) { .newsletter form { flex-direction: row; } }
.newsletter input {
  flex: 1; border: none; border-bottom: 1px solid rgba(0,0,0,0.3);
  background: transparent; padding: 16px 4px; font-size: 16px;
  color: var(--foreground); outline: none;
  font-family: inherit;
}
.newsletter input:focus { border-color: var(--foreground); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* FOOTER */
.footer {
  margin-top: 128px;
  border-top: 1px solid var(--border);
  background: var(--forest-deep);
  color: rgba(249,248,245,0.85);
}
.footer-inner { padding: 80px 24px; max-width: 1280px; margin: 0 auto; }
@media (min-width: 1024px) { .footer-inner { padding: 80px 40px; } }
.footer-grid { display: grid; gap: 56px; }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer .brand-name { color: var(--ivory); font-size: 30px; }
.footer .brand-sub { color: rgba(249,248,245,0.6); }
.footer-brand p { margin-top: 32px; max-width: 24rem; font-size: 14px; color: rgba(249,248,245,0.7); line-height: 1.7; }
.socials { margin-top: 32px; display: flex; gap: 16px; }
.social-btn {
  display: inline-flex; padding: 10px; border: 1px solid rgba(249,248,245,0.25);
  border-radius: 50%; transition: border-color 0.2s;
}
.social-btn:hover { border-color: rgba(249,248,245,0.6); }
.footer h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.3em; color: rgba(249,248,245,0.6); font-family: var(--font-sans); font-weight: 500; }
.footer ul { list-style: none; margin-top: 24px; }
.footer li { margin-bottom: 12px; font-size: 14px; color: rgba(249,248,245,0.8); }
.footer li a:hover { color: var(--ivory); }
.footer-bottom {
  margin-top: 64px; padding-top: 32px;
  border-top: 1px solid rgba(249,248,245,0.15);
  display: flex; flex-direction: column; gap: 16px;
  font-size: 12px; color: rgba(249,248,245,0.5);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-bottom .links { display: flex; gap: 24px; }
.footer-bottom a:hover { color: var(--ivory); }
