/* ═══════════════════════════════════════════
   BLOOM CHÉRIE V2 — Botane-style editorial
   ═══════════════════════════════════════════ */

:root {
  --pink:        #F6BDD1;
  --pink-light:  #FDF0F6;
  --pink-mid:    #EDA8C3;
  --burgundy:    #8B1A3C;
  --burgundy-2:  #6B1230;
  --cream:       #FDF8F5;
  --white:       #FFFFFF;
  --dark:        #111010;
  --gray:        #6E6068;
  --gray-light:  #F2ECF0;
  --border:      rgba(139,26,60,0.1);

  --font-serif: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --header-h: 120px;
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ───────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { font-family: var(--font-sans); color: var(--dark); background: var(--white); overflow-x: clip; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
::selection { background: var(--pink); color: var(--burgundy); }

/* ── SCROLLBAR ───────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--pink-mid); border-radius: 5px; }

/* ── UTILITY ─────────────────────── */
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--burgundy);
  opacity: 0.65;
  margin-bottom: 16px;
  display: block;
}
.section-head { margin-bottom: 56px; }
.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.15;
}
.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--burgundy);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: gap 0.25s var(--ease), opacity 0.25s;
}
.link-btn:hover { gap: 14px; }
.link-btn.dark { color: var(--dark); }
.hidden { display: none !important; }

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

/* ═══════════════════════════════════
   HEADER
   ═══════════════════════════════════ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
#header.scrolled {
  background: linear-gradient(to right, rgba(253,240,246,0.96) 0%, rgba(246,189,209,0.93) 50%, rgba(253,240,246,0.96) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-left a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--burgundy);
  padding: 8px 16px;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
}
.nav-left a:hover { background: var(--pink-light); color: var(--burgundy); }
.header-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--header-h);
  overflow: hidden;
  clip-path: inset(0);
}
.header-logo img {
  height: 360px;
  width: auto;
  margin: -108px 0 -132px 0;
  transition: transform 0.3s var(--ease);
}
.header-logo:hover img { transform: scale(1.03); }
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
.lang-dropdown {
  position: relative;
}
.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--burgundy);
  background: var(--gray-light);
  border-radius: 100px;
  padding: 7px 14px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.lang-current:hover { background: var(--pink-light); color: var(--burgundy); }
.lang-chevron {
  width: 10px; height: 10px;
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}
.lang-dropdown.open .lang-chevron { transform: rotate(180deg); }
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(17,16,16,0.12);
  padding: 6px;
  min-width: 160px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  z-index: 100;
}
.lang-dropdown.open .lang-menu {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.lang-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--dark);
  padding: 9px 14px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}
.lang-opt:hover { background: var(--pink-light); color: var(--burgundy); }
.lang-opt.active { font-weight: 600; color: var(--burgundy); background: var(--pink-light); }
.nav-order-btn {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--burgundy);
  padding: 10px 24px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.nav-order-btn:hover { background: var(--burgundy-2); transform: translateY(-1px); }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  width: 32px;
}
.burger span { display: block; height: 1.5px; background: var(--dark); transition: 0.3s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  padding: 16px 24px 28px;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 400;
  color: var(--dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--burgundy); }
.mobile-menu .mobile-order {
  margin-top: 16px;
  text-align: center;
  background: var(--burgundy);
  color: var(--white);
  border-radius: 100px;
  padding: 14px 24px;
  border: none;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════
   HERO
   ═══════════════════════════════════ */
#hero {
  position: relative;
  height: 260vh;
}
#hero.no-motion { height: 100svh; min-height: 600px; }
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  background: var(--white);
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #f9e4ee 0%, #f0c8d8 30%, #e8a8c0 60%, #d4789a 100%);
  opacity: calc(1 - var(--heroP, 0));
}
.hero-bloom {
  position: absolute; inset: 0;
  pointer-events: none;
}
.bloom-f {
  position: absolute;
  pointer-events: none;
  will-change: transform, opacity;
}
.bloom-f-inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(107,18,48,0.35), 0 6px 18px rgba(107,18,48,0.18);
  animation: bloomIn 0.9s var(--ease) var(--d, 0.3s) backwards,
             bloomFloat 5.5s ease-in-out calc(var(--d, 0.3s) + 0.9s) infinite alternate;
}
.bloom-f--blob .bloom-f-inner {
  border-radius: 46% 54% 57% 43% / 48% 44% 56% 52%;
}
.bloom-f img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes bloomIn {
  from { opacity: 0; transform: scale(0) rotate(-25deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes bloomFloat {
  from { transform: translateY(0); }
  to   { transform: translateY(-12px); }
}
.hero-overlay {
  position: absolute; inset: 0;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(to bottom,
    transparent 0%,
    transparent 55%,
    rgba(17,16,16,0.18) 100%
  );
  opacity: calc(1 - var(--heroP, 0));
}
.hero-content {
  position: absolute;
  z-index: 10;
  top: calc(var(--header-h) + 13%);
  left: 0; right: 0;
  text-align: center;
  color: var(--burgundy);
  padding: 0 24px;
  animation: heroFade 1.2s var(--ease) 0.2s backwards;
}
#hero .hero-cta {
  color: inherit;
  border-color: currentColor;
  background: rgba(255,255,255,0.45);
}
#hero .hero-cta:hover {
  background: rgba(255,255,255,0.75);
  transform: translateY(-2px);
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.hero-label {
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 20px;
  font-weight: 400;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 7rem);
  font-weight: 300;
  font-style: normal;
  line-height: 1.05;
  letter-spacing: 2px;
  margin-bottom: 40px;
  white-space: nowrap;
}
.hero-title--long {
  font-size: clamp(1.8rem, 4.5vw, 4.5rem);
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.6);
  padding: 14px 36px;
  border-radius: 100px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  backdrop-filter: blur(4px);
}
.hero-cta:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}
.hero-scroll {
  position: absolute;
  z-index: 10;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(139,26,60,0.55);
  font-size: 0.62rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  animation: heroFade 1s var(--ease) 1s backwards;
  opacity: calc(1 - var(--heroP, 0) * 4);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(139,26,60,0.4);
  animation: scrollPulse 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50%       { transform: scaleY(0.5); opacity: 0.9; }
}

/* ═══════════════════════════════════
   CATEGORY TILES
   ═══════════════════════════════════ */
#categories { padding: 0; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 480px;
}
.cat-tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.cat-img {
  width: 100%; height: 100%;
  transition: transform 0.7s var(--ease);
}
.cat-tile:hover .cat-img { transform: scale(1.06); }
.cat-img-1 { background: linear-gradient(160deg, #f9dde9 0%, #e8a0b8 100%); }
.cat-img-2 { background: linear-gradient(160deg, #fce8f0 0%, #f0b8d0 100%); }
.cat-img-3 { background: linear-gradient(160deg, #f5d8e8 0%, #d87098 100%); }
.cat-img-4 { background: linear-gradient(160deg, #fce0ec 0%, #e090b0 100%); }
.cat-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 28px;
  background: linear-gradient(to top, rgba(17,16,16,0.55), transparent);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: var(--white);
}
.cat-label span:first-child {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
}
.cat-arrow {
  font-size: 1.1rem;
  transform: rotate(-45deg);
  transition: transform 0.3s var(--ease);
  display: inline-block;
}
.cat-tile:hover .cat-arrow { transform: rotate(0deg); }

/* ═══════════════════════════════════
   COLLECTION
   ═══════════════════════════════════ */
#collection { padding: 100px 0; background: var(--white); }
.filter-row {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.f-btn {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gray);
  padding: 9px 20px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: all 0.2s var(--ease);
}
.f-btn:hover { border-color: var(--pink-mid); color: var(--burgundy); }
.f-btn.active { background: var(--burgundy); border-color: var(--burgundy); color: var(--white); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.p-card {
  cursor: pointer;
  overflow: hidden;
  background: var(--gray-light);
  position: relative;
  animation: fadeUp 0.5s var(--ease) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.p-card.hidden-card { display: none; }
.p-card-img {
  aspect-ratio: 3/4;
  transition: transform 0.7s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
}
.p-card:hover .p-card-img { transform: scale(1.05); }
.p-card-badge {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--burgundy);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 100px;
}
.p-card-info {
  padding: 18px 20px 22px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.p-card-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 4px;
}
.p-card-price {
  font-size: 0.82rem;
  color: var(--burgundy);
  font-weight: 500;
}
.p-card-quick {
  position: absolute;
  bottom: 70px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.p-card:hover .p-card-quick { opacity: 1; transform: none; }
.quick-btn {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(255,255,255,0.92);
  color: var(--burgundy);
  border: 1px solid rgba(139,26,60,0.2);
  padding: 10px 24px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  transition: background 0.2s, transform 0.2s;
}
.quick-btn:hover { background: var(--white); transform: translateY(-2px); }

/* ═══════════════════════════════════
   EDITORIAL 1
   ═══════════════════════════════════ */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.editorial-media { overflow: hidden; }
.editorial-placeholder {
  width: 100%; height: 100%;
  min-height: 500px;
}
.ed-ph-1 { background: linear-gradient(135deg, #f0c0d4 0%, #d4789a 50%, #b84070 100%); }
.editorial-text {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}
.editorial-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}
.editorial-text p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 32px;
  max-width: 420px;
}

/* ═══════════════════════════════════
   OCCASIONS
   ═══════════════════════════════════ */
#occasions { padding: 100px 0; background: var(--white); }
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  justify-content: center;
}
.occ-card { cursor: pointer; }
.occ-img {
  aspect-ratio: 2/3;
  border-radius: 200px;
  margin-bottom: 14px;
  transition: transform 0.5s var(--ease);
}
.occ-card:hover .occ-img { transform: translateY(-8px); }
.occ-1 { background: linear-gradient(160deg, #fce0ec, #f090b4); }
.occ-2 { background: linear-gradient(160deg, #fde8f0, #e8a0c0); }
.occ-3 { background: linear-gradient(160deg, #f8d8e8, #d07090); }
.occ-4 { background: linear-gradient(160deg, #fce4ec, #e890b0); }
.occ-5 { background: linear-gradient(160deg, #f5dce8, #c07090); }
.occ-6 { background: linear-gradient(160deg, #fde0ee, #d880a0); }
.occ-card h3 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  color: var(--dark);
}

/* ═══════════════════════════════════
   EDITORIAL FULL BLEED
   ═══════════════════════════════════ */
.editorial-full {
  position: relative;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ef-media { position: absolute; inset: 0; }
.ef-placeholder { width: 100%; height: 100%; background: linear-gradient(160deg, #c85080 0%, #8B1A3C 50%, #5a0a20 100%); }
.ef-overlay { position: absolute; inset: 0; background: rgba(17,16,16,0.38); }
.ef-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  animation: heroFade 0.8s var(--ease) both;
}
blockquote {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 16px;
  opacity: 0.95;
}
.ef-sub {
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 40px;
}

/* ═══════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════ */
.how { padding: 100px 0; background: var(--cream); }
.how-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  align-items: start;
  gap: 0;
}
.how-step { padding: 40px 32px; }
.how-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 20px;
}
.how-step h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 12px;
}
.how-step p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.85;
}
.how-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 56px;
  color: var(--pink-mid);
  font-size: 1.4rem;
}
.how-divider::before { content: '→'; }

/* ═══════════════════════════════════
   ORDER
   ═══════════════════════════════════ */
.order-section { padding: 100px 0; background: var(--white); }
.order-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.order-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.2;
}
.order-left > p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 40px;
}
.order-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.od-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.od-icon { font-size: 1.1rem; margin-top: 1px; flex-shrink: 0; }
.od-item strong { display: block; font-size: 0.88rem; color: var(--dark); margin-bottom: 2px; font-weight: 600; }
.od-item span { font-size: 0.78rem; color: var(--gray); }
.order-langs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.order-langs span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--burgundy);
  background: var(--pink-light);
  padding: 6px 14px;
  border-radius: 100px;
}
.order-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 48px;
}
.f-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.f-group label {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--dark);
}
.f-group input,
.f-group select,
.f-group textarea {
  border: none;
  border-bottom: 1px solid rgba(139,26,60,0.2);
  padding: 12px 0;
  font-size: 0.9rem;
  color: var(--dark);
  background: transparent;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.f-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B1A3C' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 10px;
  padding-right: 24px;
  cursor: pointer;
}
.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus { border-bottom-color: var(--burgundy); }
.f-group textarea { resize: vertical; min-height: 88px; }
.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white);
  background: var(--dark);
  border: 1px solid var(--dark);
  padding: 16px 36px;
  border-radius: 100px;
  transition: background 0.25s, transform 0.25s;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.submit-btn:hover { background: var(--burgundy); border-color: var(--burgundy); transform: translateY(-2px); }
.submit-arrow { font-size: 1rem; }
.form-note {
  font-size: 0.75rem;
  color: var(--gray);
  text-align: center;
  margin-top: 14px;
  line-height: 1.6;
}
.form-success {
  margin-top: 16px;
  border: 1px solid var(--pink);
  padding: 16px 20px;
  text-align: center;
  color: var(--burgundy);
  font-size: 0.88rem;
  border-radius: 2px;
  background: var(--pink-light);
  animation: fadeUp 0.4s var(--ease);
}

/* ═══════════════════════════════════
   ABOUT
   ═══════════════════════════════════ */
.about-section { padding: 0; background: var(--cream); }
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.about-img-wrap { overflow: hidden; }
.about-placeholder {
  width: 100%; height: 100%;
  min-height: 500px;
  background: linear-gradient(135deg, #f4c0d0 0%, #e090b0 40%, #c06088 100%);
}
.about-text {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.15;
}
.about-text p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 14px;
  max-width: 420px;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat strong {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--burgundy);
  line-height: 1;
}
.stat span { font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); }

/* ═══════════════════════════════════
   INSTAGRAM
   ═══════════════════════════════════ */
.insta-section { padding: 80px 0; background: var(--white); }
.insta-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.insta-handle {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.insta-handle:hover { opacity: 0.7; }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
}
.insta-tile {
  aspect-ratio: 1;
  overflow: hidden;
  transition: opacity 0.3s;
  cursor: pointer;
}
.insta-tile:hover { opacity: 0.85; }
.ig-1 { background: linear-gradient(135deg, #f8d8e8, #e890b0); }
.ig-2 { background: linear-gradient(135deg, #fce4ec, #d07898); }
.ig-3 { background: linear-gradient(135deg, #f5dce8, #c86888); }
.ig-4 { background: linear-gradient(135deg, #fde0ee, #e080a8); }
.ig-5 { background: linear-gradient(135deg, #f9d8e9, #d47898); }
.ig-6 { background: linear-gradient(135deg, #fce8f0, #c87090); }

/* ═══════════════════════════════════
   FOOTER
   ═══════════════════════════════════ */
#footer { background: var(--dark); color: var(--white); }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 40px 56px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 0; }
.footer-logo {
  height: 560px;
  width: auto;
  margin: -208px 0;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-tagline {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
  margin-top: 4px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
  color: rgba(255,255,255,0.6);
}
.footer-social a:hover { border-color: var(--pink); color: var(--pink); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; padding-top: 8px; }
.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
  margin-bottom: 8px;
}
.footer-col a,
.footer-col span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  line-height: 1;
}
.footer-col a:hover { color: var(--pink); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.25); }
.footer-credits a { color: rgba(255,255,255,0.35); text-decoration: underline; }
.footer-credits a:hover { color: var(--pink); }

/* ═══════════════════════════════════
   MODAL
   ═══════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(17,16,16,0.65);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fadeIn 0.2s var(--ease);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--white);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalUp 0.35s var(--ease);
  position: relative;
}
@keyframes modalUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gray-light);
  color: var(--gray);
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 1;
}
.modal-close:hover { background: var(--pink-light); color: var(--burgundy); }
.modal-img-wrap {
  aspect-ratio: 3/2;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}
.modal-body { padding: 28px 32px 36px; }
.modal-price {
  font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--burgundy); font-weight: 500; margin-bottom: 8px;
}
.modal-body h3 {
  font-family: var(--font-serif); font-size: 1.6rem; font-weight: 500;
  margin-bottom: 12px;
}
.modal-body p { font-size: 0.88rem; color: var(--gray); line-height: 1.8; margin-bottom: 20px; }
.modal-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.m-tag {
  font-size: 0.68rem; letter-spacing: 1px; text-transform: uppercase;
  background: var(--pink-light); color: var(--burgundy);
  padding: 5px 12px; border-radius: 100px; font-weight: 500;
}

/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .occasions-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .how-divider { display: none; }
  .editorial { grid-template-columns: 1fr; }
  .editorial-placeholder { min-height: 340px; }
  .about-layout { grid-template-columns: 1fr; }
  .order-layout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .nav-left { display: none; }
  .header-logo { justify-content: flex-start; }
  .burger { display: flex; }
  .nav-order-btn { display: none; }
  .lang-switcher { display: none; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); height: auto; }
  .cat-img { aspect-ratio: 1; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .occasions-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr; padding: 48px 24px 40px; }
  .footer-bottom { padding: 20px 24px; flex-direction: column; }
  .section-container { padding: 0 24px; }
  .editorial-text { padding: 48px 24px; }
  .about-text { padding: 48px 24px; }
  .order-form { padding: 28px 20px; }
  .f-row { grid-template-columns: 1fr; }
  #collection,
  #occasions,
  .how,
  .order-section { padding: 64px 0; }
  .insta-section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
  .hero-title { font-size: 2.8rem; }
  blockquote { font-size: 1.8rem; }
}
